/* =========================================================
   Claire Kearney Speech Pathology — styles.css
   Mobile-first. iPhone is the primary design target.
   ========================================================= */

@font-face {
  font-family: "Cooper Light BT";
  src: url("../fonts/CooperLightBT.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Delivery Note";
  src: url("../fonts/DeliveryNoteDEMO.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

:root {
  /* palette */
  --c-ink:        #0f1f33;
  --c-ink-soft:   #1f2937;
  --c-body:       #3a4a5e;
  --c-muted:      #6b7a8e;
  --c-brand:      #366091;
  --c-brand-mid:  #a1b8d4;
  --c-brand-soft: #c8d9f2;
  --c-cream:      #ede8e0;
  --c-cream-2:    #e4ddd4;
  --c-bg:         #f7f5f1;
  --c-line:       #ddd8d0;

  /* type */
  --f-serif: "Cooper Light BT", Georgia, serif;
  --f-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --f-hand:  "Delivery Note", "Caveat", cursive;

  /* spacing */
  --pad-x: clamp(20px, 5.5vw, 80px);
  --section-y: clamp(64px, 12vw, 140px);

  /* radii / shadows */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(15, 31, 51, 0.04), 0 8px 28px rgba(15, 31, 51, 0.06);
  --shadow-card: 0 1px 2px rgba(15, 31, 51, 0.05), 0 16px 40px -12px rgba(54, 96, 145, 0.16);

  /* transitions */
  --t-fast: 160ms ease;
  --t-mid: 280ms ease;
}

/* -------- reset-ish -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-body);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: var(--c-brand); text-decoration: none; }
a:hover { color: var(--c-ink); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  color: var(--c-ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

::selection { background: var(--c-brand-soft); color: var(--c-ink); }

/* -------- layout helpers -------- */
.wrap { max-width: 1200px; margin: 0 auto; padding-inline: var(--pad-x); }
.wrap--narrow { max-width: 820px; margin: 0 auto; padding-inline: var(--pad-x); }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--c-cream); }

.eyebrow {
  font-family: var(--f-hand);
  font-size: clamp(22px, 5vw, 32px);
  color: var(--c-brand);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: inline-block;
}

.lede {
  font-size: clamp(17px, 2.1vw, 19px);
  color: var(--c-body);
  max-width: 56ch;
  line-height: 1.65;
}

/* -------- buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  background: var(--c-brand);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 52px;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 6px 18px -8px rgba(54, 96, 145, 0.5);
}
.btn:hover { background: #2a4d76; color: #fff; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--c-brand);
  border: 1px solid var(--c-brand-mid);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--c-brand-soft); color: var(--c-brand); }
.btn--lg { padding: 18px 32px; font-size: 17px; min-height: 56px; }

/* -------- header / nav -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 241, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast);
  padding-top: env(safe-area-inset-top);
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad-x);
  max-width: 1280px;
  margin: 0 auto;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img { height: 36px; width: auto; flex-shrink: 0; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name {
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--c-brand);
  letter-spacing: -0.005em;
}
.nav__sub {
  font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 500;
  color: var(--c-brand-mid);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}
@media (min-width: 480px) { .nav__name { font-size: 21px; } .nav__sub { font-size: 10px; letter-spacing: 0.22em; } }
.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink-soft);
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--c-brand); }
.nav__ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  color: var(--c-ink-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.nav__ig:hover { background: var(--c-brand-soft); color: var(--c-brand); }
.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  align-items: center;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-ink-soft);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

@media (min-width: 880px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}

/* mobile nav overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 24px var(--pad-x);
  padding-top: calc(env(safe-area-inset-top) + 24px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 360ms cubic-bezier(.2,.8,.2,1), opacity 240ms ease;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
}
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-menu__links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.mobile-menu__links a {
  font-family: var(--f-serif);
  font-size: 32px;
  color: var(--c-ink);
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid var(--c-line);
}
.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}
.mobile-menu__foot a {
  font-size: 16px;
  color: var(--c-body);
}
.mobile-menu__foot a strong { color: var(--c-ink); font-weight: 500; }

/* -------- hero -------- */
.hero {
  position: relative;
  padding: clamp(48px, 12vw, 120px) 0 clamp(64px, 14vw, 140px);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(200, 217, 242, 0.6), transparent 60%),
    radial-gradient(1000px 700px at 0% 30%, rgba(200, 217, 242, 0.45), transparent 55%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-cream) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: 1fr;
}
.hero__title {
  font-size: clamp(42px, 10vw, 92px);
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--c-ink);
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  color: var(--c-brand);
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 19px);
  max-width: 52ch;
  color: var(--c-body);
}
.hero__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
}
.hero__art img {
  width: 60%;
  max-width: 280px;
  filter: drop-shadow(0 30px 50px rgba(54, 96, 145, 0.15));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.2fr 1fr; gap: 56px; }
  .hero__art { order: 0; }
  .hero__art img { width: 90%; max-width: 420px; }
}

/* -------- about -------- */
.about__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
.about__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-inline: auto;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}
.about__text h2 { font-size: clamp(30px, 5.6vw, 48px); margin-bottom: 18px; }
.about__text p + p { margin-top: 16px; }
.about__cred {
  margin-top: 24px;
  font-size: 14px;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (min-width: 880px) {
  .about__grid { grid-template-columns: 5fr 6fr; gap: 64px; }
}

/* -------- section heads -------- */
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(30px, 5.6vw, 52px); margin-bottom: 14px; }
.section-head p { color: var(--c-body); font-size: clamp(16px, 1.7vw, 18px); max-width: 56ch; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }

/* -------- services grid -------- */
.services {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.service {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-brand-soft);
}
.service__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--c-brand-soft);
  color: var(--c-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service__icon svg { width: 22px; height: 22px; }
.service h3 { font-size: 21px; margin-bottom: 8px; }
.service p { font-size: 15.5px; color: var(--c-body); line-height: 1.55; }
@media (min-width: 640px)  { .services { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .services { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

/* services snapshot CTA */
.services-foot { margin-top: 36px; text-align: center; }
.services-foot a { font-weight: 500; color: var(--c-brand); }
.services-foot a:hover { color: var(--c-ink); }

/* -------- approach (3-up) -------- */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}
.value {
  padding: 28px;
  border-radius: var(--r-md);
  background: var(--c-cream);
}
.value h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-family: var(--f-serif);
}
.value p { font-size: 15.5px; color: var(--c-body); }
@media (min-width: 720px)  { .values { grid-template-columns: repeat(3, 1fr); } }

/* -------- funding -------- */
.funding {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.fund {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px;
  text-align: left;
}
.fund__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-brand-soft);
  color: var(--c-brand);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.fund h3 { font-size: 22px; margin-bottom: 8px; }
.fund p  { font-size: 15.5px; color: var(--c-body); }
@media (min-width: 720px) { .funding { grid-template-columns: repeat(3, 1fr); } }

/* -------- location -------- */
.location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.location__modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
}
.mode {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
}
.mode__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--c-brand-soft);
  color: var(--c-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mode__icon svg { width: 18px; height: 18px; }
.mode strong { color: var(--c-ink); display: block; font-weight: 500; }
.mode span { color: var(--c-muted); font-size: 14px; }
.location__link { color: var(--c-brand); font-size: 14px; text-decoration: underline; text-underline-offset: 2px; }
.location__link:hover { color: var(--c-brand-mid); }

@media (min-width: 880px) {
  .location { grid-template-columns: 1fr 1fr; gap: 64px; }
}

/* -------- FAQ -------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--c-line);
}
.faq details {
  border-bottom: 1px solid var(--c-line);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--f-serif);
  font-size: clamp(18px, 2.4vw, 22px);
  color: var(--c-ink);
  font-weight: 500;
  transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px; height: 14px;
  border-right: 1.5px solid var(--c-brand);
  border-bottom: 1.5px solid var(--c-brand);
  transform: rotate(45deg);
  transition: transform var(--t-mid);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details[open] summary { color: var(--c-brand); }
.faq__body { padding: 0 4px 24px; color: var(--c-body); font-size: 16px; line-height: 1.65; }
.faq__body p + p { margin-top: 12px; }

/* -------- final CTA -------- */
.final-cta {
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(200, 217, 242, 0.7), transparent 65%),
    var(--c-cream);
  border-radius: var(--r-lg);
  padding: clamp(48px, 8vw, 80px) clamp(24px, 6vw, 48px);
  margin-top: 0;
}
.final-cta h2 { font-size: clamp(30px, 5.6vw, 52px); margin-bottom: 14px; }
.final-cta p { color: var(--c-body); max-width: 56ch; margin: 0 auto 28px; }

/* -------- map section -------- */
.map-section { background: var(--c-ink); }
.map-section__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px var(--pad-x);
  flex-wrap: wrap;
}
.map-section__label {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-brand-mid);
  flex-shrink: 0;
}
.map-section__addr {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
}
.map-section__addr:hover { color: #fff; text-decoration: underline; }
.map-section__frame { line-height: 0; }
.map-section__frame iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}
@media (min-width: 680px) {
  .map-section__frame iframe { height: 280px; }
}

/* -------- footer -------- */
.site-footer {
  background: var(--c-cream);
  padding: clamp(48px, 8vw, 80px) 0 clamp(120px, 16vw, 56px);
  border-top: 1px solid var(--c-line);
  padding-bottom: calc(env(safe-area-inset-bottom) + 120px);
}
@media (min-width: 880px) {
  .site-footer { padding-bottom: clamp(48px, 8vw, 80px); }
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.footer__brand img { height: 56px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: var(--c-muted); font-size: 14px; max-width: 36ch; }
.footer__col h4 {
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: var(--c-ink-soft); font-size: 15px; }
.footer__col a:hover { color: var(--c-brand); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--c-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--c-muted);
  font-size: 13px;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* -------- sticky mobile CTA bar -------- */
.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  background: rgba(247, 245, 241, 0.95);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--c-line);
  padding: 12px var(--pad-x);
  padding-bottom: calc(env(safe-area-inset-bottom) + 12px);
  display: flex;
  gap: 10px;
}
.cta-bar a { flex: 1; }
.cta-bar .btn { width: 100%; min-height: 48px; padding: 12px 18px; font-size: 15px; }
.cta-bar .btn--ghost { background: #fff; }
@media (min-width: 880px) { .cta-bar { display: none; } }
.cta-bar--hidden { display: none !important; }

/* -------- helpful links page -------- */
.links-hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(40px, 6vw, 60px);
  background: linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
}
.links-hero h1 {
  font-family: var(--f-hand);
  font-size: clamp(56px, 12vw, 120px);
  color: var(--c-ink);
  letter-spacing: 0;
  font-weight: 400;
}
.links-hero p { margin-top: 14px; color: var(--c-body); max-width: 56ch; font-size: 17px; }

.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.link-card {
  padding: 26px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.link-card:hover { border-color: var(--c-brand-soft); box-shadow: var(--shadow-soft); transform: translateY(-1px); }
.link-card h3 { font-size: 19px; margin-bottom: 6px; color: var(--c-ink); }
.link-card p { color: var(--c-muted); font-size: 14.5px; margin-bottom: 14px; }
.link-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--c-brand);
  font-weight: 500;
  word-break: break-word;
}
.link-card a:hover { color: var(--c-ink); }
.link-card a::after {
  content: "↗";
  font-size: 14px;
  opacity: 0.7;
  transition: transform var(--t-fast);
}
.link-card a:hover::after { transform: translate(2px, -2px); }
@media (min-width: 720px)  { .link-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1000px) { .link-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.link-page__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.link-page__bird {
  display: none;
}
@media (min-width: 1100px) {
  .link-page__layout { grid-template-columns: 200px 1fr; gap: 56px; }
  .link-page__bird {
    display: block;
    width: 180px;
    opacity: 0.92;
    position: sticky;
    top: 100px;
  }
}

/* -------- services page -------- */
.page-hero {
  padding: clamp(72px, 12vw, 140px) 0 clamp(40px, 8vw, 80px);
  background:
    radial-gradient(900px 500px at 80% -20%, rgba(200, 217, 242, 0.6), transparent 60%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-cream) 100%);
}
.page-hero h1 { font-size: clamp(40px, 8vw, 72px); margin-bottom: 14px; }
.page-hero p { max-width: 56ch; color: var(--c-body); font-size: clamp(16px, 1.8vw, 18px); }

.service-detail {
  display: grid;
  gap: 18px;
  padding-block: clamp(36px, 6vw, 64px);
  border-bottom: 1px solid var(--c-line);
}
.service-detail:last-of-type { border-bottom: 0; }
.service-detail__title h2 {
  font-size: clamp(26px, 4.4vw, 38px);
  margin-bottom: 6px;
}
.service-detail__title .num {
  font-family: var(--f-hand);
  font-size: clamp(28px, 5vw, 40px);
  color: var(--c-brand);
  display: inline-block;
  margin-right: 8px;
}
.service-detail__body p { color: var(--c-body); font-size: 16.5px; line-height: 1.7; }
.service-detail__body p + p { margin-top: 12px; }
.service-detail__list {
  margin-top: 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.service-detail__list li {
  position: relative;
  padding-left: 22px;
  color: var(--c-body);
  font-size: 16px;
}
.service-detail__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--c-brand-mid);
}
@media (min-width: 880px) {
  .service-detail { grid-template-columns: 280px 1fr; gap: 56px; }
}

/* -------- enquiry form page -------- */
.enquiry {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  padding-block: clamp(40px, 8vw, 80px);
  align-items: start;
}
.enquiry__intro h1 {
  font-size: clamp(36px, 7vw, 56px);
  margin-bottom: 14px;
}
.enquiry__intro p {
  color: var(--c-body);
  font-size: 17px;
  max-width: 48ch;
}
.enquiry__intro p + p { margin-top: 14px; }
.enquiry__contact {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--r-md);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.enquiry__contact h3 {
  font-family: var(--f-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: 12px;
}
.enquiry__contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--c-ink);
  font-size: 16px;
  font-weight: 500;
}
.enquiry__contact a + a { border-top: 1px solid var(--c-line); }
.enquiry__contact a:hover { color: var(--c-brand); }
.enquiry__contact svg { width: 18px; height: 18px; color: var(--c-brand); flex-shrink: 0; }

.form {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-soft);
}
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr; }
.form__row--2 { grid-template-columns: 1fr; }
@media (min-width: 600px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-ink-soft);
}
.form__field label .req { color: var(--c-brand); }
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: #fff;
  font-size: 16px;
  color: var(--c-ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.form__field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: 0;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 4px rgba(54, 96, 145, 0.12);
}
.form__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23366091' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.radios {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin-top: 4px;
}
.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.radio input { accent-color: var(--c-brand); width: 18px; height: 18px; margin: 0; }
.radio:has(input:checked) {
  border-color: var(--c-brand);
  background: var(--c-brand-soft);
  color: var(--c-ink);
}
@media (min-width: 600px) { .radios { grid-template-columns: repeat(3, 1fr); } }
.form__submit { margin-top: 8px; }
.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form__note { color: var(--c-muted); font-size: 13px; margin-top: 14px; line-height: 1.5; }

@media (min-width: 1000px) {
  .enquiry { grid-template-columns: 4fr 6fr; gap: 64px; }
}

/* -------- thanks page -------- */
.thanks {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px var(--pad-x);
}
.thanks img { width: 120px; margin-bottom: 24px; }
.thanks h1 { font-size: clamp(36px, 7vw, 60px); margin-bottom: 14px; }
.thanks p { color: var(--c-body); max-width: 48ch; margin: 0 auto 28px; font-size: 17px; }

/* -------- fade-up animations (progressive: only hidden when JS present) -------- */
.js .fade {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.js .fade.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade { opacity: 1; transform: none; }
  .hero__art img { animation: none; }
}

/* -------- focus a11y -------- */
:focus-visible {
  outline: 2px solid var(--c-brand);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible {
  outline-offset: 4px;
}
