/* ============================================================
   Juniper Dental Studio - Didsbury, Manchester
   Porcelain base, deep petrol ink, single aqua accent.
   Sora (display) + Manrope (body). Pill buttons, 18px cards.
   ============================================================ */

:root {
  --porcelain:   #f5f7f7;
  --white:       #ffffff;
  --mist:        #e9f0ef;
  --mist-deep:   #dce8e6;
  --petrol:      #0d3538;
  --petrol-2:    #14494d;
  --petrol-3:    #1d5c60;
  --ink:         #12292b;
  --body-c:      #47605e;
  --muted:       #6e8482;
  --accent:      #12836f;      /* text-safe accent */
  --aqua:        #35b3a2;      /* decorative accent */
  --aqua-soft:   #d9efeb;
  --star:        #f0b429;
  --line:        #dbe4e3;
  --line-dark:   rgba(255,255,255,.14);

  --r-card:      18px;
  --r-input:     12px;
  --r-pill:      999px;

  --shadow-sm:   0 2px 10px rgba(13,53,56,.06);
  --shadow:      0 14px 38px rgba(13,53,56,.10);
  --shadow-lg:   0 28px 70px rgba(13,53,56,.16);

  --maxw:        1180px;
  --font-display:'Sora', system-ui, sans-serif;
  --font-body:   'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-c);
  background: var(--porcelain);
  line-height: 1.7;
  font-size: 16.5px;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 600;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--accent); text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong, b { color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--white { background: var(--white); }
.section--mist { background: var(--mist); }
.section--petrol { background: var(--petrol); }
.section--petrol h2 { color: var(--white); }
.section--petrol p { color: rgba(233,240,239,.82); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--petrol); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }

.eyebrow {
  display: inline-block;
  font-weight: 800; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.eyebrow--ondark { color: var(--aqua); }

.sechead { max-width: 680px; margin-bottom: 48px; }
.sechead .lead { font-size: 1.12rem; color: var(--muted); margin: 0; }
.sechead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1.2;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: translateY(1px) scale(.98); }
.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn--fill { background: var(--petrol); color: #fff; box-shadow: var(--shadow-sm); }
.btn--fill:hover { background: var(--petrol-2); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--petrol); box-shadow: inset 0 0 0 1.5px var(--petrol); }
.btn--ghost:hover { background: var(--petrol); color: #fff; transform: translateY(-2px); }

.btn--ondark { background: var(--white); color: var(--petrol); }
.btn--ondark:hover { background: var(--aqua-soft); transform: translateY(-2px); }
.btn--ghostdark { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
.btn--ghostdark:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(245,247,247,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(245,247,247,.96); }
.header__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark {
  width: 40px; height: 40px; flex: none; border-radius: 13px;
  background: var(--petrol); color: var(--aqua);
  display: grid; place-items: center;
}
.brand__mark svg { width: 22px; height: 22px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; letter-spacing: -.02em; }
.brand__sub { font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

.nav { display: flex; gap: 30px; }
.nav a { color: var(--body-c); font-weight: 700; font-size: .98rem; transition: color .18s ease; }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active { text-decoration: underline; text-underline-offset: 7px; text-decoration-thickness: 2px; text-decoration-color: var(--aqua); }

.header__cta { display: flex; align-items: center; gap: 18px; }
.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 800; font-size: .98rem;
}
.header__phone svg { width: 17px; height: 17px; color: var(--accent); }
.header .btn { padding: 12px 22px; font-size: .95rem; }

.burger { display: none; background: none; border: 0; color: var(--ink); cursor: pointer; padding: 6px; }
.burger svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(560px, 80vh, 780px);
}
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: 72% 50%;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(13,53,56,.94) 0%,
    rgba(13,53,56,.82) 34%,
    rgba(13,53,56,.42) 62%,
    rgba(13,53,56,.10) 88%);
}
.hero__inner { position: relative; z-index: 2; padding-top: 84px; padding-bottom: 96px; }
.hero h1 { color: #fff; margin-bottom: 22px; max-width: 11.5em; }
.hero__sub { font-size: 1.16rem; color: rgba(233,240,239,.92); max-width: 32em; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__chip {
  position: absolute; right: 44px; bottom: 38px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow);
}
.hero__chip svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.hero__chip b { display: block; font-size: .95rem; color: var(--ink); line-height: 1.25; }
.hero__chip span { font-size: .82rem; color: var(--muted); line-height: 1.3; }

/* ---------- Stats band ---------- */
.stats { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 40px 0;
}
.stat { text-align: left; }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 2.1rem; color: var(--petrol); letter-spacing: -.03em; line-height: 1.1;
}
.stat__num .star { color: var(--star); font-size: 1.5rem; vertical-align: 4px; }
.stat__label { display: block; font-size: .92rem; color: var(--muted); margin-top: 4px; }

/* ---------- Treatments bento ---------- */
.bento {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(215px, auto)) minmax(215px, auto);
}
.tile {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; min-height: 100%;
  transition: transform .22s ease, box-shadow .25s ease;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tile h3 { margin-bottom: 6px; }
.tile p { font-size: .95rem; margin: 0 0 14px; color: var(--muted); }
.tile__fee {
  font-size: .85rem; font-weight: 800; color: var(--accent);
  letter-spacing: .01em;
}
.tile__go {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mist); color: var(--petrol);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.tile__go svg { width: 17px; height: 17px; }
.tile:hover .tile__go { background: var(--petrol); color: #fff; transform: rotate(45deg); }

.tile--feature { grid-column: 1 / 3; grid-row: 1 / 3; padding: 0; }
.tile--feature .tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile--feature .tile__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(13,53,56,0) 30%, rgba(13,53,56,.82) 82%);
}
.tile--feature .tile__body { position: relative; padding: 30px; }
.tile--feature h3 { color: #fff; font-size: 1.6rem; }
.tile--feature p { color: rgba(233,240,239,.85); max-width: 40em; }
.tile--feature .tile__fee { color: var(--aqua); }
.tile--feature .tile__go { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); }
.tile--feature:hover .tile__go { background: #fff; color: var(--petrol); }

.tile--photo { padding: 0; }
.tile--photo .tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile--photo .tile__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(13,53,56,0) 35%, rgba(13,53,56,.78) 88%);
}
.tile--photo .tile__body { position: relative; padding: 26px; }
.tile--photo h3 { color: #fff; }
.tile--photo p { color: rgba(233,240,239,.85); }
.tile--photo .tile__fee { color: var(--aqua); }
.tile--photo .tile__go { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); }
.tile--photo:hover .tile__go { background: #fff; color: var(--petrol); }

.tile--mist { background: var(--mist); box-shadow: none; }
.tile--dark { background: var(--petrol); }
.tile--dark h3 { color: #fff; }
.tile--dark p { color: rgba(233,240,239,.78); }
.tile--dark .tile__fee { color: var(--aqua); }
.tile--dark .tile__go { background: rgba(255,255,255,.12); color: #fff; }
.tile--dark:hover .tile__go { background: #fff; color: var(--petrol); }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media img {
  width: 100%; height: clamp(400px, 52vh, 560px); object-fit: cover;
  border-radius: var(--r-card); box-shadow: var(--shadow);
}
.split__copy h2 { margin-bottom: 18px; }
.split__copy > p { color: var(--muted); }

.checklist { margin: 26px 0 30px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--body-c); font-weight: 600; }
.checklist svg {
  width: 21px; height: 21px; flex: none; margin-top: 3px;
  color: var(--accent);
}

.credline { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.credline__badge {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  background: var(--aqua-soft); color: var(--accent);
  display: grid; place-items: center;
}
.credline__badge svg { width: 22px; height: 22px; }
.credline b { display: block; color: var(--ink); font-size: .96rem; }
.credline span { font-size: .85rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--white); border-radius: var(--r-card);
  padding: 32px 28px 30px; box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--petrol); color: var(--aqua);
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .97rem; margin: 0; color: var(--muted); }

/* ---------- Plan + fee guide ---------- */
.planfees { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 56px; align-items: start; }

.plancard {
  background: var(--petrol); color: rgba(233,240,239,.85);
  border-radius: var(--r-card); padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: sticky; top: 100px;
}
.plancard h3 { color: #fff; font-size: 1.5rem; margin-bottom: 4px; }
.plancard__price { font-family: var(--font-display); color: #fff; font-weight: 700; font-size: 2.6rem; letter-spacing: -.03em; margin: 10px 0 2px; }
.plancard__price span { font-size: 1rem; font-weight: 600; color: rgba(233,240,239,.7); letter-spacing: 0; }
.plancard__blurb { font-size: .97rem; margin-bottom: 22px; }
.plancard__list { display: grid; gap: 12px; margin-bottom: 28px; }
.plancard__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; font-weight: 600; color: rgba(255,255,255,.92); }
.plancard__list svg { width: 19px; height: 19px; flex: none; margin-top: 4px; color: var(--aqua); }

.feegroups { display: grid; gap: 36px; }
.feegroup h3 {
  font-size: 1.05rem; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--mist-deep);
}
.feegroup__rows { display: grid; gap: 4px; }
.feerow {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 9px 0; font-size: .99rem;
}
.feerow b { font-weight: 700; }
.feerow .dots { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-4px); }
.feerow__price { font-weight: 800; color: var(--petrol); white-space: nowrap; }
.feenote { font-size: .88rem; color: var(--muted); margin-top: 22px; }
.feenote a { font-weight: 700; }

/* ---------- Team ---------- */
.team-gallery { display: grid; grid-template-columns: 1.35fr 1fr; gap: 20px; }
.team-gallery img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-card);
}
.team-gallery__col { display: grid; gap: 20px; grid-template-rows: 1fr 1fr; }
.team-gallery__col img { height: 100%; min-height: 0; }

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: 1.25fr 1fr; gap: 20px; }
.quote {
  background: var(--white); border-radius: var(--r-card);
  padding: 34px 32px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0; margin: 0;
}
.quote--lead { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: center; background: var(--petrol); }
.quote--lead .quote__text { color: #fff; font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; line-height: 1.45; letter-spacing: -.01em; }
.quote--lead .quote__by b { color: #fff; }
.quote--lead .quote__by span { color: rgba(233,240,239,.65); }
.quote__stars { color: var(--star); font-size: .95rem; letter-spacing: 3px; margin: 0 0 14px; }
.quote__text { font-size: 1.02rem; color: var(--body-c); margin: 0 0 18px; }
.quote__by { margin-top: auto; }
.quote__by b { display: block; font-size: .95rem; }
.quote__by span { font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__h { margin: 0; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: var(--ink);
  padding: 22px 0; letter-spacing: -.01em;
}
.faq__chev { width: 21px; height: 21px; flex: none; color: var(--accent); transition: transform .3s ease; }
.faq__item.open .faq__chev { transform: rotate(180deg); }
.faq__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq__item.open .faq__panel { grid-template-rows: 1fr; }
.faq__a { overflow: hidden; }
.faq__a p { max-width: 62ch; color: var(--muted); margin: 0 0 22px; }

/* ---------- CTA band ---------- */
.ctaband { text-align: center; }
.ctaband h2 { max-width: 17em; margin: 0 auto .5em; }
.ctaband p { max-width: 38em; margin: 0 auto 30px; }
.ctaband__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.ctaband__meta { margin-top: 26px; font-size: .9rem; color: rgba(233,240,239,.6) !important; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(233,240,239,.72); font-size: .95rem; }
.footer a { color: rgba(233,240,239,.72); transition: color .18s ease; }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px;
  padding: 64px 24px 44px;
}
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__sub { color: rgba(233,240,239,.55); }
.footer__brand p { max-width: 34em; }
.footer__grid div > a { display: block; margin-bottom: 10px; }
.footer__contact a, .footer__contact span { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer__contact svg { width: 17px; height: 17px; flex: none; color: var(--aqua); }
.footer__bar {
  border-top: 1px solid var(--line-dark);
  padding: 20px 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem; color: rgba(233,240,239,.5);
}
.footer__bar a { color: rgba(233,240,239,.7); font-weight: 700; }

/* ---------- Mobile action bar ---------- */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.actionbar .btn { flex: 1; padding: 13px 10px; font-size: .95rem; }

/* ---------- Page hero (inner pages) ---------- */
.pagehero { padding: 56px 0 64px; }
.pagehero h1 { max-width: 15em; margin-bottom: 16px; }
.pagehero .lead { font-size: 1.12rem; color: var(--muted); max-width: 40em; margin: 0; }

/* ---------- Treatments page ---------- */
.txnav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.txnav a {
  display: inline-flex; padding: 9px 18px; border-radius: var(--r-pill);
  background: var(--white); color: var(--petrol); font-weight: 700; font-size: .9rem;
  box-shadow: inset 0 0 0 1.5px var(--line);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.txnav a:hover { background: var(--petrol); color: #fff; box-shadow: none; }

.tx { padding: 72px 0; border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.tx__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: start; }
.tx__grid--flip { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.tx__grid--flip .tx__copy { order: 2; }
.tx__grid--flip .tx__side { order: 1; }
.tx h2 { margin-bottom: 14px; }
.tx__copy p { color: var(--body-c); }
.tx__copy .checklist { margin: 22px 0 26px; }
.tx__side img {
  width: 100%; height: 340px; object-fit: cover;
  border-radius: var(--r-card); box-shadow: var(--shadow);
}
.tx__facts {
  background: var(--white); border-radius: var(--r-card); padding: 26px 28px;
  box-shadow: var(--shadow-sm); margin-top: 20px;
}
.tx__facts--solo { margin-top: 0; }
.tx__facts h3 { font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 14px; }
.tx__facts .feerow { font-size: .95rem; padding: 7px 0; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: start; }

.form-card {
  background: var(--white); border-radius: var(--r-card); padding: 38px 36px;
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.5rem; margin-bottom: 6px; }
.form-card > p { color: var(--muted); font-size: .97rem; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 800; font-size: .88rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .98rem; color: var(--ink);
  background: var(--porcelain); border: 1.5px solid var(--line);
  border-radius: var(--r-input); padding: 13px 15px;
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #93a5a3; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(18,131,111,.16);
}
.field__error { display: none; font-size: .84rem; font-weight: 700; color: #b3372c; }
.field.invalid input { border-color: #b3372c; }
.field.invalid .field__error { display: block; }
.form-card .btn { margin-top: 24px; }
.form-card__note { font-size: .85rem; color: var(--muted); margin: 14px 0 0; }

.infostack { display: grid; gap: 20px; }
.infocard {
  background: var(--white); border-radius: var(--r-card); padding: 28px 30px;
  box-shadow: var(--shadow-sm);
}
.infocard h3 { font-size: 1.05rem; margin-bottom: 14px; }
.infocard p { font-size: .97rem; color: var(--muted); margin-bottom: 0; }
.infocard--dark { background: var(--petrol); }
.infocard--dark h3 { color: #fff; }
.infocard--dark p { color: rgba(233,240,239,.8); }
.infocard--dark a { color: var(--aqua); font-weight: 800; }
.hours { display: grid; gap: 8px; }
.hours li { display: flex; justify-content: space-between; gap: 16px; font-size: .97rem; }
.hours b { font-weight: 700; }
.hours .closed { color: var(--muted); }
.infocard .contactrow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: .97rem; color: var(--body-c); }
.infocard .contactrow:last-child { margin-bottom: 0; }
.infocard .contactrow svg { width: 17px; height: 17px; flex: none; color: var(--accent); }
.infocard .contactrow a { color: var(--ink); font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .section { padding: 76px 0; }
  .stats__row { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 34px 0; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: minmax(200px, auto); }
  .tile--feature { grid-column: 1 / -1; grid-row: auto; min-height: 340px; }
  .split, .planfees, .tx__grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .tx__grid--flip .tx__copy { order: 1; }
  .tx__grid--flip .tx__side { order: 2; }
  .plancard { position: static; }
  .quotes { grid-template-columns: 1fr; }
  .quote--lead { grid-row: auto; }
  .team-gallery { grid-template-columns: 1fr; }
  .team-gallery__col { grid-template-columns: 1fr 1fr; }
  .team-gallery__col img { height: 220px; }
}

@media (max-width: 860px) {
  .nav {
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    display: none; flex-direction: column; gap: 0; padding: 8px 24px 16px;
    box-shadow: var(--shadow);
  }
  .nav.nav--open { display: flex; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--porcelain); }
  .nav a:last-child { border-bottom: 0; }
  .burger { display: block; }
  .header__phone { display: none; }

  .hero { min-height: 74vh; }
  .hero__inner { padding-top: 64px; padding-bottom: 72px; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(13,53,56,.88) 0%, rgba(13,53,56,.78) 60%, rgba(13,53,56,.55) 100%);
  }
  .steps { grid-template-columns: 1fr; }
  .actionbar { display: flex; }
  body { padding-bottom: 74px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding: 52px 24px 36px; }
}

@media (max-width: 560px) {
  .header .btn { display: none; }
  .stats__row { grid-template-columns: 1fr 1fr; gap: 22px; }
  .bento { grid-template-columns: 1fr; }
  .team-gallery__col { grid-template-columns: 1fr; }
  .hero__chip { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 30px 24px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
