/* forge-website-pro · Smile Care Dental Clinic
   Bespoke design system: Fraunces (display) + Inter (body), deep teal #0b5e54.
   Hand-written; not generated by build.py.
   ----------------------------------------------------------- */

:root {
  --primary:        #0b5e54;
  --primary-strong: #08463e;
  --primary-soft:   #d6ebe6;
  --primary-wash:   #ecf5f2;
  --bg:        #fbfaf7;
  --surface:   #ffffff;
  --ink:       #11211f;
  --ink-soft:  #3b4b48;
  --muted:     #6a7674;
  --line:      #d8e0de;
  --line-soft: #ebe9e2;
  --ok:        #1a8a3f;
  --ok-bg:     #e6f3ea;
  --warn:      #a85a14;
  --warn-bg:   #fbeede;
  --wa:        #25d366;
  --wa-strong: #1ea952;
  --star:      #f5a623;

  --r-sm: 6px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --maxw: 1180px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:    "Inter", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(15, 33, 30, 0.04), 0 2px 6px rgba(15, 33, 30, 0.03);
  --shadow:    0 4px 14px rgba(15, 33, 30, 0.06), 0 12px 32px rgba(15, 33, 30, 0.04);
  --shadow-lg: 0 8px 28px rgba(15, 33, 30, 0.08), 0 24px 64px rgba(15, 33, 30, 0.04);
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  padding-bottom: calc(84px + var(--safe-bottom));
  overflow-x: hidden;
}
@media (min-width: 900px) { body { padding-bottom: 0; } }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; -webkit-tap-highlight-color: transparent; transition: color .15s ease; }
a:hover { color: var(--primary-strong); text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
*:focus-visible { outline: 2.5px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--primary); color: white; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: white;
  padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0;
  z-index: 100; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.05; font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.18; }
h3 { font-size: 1.12rem; line-height: 1.32; font-weight: 600; letter-spacing: -0.008em; }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 56px 0; }
.section--alt { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section--wash { background: linear-gradient(180deg, var(--primary-wash) 0%, var(--bg) 100%); }
.section__head { margin-bottom: 36px; }
.section__eyebrow {
  display: inline-block; font-family: var(--f-body);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary);
  padding: 6px 12px; background: var(--primary-soft);
  border-radius: 999px; margin-bottom: 14px;
}
.section__head h2 { margin-bottom: 12px; max-width: 32ch; font-weight: 800; }
.section__head p { color: var(--muted); max-width: 60ch; font-size: 1.02rem; line-height: 1.6; }

@media (min-width: 800px) {
  .section { padding: 96px 0; }
  .section__head { margin-bottom: 56px; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; gap: 16px;
  max-width: var(--maxw); margin: 0 auto;
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 1.04rem; color: var(--ink);
  letter-spacing: -0.01em; white-space: nowrap;
  max-width: 60vw; overflow: hidden; text-overflow: ellipsis;
}
.nav__brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--primary); color: white;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 0.95rem;
  flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.nav__brand:hover { text-decoration: none; color: var(--primary); }
.nav__links { display: none; gap: 26px; list-style: none; }
.nav__links a { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; position: relative; padding: 4px 0; }
.nav__links a:hover { color: var(--primary); text-decoration: none; }
.nav__links a.is-active { color: var(--primary); font-weight: 600; }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.nav__cta {
  display: none; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: var(--wa); color: white;
  font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.22);
  border: 0;
}
.nav__cta:hover { background: var(--wa-strong); color: white; text-decoration: none; transform: translateY(-1px); }
.nav__hamburger {
  background: none; border: 1px solid var(--line);
  border-radius: 10px; padding: 0;
  color: var(--ink); width: 40px; height: 40px;
  display: grid; place-items: center;
}
.nav__hamburger svg { width: 18px; height: 18px; }

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__hamburger { display: none; }
}
@media (max-width: 480px) {
  .nav__inner { padding: 12px 18px; }
  .nav__brand { font-size: 0.95rem; }
  .nav__cta { display: none; }
}

.nav__menu { display: none; background: var(--surface); border-top: 1px solid var(--line-soft); padding: 8px 18px 18px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.nav__menu.is-open { display: block; }
.nav__menu ul { list-style: none; }
.nav__menu li { border-bottom: 1px solid var(--line-soft); }
.nav__menu li:last-child { border-bottom: 0; }
.nav__menu a { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; color: var(--ink); font-weight: 500; min-height: 48px; }
.nav__menu a.is-active { color: var(--primary); font-weight: 600; }
.nav__menu a::after { content: "→"; color: var(--muted); font-size: 1.05rem; }
.nav__menu-cta { display: flex; gap: 10px; margin-top: 14px; }
.nav__menu-cta a { flex: 1; padding: 14px; border-radius: 12px; text-align: center; font-weight: 600; border: 0; }
.nav__menu-cta a::after { content: ""; }
.nav__menu-cta .wa { background: var(--wa); color: white; }
.nav__menu-cta .tel { background: var(--primary); color: white; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--surface); border-bottom: 1px solid var(--line-soft); padding: 10px 0; }
.trustbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: nowrap;
  max-width: var(--maxw); margin: 0 auto; padding: 0 22px;
}
.trustbar__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--ink-soft); font-weight: 500;
}
.trustbar__item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.trustbar__rating { display: flex; align-items: center; gap: 8px; }
.trustbar__stars { color: var(--star); letter-spacing: 1.5px; font-size: 0.95rem; }
.trustbar__divider { width: 1px; height: 16px; background: var(--line); }
@media (max-width: 720px) {
  /* Mobile: only show the open/closed pill. Hide rating + location + experience. */
  .trustbar__inner { gap: 0; padding: 0 22px; justify-content: flex-start; }
  .trustbar__inner::-webkit-scrollbar { display: none; }
  .trustbar__item { white-space: nowrap; font-size: 0.82rem; }
  .trustbar__divider,
  .trustbar__rating,
  .trustbar__item:not(:first-child) { display: none; }
}

/* ---------- Open/Closed pill ---------- */
.open-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 500;
  background: var(--ok-bg); color: var(--ok);
}
.open-status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok); position: relative;
}
.open-status.is-closed { background: var(--warn-bg); color: var(--warn); }
.open-status.is-closed::before { background: var(--warn); }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 72px;
  background: radial-gradient(700px 360px at 78% 0%, var(--primary-soft) 0%, transparent 70%), var(--bg);
}
.hero__inner { display: grid; gap: 48px; align-items: center; }
.hero__copy { max-width: 600px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.84rem; font-weight: 500; color: var(--ink-soft);
  padding: 7px 14px; background: white;
  border: 1px solid var(--primary-soft); border-radius: 999px;
  margin-bottom: 22px;
}
.hero__eyebrow .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); position: relative; }
.hero__eyebrow .status-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--ok); opacity: 0.4;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 64%, var(--primary-soft) 64%, var(--primary-soft) 92%, transparent 92%);
  padding: 0 4px;
}
.hero h1 .hl-italic { font-style: italic; font-weight: 600; color: var(--primary); }
.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--ink-soft); margin-bottom: 28px;
  line-height: 1.55; max-width: 52ch;
}
.hero__cta-stack { display: flex; flex-direction: column; gap: 12px; max-width: 440px; margin-bottom: 28px; }
.hero__reassurance {
  display: flex; gap: 22px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 0.88rem; color: var(--muted);
}
.hero__reassurance strong { color: var(--ink-soft); font-weight: 600; }

.hero__visual {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-wash));
}
.hero__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__visual.has-fallback img { display: none; }
.hero__visual-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(135deg, var(--primary-soft), var(--primary-wash));
  color: var(--primary);
}
.hero__visual-fallback-mark {
  width: 84px; height: 84px; border-radius: 22px;
  background: var(--primary); color: white;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 1.9rem;
  box-shadow: var(--shadow-lg);
}
.hero__visual-fallback-text { font-family: var(--f-display); font-size: 1rem; color: var(--ink-soft); font-weight: 500; letter-spacing: 0.02em; }

.hero__floating-card {
  position: absolute; background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 12px 16px; border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.86rem; font-weight: 500; color: var(--ink);
  z-index: 3;
}
.hero__floating-card svg { width: 16px; height: 16px; color: var(--ok); }
.hero__floating-card.top-right { top: 18px; right: 18px; }
.hero__floating-card.bottom-left { bottom: 28px; left: 18px; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero__floating-card.bottom-left strong { font-size: 1.1rem; font-family: var(--f-display); font-weight: 700; }
.hero__floating-card.bottom-left span { font-size: 0.78rem; color: var(--muted); font-weight: 400; }

@media (min-width: 980px) {
  .hero { padding: 80px 0 96px; }
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 72px; }
}

/* ---------- Anxieties ---------- */
.anxieties__grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .anxieties__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .anxieties__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.anxiety {
  background: var(--bg); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 22px 20px;
  transition: border-color .2s ease, transform .2s ease;
}
.anxiety:hover { border-color: var(--primary); transform: translateY(-2px); }
.anxiety__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 14px;
}
.anxiety__icon svg { width: 20px; height: 20px; }
.anxiety h3 { font-size: 1rem; margin-bottom: 6px; }
.anxiety p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* ---------- Picker (CRO engine) ---------- */
.picker__inner {
  display: grid; gap: 32px;
  background: var(--surface);
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
}
@media (min-width: 800px) {
  .picker__inner {
    grid-template-columns: 1fr 1.2fr; gap: 0;
    padding: 0; overflow: hidden;
  }
  .picker__intro {
    padding: 40px;
    background: linear-gradient(180deg, var(--primary-wash), white);
    border-right: 1px solid var(--line-soft);
  }
  .picker__panel { padding: 40px; }
}
.picker__intro h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 14px; }
.picker__intro p { color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.picker__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px;
  background: white; border: 1.5px solid var(--line);
  font-size: 0.86rem; font-weight: 500;
  color: var(--ink-soft);
  transition: all .15s ease;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.is-active { background: var(--primary); color: white; border-color: var(--primary); }
.chip.is-active:hover { background: var(--primary-strong); color: white; }

.picker__result {
  background: var(--primary-wash);
  border-radius: var(--r); padding: 22px;
  border: 1px dashed var(--primary-soft);
}
.picker__result-title {
  font-family: var(--f-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--primary); margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.picker__result-title svg { width: 18px; height: 18px; }
.picker__result-grid { display: grid; gap: 12px; margin: 14px 0 18px; }
@media (min-width: 560px) { .picker__result-grid { grid-template-columns: repeat(2, 1fr); } }
.picker__row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); }
.picker__row dt { color: var(--muted); font-weight: 500; min-width: 110px; flex-shrink: 0; }
.picker__row dd { font-weight: 500; }
.picker__cta { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.picker__cta .btn { width: 100%; }
.picker__hint {
  font-size: 0.78rem; color: var(--muted); margin-top: 10px;
  display: flex; align-items: center; gap: 6px;
}
.picker__hint svg { width: 14px; height: 14px; }

/* ---------- Services grid ---------- */
.svc { display: grid; gap: 18px; }
@media (min-width: 640px) { .svc { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
@media (min-width: 1000px) { .svc { grid-template-columns: repeat(3, 1fr); } }
.svc__card {
  background: var(--surface); border-radius: var(--r);
  border: 1px solid var(--line-soft); padding: 26px 24px;
  display: flex; flex-direction: column;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.svc__card:hover {
  border-color: var(--primary); transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.svc__card-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.svc__card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; flex-shrink: 0;
}
.svc__card-icon svg { width: 22px; height: 22px; }
.svc__card h3 { font-size: 1.06rem; line-height: 1.25; }
.svc__card p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; flex: 1; }
.svc__card-link {
  margin-top: 14px; font-size: 0.88rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}

/* ---------- Reviews aggregate ---------- */
.reviews { background: var(--surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.reviews__google-badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: var(--r);
  background: white; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.reviews__google-badge-num {
  font-family: var(--f-display); font-size: 1.6rem; font-weight: 800;
  color: var(--ink); line-height: 1;
}
.reviews__google-badge-meta { display: flex; flex-direction: column; gap: 2px; }
.reviews__google-badge-meta strong { font-size: 0.88rem; }
.reviews__google-badge-meta span { font-size: 0.78rem; color: var(--muted); }
.reviews__cta {
  text-align: center; margin-top: 32px; padding: 28px;
  background: var(--bg); border-radius: var(--r);
  border: 1px dashed var(--line);
}
.reviews__cta p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }

/* ---------- Visit / Contact ---------- */
.visit__grid { display: grid; gap: 32px; }
@media (min-width: 800px) { .visit__grid { grid-template-columns: 1.1fr 1fr; gap: 48px; } }
.visit__map {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--primary-wash); aspect-ratio: 4 / 3;
}
.visit__map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; z-index: 2;
  background: var(--primary-wash);
}
.visit__map-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 24px;
  background: linear-gradient(180deg, var(--primary-wash), var(--bg));
  color: var(--ink-soft);
  transition: opacity .3s ease; z-index: 1;
}
.visit__map-fallback svg { width: 44px; height: 44px; color: var(--primary); }
.visit__map-fallback p { font-size: 0.95rem; font-weight: 500; line-height: 1.4; }
.visit__map-fallback a { font-size: 0.88rem; font-weight: 600; }
.visit__map iframe[data-loaded="1"] + .visit__map-fallback { display: none; }
.visit__map[data-embed-ready="1"] .visit__map-fallback { display: none; }

.visit__detail {
  display: flex; gap: 16px; padding: 20px;
  background: var(--surface); border-radius: var(--r);
  border: 1px solid var(--line-soft);
}
.visit__detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; flex-shrink: 0;
}
.visit__detail-icon svg { width: 22px; height: 22px; }
.visit__detail h3 { font-size: 1rem; margin-bottom: 4px; }
.visit__detail p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.visit__detail a { font-weight: 600; }

.hours-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface); border-radius: var(--r);
  overflow: hidden; border: 1px solid var(--line-soft); margin-top: 8px;
}
.hours-table tr { border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table tr.is-today { background: var(--primary-wash); }
.hours-table tr.is-today th { color: var(--primary); font-weight: 700; }
.hours-table tr.is-today td { color: var(--primary); font-weight: 600; }
.hours-table th, .hours-table td {
  padding: 14px 18px; text-align: left; font-size: 0.94rem;
}
.hours-table th { color: var(--ink-soft); font-weight: 500; width: 40%; }
.hours-table td { color: var(--muted); }

/* ---------- Contact action cards ---------- */
.contact-actions { display: grid; gap: 14px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; color: var(--ink);
  transition: border-color .18s ease, transform .18s ease;
}
.contact-card:hover {
  border-color: var(--primary); transform: translateY(-2px);
  text-decoration: none; color: var(--ink);
}
.contact-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card.wa .contact-card__icon { background: #d8f5e3; color: var(--wa-strong); }
.contact-card__body { display: flex; flex-direction: column; gap: 2px; }
.contact-card__body strong { font-size: 1rem; font-weight: 700; }
.contact-card__body span { font-size: 0.86rem; color: var(--muted); }
.contact-card__arrow { margin-left: auto; color: var(--muted); font-size: 1.1rem; }

/* ---------- Final CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
  color: white; padding: 64px 0; text-align: center;
}
.cta-strip h2 { color: white; max-width: 24ch; margin: 0 auto 14px; font-style: italic; font-weight: 600; }
.cta-strip p { color: rgba(255,255,255,0.92); max-width: 52ch; margin: 0 auto 28px; font-size: 1.02rem; }
.cta-strip .btn { background: white; color: var(--primary); box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.cta-strip .btn:hover { background: var(--bg); }

/* ---------- Footer ---------- */
.footer { background: #0e1c1a; color: #a8b3b1; padding: 56px 0 28px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.footer__grid { display: grid; gap: 36px; margin-bottom: 36px; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer__brand-block { max-width: 360px; }
.footer__brand {
  font-family: var(--f-display); font-size: 1.18rem;
  color: white; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.footer__tagline { color: #8a9694; font-size: 0.9rem; line-height: 1.55; }
.footer__contact-line {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px; color: #c8d1cf; font-size: 0.9rem;
}
.footer__contact-line svg { width: 16px; height: 16px; color: var(--primary); }
.footer h4 {
  color: white; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px;
  font-family: var(--f-body);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: #a8b3b1; font-size: 0.92rem; }
.footer a:hover { color: white; }
.footer__bottom {
  border-top: 1px solid #1c2b29; padding-top: 22px;
  font-size: 0.84rem; color: #6a7674;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: block; position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + var(--safe-bottom));
  box-shadow: 0 -6px 24px rgba(0,0,0,0.06);
}
.mobile-cta__inner {
  display: grid; grid-template-columns: 2fr 1fr; gap: 8px;
  max-width: var(--maxw); margin: 0 auto;
}
.mobile-cta .btn { min-height: 50px; border-radius: 12px; font-size: 0.94rem; padding: 12px 16px; }
.mobile-cta .btn--wa svg { width: 18px; height: 18px; }
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; border-radius: 14px; border: 0;
  font-family: var(--f-body); font-weight: 600; font-size: 1rem;
  line-height: 1; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  min-height: 56px;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--wa { background: var(--wa); color: white; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.30); }
.btn--wa:hover { background: var(--wa-strong); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35); }
.btn--secondary { background: white; color: var(--ink); border: 1.5px solid var(--line); }
.btn--secondary:hover { background: var(--primary-wash); border-color: var(--primary); color: var(--primary); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--primary); padding: 14px 18px; }
.btn--ghost:hover { background: var(--primary-wash); text-decoration: none; }

/* ---------- About page ---------- */
.about__lede {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--ink-soft);
  line-height: 1.4; max-width: 36ch; margin-bottom: 28px;
}
.about__body { max-width: 64ch; }
.about__body p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; margin-bottom: 18px; }
.about__body strong { color: var(--ink); font-weight: 600; }
.about__stat-grid { display: grid; gap: 14px; margin: 32px 0; }
@media (min-width: 640px) { .about__stat-grid { grid-template-columns: repeat(3, 1fr); } }
.about__stat {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: 22px 20px;
}
.about__stat strong {
  display: block; font-family: var(--f-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--primary); letter-spacing: -0.02em;
}
.about__stat span { color: var(--muted); font-size: 0.88rem; }

/* ---------- Utilities ---------- */
.divider { height: 1px; background: var(--line-soft); margin: 32px 0; }
.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;
}
