/* ==========================================================================
   Nirvana Services LLC
   Design system. Every page uses these classes, so layout changes here
   apply everywhere. Avoid inline styles in the HTML.
   ========================================================================== */

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
picture, svg { display: block; max-width: 100%; }
/* height:auto is required, otherwise the width/height HTML attributes win and
   the aspect-ratio rules further down are ignored. */
img { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; }

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Brand */
  --orange:       #E07B39;
  --orange-dark:  #BF5A0B;
  --orange-soft:  #F6DCC6;
  --gold:         #EFB44C;

  /* Neutrals, warmed to sit with the logo */
  --ink:          #1F2A30;
  --ink-2:        #3E4C55;
  --ink-3:        #64757F;
  --cream:        #FFF8F0;
  --sand:         #FAF2E8;
  --line:         #ECDFD1;
  --white:        #FFFFFF;

  /* Type */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Fluid type scale */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg:   clamp(1.125rem, 0.4vw + 1.05rem, 1.25rem);
  --fs-xl:   clamp(1.3rem,  0.7vw + 1.15rem, 1.6rem);
  --fs-2xl:  clamp(1.6rem,  1.4vw + 1.3rem,  2.25rem);
  --fs-3xl:  clamp(2rem,    2.4vw + 1.45rem, 3rem);
  --fs-4xl:  clamp(2.4rem,  3.6vw + 1.6rem,  3.9rem);

  /* Space */
  --space-section: clamp(4rem, 7vw, 7rem);
  --radius:    14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(31,42,48,.05), 0 4px 14px rgba(31,42,48,.05);
  --shadow-md: 0 2px 6px rgba(31,42,48,.06), 0 14px 40px rgba(31,42,48,.09);
  --shadow-warm: 0 18px 50px rgba(191,90,11,.16);

  --maxw: 1140px;
}

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

body {
  font-family: var(--body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { text-wrap: pretty; }
strong { color: var(--ink); font-weight: 600; }

/* Accessibility: this is a disability services provider, so focus states,
   motion preferences and skip links are requirements, not extras. */
:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

.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;
}

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

/* --- Layout primitives ---------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }

.section { padding-block: var(--space-section); }

/* Stop in-page anchor targets landing underneath the sticky header. */
section[id], [id].section { scroll-margin-top: 96px; }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--ink   { background: var(--ink); color: #D8E0E4; }
.section--ink h2, .section--ink h3 { color: var(--white); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; font-size: var(--fs-lg); color: var(--ink-3); }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: .9rem;
}
.section--ink .eyebrow { color: var(--gold); }

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

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--orange-dark); color: var(--white); box-shadow: 0 6px 18px rgba(191,90,11,.28); }
.btn--primary:hover { background: #A94D07; box-shadow: 0 10px 26px rgba(191,90,11,.34); }

.btn--outline { border-color: var(--line); background: var(--white); color: var(--ink); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange-dark); }

.btn--ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn--ghost:hover { background: var(--white); color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--orange-dark); font-weight: 600; text-decoration: none;
  font-size: var(--fs-sm);
}
.link-arrow::after { content: '\2192'; transition: transform .18s ease; }
.link-arrow:hover { text-decoration: underline; }
.link-arrow:hover::after { transform: translateX(4px); }

/* --- Hiring announcement bar ---------------------------------------------
   Recruitment is the binding constraint on the business, so it gets the very
   top of every page. Scrolls away; the header below it stays sticky. */
.announce { background: var(--ink); color: #EAF0F3; font-size: var(--fs-sm); }
.announce__inner {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; flex-wrap: wrap; padding-block: .75rem; text-align: center;
}
.announce__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  flex: 0 0 auto; box-shadow: 0 0 0 0 rgba(239,180,76,.7);
  animation: announce-pulse 2.4s ease-out infinite;
}
@keyframes announce-pulse {
  70%  { box-shadow: 0 0 0 9px rgba(239,180,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,180,76,0); }
}
.announce strong { color: var(--white); font-weight: 600; }
.announce a {
  color: var(--gold); font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px;
}
.announce a:hover { color: var(--white); }
@media (max-width: 560px) { .announce__inner { gap: .35rem; padding-block: .65rem; } }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 86px;
}

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand img { width: 58px; height: 58px; }
.brand__name {
  font-family: var(--display); font-weight: 600; font-size: 1.32rem;
  color: var(--ink); line-height: 1.05; letter-spacing: .01em;
}
.brand__tag {
  display: block; font-family: var(--body); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  border-radius: 10px; padding: .55rem .8rem; cursor: pointer;
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink);
}

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a {
  text-decoration: none; font-size: var(--fs-sm); font-weight: 500;
  color: var(--ink-2); padding: .35rem 0; position: relative;
}
.nav a:hover { color: var(--orange-dark); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--orange); border-radius: 2px;
}
/* .nav a is more specific than .btn--primary, so restate the button colour
   here or the call to action renders dark-on-orange. */
.nav a.btn { padding: .7rem 1.25rem; }
.nav a.btn--primary,
.nav a.btn--primary:hover { color: var(--white); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; inset: 86px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .9rem .25rem; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 1rem; justify-content: center; border-bottom: 0; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1100px 480px at 88% -8%, rgba(239,180,76,.20), transparent 62%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding-block: clamp(3rem, 6vw, 5.5rem) var(--space-section);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero__lead { font-size: var(--fs-lg); color: var(--ink-2); max-width: 48ch; margin-bottom: 2rem; }
.hero__note { margin-top: 1.6rem; font-size: var(--fs-sm); color: var(--ink-3); }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero__badge {
  position: absolute; left: -18px; bottom: -22px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .9rem 1.15rem;
  box-shadow: var(--shadow-md); max-width: 15rem;
}
.hero__badge strong { display: block; font-size: var(--fs-sm); }
.hero__badge span { font-size: var(--fs-xs); color: var(--ink-3); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  /* Stop the badge covering faces in the photo on narrow screens. */
  .hero__badge {
    position: static; max-width: none; margin-top: 1rem;
    display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap;
  }
}

/* --- Trust strip ---------------------------------------------------------- */
.trustbar { border-block: 1px solid var(--line); background: var(--white); }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; padding-block: 2.25rem;
}
.trustbar__item { display: flex; gap: .8rem; align-items: flex-start; }
.trustbar__item svg { flex: 0 0 auto; margin-top: 2px; color: var(--orange-dark); }
.trustbar__item strong { display: block; font-size: var(--fs-sm); color: var(--ink); }
.trustbar__item span { font-size: var(--fs-xs); color: var(--ink-3); line-height: 1.5; display: block; }
@media (max-width: 860px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .trustbar__grid { grid-template-columns: 1fr; } }

/* --- Generic grids -------------------------------------------------------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .grid--2, .grid--4 { grid-template-columns: 1fr; } }

/* Two-column feature row that actually collapses on phones */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
/* A heading sitting directly above a .stack gets no margin from the stack
   itself, so give it one here. */
.split h2 { margin-bottom: 1.25rem; }

.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 5 / 4; object-fit: cover; box-shadow: var(--shadow-md);
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: -1; }
}

/* --- Cards ---------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
  display: flex; flex-direction: column;
}
.card h3 { margin-bottom: .6rem; }
.card p { font-size: var(--fs-sm); color: var(--ink-2); }
.card .link-arrow { margin-top: auto; padding-top: 1.1rem; }

a.card { text-decoration: none; }
a.card:hover, .card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-soft);
}

.card__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--sand); color: var(--orange-dark);
  display: grid; place-items: center; margin-bottom: 1.1rem;
}

/* Service card with photo */
.service-card { padding: 0; overflow: hidden; }
.service-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.service-card__body { padding: clamp(1.4rem, 2.2vw, 1.8rem); display: flex; flex-direction: column; flex: 1; }

/* Audience cards */
.audience-card { background: var(--white); position: relative; }
.audience-card h3 { font-size: var(--fs-lg); }

/* The recruitment card is deliberately louder: staffing is the constraint. */
.audience-card--hiring { border-color: var(--orange); box-shadow: var(--shadow-md); }
.audience-card--hiring .card__icon { background: var(--orange-dark); color: var(--white); }
.badge-hiring {
  display: inline-flex; align-items: center; gap: .4rem;
  align-self: flex-start; margin-bottom: .85rem;
  background: var(--orange-dark); color: var(--white);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
}
.badge-hiring::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

/* --- Numbered process ----------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps--4 { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 3.25rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--orange-dark); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
}
.step h3 { font-size: var(--fs-lg); margin-bottom: .45rem; }
.step p { font-size: var(--fs-sm); color: var(--ink-3); }
.section--ink .step p { color: #AEBBC2; }

/* --- Pill lists ----------------------------------------------------------- */
.checklist { display: grid; gap: .85rem; }
.checklist li {
  display: grid; grid-template-columns: 1.4rem 1fr; gap: .75rem;
  align-items: start; font-size: var(--fs-sm);
}
.checklist li::before {
  content: '\2713';
  color: var(--orange-dark); font-weight: 700; line-height: 1.6;
}
.section--ink .checklist li::before { color: var(--gold); }

.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  border: 1px solid var(--line); background: var(--white);
  border-radius: 999px; padding: .5rem 1.05rem;
  font-size: var(--fs-sm); font-weight: 500; color: var(--ink);
}
.pill--strong { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); font-weight: 600; }
.section--ink .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #E8EEF1; }
.section--ink .pill--strong { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* --- Notes / articles ----------------------------------------------------- */
.post {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}
.post:first-of-type { border-top: 0; padding-top: 0; }
.post h2 { font-size: var(--fs-2xl); margin-bottom: 1.1rem; }
.post p { margin-top: 1.1rem; max-width: 68ch; }
.post p:first-of-type { font-size: var(--fs-lg); color: var(--ink-2); }
.post__meta {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  margin-top: 1.6rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
  font-size: var(--fs-xs); color: var(--ink-3);
}
.post__meta img { width: 26px; height: 26px; }

/* Compact teaser list used to point at the notes page */
.post-teaser { display: grid; gap: .75rem; }
.post-teaser a {
  display: flex; align-items: baseline; gap: .75rem;
  padding: 1.05rem 1.25rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  text-decoration: none; font-weight: 600; color: var(--ink);
  font-size: var(--fs-sm);
  transition: border-color .2s ease, transform .2s ease;
}
.post-teaser a:hover { border-color: var(--orange); transform: translateX(3px); }
.post-teaser span { color: var(--ink-3); font-weight: 400; }
.post-teaser a::after { content: '\2192'; margin-left: auto; color: var(--orange-dark); }

/* --- Quote / callout ------------------------------------------------------ */
.callout {
  background: var(--sand);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: clamp(1.4rem, 2.5vw, 2rem);
}
.callout p { font-size: var(--fs-sm); }
.callout p + p { margin-top: .8rem; }

/* --- Table ---------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 620px; }
caption { text-align: left; padding: 1.1rem 1.25rem 0; font-size: var(--fs-sm); color: var(--ink-3); }
th, td { padding: 1rem 1.25rem; text-align: left; font-size: var(--fs-sm); }
thead th { background: var(--sand); color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
tbody tr + tr td { border-top: 1px solid var(--line); }
td.yes { color: var(--orange-dark); font-weight: 700; }
td.no { color: var(--ink-3); }
th.center, td.center { text-align: center; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: .85rem; }
.faq details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.faq details[open] { border-color: var(--orange-soft); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.15rem 3rem 1.15rem 1.35rem;
  font-weight: 600; color: var(--ink); font-size: var(--fs-sm);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 1.25rem; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; font-weight: 400;
  color: var(--orange-dark); line-height: 1;
}
.faq details[open] summary::after { content: '\2013'; }
.faq details > div { padding: 0 1.35rem 1.35rem; font-size: var(--fs-sm); color: var(--ink-2); }
.faq details > div > * + * { margin-top: .8rem; }

/* --- Forms ---------------------------------------------------------------- */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.35rem; }
.field label { display: block; font-weight: 600; color: var(--ink); font-size: var(--fs-sm); margin-bottom: .45rem; }
.field .hint { font-weight: 400; color: var(--ink-3); font-size: var(--fs-xs); }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--white); font-size: var(--fs-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(224,123,57,.14);
}
.form-note { font-size: var(--fs-xs); color: var(--ink-3); text-align: center; margin-top: .9rem; }

/* Two fields side by side, stacking on narrow screens */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

/* Checkbox and radio groups */
.opt-group {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .55rem; margin-top: .2rem;
}
.opt {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem .9rem; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--white);
  font-size: var(--fs-sm); cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease;
}
.opt:hover { border-color: var(--orange-soft); }
.opt input { width: auto; margin: 0; accent-color: var(--orange-dark); flex: 0 0 auto; }
.opt:has(input:checked) { border-color: var(--orange); background: var(--cream); }
.opt input:focus-visible { outline: 3px solid var(--orange-dark); outline-offset: 2px; }

fieldset { border: 0; padding: 0; margin: 0 0 1.35rem; }
legend {
  padding: 0; margin-bottom: .5rem;
  font-weight: 600; color: var(--ink); font-size: var(--fs-sm);
}
legend .hint { font-weight: 400; color: var(--ink-3); font-size: var(--fs-xs); }

/* --- Contact tiles -------------------------------------------------------- */
.contact-tile { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.75rem; }
.contact-tile h3 { font-size: var(--fs-lg); margin-bottom: .5rem; }
.contact-tile a { color: var(--orange-dark); font-weight: 600; word-break: break-word; }
.contact-tile p { font-size: var(--fs-sm); }
.contact-tile .muted { color: var(--ink-3); font-size: var(--fs-xs); margin-top: .5rem; }

/* --- Resource lists ------------------------------------------------------- */
.resource-list { display: grid; gap: .55rem; margin-top: 1rem; }
.resource-list a { font-size: var(--fs-sm); font-weight: 500; color: var(--orange-dark); text-decoration: none; }
.resource-list a:hover { text-decoration: underline; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white); text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { font-size: var(--fs-lg); opacity: .95; max-width: 55ch; margin: 1rem auto 2rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn--outline { background: var(--white); border-color: var(--white); color: var(--orange-dark); }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #A9B7BF; padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.site-footer h4 { color: var(--white); font-size: var(--fs-sm); font-family: var(--body); font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: #A9B7BF; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__links { display: grid; gap: .6rem; font-size: var(--fs-sm); }
.footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer__brand img { width: 46px; height: 46px; }
.footer__brand span { font-family: var(--display); font-size: 1.15rem; color: var(--white); }
.footer__note { font-size: var(--fs-xs); line-height: 1.7; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: var(--fs-xs);
}

/* --- Page hero (interior pages) ------------------------------------------- */
.page-hero {
  background:
    radial-gradient(800px 320px at 82% 0%, rgba(239,180,76,.18), transparent 60%),
    var(--cream);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero p { font-size: var(--fs-lg); color: var(--ink-2); max-width: 58ch; margin-top: 1rem; }

/* --- Reveal on scroll (progressive enhancement) --------------------------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- Print ---------------------------------------------------------------- */
@media print {
  .site-header, .cta-band, .nav-toggle { display: none; }
  body { color: #000; }
}
