/* ==========================================================================
   Dr. Arijit Chakraborty — consultant neurosurgeon, Snayu Neurosciences, Kolkata

   Design notes
   ------------
   A red, blue and white palette by request. Blue (#003069) is still the
   practice's own logo colour and carries the page throughout; red replaces
   the logo's orange as the one warm signal, reserved for Call and Book so
   those two actions stay unmistakable; white/near-white carries reading.

   This is a neurology practice, not an orthopedic one, and the page says so
   visually rather than just in the copy: the hero is a light field carrying
   a faint scatter of connected nodes — a synapse map, not a radiograph. One
   typeface (Asap Sharp) carries both headings and body copy — a variable
   font, so weight alone tells display text from reading text apart, rather
   than a serif/sans pairing. The one dark passage on the page is a solid
   brand-blue band lower down, not the hero, so the very first thing a
   visitor sees is light, not a backlit dark box.

   1. Legibility is a functional requirement, not a preference. Base size is
      18px, line-height is generous, contrast is kept well above WCAG AA, and
      every tap target clears 48px. Nothing important is carried by colour
      alone.

   2. The page must work on a slow connection. One stylesheet, one self
      hosted variable typeface, no framework, no JavaScript required to read
      or navigate anything.
   ========================================================================== */

/* ---------- fonts ---------- */

@font-face {
  font-family: "Asap Sharp";
  src: url("/assets/fonts/asap-sharp.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Asap Sharp";
  src: url("/assets/fonts/asap-sharp-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- tokens ---------- */

:root {
  /* Blue is the brand colour throughout; red is reserved for Call and Book
     so those two actions are the only warm things on the page and cannot
     be confused with ordinary blue links; everything else leans white. */

  --bone:        #F5F8FD;   /* near-white, just enough tint to sit under blue */
  --porcelain:   #FFFFFF;
  --sunken:      #E7ECF8;

  --ink:         #14152B;
  --slate:       #4E5479;
  --faint:       #767BA3;

  /* Reserved for the footer and the mobile action bar — the one place on
     the page that stays a near-black navy. */
  --field:       #0A0F1D;
  --field-2:     #131A2E;
  --field-ink:   #EEF1FB;
  --field-muted: #8D93BB;

  /* #003069 and #D30D14 are sampled directly from the practice's own "AC"
     monogram (the brain-and-spine mark) — everything below is a tint or
     shade of one of those two. */
  --brand:       #003069;   /* logo navy */
  --brand-deep:  #00244F;
  --brand-lift:  #DFEAF7;   /* pale tint behind icons */
  --brand-glow:  #82AAD9;   /* legible highlight on the dark field */
  --brand-ink:   #EEF1FB;   /* body text on a solid brand-blue background */
  --grey:        #8C9298;

  /* Red, blue and white — used only on the actions that book or call, so
     nothing else on the page competes with them. */
  --amber:       #D30D14;   /* logo red */
  --amber-lift:  #FAE1E2;

  --rule:        #DEE3F2;
  --rule-strong: #BFC7E2;

  --shadow-sm: 0 1px 2px rgba(20, 21, 43, .06);
  --shadow-md: 0 2px 4px rgba(20, 21, 43, .05), 0 10px 28px -14px rgba(20, 21, 43, .22);
  --shadow-lg: 0 4px 8px rgba(20, 21, 43, .06), 0 22px 50px -20px rgba(20, 21, 43, .32);

  --serif: "Asap Sharp", ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "Asap Sharp", ui-sans-serif, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 74rem;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
}

/* ---------- reset ---------- */

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

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

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.125rem;      /* 18px — deliberate, for older readers */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.012em;
  text-wrap: balance;
  margin: 0;
}

p { margin: 0; }

a { color: var(--brand-deep); }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 8px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: .9rem 1.4rem;
  z-index: 200;
}
.skip:focus { left: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin: 0;
}

/* ==========================================================================
   header
   ========================================================================== */

.topbar {
  background: var(--brand-deep);
  color: #A4C4EB;
  font-size: .875rem;
}

.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  min-height: 2.6rem;
  padding-block: .4rem;
}

.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

.topbar .creds { display: flex; flex-wrap: wrap; gap: .3rem .9rem; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--porcelain);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(20, 21, 43, .05);
}

.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  width: auto;
  height: 2.6rem;
  object-fit: contain;
  flex: none;
}

.brand-mark:not([src]),
.brand-mark[src=""] { display: none; }

.brand-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -.01em;
}

.nav {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex: none;
}

.brand, .head-actions { flex: none; }

.nav a {
  display: block;
  padding: .55rem .7rem;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav a:hover { background: var(--sunken); }
.nav a[aria-current="page"] { color: var(--brand-deep); box-shadow: inset 0 -2px 0 var(--brand); }

.head-actions { display: flex; align-items: center; gap: .6rem; }

@media (max-width: 46rem) {
  .loc .loc-links { gap: .6rem; padding-top: 1rem; }
  .loc .loc-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: .5rem 1rem;
    border: 1px solid var(--rule-strong);
    border-radius: 6px;
    background: var(--porcelain);
    text-decoration: none;
  }

  .foot ul { gap: .1rem; }
  .foot ul a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
  }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 3rem;
  padding: .7rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }

.btn-book { background: var(--amber); color: #fff; }
.btn-book:hover { background: #A50A10; }

.btn-call { background: var(--brand); color: #fff; }
.btn-call:hover { background: var(--brand-deep); }

.btn-quiet {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-quiet:hover { background: var(--sunken); }

.btn-ghost-light {
  background: transparent;
  color: var(--field-ink);
  border-color: rgba(234, 240, 239, .32);
}
.btn-ghost-light:hover { background: rgba(234, 240, 239, .1); }

.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* ==========================================================================
   hero — a synapse map, not a radiograph

   Deliberately light, not the backlit dark box a viewing-box hero would be.
   The decorative layer is a scatter of connected nodes standing in for
   neurons and their connections — apt for a neurosurgery practice in a way
   a bone/joint grid pattern is not — faded in toward the portrait side and
   nearly gone behind the reading text.
   ========================================================================== */

.hero {
  position: relative;
  background: linear-gradient(165deg, var(--porcelain) 0%, var(--bone) 55%, var(--brand-lift) 130%);
  color: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MDAgNTAwIj4KPGxpbmUgeDE9IjcwMi4zIiB5MT0iMzEuNCIgeDI9IjY1MS4xIiB5Mj0iMTQ5LjkiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI0NjMuOCIgeTE9IjExMS42IiB4Mj0iNDI1LjIiIHkyPSIxMDMuMCIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9Ijc1MC44IiB5MT0iMTg2LjIiIHgyPSI3OTguMiIgeTI9IjE0NC4wIiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8bGluZSB4MT0iNDI0LjMiIHkxPSIyNTMuNyIgeDI9IjQxMS43IiB5Mj0iMjE2LjgiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI0OTcuNCIgeTE9IjI5MC44IiB4Mj0iNTc0LjAiIHkyPSIyOTIuOCIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9IjQ5Ny40IiB5MT0iMjkwLjgiIHgyPSI1MzQuMSIgeTI9IjI4Ny4yIiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8bGluZSB4MT0iNzQ0LjciIHkxPSI0NzMuOSIgeDI9IjgzMS43IiB5Mj0iMzQ5LjUiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI3MTguMCIgeTE9IjE5OC4zIiB4Mj0iNjUxLjEiIHkyPSIxNDkuOSIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9IjkyNC4wIiB5MT0iMjMuMyIgeDI9IjkyNS45IiB5Mj0iNTkuMCIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9IjU3OS40IiB5MT0iNzUuNCIgeDI9IjY1MS4xIiB5Mj0iMTQ5LjkiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI2OTUuOSIgeTE9IjE4Mi44IiB4Mj0iNjUxLjEiIHkyPSIxNDkuOSIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9Ijc1Ny4xIiB5MT0iMzYuMiIgeDI9Ijc5OC4yIiB5Mj0iMTQ0LjAiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI2MzUuNCIgeTE9IjQxMy40IiB4Mj0iNzQ0LjciIHkyPSI0NzMuOSIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9IjYzNS40IiB5MT0iNDEzLjQiIHgyPSI2OTAuMiIgeTI9IjQzNy42IiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8bGluZSB4MT0iNDExLjciIHkxPSIyMTYuOCIgeDI9IjQ5Ny40IiB5Mj0iMjkwLjgiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI0MzEuNSIgeTE9IjQ1LjQiIHgyPSI0NzYuMCIgeTI9IjU4LjkiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI5MjQuMCIgeTE9IjIzLjMiIHgyPSI4NjQuNSIgeTI9IjE0NC44IiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8bGluZSB4MT0iNzQ0LjciIHkxPSI0NzMuOSIgeDI9IjY5MC4yIiB5Mj0iNDM3LjYiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI1NzAuOCIgeTE9IjQwOC4xIiB4Mj0iNTc0LjAiIHkyPSIyOTIuOCIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9IjYzNS40IiB5MT0iNDEzLjQiIHgyPSI1NzAuOCIgeTI9IjQwOC4xIiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8bGluZSB4MT0iODY0LjUiIHkxPSIxNDQuOCIgeDI9IjkyNS45IiB5Mj0iNTkuMCIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9IjQ2My44IiB5MT0iMTExLjYiIHgyPSI0NzYuMCIgeTI9IjU4LjkiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI4NjQuNSIgeTE9IjE0NC44IiB4Mj0iNzk4LjIiIHkyPSIxNDQuMCIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9Ijc3Mi42IiB5MT0iMjEzLjgiIHgyPSI4MzEuNyIgeTI9IjM0OS41IiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8bGluZSB4MT0iNDI0LjMiIHkxPSIyNTMuNyIgeDI9IjQ5Ny40IiB5Mj0iMjkwLjgiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI0MzEuNSIgeTE9IjQ1LjQiIHgyPSI0MjUuMiIgeTI9IjEwMy4wIiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8bGluZSB4MT0iNzE4LjAiIHkxPSIxOTguMyIgeDI9Ijc1MC44IiB5Mj0iMTg2LjIiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI1NzkuNCIgeTE9Ijc1LjQiIHgyPSI0NzYuMCIgeTI9IjU4LjkiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI2OTUuOSIgeTE9IjE4Mi44IiB4Mj0iNzE4LjAiIHkyPSIxOTguMyIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9IjcxOC4wIiB5MT0iMTk4LjMiIHgyPSI3NzIuNiIgeTI9IjIxMy44IiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8bGluZSB4MT0iNTc0LjAiIHkxPSIyOTIuOCIgeDI9IjUzNC4xIiB5Mj0iMjg3LjIiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI3NTcuMSIgeTE9IjM2LjIiIHgyPSI3MDIuMyIgeTI9IjMxLjQiIHN0cm9rZT0iIzAwMzA2OSIgc3Ryb2tlLW9wYWNpdHk9IjAuMTYiIHN0cm9rZS13aWR0aD0iMS4zIi8+CjxsaW5lIHgxPSI2OTUuOSIgeTE9IjE4Mi44IiB4Mj0iNzUwLjgiIHkyPSIxODYuMiIgc3Ryb2tlPSIjMDAzMDY5IiBzdHJva2Utb3BhY2l0eT0iMC4xNiIgc3Ryb2tlLXdpZHRoPSIxLjMiLz4KPGxpbmUgeDE9Ijc1MC44IiB5MT0iMTg2LjIiIHgyPSI3NzIuNiIgeTI9IjIxMy44IiBzdHJva2U9IiMwMDMwNjkiIHN0cm9rZS1vcGFjaXR5PSIwLjE2IiBzdHJva2Utd2lkdGg9IjEuMyIvPgo8Y2lyY2xlIGN4PSI1NzkuNCIgY3k9Ijc1LjQiIHI9IjQuNSIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjUiLz4KPGNpcmNsZSBjeD0iNzU3LjEiIGN5PSIzNi4yIiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI2OTUuOSIgY3k9IjE4Mi44IiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI0MjQuMyIgY3k9IjI1My43IiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI0MTEuNyIgY3k9IjIxNi44IiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI0MzEuNSIgY3k9IjQ1LjQiIHI9IjIuNiIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjMyIi8+CjxjaXJjbGUgY3g9IjYzNS40IiBjeT0iNDEzLjQiIHI9IjIuNiIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjMyIi8+CjxjaXJjbGUgY3g9IjQ2My44IiBjeT0iMTExLjYiIHI9IjQuNSIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjUiLz4KPGNpcmNsZSBjeD0iNzQ0LjciIGN5PSI0NzMuOSIgcj0iMi42IiBmaWxsPSIjMDAzMDY5IiBmaWxsLW9wYWNpdHk9IjAuMzIiLz4KPGNpcmNsZSBjeD0iNzE4LjAiIGN5PSIxOTguMyIgcj0iMi42IiBmaWxsPSIjMDAzMDY5IiBmaWxsLW9wYWNpdHk9IjAuMzIiLz4KPGNpcmNsZSBjeD0iOTI0LjAiIGN5PSIyMy4zIiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI4NjQuNSIgY3k9IjE0NC44IiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI0NzYuMCIgY3k9IjU4LjkiIHI9IjIuNiIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjMyIi8+CjxjaXJjbGUgY3g9IjU3MC44IiBjeT0iNDA4LjEiIHI9IjIuNiIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjMyIi8+CjxjaXJjbGUgY3g9IjQ5Ny40IiBjeT0iMjkwLjgiIHI9IjQuNSIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjUiLz4KPGNpcmNsZSBjeD0iNzUwLjgiIGN5PSIxODYuMiIgcj0iMi42IiBmaWxsPSIjMDAzMDY5IiBmaWxsLW9wYWNpdHk9IjAuMzIiLz4KPGNpcmNsZSBjeD0iNzAyLjMiIGN5PSIzMS40IiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI0MjUuMiIgY3k9IjEwMy4wIiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI3NzIuNiIgY3k9IjIxMy44IiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI1NzQuMCIgY3k9IjI5Mi44IiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI2NTEuMSIgY3k9IjE0OS45IiByPSIyLjYiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC4zMiIvPgo8Y2lyY2xlIGN4PSI4MzEuNyIgY3k9IjM0OS41IiByPSI0LjUiIGZpbGw9IiMwMDMwNjkiIGZpbGwtb3BhY2l0eT0iMC41Ii8+CjxjaXJjbGUgY3g9IjUzNC4xIiBjeT0iMjg3LjIiIHI9IjIuNiIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjMyIi8+CjxjaXJjbGUgY3g9IjY5MC4yIiBjeT0iNDM3LjYiIHI9IjIuNiIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjMyIi8+CjxjaXJjbGUgY3g9Ijc5OC4yIiBjeT0iMTQ0LjAiIHI9IjIuNiIgZmlsbD0iIzAwMzA2OSIgZmlsbC1vcGFjaXR5PSIwLjMyIi8+CjxjaXJjbGUgY3g9IjkyNS45IiBjeT0iNTkuMCIgcj0iMi42IiBmaWxsPSIjMDAzMDY5IiBmaWxsLW9wYWNpdHk9IjAuMzIiLz4KPC9zdmc+");
  background-repeat: no-repeat;
  background-position: right -4% top;
  background-size: 62% auto;
  mask-image: linear-gradient(to left, #000 40%, transparent 92%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 1.15rem;
}
.hero-eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  background: var(--amber);
}

.hero h1 {
  font-size: clamp(2.35rem, 5.6vw, 4rem);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 1.15rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-lead {
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  color: var(--slate);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.25rem;
}

.hero-affil {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: .92rem;
  color: var(--slate);
}
.hero-affil strong { color: var(--ink); font-weight: 700; }

/* portrait */

.hero-portrait { position: relative; justify-self: end; order: -1; }

.hero-portrait img {
  position: relative;
  width: min(100%, 27rem);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 22%;
  background: linear-gradient(to top, var(--bone), transparent);
  pointer-events: none;
}

/* ---------- credential band ---------- */

.creds-band {
  background: var(--porcelain);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}

.creds-band .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  gap: 1px;
  padding-block: 0;
  background: var(--rule);
}

.cred {
  padding: 2rem 1.5rem;
  position: relative;
  background: var(--porcelain);
}

.cred .n {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--brand-deep);
  font-variant-numeric: tabular-nums;
}
.cred .n sup {
  font-size: .42em;
  vertical-align: super;
  color: var(--amber);
  margin-left: .1em;
}
.cred .l {
  display: block;
  margin-top: .6rem;
  font-size: .93rem;
  color: var(--slate);
  line-height: 1.45;
}

/* ==========================================================================
   sections
   ========================================================================== */

section { padding-block: clamp(3.25rem, 7vw, 5.5rem); }

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }

.section-head p {
  font-size: 1.08rem;
  color: var(--slate);
}

.on-porcelain { background: var(--porcelain); }

/* ---------- services ---------- */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: 1.25rem;
}

.service {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: 1.6rem 1.5rem 1.7rem;
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}
.service:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service .ico {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-lift);
  color: var(--brand-deep);
  margin-bottom: .3rem;
}
.service .ico svg { width: 1.6rem; height: 1.6rem; }

.service h3 { font-size: 1.3rem; }

.service p {
  font-size: .98rem;
  color: var(--slate);
  line-height: 1.55;
}

.service .more {
  margin-top: auto;
  padding-top: .55rem;
  font-size: .93rem;
  font-weight: 600;
  color: var(--brand-deep);
}
.service:hover .more { text-decoration: underline; }

.service.is-flagship {
  border-color: var(--brand);
  border-width: 2px;
  background: linear-gradient(180deg, var(--brand-lift) 0%, var(--porcelain) 42%);
}

.flag {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--amber);
  padding: .28rem .6rem;
  border-radius: 8px;
}

/* ---------- feature ----------

   The one saturated passage on the page — solid brand blue, not near-black
   navy, so it reads as "the brand, turned up" rather than as the same dark
   panel the hero would have been. */

.feature {
  background: linear-gradient(155deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--brand-ink);
}

.feature .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.feature h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.feature .eyebrow { color: #F7A1A4; }

.feature p { color: var(--brand-ink); }

.feature-points {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .95rem;
}

.feature-points li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: .8rem;
  align-items: start;
  font-size: 1rem;
  color: #fff;
}

.feature-points svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--amber);
  margin-top: .1rem;
}

.feature-card {
  background: rgba(10, 15, 29, .22);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  backdrop-filter: blur(2px);
}

.feature-card .kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #F7A1A4;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #fff;
}

.feature-card .where {
  font-size: .93rem;
  color: var(--brand-ink);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

/* ---------- stories ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  gap: 1.35rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s ease, transform .18s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-media {
  aspect-ratio: 16 / 10;
  background: var(--sunken);
  overflow: hidden;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-body {
  padding: 1.3rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.card-date {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--faint);
}

.card h3 { font-size: 1.22rem; line-height: 1.25; }

.card p {
  font-size: .96rem;
  color: var(--slate);
  line-height: 1.55;
}

.card .more {
  margin-top: auto;
  padding-top: .5rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--brand-deep);
}

/* quote variant */
.card.is-quote { background: var(--brand-lift); border-color: #B3CAE6; }
.card.is-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--ink);
}
.card.is-quote cite {
  font-style: normal;
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand-deep);
}

/* ==========================================================================
   inner pages
   ========================================================================== */

.page-hero {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.page-hero .wrap {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  max-width: 52rem;
  margin-inline: auto;
}

.page-hero .hero-eyebrow {
  color: var(--brand-deep);
  margin-bottom: 0;
}
.page-hero .hero-eyebrow::before { background: var(--brand); }
.page-hero .hero-eyebrow a { color: inherit; text-decoration: none; }
.page-hero .hero-eyebrow a:hover { text-decoration: underline; }

.page-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
}

.page-hero-lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 40rem;
}

.page-hero-lead time { font-variant-numeric: tabular-nums; }

.hero-compact .wrap {
  grid-template-columns: 1fr;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.hero-compact .hero-text { max-width: 44rem; }

/* ---------- long-form reading ---------- */

.prose {
  max-width: 40rem;
  font-size: 1.09rem;
  line-height: 1.75;
}

.prose-narrow { margin-inline: auto; }

.prose > * + * { margin-top: 1.15rem; }

.prose h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  margin-top: 2.5rem;
}

.prose h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 2rem;
}

.prose p { color: var(--ink); }

.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li + li { margin-top: .5rem; }

.prose a { color: var(--brand-deep); text-underline-offset: 3px; }

.prose img {
  border-radius: 10px;
  margin-block: 1.75rem;
}

.prose blockquote {
  margin: 1.75rem 0;
  padding: .25rem 0 .25rem 1.35rem;
  border-left: 3px solid var(--brand);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--ink);
}

.prose table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.prose th, .prose td { text-align: left; padding: .6rem .8rem .6rem 0; border-bottom: 1px solid var(--rule); }

.prose-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19rem;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.aside-card {
  position: sticky;
  top: 6rem;
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand);
  border-radius: 12px;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  box-shadow: var(--shadow-sm);
}

.aside-card h3 { font-size: 1.22rem; }
.aside-card p { font-size: .96rem; color: var(--slate); }
.aside-card .btn { width: 100%; }
.aside-note { font-size: .87rem; color: var(--faint); padding-top: .3rem; }

.story-note {
  max-width: 40rem;
  margin: 2.5rem auto 0;
  padding: 1rem 1.2rem;
  background: var(--sunken);
  border-left: 3px solid var(--rule-strong);
  border-radius: 8px;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--slate);
}

/* ---------- tick lists ---------- */

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.ticks li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 1rem;
  line-height: 1.55;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: .95rem;
  height: .5rem;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.prose .ticks { margin-block: 1.25rem; }

/* ---------- about ---------- */

.about-hero {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.about-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3rem); margin-bottom: .5rem; }

.about-qual {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--brand-deep);
}

.about-title { color: var(--slate); margin-bottom: 1.15rem; }

.about-lead {
  font-size: 1.1rem;
  color: var(--ink);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.about-portrait img { border-radius: 10px; box-shadow: var(--shadow-md); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: 1.5rem 2rem;
}

.spec {
  padding: 1.4rem 1.4rem 1.5rem;
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.spec h3 { font-size: 1.18rem; margin-bottom: .85rem; }
.spec .ticks li { font-size: .96rem; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-grid h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  margin-bottom: .8rem;
}

.contact-lead { color: var(--slate); margin-bottom: 1.35rem; }

.contact-line {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.15rem;
  margin-bottom: .7rem;
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-line:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }

.contact-line svg { width: 1.5rem; height: 1.5rem; color: var(--brand); flex: none; }

.contact-line span {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-line strong { font-size: 1.02rem; font-weight: 600; }
.contact-line small { font-size: .85rem; color: var(--faint); }

.contact-note {
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem;
  background: var(--brand-lift);
  border-radius: 12px;
}
.contact-note h3 { font-size: 1.15rem; margin-bottom: .85rem; }
.contact-note .small { margin-top: .9rem; font-size: .88rem; color: var(--slate); }

.contact-locations .loc { margin-bottom: 1.15rem; }

/* ==========================================================================
   booking
   ========================================================================== */

.booking-wrap { max-width: 46rem; margin-inline: auto; }

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0 0 1.2rem;
  border-bottom: 1px solid var(--rule);
  font-size: .92rem;
  color: var(--faint);
}

.steps li { display: flex; align-items: center; gap: .5rem; }

.steps-n {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--sunken);
  color: var(--faint);
  font-size: .8rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.steps .now { color: var(--ink); font-weight: 600; }
.steps .now .steps-n { background: var(--brand); color: #fff; }
.steps .done { color: var(--brand-deep); }
.steps .done .steps-n { background: var(--brand-lift); color: var(--brand-deep); }

.step-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin-bottom: 1.5rem;
}

.step-back { margin-bottom: 1rem; font-size: .95rem; }
.step-back a { color: var(--slate); text-decoration: none; }
.step-back a:hover { color: var(--brand-deep); text-decoration: underline; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: 1rem;
}

.choice {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.5rem 1.4rem;
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brand);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .16s ease, transform .16s ease;
}
.choice:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.choice-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.choice-note { font-size: .94rem; color: var(--slate); }
.choice-go { margin-top: .5rem; font-size: .92rem; font-weight: 600; color: var(--brand-deep); }

.date-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(4.6rem, 100%), 1fr));
  gap: .6rem;
}

.date-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  padding: .75rem .4rem .8rem;
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .14s ease, background-color .14s ease;
}
.date-pill:hover { border-color: var(--brand); background: var(--brand-lift); }
.date-dow { font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--faint); }
.date-day { font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; font-variant-numeric: tabular-nums; }
.date-mon { font-size: .78rem; color: var(--slate); }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(6.5rem, 100%), 1fr));
  gap: .6rem;
}

.slot {
  display: grid;
  place-items: center;
  min-height: 3rem;
  padding: .6rem .5rem;
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  transition: border-color .14s ease, background-color .14s ease;
}
.slot:hover { border-color: var(--brand); background: var(--brand-lift); }

.slot.is-taken {
  color: var(--faint);
  background: var(--sunken);
  border-style: dashed;
  text-decoration: line-through;
  cursor: not-allowed;
}
.slot.is-taken small {
  display: block;
  font-size: .68rem;
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.chosen {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem 1rem;
  align-items: baseline;
  padding: 1rem 1.2rem;
  margin-bottom: 1.75rem;
  background: var(--brand-lift);
  border-radius: 12px;
}
.chosen strong { font-size: 1.05rem; }
.chosen span { color: var(--slate); }

/* ---------- the form ---------- */

.booking-form { display: flex; flex-direction: column; gap: 1.4rem; }

.field { display: flex; flex-direction: column; gap: .45rem; }

.field label {
  font-size: .98rem;
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: .6rem;
}

.req, .opt {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .15rem .4rem;
  border-radius: 8px;
}
.req { color: var(--amber); background: var(--amber-lift); }
.opt { color: var(--faint); background: var(--sunken); }

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1.05rem;
  padding: .8rem .9rem;
  min-height: 3.1rem;
  border: 1px solid var(--rule-strong);
  border-radius: 10px;
  background: var(--porcelain);
  color: var(--ink);
  width: 100%;
}
.field textarea { min-height: 7rem; resize: vertical; line-height: 1.6; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
}

.phone-input { display: flex; align-items: stretch; }
.phone-input span {
  display: grid;
  place-items: center;
  padding-inline: .9rem;
  background: var(--sunken);
  border: 1px solid var(--rule-strong);
  border-right: 0;
  border-radius: 10px 0 0 10px;
  font-weight: 600;
  color: var(--slate);
}
.phone-input input { border-radius: 0 10px 10px 0; }

.field-help { font-size: .88rem; color: var(--slate); line-height: 1.55; }

.btn-wide { width: 100%; min-height: 3.4rem; font-size: 1.05rem; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-errors {
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.75rem;
  background: var(--amber-lift);
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  font-size: .97rem;
}
.form-errors strong { display: block; margin-bottom: .4rem; color: var(--amber); }
.form-errors ul { margin: 0; padding-left: 1.2rem; }
.form-errors li + li { margin-top: .3rem; }

/* ---------- confirmation ---------- */

.confirm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.confirm-card {
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand);
  border-radius: 12px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.confirm-ref {
  font-size: .95rem;
  color: var(--slate);
  padding-bottom: 1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule);
}
.confirm-ref strong {
  font-family: var(--mono, ui-monospace, monospace);
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: .04em;
}

.confirm-list { margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.confirm-list > div { display: flex; flex-direction: column; gap: .1rem; }
.confirm-list dt {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--faint);
}
.confirm-list dd { margin: 0; font-size: 1.05rem; }

.confirm-note {
  margin-top: 1.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  font-size: .94rem;
  color: var(--slate);
}

.confirm-next { display: flex; flex-direction: column; gap: .9rem; }
.confirm-next h2 { font-size: 1.5rem; }
.confirm-next h3 { font-size: 1.15rem; margin-top: 1rem; }
.confirm-next p { color: var(--slate); }

/* ---------- locations ---------- */

.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: 1.25rem;
}

.loc {
  background: var(--porcelain);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--brand);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.loc h3 { font-size: 1.22rem; }

.loc address {
  font-style: normal;
  font-size: .97rem;
  color: var(--slate);
  line-height: 1.55;
}

.loc .loc-links {
  margin-top: auto;
  padding-top: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.1rem;
  font-size: .93rem;
  font-weight: 600;
}

.loc-tag {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--brand-lift);
  padding: .25rem .55rem;
  border-radius: 8px;
}

/* ---------- booking band ---------- */

.book-band {
  background: linear-gradient(135deg, var(--brand-deep) 0%, #3F6B9E 100%);
  color: #fff;
}

.book-band .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.book-band h2 { color: #fff; font-size: clamp(1.85rem, 3.4vw, 2.5rem); }
.book-band p { color: rgba(255, 255, 255, .88); margin-top: .9rem; }

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.book-band .btn-book { background: #fff; color: var(--brand-deep); }
.book-band .btn-book:hover { background: #ECF1FB; }

.book-note {
  margin-top: 1.1rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .8);
}

/* ---------- footer ---------- */

.foot {
  background: var(--field);
  color: var(--field-muted);
  padding-block: clamp(2.5rem, 5vw, 3.75rem) 2rem;
  font-size: .95rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(13rem, 100%), 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(143, 155, 178, .2);
}

.foot h4 {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--field-ink);
  margin-bottom: .9rem;
}

.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.foot a { color: var(--field-muted); text-decoration: none; }
.foot a:hover { color: var(--field-ink); text-decoration: underline; }

.foot-brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: .5rem;
}

.foot-logo {
  width: min(13rem, 100%);
  height: auto;
  margin-bottom: 1rem;
}

.foot-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .87rem;
}

.foot-disclaimer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(143, 155, 178, .16);
  font-size: .84rem;
  line-height: 1.6;
  color: #7C9096;
  max-width: 62rem;
}

/* ---------- sticky mobile action bar ---------- */

.mobile-bar { display: none; }

/* ==========================================================================
   responsive
   ========================================================================== */

@media (max-width: 62rem) {
  .hero-portrait img { width: min(100%, 20rem); }

  .nav { display: none; }

  .prose-wrap { grid-template-columns: 1fr; }
  .aside-card { position: static; top: auto; }
  .prose { max-width: none; }

  .about-hero .wrap { grid-template-columns: 1fr; }
  .about-portrait { order: -1; max-width: 18rem; }

  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 46rem) {
  body { font-size: 1.0625rem; }

  .topbar .creds { display: none; }

  .masthead .wrap { min-height: 3.9rem; }
  .brand { font-size: 1.12rem; }

  .head-actions { display: none; }

  .cred { padding: 1.5rem 1.15rem; }

  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    position: fixed;
    inset: auto 0 0 0;
    z-index: 120;
    background: var(--rule-strong);
    box-shadow: 0 -4px 16px rgba(20, 21, 43, .18);
  }
  .mobile-bar .btn { border-radius: 0; min-height: 3.4rem; }

  body { padding-bottom: 3.5rem; }
}
