@charset "UTF-8";
/* ==========================================================================
   Smile Harbour Dental Practice
   Ported from the "Modernist" design system: Archivo, zero radius, 2px rules,
   a single teal accent, and monochrome photography.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  --paper: #f3f2f2;
  --surface: #eae9e9;
  --ink: #201e1d;
  --accent: #0e6f80;         /* teal — Smile Harbour */
  --accent-600: #0b5b6a;
  --accent-700: #07495a;
  --accent-400: #74c8d8;
  --accent-100: #e7f4f7;

  --color-bg: var(--paper);
  --color-surface: var(--surface);
  --color-text: var(--ink);
  --color-accent: var(--accent);
  --color-accent-700: var(--accent-700);
  --color-divider: color-mix(in srgb, var(--color-text) 40%, transparent);

  --ink-82: color-mix(in srgb, var(--color-text) 82%, transparent);
  --ink-72: color-mix(in srgb, var(--color-text) 72%, transparent);
  --ink-65: color-mix(in srgb, var(--color-text) 65%, transparent);
  --ink-45: color-mix(in srgb, var(--color-text) 45%, transparent);

  --font: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --edge: clamp(20px, 5vw, 72px);
  --wrap: 1280px;

  --shadow-lg: 0 12px 32px color-mix(in srgb, #2d2b2b 26%, transparent);
}

.band--surface {
  background: var(--color-surface);
  border-top: 2px solid var(--color-divider);
  border-bottom: 2px solid var(--color-divider);
}

.band--accent {
  --color-bg: var(--accent);
  --color-text: #fff;
  --color-accent-700: #fff;
  --color-divider: color-mix(in srgb, #fff 50%, transparent);
  --ink-82: color-mix(in srgb, #fff 90%, transparent);
  --ink-72: color-mix(in srgb, #fff 84%, transparent);
  --ink-65: color-mix(in srgb, #fff 80%, transparent);
  background: var(--color-bg);
  color: var(--color-text);
}

.band--ink {
  --color-bg: var(--ink);
  --color-surface: #2b2827;
  --color-text: #f3f2f2;
  --color-accent-700: var(--accent-400);
  --color-divider: color-mix(in srgb, #f3f2f2 24%, transparent);
  --ink-82: color-mix(in srgb, var(--color-text) 82%, transparent);
  --ink-72: color-mix(in srgb, var(--color-text) 74%, transparent);
  --ink-65: color-mix(in srgb, var(--color-text) 66%, transparent);
  --ink-45: color-mix(in srgb, var(--color-text) 50%, transparent);
  background: var(--color-bg);
  color: var(--color-text);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 8px;
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.018em;
}

p { margin: 0 0 12px; }

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-700); }

img { display: block; max-width: 100%; }
figure { margin: 0; }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--accent) 30%, transparent); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px; left: var(--edge);
  z-index: 100;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { top: 8px; color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--edge);
}

.band { position: relative; }
.band__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--edge);
}
.band__inner--tight { padding-block: clamp(30px, 4vw, 48px); }

.hr {
  height: 2px;
  margin: 0;
  border: 0;
  background: var(--color-divider);
}

/* --------------------------------------------------------------------------
   4. Type
   -------------------------------------------------------------------------- */

.kicker {
  display: block;
  margin: 0 0 20px;
  color: var(--color-accent-700);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.band--accent .kicker { color: #fff; }

.display {
  margin: 0 0 0 -0.055em;
  font-size: clamp(40px, 5.4vw, 78px);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.06;
}
.display > span { display: block; }

.h-page {
  margin: 0 0 0 -0.05em;
  font-size: clamp(34px, 4.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
}
.h-page > span { display: block; }

.h-section {
  margin: 0 0 0 -0.05em;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.08;
}
.h-section > span { display: block; }

.h-sub {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.lede {
  max-width: 52ch;
  color: var(--ink-82);
  font-size: 17px;
  line-height: 1.65;
}

.prose {
  max-width: 60ch;
  color: var(--ink-82);
  font-size: 15.5px;
  line-height: 1.7;
}
.prose--wide { max-width: 68ch; }

.caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: var(--ink-65);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.small-caps {
  color: var(--ink-72);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. Buttons and inputs
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg { display: block; flex: none; }

.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-600); border-color: var(--accent-600); color: #fff; }

.btn-secondary { border-color: var(--color-divider); color: var(--color-text); }
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); color: var(--color-text); }

.btn-outline { border-color: var(--color-text); color: var(--color-text); }
.btn-outline:hover { background: color-mix(in srgb, var(--color-text) 12%, transparent); color: var(--color-text); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 16px; font-size: 13px; }

.field > label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-divider);
  border-radius: 0;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font);
  font-size: 15px;
  caret-color: var(--color-accent);
}
.input::placeholder { color: var(--ink-45); }
.input:hover { border-color: color-mix(in srgb, var(--color-text) 60%, transparent); }
.input:focus-visible { border-color: var(--color-accent); outline-offset: 0; }
textarea.input { min-height: 130px; resize: vertical; }
select.input { appearance: none; padding-right: 40px; }
.field__hint { margin: 7px 0 0; color: var(--ink-65); font-size: 13px; line-height: 1.5; }

/* Segmented radio group. */
.seg { display: inline-flex; flex-wrap: wrap; border: 1px solid var(--color-divider); }
.seg-opt {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  font-size: 14px;
  cursor: pointer;
}
.seg-opt + .seg-opt { border-left: 1px solid var(--color-divider); }
.seg-opt input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.seg-opt:has(input:checked) { background: var(--accent); color: #fff; }
.seg-opt:not(:has(input:checked)):hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.seg-opt:has(input:focus-visible) { outline: 2px solid var(--color-accent); outline-offset: -2px; }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  background: var(--accent-100);
  color: #07495a;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.band--ink .tag { background: #3a3534; color: var(--accent-400); }

/* --------------------------------------------------------------------------
   6. Photography
   -------------------------------------------------------------------------- */

.shot {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-surface);
  filter: grayscale(1) contrast(1.08);
}
.shot > img { width: 100%; height: 100%; object-fit: cover; }
.shot--reveal { transition: filter 0.5s ease; }
a:hover .shot--reveal, .tile:hover .shot--reveal { filter: grayscale(0) contrast(1.02); }

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */

/* Announcement strip. */
.announce { border-bottom: 1px solid var(--color-divider); }
.announce__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 10px var(--edge);
  color: var(--ink-72);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.announce__sep { color: var(--ink-45); }
.announce__flag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: var(--accent-700);
}
.announce__flag::before {
  content: "";
  width: 8px; height: 8px;
  flex: none;
  background: var(--accent);
}
@media (max-width: 720px) {
  .announce__flag { margin-left: 0; }
}

/* Brand row. */
.masthead__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 20px 40px;
  align-items: center;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 34px) var(--edge) clamp(18px, 2.6vw, 30px);
}
.brand { display: block; color: var(--color-text); }
.brand__row {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 18px);
}
.brand__mark {
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  flex: none;
  background: var(--accent);
}
.brand__name {
  font-size: clamp(24px, 2.9vw, 38px);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand__sub {
  display: block;
  margin-top: 12px;
  color: var(--ink-65);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.masthead__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.4vw, 36px);
}
.phone-block { color: var(--color-text); }
.phone-block:hover { color: var(--accent); }
.phone-block span:first-child {
  display: block;
  color: var(--ink-65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.phone-block span:last-child {
  display: block;
  margin-top: 5px;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  .masthead__actions { justify-content: flex-start; }
}

/* Nav row. The design used flex-wrap:nowrap with six nowrap items, which
   overflowed on any narrow screen. Below the breakpoint this becomes a
   collapsible drawer instead. */
.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-top: 2px solid var(--color-divider);
  border-bottom: 2px solid var(--color-divider);
  background: var(--color-bg);
}
.navbar__inner {
  display: flex;
  align-items: stretch;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--edge);
}
.navbar a {
  flex: 1 1 0;
  min-width: 0;
  padding: 15px 0;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.navbar a + a,
.navbar__hours { padding-left: clamp(12px, 2vw, 26px); border-left: 1px solid var(--color-divider); }
.navbar a:hover { color: var(--accent); }
.navbar a[aria-current="page"] { color: var(--accent); box-shadow: inset 0 -2px 0 var(--accent); }
.navbar__hours {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--ink-65);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-toggle__bars { position: relative; display: block; width: 16px; height: 9px; flex: none; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: currentColor;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after { bottom: 0; }

@media (max-width: 900px) {
  .navbar__inner { flex-direction: column; align-items: stretch; }
  .nav-toggle { display: flex; }
  .navbar__links { display: flex; flex-direction: column; padding-bottom: 12px; }
  .navbar__links[hidden] { display: none; }
  .navbar a,
  .navbar a + a,
  .navbar__hours {
    flex: none;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--color-divider);
    font-size: 13px;
  }
  .navbar a[aria-current="page"] { box-shadow: none; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(36px, 6vw, 84px) var(--edge) clamp(32px, 4vw, 56px);
}
.hero__lede { margin: 26px 0 0; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 26px;
}

/* --------------------------------------------------------------------------
   9. Figures
   -------------------------------------------------------------------------- */

.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: clamp(28px, 4vw, 48px) 0;
}
.figure__value {
  margin: 0 0 0 -0.045em;
  color: var(--accent);
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.1;
}
.band--ink .figure__value { color: var(--accent-400); }
.figure__label {
  margin: 12px 0 0;
  color: var(--ink-72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 820px) { .figures { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .figures { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   10. Tiles
   -------------------------------------------------------------------------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.tile { display: flex; flex-direction: column; color: inherit; }
.tile__body {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 2px solid var(--color-divider);
}
.tile__title { margin: 0; font-size: 18px; font-weight: 800; line-height: 1.2; }
.tile__note { margin: 8px 0 0; color: var(--ink-72); font-size: 13.5px; }

/* Quote tile, sits inside the tile grid. */
.quote-tile {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--color-surface);
}
.quote-tile blockquote {
  margin: 20px 0 0;
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.24;
}
.quote-tile figcaption {
  margin: auto 0 0;
  padding-top: 24px;
  color: var(--ink-65);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. Treatments list
   -------------------------------------------------------------------------- */

.treatments {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 0 clamp(24px, 3vw, 48px);
}
.treatment {
  padding: 22px 0 30px;
  border-top: 2px solid var(--color-divider);
}
.treatment__no {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}
.treatment__name { margin: 0; font-size: 21px; font-weight: 800; line-height: 1.2; }
.treatment__lede {
  margin: 10px 0 16px;
  color: var(--ink-82);
  font-size: 14.5px;
  line-height: 1.65;
}
.treatment__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.treatment__from {
  margin: 0;
  color: var(--accent-700);
  font-size: 14px;
  font-weight: 800;
}
.band--ink .treatment__from { color: var(--accent-400); }

/* --------------------------------------------------------------------------
   12. Numbered step rows
   -------------------------------------------------------------------------- */

.steps { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 2px solid var(--color-divider);
}
.step:last-child { border-bottom: 2px solid var(--color-divider); }
.step__no { margin: 0; color: var(--accent); font-size: 14px; font-weight: 800; }
.step p { margin: 0; font-size: 15.5px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   13. Fees table and plan card
   -------------------------------------------------------------------------- */

.table-scroll { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 15px; }
.table th {
  padding: 8px;
  border-bottom: 2px solid var(--color-divider);
  color: var(--ink-65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}
.table td { padding: 12px 8px; border-bottom: 1px solid var(--color-divider); }
.table td:last-child { font-weight: 800; white-space: nowrap; }
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

.plan { padding: clamp(24px, 3vw, 36px); background: var(--color-surface); }
.plan__price {
  margin: 18px 0 0 -0.045em;
  color: var(--accent);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 800;
  line-height: 1.05;
}
.plan__price span {
  margin-left: 8px;
  color: var(--color-text);
  font-size: 17px;
  letter-spacing: 0.04em;
}
.plan__list { display: grid; gap: 0; margin: 26px 0 0; padding: 0; list-style: none; }
.plan__list li {
  padding: 12px 0;
  border-top: 1px solid var(--color-divider);
  font-size: 15px;
}
.plan__list li:first-child { border-top-width: 2px; }
.plan__list li:last-child { border-bottom: 2px solid var(--color-divider); }

/* --------------------------------------------------------------------------
   14. Team
   -------------------------------------------------------------------------- */

.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(20px, 2.4vw, 32px);
}
.person__body {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 2px solid var(--color-divider);
}
.person__name { margin: 0; font-size: 17px; font-weight: 800; }
.person__meta { margin: 6px 0 0; color: var(--ink-72); font-size: 13.5px; line-height: 1.5; }

/* --------------------------------------------------------------------------
   15. Split, quote, detail
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split--top { align-items: start; }

.pull-quote { max-width: 46ch; }
.pull-quote blockquote {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.24;
}
.pull-quote figcaption {
  margin: 34px 0 0;
  color: var(--ink-65);
  font-size: 15.5px;
  line-height: 1.7;
}

.detail {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  padding: clamp(32px, 4.5vw, 60px) 0;
  border-bottom: 2px solid var(--color-divider);
  scroll-margin-top: 120px;
}
.detail:first-of-type { border-top: 2px solid var(--color-divider); }
.detail--flip > :first-child { order: 2; }
@media (max-width: 860px) {
  .detail { grid-template-columns: 1fr; }
  .detail--flip > :first-child { order: 0; }
}

/* FAQ — native details, so it works without JavaScript. */
.faq { margin: 26px 0 0; border-top: 2px solid var(--color-divider); }
.faq details { border-bottom: 1px solid var(--color-divider); }
.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  font-size: 15.5px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--accent); }
.faq p { margin: 0 0 16px; color: var(--ink-82); font-size: 15px; line-height: 1.7; }

/* --------------------------------------------------------------------------
   16. Section heads
   -------------------------------------------------------------------------- */

.section-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding-bottom: clamp(28px, 3vw, 40px);
}

/* --------------------------------------------------------------------------
   17. Contact cards, forms, alerts
   -------------------------------------------------------------------------- */

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  border: 2px solid var(--color-divider);
  background: var(--color-divider);
}
.info-cards > div { padding: clamp(20px, 2.4vw, 28px); background: var(--color-bg); }
.info-cards dt {
  margin: 0 0 10px;
  color: var(--accent-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.info-cards dd { margin: 0; font-size: 17px; font-weight: 800; line-height: 1.4; }
.info-cards dd a { color: inherit; }
.info-cards small {
  display: block;
  margin-top: 10px;
  color: var(--ink-65);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.hours-list { width: 100%; border-collapse: collapse; font-size: 15px; }
.hours-list th {
  padding: 11px 0;
  border-bottom: 1px solid var(--color-divider);
  font-weight: 400;
  text-align: left;
}
.hours-list td {
  padding: 11px 0;
  border-bottom: 1px solid var(--color-divider);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 720px;
}
.field--full { grid-column: 1 / -1; }
.form-note { margin: 20px 0 0; color: var(--ink-65); font-size: 13.5px; line-height: 1.6; }

.alert {
  max-width: 720px;
  margin: 0 0 28px;
  padding: 18px 20px;
  border: 2px solid var(--color-divider);
  border-left: 6px solid var(--accent);
  background: var(--color-surface);
  font-size: 15.5px;
  line-height: 1.7;
}
.alert > :last-child { margin-bottom: 0; }
.alert ul { margin: 10px 0 0; padding-left: 22px; }

/* Action cards — the home page's closing block. Three concrete ways to get in
   touch on the surface colour, rather than a solid accent poster: a practice
   should look easy to reach, not loud. */
.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 2px;
  background: var(--color-divider);
  border: 2px solid var(--color-divider);
}
.action {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.6vw, 32px);
  background: var(--color-bg);
  color: inherit;
  transition: background 0.2s ease;
}
.action:hover { background: var(--color-surface); color: inherit; }
.action__rule {
  width: 46px; height: 4px;
  margin-bottom: 20px;
  background: var(--accent);
}
.action__label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.action__value {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.action:hover .action__value { color: var(--accent); }
.action__note {
  margin: auto 0 0;
  padding-top: 14px;
  color: var(--ink-72);
  font-size: 14px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   18. Page head
   -------------------------------------------------------------------------- */

.page-head__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(40px, 5.5vw, 76px) var(--edge) clamp(30px, 4vw, 48px);
}
.page-head__lede { max-width: 58ch; margin: 26px 0 0; }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */

.site-footer { border-top: 2px solid var(--color-divider); }
.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(28px, 3vw, 48px);
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) var(--edge) 32px;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.site-footer__brand::before {
  content: "";
  width: 12px; height: 12px;
  flex: none;
  background: var(--accent);
}
.site-footer h2 {
  margin: 0 0 14px;
  color: var(--ink-65);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-footer p, .site-footer li { font-size: 14px; line-height: 1.65; }
.site-footer a { color: var(--color-text); }
.site-footer a:hover { color: var(--accent); }
.site-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer__icon {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.site-footer__icon svg { margin-top: 3px; }
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 18px var(--edge) 40px;
  color: var(--ink-65);
  font-size: 12.5px;
}
.site-footer__legal > :last-child { margin-left: auto; }
.site-credit a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.site-credit a:hover { color: var(--accent); }
@media (max-width: 620px) {
  .site-footer__legal > :last-child { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   20. Reveal on scroll (hidden state applied by JS only)
   -------------------------------------------------------------------------- */

[data-reveal].is-hidden { opacity: 0; transform: translateY(16px); }
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal].is-hidden { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Print
   -------------------------------------------------------------------------- */

@media print {
  .navbar, .nav-toggle, .announce, .skip-link { display: none !important; }
  .band--accent, .band--ink { background: #fff !important; color: #000 !important; }
  .shot { filter: none; }
  .faq p { display: block !important; }
  body { font-size: 11pt; }
}
