/* =====================================================
   SHAMPOODLE'D — Landing page styles
   ===================================================== */

:root {
  --primary: #3DA5D9;
  --primary-soft: #BEE6F5;
  --primary-ink: #0E4C6D;
  --pink: #F5B5C4;
  --pink-soft: #FBD4DD;
  --cream: #FFF8EF;
  --hero-bg: #E8F4FB;
  --ink: #1A2B3F;
  --ink-soft: #4A5A6E;
  --line: #1A2B3F;
  --shadow-sm: 0 2px 0 rgba(26,43,63,.08);
  --shadow-md: 0 10px 30px -10px rgba(26,43,63,.25);
  --shadow-lg: 0 30px 60px -20px rgba(26,43,63,.35);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", -apple-system, Segoe UI, sans-serif;
  --font-script: "Caveat", cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; -webkit-tap-highlight-color: rgba(61,165,217,.2); }
button { -webkit-tap-highlight-color: rgba(61,165,217,.2); font: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =================== NAV =================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 14px clamp(18px, 4vw, 36px);
  padding-top: max(14px, env(safe-area-inset-top));
  background: rgba(255,248,239,.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,43,63,.08);
}
.nav__logo img { height: 54px; width: auto; }
.nav__links {
  display: flex; gap: 32px;
  font-weight: 600; font-size: 16px;
  align-items: center;
}
.nav__links a { text-decoration: none; color: var(--ink); transition: color .2s; }
.nav__links a:hover { color: var(--primary-ink); }
.nav__links-cta { display: none; }
.nav__cta {
  text-decoration: none;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  transition: transform .2s;
  white-space: nowrap;
}
.nav__cta:hover { transform: translateY(-2px); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1.5px solid rgba(26,43,63,.15);
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background .2s, border-color .2s;
}
.nav__toggle span {
  display: block;
  width: 20px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav { padding: 10px 18px; gap: 12px; }
  .nav__logo img { height: 46px; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(26,43,63,.1);
    box-shadow: 0 14px 30px -10px rgba(26,43,63,.18);
    padding: 8px 16px 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s, opacity .2s;
    font-size: 18px;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(26,43,63,.08);
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links-cta {
    display: inline-flex !important;
    align-self: flex-start;
    margin-top: 10px;
    background: var(--ink); color: var(--cream);
    padding: 12px 22px !important;
    border-radius: 999px;
    font-weight: 700;
  }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  background: var(--hero-bg);
  padding: clamp(40px, 6vw, 72px) clamp(18px, 4vw, 36px) clamp(80px, 10vw, 140px);
  overflow: hidden;
  min-height: 92vh;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 720px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid rgba(26,43,63,.1);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px;
  letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px; height: 8px; background: #36C26E; border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(54,194,110,.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(54,194,110,.18); }
  50% { box-shadow: 0 0 0 8px rgba(54,194,110,.05); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 5.8vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 26px 0 32px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  text-wrap: balance;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--primary-ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.hero__sub {
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 580px;
  text-wrap: pretty;
  margin: 0 0 38px;
  line-height: 1.55;
}

.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 6px 20px -4px rgba(26,43,63,.3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -6px rgba(26,43,63,.45); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26,43,63,.2);
}
.btn--ghost:hover { background: #fff; }

.hero__meta {
  display: flex; align-items: center; gap: 30px;
}
.hero__meta > div:not(.hero__meta-divide) {
  display: flex; flex-direction: column;
}
.hero__meta strong {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__meta span {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 6px;
  font-weight: 600;
}
.hero__meta-divide {
  width: 1px; height: 44px;
  background: rgba(26,43,63,.15);
}

/* =================== LOGO STAGE =================== */
.logo-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 600px;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-lg);
  cursor: none;
  touch-action: pan-y;
}
@media (hover: none) {
  .logo-stage { cursor: default; }
}
.logo-stage__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(255,255,255,.9), transparent 50%),
    radial-gradient(ellipse at 80% 85%, rgba(245,181,196,.2), transparent 50%),
    linear-gradient(165deg, #F4FBFE 0%, var(--primary-soft) 55%, #A9DCF1 100%);
}
.logo-stage__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 75%, rgba(255,255,255,.55) 0 10px, transparent 11px),
    radial-gradient(circle at 82% 30%, rgba(255,255,255,.5) 0 14px, transparent 15px),
    radial-gradient(circle at 65% 85%, rgba(255,255,255,.4) 0 8px, transparent 9px),
    radial-gradient(circle at 30% 35%, rgba(255,255,255,.35) 0 6px, transparent 7px),
    radial-gradient(circle at 90% 65%, rgba(255,255,255,.45) 0 12px, transparent 13px);
  animation: driftAmbient 14s ease-in-out infinite;
}
@keyframes driftAmbient {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.logo-stage__bubbles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 3;
}
.logo-stage__bubbles .cbubble {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,.35) 45%, rgba(255,255,255,.08) 75%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 2px 4px 6px rgba(255,255,255,.6), 0 2px 6px rgba(26,43,63,.08);
  transform: translate(-50%, -50%);
  transition: transform .18s ease-out, opacity .3s;
}
.logo-stage__bubbles .cbubble--pop {
  animation: cbubblePop .9s ease-out forwards;
}
@keyframes cbubblePop {
  0% { transform: translate(-50%,-50%) scale(.3); opacity: 1; }
  80% { opacity: .9; }
  100% { transform: translate(calc(-50% + var(--dx,0px)), calc(-50% + var(--dy,-80px))) scale(1.4); opacity: 0; }
}
.logo-stage__logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 78%; height: auto;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(26,43,63,.15));
  animation: logoBreath 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoBreath {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.015); }
}

.hero__visual {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}

.hero__badge {
  position: absolute;
  right: -14px; bottom: -14px;
  z-index: 4;
  animation: spin 30s linear infinite;
  filter: drop-shadow(0 6px 14px rgba(26,43,63,.15));
}
.hero__badge svg { width: 150px; height: 150px; }
@keyframes spin { to { transform: rotate(360deg); } }

.bubbles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.bubble {
  position: absolute;
  bottom: -10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.3) 40%, rgba(255,255,255,.05) 70%),
    linear-gradient(135deg, rgba(141,208,240,.25), rgba(245,181,196,.25));
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: inset 2px 4px 8px rgba(255,255,255,.5), 0 2px 4px rgba(141,208,240,.15);
  animation: rise linear infinite;
}
@keyframes rise {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0; }
  10% { opacity: var(--o,.6); }
  100% { transform: translate(var(--drift, 0), -110vh) scale(1.1); opacity: 0; }
}
.bubble--pop {
  animation: pop 1.2s ease-out forwards;
  bottom: auto;
}
@keyframes pop {
  0% { transform: translate(0,0) scale(0.3); opacity: 1; }
  80% { opacity: .9; }
  100% { transform: translate(var(--dx,0), var(--dy,-100px)) scale(1.3); opacity: 0; }
}

.hero__wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 80px;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero { min-height: 0; }
  .hero__inner { grid-template-columns: 1fr; }
  /* Stack badge under logo so it never overlaps hero meta / copy */
  .hero__visual {
    max-width: 460px;
    width: 100%;
    margin: 20px auto 0;
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding-bottom: 8px;
  }
  .hero__badge {
    position: static;
    right: auto;
    bottom: auto;
    flex-shrink: 0;
  }
  .hero__badge svg { width: 112px; height: 112px; }
  .logo-stage { border-radius: 32px; }
}
@media (max-width: 560px) {
  .hero__title { margin-top: 18px; }
  .hero__sub { font-size: 17px; margin-bottom: 28px; }
  .hero__ctas { gap: 10px; margin-bottom: 36px; }
  .hero__ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero__meta { gap: 14px; flex-wrap: wrap; }
  .hero__meta strong { font-size: 28px; }
  .hero__meta span { font-size: 13px; }
  .hero__meta-divide { height: 32px; }
  .hero__visual { max-width: 360px; gap: 14px; margin-top: 16px; }
  .hero__badge svg { width: 96px; height: 96px; }
  .logo-stage { border-radius: 26px; }
}
@media (max-width: 380px) {
  .hero__meta-divide { display: none; }
  .hero__meta { gap: 18px 22px; }
}

/* =================== WHY STRIP =================== */
.why {
  background: var(--cream);
  padding: clamp(60px, 8vw, 90px) clamp(20px, 4vw, 36px);
  border-bottom: 1px solid rgba(26,43,63,.08);
}
.why__grid {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.why__item h3 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.why__item p {
  color: var(--ink-soft);
  font-size: 18px;
  margin: 0;
  text-wrap: pretty;
  line-height: 1.55;
}
.why__num {
  font-family: var(--font-script);
  font-size: 52px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .why__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .why__grid { grid-template-columns: 1fr; gap: 28px; }
  .why__item h3 { font-size: 26px; }
  .why__item p { font-size: 16px; }
  .why__num { font-size: 44px; }
}

/* =================== SECTION HEAD =================== */
.section-head {
  max-width: 880px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.section-head--left { text-align: left; margin: 0 0 clamp(32px, 4vw, 48px); }
.kicker {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--primary);
  line-height: 1;
  font-weight: 700;
  transform: rotate(-2deg);
  margin-bottom: 8px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.section-head p {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  margin: 0;
  text-wrap: pretty;
  line-height: 1.55;
}

/* =================== HOW IT WORKS =================== */
.how {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 36px);
  background: #fff;
}
.steps {
  max-width: 1360px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 36px 26px 32px;
  background: var(--cream);
  border: 1.5px solid rgba(26,43,63,.1);
  border-radius: 22px;
  transition: transform .3s, box-shadow .3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__n {
  position: absolute;
  top: -18px; left: 24px;
  width: 40px; height: 40px;
  background: var(--ink); color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 3px solid #fff;
}
.step__icon {
  margin: 6px 0 20px;
  height: 56px;
  display: flex; align-items: center;
}
.step__icon svg { width: 56px; height: 56px; }
.step__chip {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  transform: translateY(-2px);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.step p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .step { padding: 28px 22px 24px; }
  .step h3 { font-size: 21px; }
  .step p { font-size: 15.5px; }
  .step__icon { height: 48px; margin: 4px 0 14px; }
  .step__icon svg { width: 48px; height: 48px; }
}
@media (max-width: 440px) {
  .steps { grid-template-columns: 1fr; }
}

/* =================== GALLERY =================== */
.gallery {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 36px);
  background: var(--hero-bg);
}
.gallery__grid {
  max-width: 1360px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .4s;
  aspect-ratio: 3/4;
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery__item figcaption {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(255,255,255,.94);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
@media (max-width: 960px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 18px; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item { aspect-ratio: 4/3; }
  .gallery__item figcaption { bottom: 14px; left: 14px; padding: 8px 14px; font-size: 14px; }
}

/* =================== INCLUDED =================== */
.included {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 36px);
  background: var(--cream);
}
.included__inner {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 96px;
  align-items: start;
}
.checks {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 44px;
}
.checks li {
  display: flex; align-items: center; gap: 14px;
  font-size: 18px; font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(26,43,63,.15);
}
.checks li svg {
  flex-shrink: 0;
  background: var(--primary-soft);
  padding: 5px;
  border-radius: 999px;
  width: 34px; height: 34px;
}
@media (max-width: 900px) {
  .included__inner { grid-template-columns: 1fr; gap: 36px; }
  .checks { grid-template-columns: 1fr 1fr; gap: 10px 28px; }
}
@media (max-width: 560px) {
  .checks { grid-template-columns: 1fr; }
  .checks li { font-size: 16.5px; padding: 12px 0; }
  .checks li svg { width: 30px; height: 30px; }
}

/* =================== PRICING =================== */
.pricing {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 36px);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content:""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, var(--primary-soft) 0, transparent 2px),
    radial-gradient(circle at 90% 70%, var(--pink-soft) 0, transparent 2px),
    radial-gradient(circle at 50% 50%, var(--primary-soft) 0, transparent 2px);
  background-size: 120px 120px, 160px 160px, 200px 200px;
  opacity: .3;
  pointer-events: none;
}

.pricing__grid {
  max-width: 1360px; margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tier {
  position: relative;
  padding: 40px 28px 36px;
  background: #fff;
  border: 1.5px solid rgba(26,43,63,.12);
  border-radius: 26px;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.tier--pop {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.tier--pop:hover { transform: translateY(-14px); }
.tier--pop .tier__size svg { fill: var(--cream); }
.tier--pop .tier__tag { background: rgba(255,255,255,.12); color: var(--cream); }

.tier__badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--pink);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
}
.tier__size {
  height: 76px;
  display: flex; align-items: flex-end; justify-content: center;
  margin-bottom: 10px;
}
.tier__size svg { width: auto; height: 100%; max-width: 100%; }
.tier__time {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}
.tier--pop .tier__time { color: var(--primary-soft); }
.tier__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 92px;
  line-height: 1;
  margin: 14px 0 18px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: flex-start;
}
.tier__dollar {
  font-size: 40px;
  margin-top: 14px;
  font-weight: 400;
  opacity: .7;
}
.tier__for {
  font-size: 16px;
  margin: 0 0 20px;
  line-height: 1.45;
  opacity: .85;
}
.tier__tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-ink);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.pricing__note {
  position: relative;
  max-width: 780px;
  margin: 56px auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.pricing__note em { color: var(--primary-ink); font-style: italic; }

@media (max-width: 1000px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .tier--pop { transform: none; }
  .tier--pop:hover { transform: translateY(-6px); }
}
@media (max-width: 520px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
  .tier { padding: 30px 22px 26px; }
  .tier__price { font-size: 72px; }
  .tier__dollar { font-size: 32px; margin-top: 10px; }
  .tier__size { height: 64px; }
  .tier__time { font-size: 26px; }
  .tier__for { font-size: 15px; }
}

/* =================== VISIT =================== */
.visit {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 36px) clamp(72px, 10vw, 120px);
  background: var(--hero-bg);
}
.visit__card {
  max-width: 1360px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit__info {
  padding: 60px 60px 52px;
}
.visit__info h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 8px 0 32px;
}
.hours--always {
  margin: 0 0 32px;
  padding: 26px 28px;
  border: 2px dashed var(--primary);
  border-radius: 20px;
  background: var(--primary-soft);
  display: flex; align-items: center; gap: 24px;
}
.hours__big { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; }
.hours__big-label {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--primary-ink);
  font-weight: 700;
  line-height: 1;
  transform: rotate(-4deg);
}
.hours__big-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  color: var(--primary-ink);
  letter-spacing: -0.02em;
}
.hours__slash { opacity: .5; margin: 0 -2px; }
.hours__note {
  margin: 0;
  font-size: 15.5px;
  color: var(--primary-ink);
  line-height: 1.5;
  font-weight: 600;
}
.visit__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.visit__fb {
  font-size: 16px;
  color: var(--primary-ink);
  font-weight: 600;
  line-height: 1.55;
  margin: 0 0 18px;
}
.visit__fb a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.visit__fb a:hover { color: var(--primary-ink); }
.visit__tip {
  font-size: 15.5px;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0;
}
.visit__map {
  position: relative;
  min-height: 500px;
}
.visit__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.visit__map-pin {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: var(--shadow-md);
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
}
@media (max-width: 900px) {
  .visit__card { grid-template-columns: 1fr; border-radius: 24px; }
  .visit__info { padding: 36px 32px 32px; }
  .visit__map { min-height: 340px; }
}
@media (max-width: 560px) {
  .visit__info { padding: 28px 22px 26px; }
  .hours--always { padding: 18px 18px; gap: 14px; border-radius: 16px; }
  .hours__big-value { font-size: 56px; }
  .hours__big-label { font-size: 22px; }
  .hours__note { font-size: 14px; }
  .visit__ctas .btn { flex: 1 1 auto; justify-content: center; }
  .visit__map { min-height: 280px; }
}

/* =================== AREAS SERVED =================== */
.area {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 36px);
  background: var(--cream);
  position: relative;
}
.area .section-head { max-width: 980px; }
.area .section-head h2 em {
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-display);
}
.area__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.area__copy h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--ink);
}
.area__copy h3 + p { margin-top: 0; }
.area__copy p {
  font-size: clamp(16px, 1.3vw, 17.5px);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 22px;
}
.area__copy p strong { color: var(--ink); font-weight: 700; }
.area__copy h3:not(:first-child) { margin-top: 14px; }
.area__counties {
  margin-top: 6px !important;
  padding: 16px 20px;
  background: var(--hero-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 14px 14px 0;
  font-size: 15.5px !important;
  color: var(--primary-ink) !important;
}
.area__counties strong { color: var(--primary-ink) !important; }

.area__cities {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.area__cities-title {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--primary-ink);
  line-height: 1;
  margin: 0 0 18px;
  font-weight: 700;
  transform: rotate(-1.5deg);
}
.area__cities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}
.area__cities-list li {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  background: var(--hero-bg);
  border-radius: 12px;
  line-height: 1.2;
}
.area__cities-list li strong {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}
.area__cities-list li span {
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.area__cities-foot {
  margin: 0;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
  padding-top: 14px;
  border-top: 2px dashed rgba(26,43,63,.15);
}
.area__cities-foot strong { color: var(--primary-ink); font-style: normal; }

@media (max-width: 960px) {
  .area__grid { grid-template-columns: 1fr; }
  .area__cities { position: static; }
}
@media (max-width: 520px) {
  .area__cities { padding: 22px 20px 20px; border-radius: 18px; }
  .area__cities-list { grid-template-columns: 1fr; gap: 8px; }
  .area__cities-list li { padding: 9px 12px; }
}

/* =================== FAQ =================== */
.faq {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 36px);
  background: var(--hero-bg);
}
.faq__list {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 14px;
}
.faq details {
  background: #fff;
  border: 1.5px solid rgba(26,43,63,.1);
  border-radius: 18px;
  padding: 0;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.faq summary {
  list-style: none;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.015em;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary em { font-style: italic; color: var(--primary-ink); }
.plus {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.plus::before, .plus::after {
  content: ""; position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.plus::before { left: 0; right: 0; top: 50%; height: 2.5px; transform: translateY(-50%); }
.plus::after { top: 0; bottom: 0; left: 50%; width: 2.5px; transform: translateX(-50%); transition: transform .2s; }
.faq details[open] .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
}

/* =================== FOOTER =================== */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(52px, 7vw, 72px) clamp(20px, 4vw, 36px) 32px;
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}
.foot__grid {
  max-width: 1360px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.foot__logo {
  height: 72px; width: auto;
  background: var(--cream);
  padding: 10px;
  border-radius: 16px;
  margin-bottom: 18px;
}
.foot__tag {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--primary-soft);
  margin: 0;
}
.foot h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.foot p { margin: 0; opacity: .85; font-size: 16.5px; line-height: 1.6; }
.foot a { color: inherit; text-decoration: none; }
.foot a:hover { color: var(--primary-soft); }
.foot__muted {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  opacity: .65;
  line-height: 1.5;
}
.foot__base {
  max-width: 1360px; margin: 28px auto 0;
  display: flex; justify-content: space-between;
  font-size: 14px; opacity: .6;
}
@media (max-width: 800px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__base { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 460px) {
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
  .foot__logo { height: 64px; }
  .foot__tag { font-size: 22px; }
}
