/* ─── TOKENS ─────────────────────────────── */
:root {
  --cream:      #FDE8F4;   /* pink-tinted warm surface         */
  --light:      #FFF2FB;   /* near-white blush                 */
  --dark:       #16000F;   /* near-black, deep magenta base    */
  --mid:        #2E0022;   /* dark magenta surface             */
  --rust:       #FF1D96;   /* primary brand pink               */
  --rust-dk:    #D4007A;   /* deep pink for hovers             */
  --sage:       #6B0050;   /* rich deep magenta (was green)    */
  --sage-lt:    #A0007A;   /* mid magenta accent               */
  --warm-gray:  #C080AA;   /* muted pink-gray for body text    */
  --border:     #F0BFDF;   /* soft pink border                 */
  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── SKIP LINK ───────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--rust); color: var(--cream);
  padding: .6rem 1.2rem; border-radius: 0 0 4px 4px;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ─── FOCUS RING ──────────────────────────── */
:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── REDUCED MOTION ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--ff-body);
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  transition: background .35s, backdrop-filter .35s, box-shadow .35s;
}
#nav.solid {
  background: rgba(22,0,15,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(255,29,150,.18);
}
.nav-logo {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.75rem; font-weight: 400;
  color: var(--cream); letter-spacing: .04em;
  text-decoration: none; text-transform: uppercase;
}
.nav-logo span { color: var(--rust); }
.nav-links { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(253,232,244,.6); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
@keyframes navPillGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,29,150,.65), 0 4px 14px rgba(255,29,150,.25); }
  55%       { box-shadow: 0 0 0 7px rgba(255,29,150,0),  0 4px 22px rgba(255,29,150,.45); }
}
.nav-pill {
  background: var(--rust) !important;
  color: var(--cream) !important;
  padding: .55rem 1.3rem; border-radius: 100px;
  position: relative; overflow: visible;
  animation: navPillGlow 2.4s ease-out infinite;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .25s, background .2s;
}
.nav-pill:hover {
  background: var(--rust-dk) !important;
  animation: none;
  box-shadow: 0 6px 28px rgba(255,29,150,.7);
  transform: scale(1.08) rotate(3deg);
}
.nav-pill:active { transform: scale(0.96); }
.nav-phone-link {
  font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  color: var(--cream); text-decoration: none;
  display: flex; align-items: center; gap: .4rem;
  opacity: .8; transition: opacity .2s, color .2s;
  white-space: nowrap;
}
.nav-phone-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-phone-link:hover { opacity: 1; color: var(--rust); }
.nav-sep {
  width: 1px; height: 16px; align-self: center;
  background: rgba(253,232,244,.18);
  display: inline-block;
}

/* ─── HERO ────────────────────────────────── */
#hero {
  min-height: 100dvh;
  display: grid; grid-template-columns: 55% 45%;
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
.hero-l {
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 4rem 6rem 4rem;
  position: relative; z-index: 2;
}
.hero-tag {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: .6rem;
  opacity: 0; animation: up .7s .1s forwards;
}
.hero-tag::before {
  content: ''; display: block; width: 20px; height: 1.5px; background: var(--rust);
}
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 7.5vw, 8rem);
  font-weight: 900; line-height: .92;
  letter-spacing: -.04em; color: var(--cream);
  margin-bottom: 2.25rem;
  opacity: 0; animation: up .9s .3s forwards;
}
.hero-h1 em { font-style: italic; color: var(--rust); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: rgba(253,232,244,.55);
  max-width: 38ch; margin-bottom: 3rem;
  opacity: 0; animation: up .8s .55s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: up .8s .75s forwards;
}
.btn {
  display: inline-block; text-decoration: none;
  font-family: var(--ff-body); font-weight: 600;
  font-size: .8rem; letter-spacing: .09em; text-transform: uppercase;
  border-radius: 3px; transition: background .2s, transform .2s;
}
.btn-solid {
  background: var(--rust); color: var(--cream);
  padding: 1rem 2.4rem;
  box-shadow: 0 4px 18px rgba(255,29,150,.4), 0 1px 4px rgba(0,0,0,.25);
}
.btn-solid:hover {
  background: var(--rust-dk); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,29,150,.55), 0 2px 8px rgba(0,0,0,.3);
}
.btn-solid:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(255,29,150,.3); }
.btn-ghost {
  color: rgba(253,232,244,.6); padding: .9rem 0;
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .8rem;
}
.btn-ghost svg { transition: transform .2s; }
.btn-ghost:hover { color: var(--cream); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* hero right panel */
.hero-r {
  position: relative; overflow: hidden;
  clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.hero-r-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  opacity: 1;
}
.hero-r-bg {
  display: block;
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(22,0,15,.55) 0%, rgba(22,0,15,.2) 40%, rgba(22,0,15,.1) 100%);
}
.hero-r-hatch { display: none; }
.hero-stats {
  position: absolute; bottom: 5rem; right: 3rem; left: 12%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  opacity: 0; animation: up .9s 1.1s forwards;
}
.hstat {
  background: rgba(255,29,150,.12);
  border: 1px solid rgba(255,29,150,.25);
  backdrop-filter: blur(10px); border-radius: 6px;
  padding: 1.5rem 1.25rem; text-align: center;
}
.hstat-n {
  font-family: var(--ff-display);
  font-size: 2.4rem; font-weight: 900;
  color: var(--cream); line-height: 1;
}
.hstat-l {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(253,232,244,.55); margin-top: .35rem;
}
.hero-badge {
  position: absolute; top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--rust);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 40px rgba(255,29,150,.55);
  opacity: 0; animation: fadeScale .7s 1.4s forwards;
  z-index: 10;
}
.hero-badge-main {
  font-family: var(--ff-display); font-size: 1.6rem;
  font-weight: 900; color: var(--cream); line-height: 1;
}
.hero-badge-sub {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(247,243,236,.75); margin-top: .15rem;
}

/* scroll cue */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 4rem;
  display: flex; align-items: center; gap: .75rem;
  opacity: 0; animation: up .6s 1.8s forwards;
}
.hero-scroll-line {
  width: 1px; height: 40px; background: rgba(255,29,150,.4);
  animation: growLine 1.2s 2s infinite alternate ease-in-out;
}
.hero-scroll-text {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(253,232,244,.35); writing-mode: vertical-rl;
}
@keyframes growLine {
  from { transform: scaleY(.5); opacity: .2; }
  to   { transform: scaleY(1); opacity: .6; }
}

/* ─── TICKER ──────────────────────────────── */
.ticker {
  background: var(--rust); padding: .85rem 0;
  overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); padding: 0 2rem;
}
.ticker-sep { color: rgba(253,232,244,.45); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ─── SECTION BASE ────────────────────────── */
.section { padding: 7rem 4rem; }
.eyebrow {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .65rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 22px; height: 1.5px; background: var(--rust);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -.025em; color: var(--dark);
}
.section-title.light { color: var(--cream); }

/* ─── HOW IT WORKS ───────────────────────── */
.how-section { background: var(--light); }
.how-head { margin-bottom: 4rem; }
.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0; align-items: start;
  margin-bottom: 4rem;
}
.how-connector {
  width: 60px; align-self: center; margin-top: -2rem;
  height: 1px; background: linear-gradient(90deg, var(--rust), rgba(255,29,150,.2));
  position: relative;
}
.how-connector::after {
  content: '';
  position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rust);
}
.how-step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.how-step:hover {
  box-shadow: 0 12px 40px rgba(255,29,150,.12);
  transform: translateY(-4px);
}
.how-num {
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: var(--ff-display); font-size: 4.5rem;
  font-weight: 900; color: rgba(255,29,150,.06);
  line-height: 1; user-select: none;
}
.how-icon {
  width: 52px; height: 52px;
  background: var(--dark); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(22,0,15,.2);
}
.how-icon svg { width: 22px; height: 22px; stroke: var(--rust); }
.how-title {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 700;
  color: var(--dark); margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.how-desc {
  font-size: .88rem; line-height: 1.7;
  color: #7A3A65;
}
.how-cta {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap; justify-content: center;
}
.how-phone-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .88rem; font-weight: 500;
  color: var(--dark); text-decoration: none;
  transition: color .2s;
}
.how-phone-link svg { width: 16px; height: 16px; stroke: var(--rust); }
.how-phone-link:hover { color: var(--rust); }
.faq-section .how-phone-link { color: rgba(253,232,244,.7); }
.faq-section .how-phone-link:hover { color: var(--rust); }

/* ─── MOBILE STICKY BAR ───────────────────── */
/* ─── MOBILE CALL BADGE ───────────────────────── */
.mob-call-badge {
  position: fixed; bottom: 2rem; right: 1.25rem;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--rust);
  display: none;
  flex-direction: column;
  align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(255,29,150,.6);
  z-index: 499;
  transition: opacity .5s ease, transform .55s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.mob-call-badge::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,192,223,.5);
  animation: spinRing 10s linear infinite;
  pointer-events: none;
}
.mob-call-badge.visible:hover {
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 12px 52px rgba(255,29,150,.8);
}
.mob-call-badge.visible:hover::before { animation-duration: 3s; }
.mob-call-badge.visible:active { transform: scale(0.96); }
.mob-call-icon { width: 17px; height: 17px; stroke: var(--cream); margin-bottom: .1rem; }
.mob-call-main {
  font-family: var(--ff-display); font-size: 1.1rem;
  font-weight: 900; color: var(--cream); line-height: 1;
}
.mob-call-sub {
  font-size: .48rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  color: rgba(247,243,236,.78); margin-top: .1rem;
}

@media (max-width: 960px) {
  .mob-call-badge {
    display: flex;
    opacity: 0;
    transform: scale(0.5) rotate(20deg);
    pointer-events: none;
  }
  .mob-call-badge.visible {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    pointer-events: auto;
  }
  /* how it works responsive */
  .how-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .how-connector { display: none; }
}

/* ─── ABOUT ───────────────────────────────── */
#about {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  padding: 7rem 4rem;
}
.about-vis { position: relative; }
.about-frame {
  width: 100%; aspect-ratio: 16/10;
  background: #1a1a1a;
  border-radius: 6px; position: relative; overflow: hidden;
}
.about-frame-hatch {
  position: absolute; inset: 0; opacity: .05; z-index: 1;
  background-image: repeating-linear-gradient(
    -45deg, var(--cream) 0, var(--cream) 1px, transparent 0, transparent 28px
  );
}
.about-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.about-frame-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .75rem;
  color: rgba(255,192,232,.45);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
}
.about-frame-placeholder svg {
  stroke: currentColor; stroke-width: 1; fill: none;
}
.about-callout {
  position: absolute; bottom: -2.25rem; right: -2.25rem;
  background: var(--rust); padding: 1.75rem 2rem;
  border-radius: 6px; color: var(--cream);
  box-shadow: 0 16px 48px rgba(255,29,150,.35);
}
.about-callout-n {
  font-family: var(--ff-display);
  font-size: 2.8rem; font-weight: 900; line-height: 1;
}
.about-callout-l {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: .8; margin-top: .2rem;
}
.about-copy { padding-right: 1rem; }
.about-copy .section-title { margin: .75rem 0 1.5rem; }
.about-p {
  font-size: 1rem; line-height: 1.8;
  color: #7A3A65; margin-bottom: 1.25rem;
}
.about-checks {
  display: flex; flex-direction: column; gap: .75rem;
  margin: 2.25rem 0;
}
.about-check {
  display: flex; align-items: center; gap: 1rem;
  font-size: .9rem; font-weight: 500; color: var(--dark);
}
.check-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--dark); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: .75rem; font-weight: 700;
}

/* ─── SERVICES ────────────────────────────── */
#services { background: var(--dark); }
#services .eyebrow { color: var(--rust); }
#services .section-title { color: var(--cream); }
.services-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem;
  gap: 2rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,29,150,.1);
  border: 1px solid rgba(255,29,150,.12);
  border-radius: 10px; overflow: hidden;
}
.svc {
  background: var(--dark); padding: 2rem;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.svc:hover { background: #1a0013; }
.svc-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--rust);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}
.svc:hover .svc-bar { transform: scaleX(1); }
.svc-num {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--ff-display); font-size: 5rem; font-weight: 900;
  color: rgba(255,29,150,.07); line-height: 1;
  user-select: none; pointer-events: none;
}
.svc-icon {
  width: 46px; height: 46px; border-radius: 8px;
  background: rgba(255,29,150,.1);
  border: 1px solid rgba(255,29,150,.25);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s;
}
.svc:hover .svc-icon { background: var(--rust); border-color: var(--rust); }
.svc-icon svg {
  width: 20px; height: 20px; stroke: var(--rust);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .3s;
}
.svc:hover .svc-icon svg { stroke: var(--cream); }
.svc-name {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -.01em; color: var(--cream);
  margin-bottom: .5rem;
}
.svc-desc {
  font-size: .855rem; line-height: 1.65;
  color: rgba(253,232,244,.4);
}

/* ─── WHY ─────────────────────────────────── */
#why { background: var(--dark); }
#why .eyebrow { color: var(--rust); }
.why-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 5rem;
}
.why-intro {
  font-size: .975rem; line-height: 1.75;
  color: rgba(253,232,244,.45);
}
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(255,29,150,.08);
  border: 1px solid rgba(255,29,150,.15);
  border-radius: 6px; overflow: hidden;
}
.feat {
  padding: 2.5rem 2rem;
  background: transparent;
  border-right: 1px solid rgba(255,29,150,.1);
  transition: background .3s;
}
.feat:last-child { border-right: none; }
.feat:hover { background: rgba(255,29,150,.08); }
.feat-ico {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,29,150,.3);
  border-radius: 5px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.feat-ico svg {
  width: 19px; height: 19px; stroke: var(--cream);
  fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.feat-title {
  font-family: var(--ff-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--cream); margin-bottom: .65rem;
}
.feat-text {
  font-size: .835rem; line-height: 1.65;
  color: rgba(253,232,244,.45);
}

/* ─── TESTIMONIALS ────────────────────────── */
#testimonials { background: var(--cream); }
.test-head { text-align: center; margin-bottom: 4rem; }
.test-head .eyebrow { justify-content: center; }
.test-head .eyebrow::before { display: none; }
.test-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tcard {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
  transition: box-shadow .3s, transform .3s;
}
.tcard:hover {
  box-shadow: 0 12px 40px rgba(255,29,150,.12);
  transform: translateY(-4px);
}
.tcard-stars { color: var(--rust); font-size: .95rem; letter-spacing: 2px; margin-bottom: .85rem; }
.tcard-q {
  font-family: var(--ff-display); font-style: italic;
  font-size: .975rem; line-height: 1.7; color: var(--dark);
  margin-bottom: 1.5rem;
}
.tcard-author { display: flex; align-items: center; gap: .75rem; }
.tcard-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700;
  color: var(--cream); font-size: .95rem;
}
.tcard-name { font-size: .85rem; font-weight: 600; color: var(--dark); }
.tcard-type { font-size: .72rem; color: var(--warm-gray); margin-top: .15rem; }

/* ─── CONTACT ─────────────────────────────── */
#contact {
  background: var(--light);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.contact-info .section-title { margin: .75rem 0 1.5rem; }
.contact-p {
  font-size: 1rem; line-height: 1.75;
  color: #7A3A65; margin-bottom: 3rem;
}
.c-details { display: flex; flex-direction: column; gap: 1.5rem; }
.c-detail { display: flex; align-items: flex-start; gap: 1rem; }
.c-ico {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--rust); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.c-ico svg {
  width: 17px; height: 17px; stroke: var(--cream);
  fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.c-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--warm-gray); margin-bottom: .2rem;
}
.c-val {
  font-size: .935rem; font-weight: 500; color: var(--dark);
}

/* form */
.form-wrap {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 10px; padding: 3rem;
}
.form-title {
  font-family: var(--ff-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--dark); margin-bottom: 2rem;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-grp { margin-bottom: 1.2rem; }
.f-lbl {
  display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--warm-gray); margin-bottom: .45rem;
}
.f-inp, .f-sel, .f-ta {
  width: 100%; padding: .85rem 1rem;
  background: var(--light); border: 1.5px solid var(--border);
  border-radius: 4px; font-family: var(--ff-body);
  font-size: .9rem; color: var(--dark);
  transition: border-color .2s; outline: none; appearance: none;
}
.f-inp:focus, .f-sel:focus, .f-ta:focus { border-color: var(--rust); }
.f-ta { resize: vertical; min-height: 96px; }
.f-btn {
  width: 100%; padding: 1rem; background: var(--rust);
  color: var(--cream); font-family: var(--ff-body);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s; margin-top: .5rem;
  box-shadow: 0 4px 18px rgba(255,29,150,.4), 0 1px 4px rgba(0,0,0,.2);
}
.f-btn:hover { background: var(--rust-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,29,150,.55); }
.f-btn:active { transform: translateY(0); box-shadow: 0 2px 10px rgba(255,29,150,.3); }

/* ─── FILE UPLOAD ─────────────────────────── */
.upload-zone {
  position: relative;
  border: 2px dashed var(--border);
  border-radius: 6px;
  background: var(--light);
  cursor: pointer;
  transition: border-color .25s, background .25s;
  min-height: 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.upload-zone:hover,
.upload-zone:focus-visible,
.upload-zone.drag-over {
  border-color: var(--rust);
  background: rgba(255,29,150,.04);
  outline: none;
}
.upload-zone.drag-over { border-style: solid; }
.upload-input {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.upload-idle {
  display: flex; flex-direction: column;
  align-items: center; gap: .35rem;
  padding: 1.75rem 1.5rem; text-align: center;
  pointer-events: none;
  width: 100%;
}
.upload-icon {
  width: 40px; height: 40px;
  background: rgba(255,29,150,.1);
  border: 1px solid rgba(255,29,150,.25);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
}
.upload-icon svg { width: 20px; height: 20px; stroke: var(--rust); }
.upload-prompt {
  font-size: .88rem; font-weight: 600; color: var(--dark);
}
.upload-sub {
  font-size: .78rem; color: var(--warm-gray); line-height: 1.5;
}
.upload-meta {
  font-size: .66rem; color: var(--warm-gray); opacity: .75; letter-spacing: .03em;
  text-align: center; width: 100%;
}
.upload-browse {
  color: var(--rust); font-weight: 600; text-decoration: underline;
  text-underline-offset: 2px;
}
.upload-note {
  font-size: .7rem; color: var(--warm-gray);
  margin-top: .45rem; font-style: italic;
}
/* Preview grid */
.upload-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: .6rem;
  padding: .75rem;
  width: 100%;
}
.upload-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 5px;
  overflow: hidden;
  background: var(--border);
  border: 1px solid rgba(255,29,150,.2);
}
.upload-thumb img,
.upload-thumb video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.upload-thumb-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(22,0,15,.55);
}
.upload-thumb-label svg { width: 22px; height: 22px; stroke: var(--cream); }
.upload-thumb-remove {
  position: absolute; top: 3px; right: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--rust); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 11px; font-weight: 700;
  line-height: 1; transition: background .2s;
  z-index: 2;
}
.upload-thumb-remove:hover { background: var(--rust-dk); }
.upload-add-more {
  aspect-ratio: 1; border-radius: 5px;
  border: 2px dashed var(--border);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-gray); font-size: 1.4rem; font-weight: 300;
  transition: border-color .2s, color .2s;
  position: relative;
}
.upload-add-more input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-add-more:hover { border-color: var(--rust); color: var(--rust); }
.upload-count {
  font-size: .68rem; color: var(--warm-gray);
  text-align: right; margin-top: .3rem;
  padding: 0 .75rem .5rem;
}

/* ─── FOOTER ──────────────────────────────── */
footer {
  background: var(--dark);
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; padding: 5rem 4rem 3rem;
}
.foot-brand {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--cream); letter-spacing: .04em; margin-bottom: .25rem;
  text-transform: uppercase;
}
.foot-brand span { color: var(--rust); }
.foot-tag {
  font-size: .75rem; letter-spacing: .08em;
  color: rgba(255,29,150,.5); margin-bottom: 1.25rem;
  font-style: italic; font-family: var(--ff-display);
}
.foot-blurb {
  font-size: .85rem; line-height: 1.7;
  color: rgba(253,232,244,.35); max-width: 30ch;
}
.foot-col-title {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,29,150,.5); margin-bottom: 1.5rem;
}
.foot-links { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.foot-links a {
  font-size: .85rem; color: rgba(253,232,244,.4);
  text-decoration: none; transition: color .2s;
}
.foot-links a:hover { color: var(--cream); }
.foot-bottom {
  background: var(--dark); padding: 1.5rem 4rem;
  border-top: 1px solid rgba(255,29,150,.1);
  display: flex; justify-content: space-between; align-items: center;
}
.foot-copy { font-size: .72rem; color: rgba(253,232,244,.25); }

/* ─── FLOATING BADGE ──────────────────────── */
.floating-badge {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--rust);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(255,29,150,.6);
  z-index: 500;
  opacity: 0; pointer-events: none;
  transform: scale(0.5) rotate(-20deg);
  transition: opacity .5s ease, transform .55s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.floating-badge.visible {
  opacity: 1; pointer-events: auto;
  transform: scale(1) rotate(0deg);
}
.floating-badge.visible:hover {
  transform: scale(1.12) rotate(4deg);
  box-shadow: 0 12px 52px rgba(255,29,150,.8);
}
.floating-badge.visible:active {
  transform: scale(0.96);
}
.floating-badge::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,192,223,.5);
  animation: spinRing 10s linear infinite;
  pointer-events: none;
}
.floating-badge.visible:hover::before { animation-duration: 3s; }
@keyframes spinRing { to { transform: rotate(360deg); } }
.floating-badge-main {
  font-family: var(--ff-display); font-size: 1.1rem;
  font-weight: 900; color: var(--cream); line-height: 1;
}
.floating-badge-sub {
  font-size: .44rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  color: rgba(247,243,236,.78); margin-top: .15rem;
}
@media (max-width: 960px) {
  .floating-badge { width: 68px; height: 68px; bottom: 2rem; left: 1.25rem; }
  .floating-badge-main { font-size: 1.1rem; }
}

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.7); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s, transform .75s;
}
.rv.in { opacity: 1; transform: none; }
.rv-1 { transition-delay: .15s; }
.rv-2 { transition-delay: .3s; }
.rv-3 { transition-delay: .45s; }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  #nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  #hero { grid-template-columns: 1fr; }
  .hero-r { display: none; }
  .hero-l { padding: 8rem 1.5rem 5rem; }
  .hero-scroll { display: none; }
  .hero-badge {
    top: auto; left: auto;
    bottom: 5rem; right: 1.5rem;
    transform: none;
    width: 90px; height: 90px;
  }
  .hero-badge-main { font-size: 1.3rem; }
  .hero-badge-sub { font-size: .5rem; }
  .section { padding: 5rem 1.5rem; }
  #about { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  .about-callout { bottom: -1rem; right: -0.5rem; padding: .75rem 1rem; border-radius: 5px; }
  .about-callout-n { font-size: 1.9rem; }
  .about-callout-l { font-size: .55rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-top { flex-direction: column; align-items: flex-start; }
  .why-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .feat { border-right: none; border-bottom: 1px solid rgba(255,29,150,.1); }
  .feat:last-child, .feat:nth-child(even) { border-bottom: none; }
  .test-grid { grid-template-columns: 1fr; }
  #contact { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 1.5rem; }
  footer { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .foot-bottom { flex-direction: column; gap: .5rem; text-align: center; padding: 1.5rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
}

/* ─── HAMBURGER ───────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  z-index: 400; flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform .35s cubic-bezier(.77,0,.18,1), opacity .25s, background .2s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--rust); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--rust); }

/* ─── MOBILE MENU ─────────────────────────── */
.mob-menu {
  position: fixed; inset: 0; z-index: 300;
  background: var(--dark);
  display: flex; flex-direction: column;
  padding: 5.5rem 2rem 2.5rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-16px) scale(.98);
  transition: opacity .38s cubic-bezier(.4,0,.2,1), transform .38s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mob-menu.open {
  opacity: 1; pointer-events: auto;
  transform: none;
}
.mob-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,232,244,.5);
  border: 1px solid rgba(255,29,150,.2);
  transition: color .2s, border-color .2s, background .2s;
}
.mob-close svg { width: 18px; height: 18px; }
.mob-close:hover { color: var(--cream); border-color: var(--rust); background: rgba(255,29,150,.1); }
.mob-menu::before {
  content: 'JENNY\'S';
  position: absolute; bottom: -1rem; right: -1rem;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 28vw; color: rgba(255,29,150,.04);
  line-height: 1; pointer-events: none; user-select: none;
  letter-spacing: -.02em;
}
.mob-menu-inner {
  display: flex; flex-direction: column;
  justify-content: space-between;
  flex: 1; gap: 2rem;
}
.mob-nav {
  display: flex; flex-direction: column;
}
.mob-link {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 11vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -.03em;
  color: rgba(253,232,244,.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,29,150,.1);
  padding: .6rem 0;
  transition: color .2s, padding-left .25s cubic-bezier(.34,1.56,.64,1);
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .4s, transform .4s, color .2s, padding-left .25s;
}
.mob-menu.open .mob-link { opacity: 1; transform: none; }
.mob-menu.open .mob-link:nth-child(1) { transition-delay: .07s; }
.mob-menu.open .mob-link:nth-child(2) { transition-delay: .13s; }
.mob-menu.open .mob-link:nth-child(3) { transition-delay: .19s; }
.mob-menu.open .mob-link:nth-child(4) { transition-delay: .25s; }
.mob-menu.open .mob-link:nth-child(5) { transition-delay: .31s; }
.mob-link:hover { color: var(--rust); padding-left: .5rem; }
.mob-bottom {
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,29,150,.15);
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s .4s, transform .4s .4s;
}
.mob-menu.open .mob-bottom { opacity: 1; transform: none; }
.mob-phone {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1.15rem; font-weight: 600;
  color: var(--cream); text-decoration: none;
  transition: color .2s;
}
.mob-phone svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--rust); }
.mob-phone:hover { color: var(--rust); }
.mob-cta {
  display: block; text-align: center;
  background: var(--rust); color: var(--cream);
  font-family: var(--ff-body); font-size: .82rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: 4px;
  padding: 1rem 2rem;
  transition: background .2s, transform .2s;
}
.mob-cta:hover { background: var(--rust-dk); transform: translateY(-2px); }
.mob-hours {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-align: center;
  color: rgba(253,232,244,.3);
}

@media (max-width: 960px) {
  .nav-burger { display: flex; }
}
/* ─── FAQ SECTION ─────────────────────────────── */

.faq-section {
  background: var(--dark);
}

.faq-head {
  max-width: 560px;
  margin-bottom: 4rem;
}

.faq-head .section-title {
  margin-top: .75rem;
}

/* ─── FAQ LIST ────────────────────────────────── */

.faq-list {
  max-width: 820px;
  border-top: 1px solid rgba(240, 191, 223, 0.15);
}

/* ─── FAQ ITEM ────────────────────────────────── */

.faq-item {
  border-bottom: 1px solid rgba(240, 191, 223, 0.15);
}

/* ─── QUESTION BUTTON ─────────────────────────── */

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.faq-q:hover {
  color: var(--rust);
}

.faq-q-text {
  flex: 1;
}

/* ─── CHEVRON ICON ────────────────────────────── */

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 191, 223, 0.2);
  color: var(--warm-gray);
  transition: border-color 0.25s, color 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s;
}

.faq-q:hover .faq-icon {
  border-color: rgba(255, 29, 150, 0.45);
  color: var(--rust);
}

/* Rotate chevron when open */
.faq-item--open .faq-icon {
  transform: rotate(180deg);
  background: var(--rust);
  border-color: var(--rust);
  color: var(--cream);
}

/* ─── ANSWER PANEL ────────────────────────────── */

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When JS sets hidden=false, the panel is visible but starts at max-height 0
   via JS before transitioning open. We hide the element via the HTML hidden
   attribute by default; JS removes it before animating. */
.faq-a[hidden] {
  display: block !important; /* override UA hidden so transition can run */
  visibility: hidden;
  pointer-events: none;
}

.faq-item--open .faq-a[hidden] {
  visibility: visible;
  pointer-events: auto;
}

.faq-a-inner {
  padding: 0 0 1.75rem 0;
  padding-right: 3.5rem; /* breathing room away from the icon column */
}

.faq-a-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(253, 232, 244, 0.55);
}

/* ─── OPEN / ACTIVE STATE ─────────────────────── */

.faq-item--open .faq-q {
  color: var(--rust);
}

.faq-item--open {
  border-bottom-color: rgba(255, 29, 150, 0.2);
}

/* Pink left-accent bar on the open item */
.faq-item {
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: -2rem; /* aligns with section padding edge */
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--rust);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity 0.25s, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open::before {
  opacity: 1;
  transform: scaleY(1);
}

/* ─── CTA STRIP ───────────────────────────────── */

.faq-cta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255, 29, 150, 0.12);
}

.faq-cta-text {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(253, 232, 244, 0.4);
  margin-right: auto;
}

/* ─── FOCUS RING OVERRIDE ─────────────────────── */

.faq-q:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ─── RESPONSIVE ──────────────────────────────── */

@media (max-width: 960px) {
  .faq-head {
    margin-bottom: 2.5rem;
  }

  .faq-item::before {
    left: -1.5rem;
  }

  .faq-a-inner {
    padding-right: 1rem;
  }

  .faq-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
  }

  .faq-cta-text {
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .faq-q {
    padding: 1.4rem 0;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
  }

  .faq-icon svg {
    width: 16px;
    height: 16px;
  }
}
/* =========================================================
   Ballpark Pricing Section — Jenny's Junk Removal
   ========================================================= */

.pricing-section {
  background-color: var(--light);
  padding: 6rem 1.5rem;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ----- Header ----- */

.pricing-header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.pricing-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.75rem;
}

.pricing-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin: 0 0 1rem;
}

.pricing-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--warm-gray);
  margin: 0;
}

.pricing-intro em {
  font-style: italic;
  color: var(--dark);
}

/* ----- Grid ----- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

/* ----- Cards ----- */

.price-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 0, 122, 0.1);
}

.price-card--popular {
  border-color: var(--rust);
  box-shadow: 0 0 0 1px var(--rust), 0 8px 28px rgba(255, 29, 150, 0.14);
}

.price-card--popular:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--rust), 0 14px 38px rgba(255, 29, 150, 0.22);
}

/* ----- Popular badge ----- */

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  white-space: nowrap;
}

/* ----- Card content ----- */

.price-tier {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--rust);
}

.price-card--popular .price-tier {
  margin-top: 0.75rem;
}

.price-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin: 0.15rem 0 0;
}

.price-example {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--warm-gray);
  margin: 0.25rem 0 auto;
  flex-grow: 1;
}

.price-range {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.price-range span {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-top: 0.2rem;
}

/* ----- Footer / CTA ----- */

.pricing-footer {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.pricing-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ----- Button (matches site-wide .btn-solid) ----- */

.pricing-section .btn-solid {
  display: inline-block;
  background: var(--rust);
  color: var(--cream);
  padding: 1rem 2.4rem;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.15s ease;
}

.pricing-section .btn-solid:hover,
.pricing-section .btn-solid:focus-visible {
  background: var(--rust-dk);
  transform: translateY(-2px);
  outline: none;
}

.pricing-section .btn-solid:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

/* ----- Responsive ----- */

@media (max-width: 768px) {
  .pricing-section {
    padding: 4.5rem 1.25rem;
  }

  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card--popular {
    order: -1;
  }
}
/* ── Section Shell ───────────────────────────────────────────── */
.gallery-section {
  background-color: var(--cream);
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Section Header ──────────────────────────────────────────── */
.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.875rem;
}

.gallery-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  margin: 0 0 1.25rem;
}

.gallery-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Gallery Grid ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Gallery Pair Card ───────────────────────────────────────── */
.gallery-pair {
  display: flex;
  flex-direction: column;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.gallery-pair:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px -8px rgba(22, 0, 15, 0.18),
    0 0 0 2px var(--rust);
}

.gallery-pair__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Individual BA Card ──────────────────────────────────────── */
.ba-card {
  display: flex;
  flex-direction: column;
}

/* ── Photo Placeholder Base ──────────────────────────────────── */
.ba-photo {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Real photo images ───────────────────────────────────────── */
.ba-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Subtle gradient overlay so badges stay readable */
.ba-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.28) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* ── Badge (BEFORE / AFTER labels) ──────────────────────────── */
.ba-badge {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  line-height: 1;
  z-index: 2;
  z-index: 2;
}

.ba-badge--before {
  background-color: rgba(22, 0, 15, 0.82);
  color: rgba(255, 220, 240, 0.85);
  border: 1px solid rgba(200, 80, 140, 0.3);
  backdrop-filter: blur(4px);
}

.ba-badge--after {
  background-color: var(--rust);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 29, 150, 0.35);
}

/* ── Caption under each photo ────────────────────────────────── */
.ba-caption {
  padding: 0.625rem 1rem 0.75rem;
  border-bottom: 1px solid var(--border);
}

.ba-after .ba-caption {
  border-bottom: none;
}

.ba-caption__state {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7875rem;
  color: var(--warm-gray);
  margin: 0;
  line-height: 1.4;
}

.ba-before .ba-caption__state {
  color: #a06080;
  font-style: italic;
}

/* ── Divider Arrow ───────────────────────────────────────────── */
.ba-divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--dark);
}

.ba-divider__line {
  flex: 1;
  height: 1px;
  background: rgba(255,29,150,0.25);
}

.ba-divider__icon {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--rust);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Pair Footer ─────────────────────────────────────────────── */
.gallery-pair__footer {
  padding: 1.125rem 1.25rem 1.375rem;
  border-top: 1px solid var(--border);
  background: var(--light);
}

.gallery-pair__job {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.25rem;
  line-height: 1.2;
}

.gallery-pair__result {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  color: var(--rust-dk);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ── Note Banner ─────────────────────────────────────────────── */
.gallery-note {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 3rem;
  padding: 1rem 1.375rem;
  background: var(--dark);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 29, 150, 0.25);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-note__icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--rust);
  flex-shrink: 0;
}

.gallery-note p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(253, 232, 244, 0.75);
  margin: 0;
  line-height: 1.5;
}

.gallery-note p strong {
  color: var(--cream);
  font-weight: 600;
}

/* ── Responsive: Tablet ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive: Mobile ──────────────────────────────────────── */
@media (max-width: 680px) {
  .gallery-section {
    padding: 4rem 1.25rem;
  }

  .gallery-header {
    margin-bottom: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ba-photo {
    height: 160px;
  }

  .gallery-note {
    margin-top: 2rem;
    flex-direction: column;
    text-align: center;
    gap: 0.625rem;
  }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .gallery-pair {
    transition: none;
  }

  .gallery-pair:hover {
    transform: none;
  }
}

/* ─── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: var(--light);
  border-top: 1px solid rgba(255,29,150,.1);
  border-bottom: 1px solid rgba(255,29,150,.1);
  padding: .9rem 4rem;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
}
.trust-item svg { width: 14px; height: 14px; stroke: var(--rust); flex-shrink: 0; }
.trust-sep {
  width: 1px; height: 20px;
  background: rgba(255,29,150,.18);
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .trust-bar { padding: .9rem 1.5rem; }
  .trust-sep { display: none; }
  .trust-bar-inner { gap: 1rem; }
}

/* ─── WHAT WE HAUL ────────────────────────────── */
.haul-section { background: var(--light); }
.haul-inner { max-width: 1100px; margin: 0 auto; }
.haul-header { margin-bottom: 3.5rem; max-width: 500px; }
.haul-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.haul-col {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255,29,150,.1);
  padding: 2.25rem;
  box-shadow: 0 4px 24px rgba(22,0,15,.06);
}
.haul-col-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.haul-col-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.haul-col-icon--yes { background: rgba(34,197,94,.12); }
.haul-col-icon--yes svg { stroke: #16a34a; width: 20px; height: 20px; }
.haul-col-icon--no { background: rgba(239,68,68,.1); }
.haul-col-icon--no svg { stroke: #dc2626; width: 20px; height: 20px; }
.haul-col-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.haul-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.haul-list li { font-size: .88rem; color: var(--dark); display: flex; align-items: center; gap: .5rem; }
.haul-yes-icon { color: #16a34a; font-style: normal; font-weight: 700; flex-shrink: 0; }
.haul-no-icon { color: #dc2626; font-style: normal; font-weight: 700; flex-shrink: 0; }
.haul-note { font-size: .75rem; color: var(--sage-lt); }
.haul-no-note {
  margin-top: 1.75rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,29,150,.1);
  font-size: .85rem; color: var(--sage);
}
.haul-call-link { color: var(--rust); font-weight: 600; text-decoration: none; }
.haul-call-link:hover { text-decoration: underline; }
@media (max-width: 700px) {
  .haul-cols { grid-template-columns: 1fr; }
}

/* ─── QUOTE ESTIMATOR ─────────────────────────── */
.estimator-section { background: var(--dark); }
.estimator-inner { max-width: 1200px; margin: 0 auto; }
.estimator-header { margin-bottom: 3rem; max-width: 560px; }
.estimator-intro { font-size: .95rem; color: rgba(253,232,244,.6); margin-top: .75rem; line-height: 1.7; }
.estimator-body {
  display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start;
}
.estimator-items {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
}
.est-item {
  background: rgba(253,232,244,.06);
  border: 1px solid rgba(253,232,244,.12);
  border-radius: 12px;
  padding: 1rem .75rem;
  cursor: pointer; text-align: center;
  transition: background .2s, border-color .2s, transform .15s;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.est-item:hover {
  background: rgba(255,29,150,.12);
  border-color: rgba(255,29,150,.35);
  transform: translateY(-2px);
}
.est-item--active {
  background: rgba(255,29,150,.18) !important;
  border-color: var(--rust) !important;
}
.est-item-icon { font-size: 1.5rem; line-height: 1; }
.est-item-name { font-size: .73rem; font-weight: 600; letter-spacing: .03em; color: var(--cream); line-height: 1.3; }
.est-item-price { font-size: .7rem; color: var(--rust); font-weight: 600; }
.estimator-result {
  background: rgba(253,232,244,.06);
  border: 1px solid rgba(253,232,244,.12);
  border-radius: 16px;
  padding: 1.75rem;
  position: sticky; top: 100px;
}
.est-truck { margin-bottom: 1.5rem; }
.est-truck-body {
  background: rgba(253,232,244,.08);
  border-radius: 8px;
  height: 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: .5rem;
}
.est-truck-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--rust-dk), var(--rust));
  width: 0; transition: width .4s ease;
  border-radius: 8px;
}
.est-truck-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  color: var(--cream); text-transform: uppercase;
  mix-blend-mode: difference;
}
.est-truck-svg { width: 100%; height: auto; color: rgba(253,232,244,.2); display: block; }
.est-summary {}
.est-selected-list { min-height: 60px; margin-bottom: 1.25rem; }
.est-empty-msg { font-size: .82rem; color: rgba(253,232,244,.35); font-style: italic; }
.est-sel-row {
  display: flex; align-items: center; gap: .5rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgba(253,232,244,.08);
  font-size: .82rem; color: var(--cream);
}
.est-sel-name { flex: 1; }
.est-sel-qty { display: flex; align-items: center; gap: .35rem; }
.est-qty-btn {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,29,150,.2); border: none;
  color: var(--cream); font-size: .85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.est-qty-btn:hover { background: var(--rust); }
.est-sel-price { font-weight: 600; color: var(--rust); min-width: 40px; text-align: right; }
.est-total-wrap {
  background: rgba(255,29,150,.12);
  border: 1px solid rgba(255,29,150,.25);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.est-total-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(253,232,244,.5); margin-bottom: .25rem; }
.est-total-price { font-family: var(--ff-display); font-size: 2rem; color: var(--cream); line-height: 1; }
.est-total-note { font-size: .72rem; color: rgba(253,232,244,.4); margin-top: .4rem; }
.est-actions { display: flex; flex-direction: column; gap: .75rem; }
.est-reset {
  background: none; border: 1px solid rgba(253,232,244,.15);
  color: rgba(253,232,244,.5); border-radius: 8px;
  padding: .55rem; font-size: .78rem; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.est-reset:hover { border-color: rgba(253,232,244,.4); color: var(--cream); }
@media (max-width: 860px) {
  .estimator-body { grid-template-columns: 1fr; }
  .estimator-result { position: static; }
  .est-truck-svg { display: none; }
  .est-empty-msg { text-align: center; }
  .est-actions { align-items: stretch; }
  .est-actions .btn-solid { text-align: center; display: block; }
}

/* ─── BOOKING CALENDAR ────────────────────────── */
.booking-section { background: var(--light); }
.booking-inner { max-width: 860px; margin: 0 auto; }
.booking-header { margin-bottom: 3rem; }
.booking-intro { font-size: .95rem; color: var(--sage); margin-top: .75rem; }
.booking-widget {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(255,29,150,.12);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(22,0,15,.08);
}
.booking-step {}
.bk-calendar {}
.bk-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.bk-cal-month { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
.bk-cal-nav {
  background: none; border: 1px solid rgba(22,0,15,.12);
  width: 34px; height: 34px; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background .2s, border-color .2s;
}
.bk-cal-nav svg { width: 16px; height: 16px; }
.bk-cal-nav:hover { background: var(--rust); border-color: var(--rust); color: #fff; }
.bk-cal-days-header {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: .25rem; margin-bottom: .5rem;
  text-align: center;
}
.bk-cal-days-header span {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(22,0,15,.35);
  padding: .3rem 0;
}
.bk-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: .35rem;
}
.bk-cal-blank { aspect-ratio: 1; }
.bk-cal-day {
  aspect-ratio: 1; border-radius: 8px;
  border: 1px solid transparent;
  font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
  display: flex; align-items: center; justify-content: center;
}
.bk-cal-day--avail {
  background: rgba(255,29,150,.06); color: var(--dark);
}
.bk-cal-day--avail:hover {
  background: var(--rust); color: #fff; border-color: var(--rust);
}
.bk-cal-day--unavail {
  background: transparent; color: rgba(22,0,15,.2);
  cursor: not-allowed; text-decoration: line-through;
}
.bk-step-hint { font-size: .8rem; color: var(--sage); text-align: center; margin-top: 1.25rem; }
.bk-selected-date {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--rust); margin-bottom: .75rem;
}
.bk-step-title { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; }
.bk-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.bk-time {
  border: 2px solid rgba(22,0,15,.1); border-radius: 12px;
  background: none; padding: 1.25rem .75rem;
  cursor: pointer; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  transition: border-color .2s, background .2s;
}
.bk-time:hover { border-color: var(--rust); background: rgba(255,29,150,.06); }
.bk-time-icon { font-size: 1.75rem; }
.bk-time-label { font-size: .88rem; font-weight: 700; color: var(--dark); }
.bk-time-sub { font-size: .72rem; color: var(--sage); }
.bk-back {
  background: none; border: none; color: var(--sage);
  font-size: .82rem; cursor: pointer; padding: 0;
  text-decoration: underline; margin-top: .5rem;
}
.bk-back:hover { color: var(--rust); }
.bk-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
.bk-confirm { text-align: center; padding: 2rem 1rem; }
.bk-confirm-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(34,197,94,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.bk-confirm-icon svg { width: 32px; height: 32px; stroke: #16a34a; }
.bk-confirm-title { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.bk-confirm-slot { font-size: .9rem; font-weight: 600; color: var(--rust); margin-bottom: .75rem; }
.bk-confirm-msg { font-size: .9rem; color: var(--sage); }
@media (max-width: 600px) {
  .bk-times { grid-template-columns: 1fr; }
  .booking-widget { padding: 1.5rem; }
}

/* ─── SERVICE AREA ────────────────────────────── */
.area-section { background: var(--dark); }
.area-inner { max-width: 1100px; margin: 0 auto; }
.area-header { margin-bottom: 3rem; max-width: 560px; }
.area-intro { font-size: .95rem; color: rgba(253,232,244,.55); margin-top: .75rem; line-height: 1.7; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.area-card {
  background: rgba(253,232,244,.05);
  border: 1px solid rgba(253,232,244,.1);
  border-radius: 14px; padding: 1.5rem 1.25rem;
  text-decoration: none;
  display: flex; flex-direction: column; align-items: flex-start; gap: .4rem;
  transition: background .2s, border-color .2s, transform .2s;
}
.area-card:hover {
  background: rgba(255,29,150,.12);
  border-color: var(--rust);
  transform: translateY(-3px);
}
.area-card--primary {
  background: rgba(255,29,150,.12);
  border-color: rgba(255,29,150,.35);
  grid-column: span 1;
}
.area-card--more {
  background: rgba(253,232,244,.03);
  border-style: dashed;
  cursor: default;
}
.area-card--more:hover { transform: none; border-color: rgba(253,232,244,.2); background: rgba(253,232,244,.03); }
.area-card-pin svg { width: 18px; height: 18px; stroke: var(--rust); margin-bottom: .2rem; }
.area-card-name { font-size: .92rem; font-weight: 700; color: var(--cream); }
.area-card-tag { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(253,232,244,.45); }
.area-card--primary .area-card-tag { color: var(--rust); }
.area-cta {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253,232,244,.1);
}
.area-cta p { color: rgba(253,232,244,.55); font-size: .9rem; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid rgba(253,232,244,.35);
  color: var(--cream); border-radius: 100px;
  padding: .7rem 1.6rem; font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  text-decoration: none; transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.btn-outline-light:hover { border-color: var(--rust); background: rgba(255,29,150,.12); }
@media (max-width: 600px) {
  .area-cta { flex-direction: column; align-items: center; gap: 1rem; }
}

/* ─── REFERRAL SECTION ────────────────────────── */
.referral-section { background: var(--light); }
.referral-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start; max-width: 1100px; margin: 0 auto;
}
.referral-p { font-size: .95rem; color: var(--sage); margin: .75rem 0 1.75rem; line-height: 1.7; }
.referral-cards { display: flex; flex-direction: column; gap: 1rem; }
.ref-card {
  background: #fff;
  border: 1px solid rgba(255,29,150,.12);
  border-radius: 14px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
  box-shadow: 0 2px 12px rgba(22,0,15,.05);
}
.ref-card--friend { border-color: rgba(255,29,150,.3); background: rgba(255,29,150,.04); }
.ref-card-val {
  font-family: var(--ff-display); font-size: 2rem;
  color: var(--rust); line-height: 1; flex-shrink: 0; min-width: 70px;
}
.ref-card-who { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage); margin-bottom: .2rem; }
.ref-card-desc { font-size: .82rem; color: var(--dark); line-height: 1.5; }
.referral-form-wrap {
  background: #fff;
  border: 1px solid rgba(255,29,150,.1);
  border-radius: 20px; padding: 2.25rem;
  box-shadow: 0 8px 40px rgba(22,0,15,.07);
}
.referral-form-title { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.referral-form-sub { font-size: .83rem; color: var(--sage); margin-bottom: 1.5rem; line-height: 1.6; }
.ref-form { display: flex; flex-direction: column; gap: 1rem; }
.ref-confirm { text-align: center; padding: 2rem 1rem; }
.ref-confirm-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,29,150,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.ref-confirm-icon svg { width: 28px; height: 28px; stroke: var(--rust); }
.ref-confirm-title { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.ref-confirm-msg { font-size: .85rem; color: var(--sage); line-height: 1.6; }
@media (max-width: 780px) {
  .referral-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── FORM SUBMITTED CONFIRMATION ────────────────── */
.form-submitted {
  padding: 2.5rem; text-align: center;
}
.form-submitted-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(34,197,94,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-submitted-icon svg { width: 36px; height: 36px; stroke: #16a34a; }
.form-submitted-title { font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.form-submitted-msg { font-size: .9rem; color: var(--sage); margin-bottom: 1.25rem; }
.form-next-steps {
  text-align: left; display: flex; flex-direction: column; gap: .75rem;
  background: rgba(255,29,150,.04);
  border: 1px solid rgba(255,29,150,.12);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  font-size: .88rem; line-height: 1.6; color: var(--dark);
  list-style: none; counter-reset: steps;
}
.form-next-steps li {
  counter-increment: steps;
  display: flex; gap: .75rem; align-items: flex-start;
}
.form-next-steps li::before {
  content: counter(steps);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--rust); color: #fff;
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}

/* ─── FOOTER SOCIAL LINKS ─────────────────────── */
.foot-social {
  display: flex; gap: .85rem; margin-top: 1.25rem;
}
.foot-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(253,232,244,.08);
  border: 1px solid rgba(253,232,244,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(253,232,244,.5); text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.foot-social-link svg { width: 15px; height: 15px; }
.foot-social-link:hover { background: var(--rust); border-color: var(--rust); color: #fff; }
