/* ============================================================
   South Congress Dental — "SoCo Sunshine"
   Retro-warm Austin vintage-modern. Coral / teal / cream.
   Own reset + :root. No framework.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100%; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.04; font-weight: 700; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* ---------- Tokens ---------- */
:root {
  /* SoCo warm palette */
  --cream:      #fbf3e6;
  --cream-2:    #f5e8d3;
  --paper:      #fff9ef;
  --coral:      #f0623c;   /* signature sunset coral */
  --coral-deep: #d8472a;
  --terracotta: #e08a4e;
  --teal:       #1f7a72;   /* vintage teal */
  --teal-deep:  #145c55;
  --mustard:    #e9a93a;   /* sunny accent */
  --ink:        #2a2018;   /* warm near-black */
  --ink-soft:   #5a4a3c;
  --line:       #e4d2b6;

  --shadow-sm: 0 2px 0 var(--ink);
  --shadow-card: 8px 9px 0 rgba(42,32,24,.9);
  --shadow-soft: 0 18px 50px -24px rgba(42,32,24,.55);

  --r-lg: 30px;
  --r-md: 20px;
  --r-sm: 13px;
  --r-pill: 999px;

  --display: "Bricolage Grotesque", Georgia, serif;
  --serif:   "Gloock", Georgia, serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1200px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 88% -8%, rgba(240,98,60,.10), transparent 60%),
    radial-gradient(900px 540px at -6% 18%, rgba(31,122,114,.10), transparent 55%),
    var(--cream);
  background-attachment: fixed;
}

/* faint dotted texture overlay */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(42,32,24,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 1; }

.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.tight { width: min(100% - 2.4rem, 880px); margin-inline: auto; }

/* ---------- Display helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body); font-weight: 800;
  text-transform: uppercase; letter-spacing: .18em; font-size: .72rem;
  color: var(--teal-deep);
}
.eyebrow::before { content: "✺"; color: var(--coral); font-size: 1em; }

.script { font-family: var(--serif); font-style: normal; color: var(--coral); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 800; font-size: .98rem; letter-spacing: .01em;
  padding: .92rem 1.5rem; border-radius: var(--r-pill);
  border: 2.5px solid var(--ink);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, background .18s;
}
.btn-primary { background: var(--coral); color: var(--paper); box-shadow: 4px 5px 0 var(--ink); }
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 7px 0 var(--ink); background: var(--coral-deep); }
.btn-ghost { background: var(--paper); color: var(--ink); box-shadow: 4px 5px 0 var(--ink); }
.btn-ghost:hover { transform: translate(-2px,-2px); box-shadow: 6px 7px 0 var(--ink); background: var(--cream-2); }
.btn-teal { background: var(--teal); color: var(--paper); box-shadow: 4px 5px 0 var(--ink); }
.btn-teal:hover { transform: translate(-2px,-2px); box-shadow: 6px 7px 0 var(--ink); background: var(--teal-deep); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 2.5px solid var(--ink);
}
.head-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .75rem 0;
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--coral); color: var(--paper);
  display: grid; place-items: center; font-family: var(--display);
  font-weight: 800; font-size: 1.3rem; border: 2.5px solid var(--ink);
  box-shadow: 2px 3px 0 var(--ink);
  flex: none;
}
.brand-name { font-family: var(--display); font-weight: 800; font-size: 1.18rem; line-height: 1; letter-spacing: -.01em; }
.brand-name small { display: block; font-family: var(--body); font-weight: 700; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-deep); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-weight: 700; font-size: .95rem; padding: .5rem .8rem; border-radius: var(--r-pill);
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--cream-2); }
.nav a.active { background: var(--teal); color: var(--paper); }
.head-cta { display: inline-flex; }

.menu-toggle { display: none; width: 46px; height: 46px; border: 2.5px solid var(--ink); border-radius: 12px; background: var(--paper); box-shadow: 2px 3px 0 var(--ink); }
.menu-toggle span { display: block; width: 20px; height: 2.5px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .25s; }
.menu-toggle.open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity: 0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 3.4rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.6rem; align-items: center; }
.hero-kicker { margin-bottom: 1.1rem; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  letter-spacing: -.025em; color: var(--ink);
}
.hero h1 .ln { display: block; }
.hero h1 em { font-family: var(--serif); font-style: normal; color: var(--coral); }
.hero h1 .u {
  position: relative; white-space: nowrap;
}
.hero h1 .u::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4%; height: 38%;
  background: var(--mustard); z-index: -1; border-radius: 4px;
  transform: rotate(-1.2deg);
}
.hero p.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 46ch; margin: 1.4rem 0 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.hero-note { font-size: .85rem; font-weight: 700; color: var(--teal-deep); display: inline-flex; gap: .4rem; align-items: center; }
.hero-note b { color: var(--coral); }

.hero-media { position: relative; }
.hero-frame {
  border-radius: var(--r-lg); overflow: hidden;
  border: 3px solid var(--ink); box-shadow: var(--shadow-card);
  background: var(--paper);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.4; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--teal); color: var(--paper);
  border: 3px solid var(--ink); border-radius: var(--r-md);
  padding: .9rem 1.1rem; box-shadow: var(--shadow-card);
  transform: rotate(-4deg); max-width: 200px;
}
.hero-badge .big { font-family: var(--display); font-weight: 800; font-size: 1.7rem; line-height: 1; }
.hero-badge .sub { font-size: .74rem; font-weight: 700; letter-spacing: .04em; margin-top: 4px; opacity: .92; }
.hero-stamp {
  position: absolute; top: -26px; right: -14px;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--mustard); color: var(--ink); border: 3px solid var(--ink);
  display: grid; place-items: center; text-align: center;
  font-family: var(--display); font-weight: 800; font-size: .72rem; line-height: 1.15;
  box-shadow: var(--shadow-card); transform: rotate(8deg);
  animation: spinwob 9s ease-in-out infinite;
}
@keyframes spinwob { 0%,100%{ transform: rotate(8deg); } 50%{ transform: rotate(-6deg); } }

/* ============================================================
   TRUST STRIP / MARQUEE
   ============================================================ */
.trust {
  border-block: 2.5px solid var(--ink);
  background: var(--coral); color: var(--paper);
  overflow: hidden;
}
.marquee { display: flex; gap: 0; white-space: nowrap; animation: slide 26s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .mq { display: inline-flex; align-items: center; gap: 1rem; padding: .85rem 0; }
.marquee .mq span { font-family: var(--display); font-weight: 700; font-size: 1.05rem; padding: 0 1.5rem; display: inline-flex; align-items: center; }
.marquee .mq i { font-style: normal; color: var(--mustard); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.sec { padding: 4.4rem 0; }
.sec-head { max-width: 720px; margin-bottom: 2.4rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.02em; margin: .7rem 0 .8rem;
}
.sec-head h2 em { font-family: var(--serif); font-style: normal; color: var(--coral); }
.sec-head p { color: var(--ink-soft); font-size: 1.08rem; }

/* ---------- Treatments preview grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.svc-card {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-md);
  padding: 1.5rem 1.4rem 1.4rem; box-shadow: 5px 6px 0 var(--ink);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.svc-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 9px 0 var(--ink); }
.svc-ico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.4rem; border: 2.5px solid var(--ink); margin-bottom: 1rem; flex: none;
  box-shadow: 2px 3px 0 var(--ink);
}
.svc-card:nth-child(6n+1) .svc-ico { background: var(--coral); color: #fff; }
.svc-card:nth-child(6n+2) .svc-ico { background: var(--teal); color: #fff; }
.svc-card:nth-child(6n+3) .svc-ico { background: var(--mustard); }
.svc-card:nth-child(6n+4) .svc-ico { background: var(--terracotta); color:#fff; }
.svc-card:nth-child(6n+5) .svc-ico { background: var(--teal-deep); color:#fff; }
.svc-card:nth-child(6n) .svc-ico { background: var(--cream-2); }
.svc-cat { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; color: var(--teal-deep); }
.svc-card h3 { font-family: var(--display); font-size: 1.32rem; margin: .35rem 0 .5rem; letter-spacing: -.01em; }
.svc-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1.1rem; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding-top: .9rem; border-top: 2px dashed var(--line); }
.svc-price { font-family: var(--display); font-weight: 800; font-size: 1.05rem; }
.svc-price small { display:block; font-family: var(--body); font-size:.6rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; color: var(--ink-soft); }
.svc-link { font-weight: 800; font-size: .9rem; color: var(--coral-deep); display: inline-flex; gap: .3rem; }
.svc-link:hover { gap: .55rem; }
.pop-tag {
  position: absolute; top: 14px; right: -28px; transform: rotate(38deg);
  background: var(--mustard); color: var(--ink); font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; padding: 3px 34px; border-block: 2px solid var(--ink);
}

/* ============================================================
   VISIT / ABOUT split
   ============================================================ */
.visit { background: var(--paper); border-block: 2.5px solid var(--ink); }
.visit-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: center; }
.visit-media { position: relative; }
.visit-media img { width: 100%; border-radius: var(--r-lg); border: 3px solid var(--ink); box-shadow: var(--shadow-card); aspect-ratio: 4/4.2; object-fit: cover; }
.visit-chip {
  position: absolute; right: -16px; bottom: 26px;
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--r-md);
  padding: .85rem 1rem; box-shadow: var(--shadow-card); transform: rotate(3deg);
  display: flex; align-items: center; gap: .7rem; max-width: 220px;
}
.visit-chip .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); flex: none; display: grid; place-items: center; color: #fff; border: 2.5px solid var(--ink); }
.visit-chip b { font-family: var(--display); font-size: .95rem; }
.visit-chip span { font-size: .74rem; color: var(--ink-soft); }

.steps { display: grid; gap: 1rem; margin-top: 1.6rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--display); font-weight: 800;
  border: 2.5px solid var(--ink); box-shadow: 2px 3px 0 var(--ink);
  background: var(--cream-2);
}
.step:nth-child(1) .step-num { background: var(--coral); color:#fff; }
.step:nth-child(2) .step-num { background: var(--mustard); }
.step:nth-child(3) .step-num { background: var(--teal); color:#fff; }
.step h4 { font-family: var(--display); font-size: 1.12rem; margin-bottom: .2rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Smile moment (detail) ---------- */
.smile { position: relative; overflow: hidden; }
.smile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; border: 3px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-card); background: var(--teal); }
.smile-media img { width: 100%; height: 100%; object-fit: cover; }
.smile-copy { padding: clamp(1.8rem, 4vw, 3.2rem); color: var(--paper); display: flex; flex-direction: column; justify-content: center; }
.smile-copy .eyebrow { color: var(--mustard); }
.smile-copy .eyebrow::before { color: var(--mustard); }
.smile-copy h2 { font-family: var(--display); font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -.02em; margin: .6rem 0 .9rem; }
.smile-copy h2 em { font-family: var(--serif); font-style: normal; color: var(--mustard); }
.smile-copy p { font-size: 1.05rem; opacity: .94; margin-bottom: 1.6rem; max-width: 42ch; }
.smile-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.smile-stats div b { font-family: var(--display); font-size: 2rem; display: block; line-height: 1; }
.smile-stats div span { font-size: .78rem; opacity: .85; font-weight: 700; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote-band { text-align: center; }
.quote-card {
  background: var(--mustard); border: 3px solid var(--ink); border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.4rem); box-shadow: var(--shadow-card); position: relative;
  max-width: 820px; margin-inline: auto;
}
.quote-card .qmark { font-family: var(--serif); font-size: 5rem; line-height: .5; color: var(--coral); position: absolute; top: 26px; left: 30px; opacity: .55; }
.quote-card blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.28; color: var(--ink); position: relative; }
.quote-stars { color: var(--coral-deep); letter-spacing: .2em; margin: 1.2rem 0 .8rem; font-size: 1.1rem; }
.quote-who { font-weight: 800; }
.quote-who span { display: block; font-weight: 700; font-size: .85rem; color: var(--teal-deep); margin-top: 2px; }

/* ============================================================
   GUIDES teaser
   ============================================================ */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.guide-card {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-md);
  padding: 1.5rem 1.4rem; box-shadow: 5px 6px 0 var(--ink);
  transition: transform .18s, box-shadow .18s; display: flex; flex-direction: column;
}
.guide-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 9px 0 var(--ink); }
.guide-meta { display: flex; align-items: center; gap: .6rem; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: .8rem; }
.guide-meta .pill { background: var(--cream-2); border: 2px solid var(--ink); border-radius: var(--r-pill); padding: 2px 10px; }
.guide-card h3 { font-family: var(--display); font-size: 1.22rem; letter-spacing: -.01em; margin-bottom: .55rem; }
.guide-card p { color: var(--ink-soft); font-size: .94rem; flex: 1; margin-bottom: 1rem; }
.guide-card .more { font-weight: 800; color: var(--coral-deep); display: inline-flex; gap: .35rem; }
.guide-card:hover .more { gap: .6rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { padding: 0 0 4.6rem; }
.cta-inner {
  background: var(--teal); color: var(--paper); border: 3px solid var(--ink);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
  padding: clamp(2.4rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden;
}
.cta-inner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 240px at 88% -10%, rgba(233,169,58,.35), transparent 60%),
              radial-gradient(420px 240px at 6% 120%, rgba(240,98,60,.4), transparent 60%);
}
.cta-inner > * { position: relative; }
.cta-inner h2 { font-family: var(--display); font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -.02em; margin-bottom: .8rem; }
.cta-inner h2 em { font-family: var(--serif); font-style: normal; color: var(--mustard); }
.cta-inner p { font-size: 1.1rem; opacity: .94; max-width: 50ch; margin: 0 auto 1.9rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.cta-inner .btn-ghost { border-color: var(--paper); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot { background: var(--ink); color: var(--cream); border-top: 4px solid var(--coral); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding: 3.4rem 0 2.4rem; }
.foot-brand .brand-name { color: var(--cream); }
.foot-brand p { color: #d8c8b3; font-size: .94rem; margin: 1rem 0 1.2rem; max-width: 34ch; }
.foot-social { display: flex; gap: .55rem; }
.foot-social a { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #6a5a48; display: grid; place-items: center; transition: .15s; }
.foot-social a:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-2px); }
.foot-col h4 { font-family: var(--display); font-size: 1rem; margin-bottom: 1rem; color: var(--mustard); }
.foot-col ul { display: grid; gap: .55rem; }
.foot-col a, .foot-col li { color: #d8c8b3; font-size: .92rem; }
.foot-col a:hover { color: var(--coral); }
.nap b { color: var(--cream); display: block; }
.nap span { color: #d8c8b3; font-size: .92rem; display: block; }
.foot-bottom { border-top: 1px solid #4a3c2e; padding: 1.3rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; align-items: center; }
.foot-bottom p { color: #b7a892; font-size: .82rem; }
.demo-note { font-style: italic; }

/* ============================================================
   PAGE HEADER (sub pages)
   ============================================================ */
.page-head { padding: 3.2rem 0 1rem; text-align: center; }
.page-head h1 { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 4.2rem); letter-spacing: -.025em; }
.page-head h1 em { font-family: var(--serif); font-style: normal; color: var(--coral); }
.page-head p { color: var(--ink-soft); font-size: 1.12rem; max-width: 56ch; margin: 1rem auto 0; }
.crumbs { font-size: .82rem; font-weight: 700; color: var(--teal-deep); margin-bottom: 1rem; }
.crumbs a:hover { color: var(--coral); }

/* ============================================================
   TREATMENTS PAGE — full list
   ============================================================ */
.treat-list { display: grid; gap: 1.4rem; }
.treat-row {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: 6px 7px 0 var(--ink); padding: 1.8rem; display: grid;
  grid-template-columns: 64px 1fr auto; gap: 1.4rem; align-items: start;
  transition: transform .18s, box-shadow .18s;
}
.treat-row:hover { transform: translate(-2px,-2px); box-shadow: 9px 10px 0 var(--ink); }
.treat-ico { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; font-size: 1.8rem; border: 2.5px solid var(--ink); box-shadow: 2px 3px 0 var(--ink); }
.treat-row:nth-child(7n+1) .treat-ico{ background: var(--coral); color:#fff; }
.treat-row:nth-child(7n+2) .treat-ico{ background: var(--teal); color:#fff; }
.treat-row:nth-child(7n+3) .treat-ico{ background: var(--mustard); }
.treat-row:nth-child(7n+4) .treat-ico{ background: var(--terracotta); color:#fff; }
.treat-row:nth-child(7n+5) .treat-ico{ background: var(--teal-deep); color:#fff; }
.treat-row:nth-child(7n+6) .treat-ico{ background: var(--coral-deep); color:#fff; }
.treat-row:nth-child(7n) .treat-ico{ background: var(--cream-2); }
.treat-body .svc-cat { color: var(--teal-deep); }
.treat-body h3 { font-family: var(--display); font-size: 1.5rem; letter-spacing: -.01em; margin: .25rem 0 .4rem; }
.treat-body .summary { color: var(--ink-soft); margin-bottom: 1rem; max-width: 60ch; }
.includes { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem .9rem; max-width: 560px; }
.includes li { display: flex; gap: .5rem; font-size: .92rem; color: var(--ink); }
.includes li::before { content: "✓"; color: var(--teal); font-weight: 900; }
.treat-side { text-align: right; display: grid; gap: .8rem; justify-items: end; }
.treat-price { font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.treat-price small { display: block; font-family: var(--body); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; }
.form-card {
  background: var(--paper); border: 3px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); padding: clamp(1.6rem, 3vw, 2.4rem);
}
.form-card h2 { font-family: var(--display); font-size: 1.8rem; margin-bottom: .3rem; }
.form-card .sub { color: var(--ink-soft); margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 800; font-size: .82rem; letter-spacing: .04em; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem .95rem; border: 2.5px solid var(--ink); border-radius: var(--r-sm);
  background: var(--cream); font-size: .98rem; transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 3px 4px 0 var(--coral); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: .9rem; text-align: center; }

.info-stack { display: grid; gap: 1.3rem; }
.info-card { background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-md); box-shadow: 5px 6px 0 var(--ink); padding: 1.5rem; }
.info-card h3 { font-family: var(--display); font-size: 1.2rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .55rem; }
.info-card h3 .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--coral); color:#fff; border: 2px solid var(--ink); font-size: .95rem; }
.info-line { display: flex; gap: .6rem; padding: .45rem 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.info-line:last-child { border-bottom: none; }
.info-line b { min-width: 92px; }
.hours-row { display: flex; justify-content: space-between; padding: .42rem 0; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row.today { font-weight: 800; color: var(--coral-deep); }
.hours-row .open { color: var(--teal); font-weight: 800; }
.map-ph {
  border: 2.5px solid var(--ink); border-radius: var(--r-md); box-shadow: 5px 6px 0 var(--ink);
  background:
    linear-gradient(135deg, rgba(31,122,114,.12), rgba(240,98,60,.12)),
    repeating-linear-gradient(0deg, var(--cream-2) 0 28px, var(--cream) 28px 30px),
    repeating-linear-gradient(90deg, var(--cream-2) 0 28px, var(--cream) 28px 30px);
  height: 240px; position: relative; overflow: hidden; display: grid; place-items: center;
}
.map-ph .pin {
  background: var(--coral); color:#fff; border: 2.5px solid var(--ink); border-radius: var(--r-pill);
  padding: .55rem 1rem; font-weight: 800; font-size: .9rem; box-shadow: 3px 4px 0 var(--ink);
  display: inline-flex; gap: .45rem; align-items: center;
}
.map-ph .road { position: absolute; background: var(--paper); border-block: 2px solid var(--line); }
.map-ph .road.h { left: 0; right: 0; top: 58%; height: 26px; }
.map-ph .road.v { top: 0; bottom: 0; left: 36%; width: 24px; border-block: none; border-inline: 2px solid var(--line); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.featured {
  background: var(--paper); border: 3px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); overflow: hidden; display: grid;
  grid-template-columns: 1.1fr .9fr; gap: 0; margin-bottom: 2.6rem;
}
.featured-media { background: var(--teal); position: relative; min-height: 320px; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-media .tag { position: absolute; top: 18px; left: 18px; background: var(--coral); color:#fff; border: 2.5px solid var(--ink); border-radius: var(--r-pill); padding: .35rem .9rem; font-weight: 800; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; box-shadow: 2px 3px 0 var(--ink); }
.featured-copy { padding: clamp(1.8rem, 3.5vw, 2.8rem); display: flex; flex-direction: column; justify-content: center; }
.featured-copy .guide-meta { margin-bottom: 1rem; }
.featured-copy h2 { font-family: var(--display); font-size: clamp(1.6rem, 3.2vw, 2.4rem); letter-spacing: -.015em; margin-bottom: .8rem; }
.featured-copy p { color: var(--ink-soft); font-size: 1.04rem; margin-bottom: 1.5rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post-card {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: var(--r-md);
  box-shadow: 5px 6px 0 var(--ink); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
}
.post-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 9px 0 var(--ink); }
.post-top { height: 8px; }
.post-card:nth-child(6n+1) .post-top{ background: var(--coral); }
.post-card:nth-child(6n+2) .post-top{ background: var(--teal); }
.post-card:nth-child(6n+3) .post-top{ background: var(--mustard); }
.post-card:nth-child(6n+4) .post-top{ background: var(--terracotta); }
.post-card:nth-child(6n+5) .post-top{ background: var(--teal-deep); }
.post-card:nth-child(6n) .post-top{ background: var(--coral-deep); }
.post-body { padding: 1.5rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-family: var(--display); font-size: 1.2rem; letter-spacing: -.01em; margin-bottom: .55rem; }
.post-body p { color: var(--ink-soft); font-size: .93rem; flex: 1; margin-bottom: 1rem; }
.post-foot { display: flex; align-items: center; justify-content: space-between; font-size: .8rem; font-weight: 700; color: var(--teal-deep); border-top: 2px dashed var(--line); padding-top: .9rem; }
.post-foot .more { color: var(--coral-deep); display: inline-flex; gap: .3rem; }
.post-card:hover .post-foot .more { gap: .55rem; }

/* ---------- newsletter strip ---------- */
.news {
  background: var(--cream-2); border: 2.5px solid var(--ink); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); padding: clamp(1.8rem,4vw,2.8rem); margin-top: 2.8rem;
  display: grid; grid-template-columns: 1fr auto; gap: 1.6rem; align-items: center;
}
.news h3 { font-family: var(--display); font-size: 1.7rem; margin-bottom: .3rem; }
.news p { color: var(--ink-soft); }
.news form { display: flex; gap: .6rem; flex-wrap: wrap; }
.news input { padding: .85rem 1rem; border: 2.5px solid var(--ink); border-radius: var(--r-pill); background: var(--paper); min-width: 220px; }
.news input:focus { outline: none; border-color: var(--coral); }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-stamp, .marquee { animation: none; }
}

/* hero load stagger */
.hero .reveal-load { opacity: 0; transform: translateY(18px); animation: rise .8s cubic-bezier(.22,1,.36,1) forwards; }
.hero .reveal-load:nth-child(1){ animation-delay: .05s; }
.hero .d1{ animation-delay: .12s; } .hero .d2{ animation-delay: .22s; }
.hero .d3{ animation-delay: .32s; } .hero .d4{ animation-delay: .42s; }
.hero-media.reveal-load { animation-delay: .2s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .hero-media { max-width: 460px; }
  .svc-grid, .guide-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .smile-grid { grid-template-columns: 1fr; }
  .smile-media { min-height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured-media { min-height: 240px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .head-cta { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 2.5px solid var(--ink);
    padding: 1rem 1.2rem 1.4rem; gap: .35rem; box-shadow: var(--shadow-soft);
  }
  .nav.open a { padding: .8rem 1rem; border-radius: var(--r-sm); }
  .menu-toggle { display: block; }
  .treat-row { grid-template-columns: 1fr; }
  .treat-side { text-align: left; justify-items: start; }
  .includes { grid-template-columns: 1fr; }
  .news { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .svc-grid, .guide-grid, .blog-grid, .foot-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .hero-badge { left: 0; }
  .smile-stats { gap: 1.2rem; }
  .field-row { grid-template-columns: 1fr; }
  .sec { padding: 3rem 0; }
}
@media (max-width: 380px) {
  .wrap, .tight { width: calc(100% - 1.6rem); }
  .hero-stamp { width: 88px; height: 88px; font-size: .64rem; }
  .btn { padding: .82rem 1.2rem; font-size: .92rem; }
}
