/* ANCHOR — dental / medical / chiro / physio starter.
   Sea-glass + slate: soft aqua-tinted white, deep slate-teal ink, calm teal
   brand, warm coral accent. Bricolage Grotesque display / Albert Sans body.
   Tokens feed the CMS block library. */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@600;700;800&family=Albert+Sans:wght@400;500;600;700&display=swap');

:root {
  --t-bg: #f6fbfa;
  --t-bg-alt: #e8f3f1;
  --t-fg: #15302e;
  --t-muted: #56716e;
  --t-brand: #1d7a74;
  --t-brand-fg: #ffffff;
  --t-accent: #f2745b;
  --t-dark-bg: #11302d;
  --t-dark-fg: #ecf7f5;
  --t-border: #d6e7e4;
  --t-radius: 16px;
  --t-font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --t-font-body: "Albert Sans", system-ui, sans-serif;
  --t-maxw: 1120px;
  --t-shadow: 0 4px 20px rgba(21, 48, 46, .08);
  --t-display-weight: 700;
  --t-display-tracking: -0.02em;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--t-font-body); color: var(--t-fg); background: var(--t-bg); }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(246, 251, 250, .92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--t-border);
}
.site-header .bar {
  max-width: var(--t-maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 26px;
}
.logo {
  font-family: var(--t-font-display); font-weight: 700; font-size: 22px;
  color: var(--t-fg); text-decoration: none; letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.logo .mark {
  width: 28px; height: 28px; border-radius: 9px; background: var(--t-brand);
  color: var(--t-brand-fg); display: inline-flex; align-items: center;
  justify-content: center; font-size: 15px; line-height: 1;
}
.site-nav { display: flex; gap: 22px; margin-left: auto; }
.site-nav a { color: var(--t-muted); text-decoration: none; font-weight: 500; font-size: 15px; }
.site-nav a:hover { color: var(--t-brand); }
.header-cta {
  background: var(--t-accent); color: #fff; font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 6px 18px -8px var(--t-accent);
}
.header-cta:hover { filter: brightness(1.06); }
@media (max-width: 760px) { .site-nav { display: none; } }

/* footer */
.site-footer { background: var(--t-dark-bg); color: var(--t-dark-fg); }
.site-footer .inner {
  max-width: var(--t-maxw); margin: 0 auto; padding: 44px 24px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.site-footer p { margin: 0; color: #9dbcb7; font-size: 14px; }
.site-footer .foot-logo {
  font-family: var(--t-font-display); font-weight: 700; font-size: 19px; color: var(--t-dark-fg);
}
