/* rubypod public styles — cream paper, ink type, ruby accents.
   Fonts: Aleo (serif display), Caveat (handwritten accent), Hanken Grotesk (body). */

:root {
  --cream: #F4ECDD;
  --cream-light: #FBF6EC;
  --cream-card: #FFFDF7;
  --blush: #EFDDD4;
  --ink: #2A2521;
  --ink-dark: #231F1B;
  --ruby: #9B1C31;
  --ruby-dark: #7E1627;
  --rose: #E3899A;
  --rose-pale: #F3D2D7;
  --gold: #E0A52E;
  --green: #3F7D43;
  --muted: #544B42;
  --muted-2: #6B5F53;
  --muted-3: #7A6E61;
  --muted-warm: #6A4F4A;
  --faint: #9B8775;
  --line: rgba(42, 37, 33, 0.08);
  --line-strong: rgba(42, 37, 33, 0.15);
  --serif: 'Aleo', Georgia, serif;
  --hand: 'Caveat', cursive;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--ruby); color: var(--cream-light); }
img { max-width: 100%; display: block; }
a { color: var(--ruby); }

/* paper grain overlay */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 60;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

@keyframes rp-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(-2deg); } }
@keyframes rp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes rp-pulse { 0% { box-shadow: 0 0 0 0 rgba(155,28,49,0.55); } 70% { box-shadow: 0 0 0 12px rgba(155,28,49,0); } 100% { box-shadow: 0 0 0 0 rgba(155,28,49,0); } }
@keyframes rp-pop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* ===================== header ===================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 236, 221, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 28px; padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-word {
  font-family: var(--serif); font-weight: 800; font-size: 25px;
  letter-spacing: -0.025em; color: var(--ink);
}
.main-nav { display: flex; align-items: center; gap: 26px; font-weight: 600; font-size: 15px; }
.main-nav a { color: #4A433B; text-decoration: none; }
.main-nav a:hover { color: var(--ruby); }
.site-header.slim .slim-header-inner { display: flex; justify-content: center; padding: 15px 22px; }
.site-header.slim .brand { margin-right: 0; }

/* ===================== buttons & links ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 700; text-decoration: none;
  border: none; cursor: pointer;
}
.btn-primary {
  background: var(--ruby); color: var(--cream-light);
  font-size: 1.05rem; padding: 15px 26px; border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(155, 28, 49, 0.7);
}
.btn-primary:hover { background: var(--ruby-dark); }
.btn-big { font-size: 1.15rem; padding: 18px 30px; border-radius: 14px; }
.btn-block { display: flex; width: 100%; margin-top: 30px; border-radius: 14px; }
.btn-cream {
  background: var(--cream-light); color: var(--ruby);
  font-size: 1.12rem; padding: 17px 30px; border-radius: 14px;
  box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.5);
}
.btn-cream:hover { background: #fff; color: var(--ruby-dark); }
.btn-pill-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14.5px; color: var(--ruby); text-decoration: none;
  border: 1.5px solid rgba(155, 28, 49, 0.4); border-radius: 999px;
  padding: 9px 18px; white-space: nowrap; background: transparent; cursor: pointer;
}
.btn-pill-outline:hover { background: var(--ruby); color: var(--cream-light); border-color: var(--ruby); }
.link-quiet {
  font-weight: 600; font-size: 1rem; color: var(--muted-2); text-decoration: none;
  border-bottom: 1.5px solid rgba(107, 95, 83, 0.35);
}
.link-quiet:hover { color: var(--ruby); border-color: var(--ruby); }

/* ===================== hand-written accents ===================== */
.hand { font-family: var(--hand); font-size: 26px; color: var(--ruby); line-height: 1.1; }
.hand-lead { display: inline-flex; align-items: center; gap: 9px; font-size: 24px; }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ruby); display: inline-block; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ruby); background: rgba(155, 28, 49, 0.08);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow-pill .eyebrow-dot { width: 7px; height: 7px; }
.signature { font-size: 34px; margin-top: 18px; }
.signature.big { font-size: 36px; margin-top: 26px; }

/* ===================== hero ===================== */
.hero-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding-top: clamp(40px, 7vw, 84px); padding-bottom: clamp(44px, 6vw, 72px);
}
.hero-copy { flex: 1 1 380px; min-width: 300px; }
.hero-title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4.05rem); line-height: 1.04;
  letter-spacing: -0.02em; margin: 22px 0 0; color: var(--ink-dark);
  text-wrap: balance;
}
.hero-title .ruby { color: var(--ruby); }
.underlined-ruby { position: relative; white-space: nowrap; color: var(--ruby); }
.underlined-ruby svg { position: absolute; left: -2%; bottom: -12px; width: 104%; height: 14px; }
.hero-sub {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6;
  color: var(--muted); max-width: 520px; margin: 30px 0 0;
}
.hero-sub strong { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 34px; }
.hero-trust { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; color: var(--muted-3); }

/* hero mockup */
.hero-mock-col { flex: 1 1 340px; min-width: 290px; display: flex; justify-content: center; position: relative; }
.hand-arrow {
  position: absolute; right: 5%; top: -44px; z-index: 5;
  display: flex; align-items: flex-end; gap: 2px; pointer-events: none;
}
.hand-arrow .hand { transform: rotate(-3deg); white-space: nowrap; }
.hand-arrow svg { margin-bottom: -6px; }
.hero-mock {
  width: 100%; max-width: 420px; background: var(--ink); border-radius: 18px;
  box-shadow: 0 30px 60px -28px rgba(42, 37, 33, 0.5), 0 2px 0 rgba(42, 37, 33, 0.05);
  border: 1px solid rgba(42, 37, 33, 0.18); overflow: hidden;
}
.floating { animation: rp-float 7s ease-in-out infinite; }

.chrome-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: #ECE2CF; border-bottom: 1px solid rgba(42, 37, 33, 0.07);
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.chrome-bar.muted .chrome-dot { width: 8px; height: 8px; background: #D7CAB4; }
.chrome-url {
  margin-left: 8px; flex: 1; background: var(--cream-light); border-radius: 6px;
  font-size: 11px; color: #8A7E6F; padding: 4px 10px; text-align: center;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

.mock-nav {
  background: var(--ink); color: var(--cream); padding: 10px 16px;
  display: flex; align-items: center; gap: 10px; font-size: 10px;
  border-bottom: 1px solid rgba(244, 236, 221, 0.08);
}
.mock-avatar {
  width: 21px; height: 21px; border-radius: 50%; background: var(--ruby); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 800; font-size: 11px; color: var(--cream-light);
}
.mock-avatar.small { width: 18px; height: 18px; font-size: 10px; }
.mock-brand { line-height: 1; min-width: 0; }
.mock-brand-name { font-weight: 800; font-size: 11.5px; letter-spacing: -0.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-brand-tag { font-size: 6px; letter-spacing: 0.2em; color: #9B8E7C; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-nav-item { opacity: 0.6; margin-left: auto; }
.mock-nav-item + .mock-nav-item { margin-left: 0; }
.mock-call { background: var(--ruby); color: var(--cream-light); padding: 4px 9px; border-radius: 999px; font-weight: 700; }
.mock-hero { padding: 22px 20px; background: var(--ink); color: var(--cream); }
.mock-kicker { font-size: 7.5px; letter-spacing: 0.18em; color: var(--rose); font-weight: 700; margin-bottom: 11px; }
.mock-headline { font-family: var(--serif); font-weight: 800; font-size: 26px; line-height: 1.05; letter-spacing: -0.01em; }
.mock-accent { color: var(--rose); font-style: italic; }
.mock-blurb { font-size: 12px; color: #B6A892; margin-top: 13px; max-width: 260px; line-height: 1.45; }
.mock-cta {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  background: var(--ruby); color: var(--cream-light); font-weight: 700;
  font-size: 12.5px; padding: 9px 16px; border-radius: 999px;
}
.mock-photo-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 0 16px 16px; background: var(--ink); }
.mock-photo { height: 54px; border-radius: 8px; background: #38322B; }
.mock-photo.alt { background: #443B31; }

/* ===================== bands & sections ===================== */
.band { padding: clamp(48px, 6vw, 80px) 0; scroll-margin-top: 80px; }
.band-blush { background: var(--blush); border-top: 1px solid rgba(42, 37, 33, 0.06); border-bottom: 1px solid rgba(42, 37, 33, 0.06); }
.section-head { max-width: 680px; }
.section-head.centered { margin: 0 auto; text-align: center; max-width: 700px; }
.section-head h2, .band h2 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); line-height: 1.08;
  letter-spacing: -0.015em; margin: 4px 0 0; color: var(--ink-dark);
}
.section-head p { font-size: 1.1rem; line-height: 1.55; color: var(--muted-warm); margin: 16px 0 0; }

.card {
  background: var(--cream-light); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 12px 26px -22px rgba(42, 37, 33, 0.5);
}

/* ===================== examples ===================== */
.examples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; margin-top: 38px; }
.example-card { text-decoration: none; color: inherit; display: block; }
.example-frame {
  background: var(--cream-light); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px -22px rgba(42, 37, 33, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.example-card:hover .example-frame { transform: translateY(-5px); box-shadow: 0 22px 40px -22px rgba(42, 37, 33, 0.55); }
.example-site { background: #fff; }
.example-nav {
  display: flex; align-items: center; gap: 8px; padding: 9px 13px;
  border-bottom: 1px solid #f0ede8; font-size: 10px; color: #9a958d;
}
.example-initials {
  width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 8.5px; color: #fff;
}
.example-name { font-weight: 700; color: #3a3631; font-size: 10.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.example-nav-links { margin-left: auto; white-space: nowrap; }
.example-hero { padding: 20px 16px 18px; height: 152px; display: flex; flex-direction: column; }
.example-tagline {
  font-family: var(--serif); font-weight: 800; font-size: 19px; line-height: 1.12; color: #2a2620;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 42px;
}
.example-blurb {
  font-size: 11px; line-height: 1.4; color: #6f6a62; margin-top: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.example-cta { align-self: flex-start; margin-top: auto; color: #fff; font-weight: 700; font-size: 11px; padding: 7px 13px; border-radius: 7px; }
.example-strip { display: flex; gap: 7px; padding: 13px 16px; }
.example-strip span { flex: 1; height: 30px; border-radius: 6px; background: #f1eee9; }
.example-meta { display: flex; align-items: center; gap: 10px; padding: 14px 4px 0; }
.example-meta > div { flex: 1; }
.example-meta-name { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; color: var(--ink-dark); line-height: 1.1; }
.example-meta-cat { font-size: 12.5px; color: var(--faint); margin-top: 2px; }
.example-view { font-weight: 700; font-size: 13.5px; color: var(--ruby); white-space: nowrap; }

.empty-state { margin-top: 38px; padding: clamp(28px, 5vw, 44px); text-align: center; }
.empty-state h3 { font-family: var(--serif); font-weight: 800; font-size: 1.6rem; margin: 6px 0 0; color: var(--ink-dark); }
.empty-state p { font-size: 1.05rem; line-height: 1.6; color: var(--muted); max-width: 560px; margin: 12px auto 0; }

/* ===================== trust band ===================== */
.trust-band { padding: clamp(36px, 5vw, 56px) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.trust-item {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--cream-light); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px;
}
.trust-item svg { flex-shrink: 0; margin-top: 2px; }
.trust-title { font-weight: 700; font-size: 1.05rem; color: var(--ink-dark); }
.trust-sub { font-size: 0.95rem; color: var(--muted-2); margin-top: 3px; }

/* ===================== how it works ===================== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.steps-grid { margin-top: 42px; }
.step-card { padding: 30px 26px; }
.step-head { display: flex; align-items: center; gap: 14px; }
.step-icon {
  width: 48px; height: 48px; border-radius: 14px; background: rgba(155, 28, 49, 0.1);
  display: flex; align-items: center; justify-content: center;
}
.step-label { font-family: var(--serif); font-weight: 800; font-size: 15px; color: var(--ruby); }
.step-card h3 { font-family: var(--serif); font-weight: 700; font-size: 1.45rem; margin: 18px 0 0; color: var(--ink-dark); }
.step-card p { font-size: 1.02rem; line-height: 1.55; color: var(--muted); margin: 10px 0 0; }

/* ===================== pricing ===================== */
.pricing-card {
  max-width: 560px; margin: 38px auto 0; background: var(--cream-light);
  border: 1.5px solid rgba(155, 28, 49, 0.18); border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 28px 56px -34px rgba(42, 37, 33, 0.55); position: relative;
}
.price-line { display: flex; align-items: flex-end; gap: 6px; justify-content: center; }
.price-big { font-family: var(--serif); font-weight: 800; font-size: clamp(3rem, 8vw, 4.4rem); line-height: 0.9; color: var(--ruby); }
.price-big.small { font-size: 2.2rem; line-height: 1; }
.price-per { font-size: 1.2rem; font-weight: 600; color: var(--muted-2); margin-bottom: 10px; }
.price-sub { text-align: center; font-size: 1.05rem; color: var(--muted-2); margin: 12px 0 0; }
.rule { height: 1px; background: rgba(42, 37, 33, 0.1); margin: 28px 0; }
.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.check-item { display: flex; gap: 13px; align-items: flex-start; font-size: 1.04rem; line-height: 1.45; color: #3D3730; }
.check-dot {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(155, 28, 49, 0.1);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.price-note { text-align: center; font-size: 13px; color: var(--faint); margin: 16px 0 0; }

/* ===================== about dave ===================== */
.about-inner {
  max-width: 1000px; display: flex; flex-wrap: wrap; align-items: center;
  gap: clamp(32px, 5vw, 56px);
}
.about-portrait { flex: 0 1 240px; min-width: 200px; display: flex; justify-content: center; }
.portrait-wrap { position: relative; }
.dave-avatar { max-width: 100%; border-radius: 24px; background: #F2D9C6; box-shadow: 0 20px 40px -24px rgba(42, 37, 33, 0.5); }
.hand-badge {
  position: absolute; bottom: -14px; right: -10px;
  background: var(--ruby); color: var(--cream-light);
  font-family: var(--hand); font-size: 24px; padding: 6px 16px; border-radius: 999px;
  transform: rotate(-4deg); box-shadow: 0 8px 18px -8px rgba(42, 37, 33, 0.6);
}
.about-copy { flex: 1 1 380px; min-width: 300px; }
.about-copy h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin: 0 0 18px; }
.about-copy p { font-size: 1.1rem; line-height: 1.65; color: #46403A; margin: 0 0 16px; }

/* ===================== CTA band ===================== */
.cta-band { background: var(--ruby); color: var(--cream-light); position: relative; overflow: hidden; }
.cta-pod { position: absolute; right: -50px; top: -26px; opacity: 0.12; pointer-events: none; }
.cta-inner { max-width: 760px; margin: 0 auto; padding: clamp(52px, 7vw, 84px) 24px; text-align: center; position: relative; }
.cta-inner h2 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.06; letter-spacing: -0.015em;
  margin: 0; color: var(--cream-light);
}
.cta-inner p { font-size: 1.15rem; line-height: 1.55; color: var(--rose-pale); margin: 18px auto 0; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 32px; }
.cta-alt {
  font-weight: 600; font-size: 1rem; color: var(--rose-pale); text-decoration: none;
  border-bottom: 1.5px solid rgba(251, 246, 236, 0.4);
}
.cta-alt:hover { color: var(--cream-light); border-color: var(--cream-light); }

/* ===================== footer ===================== */
.site-footer { background: var(--ink); color: #C9BCA8; }
.footer-cols { display: flex; flex-wrap: wrap; gap: 32px 48px; padding-top: clamp(40px, 5vw, 60px); padding-bottom: clamp(40px, 5vw, 60px); }
.footer-brand { flex: 1 1 260px; min-width: 240px; }
.footer-brand .brand { margin-right: 0; }
.footer-brand-word { color: var(--cream); font-size: 24px; }
.footer-brand p { font-size: 13.5px; line-height: 1.55; margin: 16px 0 0; max-width: 300px; color: #A89C8B; }
.footer-email { display: inline-block; margin-top: 14px; font-size: 14.5px; font-weight: 600; color: var(--rose); text-decoration: none; }
.footer-email:hover { color: var(--cream); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-heading { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #7E7363; margin-bottom: 14px; }
.footer-links a { display: block; color: #C9BCA8; text-decoration: none; font-size: 14.5px; margin-bottom: 11px; }
.footer-links a:hover { color: var(--cream); }
.footer-legal { border-top: 1px solid rgba(244, 236, 221, 0.1); }
.footer-legal-inner {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px; font-size: 12.5px; color: #867A69;
}
.footer-disclaimer { max-width: 520px; }

/* slim footer (claim flow) */
.slim-footer {
  border-top: 1px solid rgba(42, 37, 33, 0.1); margin-top: 30px;
  padding: 18px 22px; display: flex; flex-wrap: wrap; gap: 6px 16px;
  align-items: center; justify-content: center; text-align: center;
  font-size: 12.5px; color: #867A69;
}
.slim-footer-brand { font-family: var(--serif); font-weight: 800; color: var(--faint); }
.slim-footer a { color: #9B7B82; text-decoration: none; font-weight: 600; }

/* ===================== live band (personalized) ===================== */
.live-band {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 12px;
  background: rgba(63, 125, 67, 0.09); border: 1px solid rgba(63, 125, 67, 0.3);
  color: #2E6B33; border-radius: 14px; padding: 14px 20px; font-size: 1rem;
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(63, 125, 67, 0.2); flex-shrink: 0;
}
.live-link { font-weight: 700; color: #2E6B33; }
.claimed-band { margin: 26px auto 0; max-width: 640px; }

/* ===================== proof widgets ===================== */
.widget-stack { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 46px); margin-top: clamp(34px, 4vw, 48px); }
.widget-card {
  background: var(--cream-light); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 16px 36px -26px rgba(42, 37, 33, 0.5);
}
.widget-card.widget-flush { padding-left: 0; padding-right: 0; overflow: hidden; }
.widget-title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.12; letter-spacing: -0.01em;
  margin: 0; color: var(--ink-dark);
}
.widget-title.inset, .widget-sub.inset, .widget-foot.inset { margin-left: clamp(26px, 4vw, 38px); margin-right: clamp(26px, 4vw, 38px); }
.widget-sub { font-size: 1rem; color: var(--muted-warm); margin: 8px 0 0; }
.widget-card > p { font-size: 1.02rem; line-height: 1.55; color: var(--muted); }
.widget-foot {
  display: flex; align-items: center; gap: 9px; margin-top: 22px; padding-top: 16px;
  border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ruby);
}
.widget-foot svg { flex-shrink: 0; }

/* reviews marquee */
.marquee {
  margin-top: 24px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track { display: flex; gap: 18px; width: max-content; padding: 4px 0; animation: rp-marquee 48s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.review-card {
  flex: 0 0 318px; background: var(--cream-card); border: 1px solid var(--line);
  border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 11px;
  box-shadow: 0 8px 20px -16px rgba(42, 37, 33, 0.5);
}
.star-row { display: flex; gap: 2px; }
.review-card blockquote { margin: 0; font-size: 0.98rem; line-height: 1.5; color: #3D3730; flex: 1; }
.review-author { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 13.5px; color: var(--ink-dark); }
.review-initial {
  width: 30px; height: 30px; border-radius: 50%; background: rgba(155, 28, 49, 0.1);
  color: var(--ruby); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}

/* rating stat */
.stat-row { display: flex; flex-wrap: wrap; align-items: center; gap: 28px 44px; margin-top: 22px; }
.stat-big { display: flex; align-items: baseline; gap: 6px; }
.stat-number { font-family: var(--serif); font-weight: 800; font-size: clamp(3.4rem, 9vw, 5.2rem); line-height: 0.9; color: var(--ruby); }
.stat-star { font-size: clamp(2rem, 5vw, 3rem); color: var(--gold); line-height: 1; }
.stat-detail { flex: 1 1 280px; min-width: 240px; }
.stat-count { font-size: 1.05rem; font-weight: 700; color: var(--ink-dark); margin-bottom: 10px; }
.stars-scale { position: relative; display: inline-block; font-size: 30px; line-height: 1; letter-spacing: 4px; }
.stars-back { color: rgba(42, 37, 33, 0.15); }
.stars-fill { position: absolute; inset: 0; overflow: hidden; white-space: nowrap; color: var(--gold); }

/* photo showcase */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-top: 22px; }
.photo-tile { position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; }
.photo-tile figcaption {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(42, 37, 33, 0.72); color: var(--cream);
  font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 5px;
}

/* found on a phone */
.phone-widget { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 5vw, 52px); }
.phone-mock { flex: 0 0 auto; margin: 0 auto; width: 228px; background: var(--ink); border-radius: 36px; padding: 9px; box-shadow: 0 26px 50px -24px rgba(42, 37, 33, 0.6); }
.phone-screen { position: relative; border-radius: 28px; overflow: hidden; background: #1c1916; }
.phone-notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 64px; height: 6px; border-radius: 6px; background: #000; opacity: 0.6; z-index: 2; }
.phone-top { background: var(--ink); color: var(--cream); padding: 18px 16px 14px; }
.phone-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 11px; }
.phone-headline { font-family: var(--serif); font-weight: 800; font-size: 19px; line-height: 1.05; margin-top: 14px; }
.phone-blurb { font-size: 9.5px; color: #B6A892; margin-top: 8px; line-height: 1.4; }
.phone-bottom { background: #211d19; padding: 14px 16px 18px; }
.phone-label { font-size: 8.5px; letter-spacing: 0.14em; color: #8A7E6F; margin-bottom: 8px; }
.phone-call {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ruby); color: var(--cream-light);
  font-weight: 800; font-size: 14px; padding: 13px; border-radius: 12px;
}
.pulsing { animation: rp-pulse 2.2s ease-out infinite; }
.phone-number { text-align: center; font-size: 11px; color: #C9BCA8; margin-top: 9px; }
.phone-copy { flex: 1 1 300px; min-width: 260px; }
.phone-copy p { font-size: 1.08rem; line-height: 1.6; color: var(--muted); margin: 16px 0 0; }
.phone-copy .hero-trust { margin-top: 18px; }
.phone-copy .widget-foot { margin-top: 18px; }

/* hours + longevity pair */
.widget-pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(20px, 3vw, 28px); }
.widget-pair .widget-card { height: 100%; }
.open-chip {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 20px;
  background: rgba(63, 125, 67, 0.1); border: 1px solid rgba(63, 125, 67, 0.3);
  color: #2E6B33; font-weight: 700; font-size: 14.5px; padding: 10px 16px; border-radius: 999px;
}
.open-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(63, 125, 67, 0.2); }
.hours-list { list-style: none; margin: 16px 0 0; padding: 0; font-size: 0.95rem; color: var(--muted); display: flex; flex-direction: column; gap: 5px; }
.longevity-row { display: flex; align-items: center; gap: 16px; margin-top: 20px; font-size: 1.02rem; line-height: 1.5; color: var(--muted); }
.longevity-row strong { color: var(--ink-dark); }
.years-ring {
  flex-shrink: 0; width: 74px; height: 74px; border-radius: 50%;
  border: 2px solid rgba(155, 28, 49, 0.3); background: rgba(155, 28, 49, 0.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.years-number { font-family: var(--serif); font-weight: 800; font-size: 26px; line-height: 0.9; color: var(--ruby); }
.years-label { font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ruby); }

/* service area chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.area-chip {
  font-size: 13px; font-weight: 600; color: var(--muted-warm);
  background: rgba(42, 37, 33, 0.05); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
}

/* ===================== claim flow ===================== */
.claim-main { max-width: 720px; margin: 0 auto; padding: clamp(34px, 6vw, 56px) 22px 40px; }
.claim-main.narrow { max-width: 620px; }
.centered-copy { text-align: center; }
.claim-title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2rem, 5.2vw, 3.1rem); line-height: 1.04; letter-spacing: -0.02em;
  margin: 8px 0 0; color: var(--ink-dark); text-wrap: balance;
}
.claim-sub { font-size: clamp(1.05rem, 1.7vw, 1.2rem); line-height: 1.6; color: var(--muted); max-width: 540px; margin: 18px auto 0; }
.claim-sub strong { color: var(--ink); }
.claim-sub.small { font-size: 1rem; color: var(--muted-warm); margin-top: 14px; max-width: 420px; }
.claim-sub a, .claim-reassure a, .search-empty a {
  color: var(--ruby); font-weight: 600; text-decoration: none;
  border-bottom: 1.5px solid rgba(155, 28, 49, 0.35);
}

/* search state */
.search-wrap { margin-top: 32px; position: relative; }
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream-light); border: 1.5px solid var(--line-strong);
  border-radius: 14px; padding: 4px 4px 4px 16px;
  box-shadow: 0 14px 30px -24px rgba(42, 37, 33, 0.5);
}
.search-box:focus-within { border-color: rgba(155, 28, 49, 0.5); }
.search-box input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 1.08rem; color: var(--ink); padding: 13px 0;
}
.search-hint { margin-top: 14px; font-size: 14px; color: #8A7E6F; text-align: center; }
.search-results {
  margin-top: 14px; background: var(--cream-light); border: 1px solid rgba(42, 37, 33, 0.1);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 16px 36px -26px rgba(42, 37, 33, 0.5);
}
.search-result {
  display: flex; align-items: center; gap: 13px; padding: 14px 16px;
  text-decoration: none; border-bottom: 1px solid rgba(42, 37, 33, 0.07);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: rgba(155, 28, 49, 0.05); }
.result-initials {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #fff;
}
.result-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.result-name { font-weight: 700; font-size: 1rem; color: var(--ink-dark); }
.result-cat { font-size: 12.5px; color: var(--faint); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.result-go { font-weight: 700; font-size: 13px; color: var(--ruby); white-space: nowrap; }
.search-empty { margin-top: 16px; padding: 22px; text-align: center; }
.search-empty-title { font-weight: 700; font-size: 1.08rem; color: var(--ink-dark); }
.search-empty p { font-size: 1rem; line-height: 1.55; color: var(--muted); margin: 10px 0 14px; }
.privacy-note { text-align: center; font-size: 13px; color: #9B8E7C; margin: 24px auto 0; max-width: 420px; }
.privacy-note a { color: var(--ruby); font-weight: 600; }

/* known-business state */
.claim-preview { width: 100%; max-width: 430px; margin: 34px auto 0; }
.preview-frame {
  background: var(--cream-light); border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(42, 37, 33, 0.5);
  border: 1px solid rgba(42, 37, 33, 0.18);
}
.preview-frame iframe { width: 100%; height: 420px; border: none; display: block; background: #fff; }
.preview-placeholder { padding: 40px 28px 46px; text-align: center; }
.preview-placeholder p { font-size: 1.02rem; line-height: 1.6; color: var(--muted); margin: 10px auto 0; max-width: 320px; }
.preview-caption { text-align: center; font-size: 22px; margin-top: 14px; }
.claim-card { padding: clamp(24px, 4vw, 34px); margin-top: 20px; border-radius: 18px; }
.claim-preview + .claim-card { margin-top: 34px; }
.claim-card h2 { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.01em; margin: 0 0 18px; color: var(--ink-dark); }
.card-sub { font-size: 1rem; color: var(--muted-warm); margin: -12px 0 22px; }
.claim-card .check-list { gap: 14px; }
.claim-price-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(42, 37, 33, 0.1);
}
.claim-price-note { font-size: 14.5px; color: var(--muted-3); margin-left: auto; }
.next-steps { display: flex; flex-direction: column; gap: 18px; }
.next-step { display: flex; gap: 15px; align-items: flex-start; }
.next-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(155, 28, 49, 0.1);
  display: flex; align-items: center; justify-content: center;
}
.next-title { font-weight: 700; font-size: 1.08rem; color: var(--ink-dark); }
.next-sub { font-size: 1rem; line-height: 1.5; color: var(--muted); margin-top: 3px; }
.claim-cta { text-align: center; margin-top: 30px; }
.secure-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; font-size: 13.5px; color: var(--muted-3);
}
.claim-reassure { text-align: center; margin-top: 34px; padding-top: 30px; border-top: 1px solid rgba(42, 37, 33, 0.1); }
.centered-trust { justify-content: center; font-size: 1.02rem; color: #46403A; margin-top: 0; }
.claim-reassure p { font-size: 1.02rem; line-height: 1.55; color: var(--muted-warm); margin: 12px auto 0; max-width: 440px; }

/* mock checkout */
.checkout-card { margin-top: 30px; }
.mock-banner {
  background: rgba(224, 165, 46, 0.14); border: 1px solid rgba(224, 165, 46, 0.5);
  color: #7a5c14; border-radius: 10px; padding: 12px 16px;
  font-size: 14px; line-height: 1.5; margin-bottom: 22px;
}
.checkout-line { display: flex; justify-content: space-between; gap: 16px; font-size: 1.02rem; color: #3D3730; padding: 6px 0; }
.checkout-line.total { font-weight: 800; color: var(--ink-dark); }
.checkout-amount { white-space: nowrap; font-weight: 700; }
.checkout-card .rule { margin: 14px 0; }
.checkout-card form { margin-top: 24px; }
.checkout-card .btn-block { margin-top: 0; }

/* success */
.success-main { text-align: center; }
.success-pop {
  width: 78px; height: 78px; border-radius: 50%; background: rgba(155, 28, 49, 0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
  animation: rp-pop 0.5s ease-out both;
}
.left-align { text-align: left; margin-top: 28px; }
.success-visit { margin-top: 22px; }
.notfound-pod { display: flex; justify-content: center; margin-bottom: 10px; opacity: 0.9; }

/* ===================== responsive ===================== */
@media (max-width: 720px) {
  .main-nav { display: none; }
  .hand-arrow { top: -40px; right: 0; }
  .footer-legal-inner { flex-direction: column; }
  .stars-scale { font-size: 24px; }
}
