/* =============================================
   Netali Adiel — Certified Birth Doula
   Stylesheet · WCAG 2.1 AA Compliant
   Pastel palette
   ============================================= */

/* ── Self-hosted fonts (SIL Open Font License — free, royalty-free forever) ── */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-300italic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-400italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --cream:          #FAF5FF;
  --sand:           #F0E8FB;
  --sage-light:     #E8DCFA;
  --sage:           #9B7FD4;
  --sage-dark:      #6A4FAF;
  --terracotta:     #B87FD4;
  --terracotta-dk:  #8F5CB5;
  --terracotta-lt:  #D4A8E8;
  --amber:          #7B5EA7;
  --brown-dark:     #2D1B4E;
  --brown-mid:      #5B3F8A;
  --brown-light:    #9B7FC0;
  --white:          #FFFFFF;
  --focus-ring:     #1A5FA8; /* high-contrast focus indicator */

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.75rem,  1vw,   0.875rem);
  --text-sm:   clamp(0.875rem, 1.2vw, 1rem);
  --text-base: clamp(1rem,     1.5vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 2vw,   1.375rem);
  --text-xl:   clamp(1.375rem, 3vw,   1.75rem);
  --text-2xl:  clamp(1.75rem,  4vw,   2.5rem);
  --text-3xl:  clamp(2.25rem,  5vw,   3.5rem);
  --text-4xl:  clamp(3rem,     7vw,   5rem);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 8rem;

  /* Layout */
  --max-w: 1200px;
  --pad:   clamp(1rem, 5vw, 3rem);

  /* Borders & radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(44,31,14,.08);
  --shadow-md: 0 4px 16px rgba(44,31,14,.12);
  --shadow-lg: 0 10px 40px rgba(44,31,14,.15);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
}

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

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--brown-mid);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--terracotta); }

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .75rem 1.5rem;
  background: var(--brown-dark);
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--r-md);
  z-index: 9999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── Headings ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown-dark);
}
h1 { font-size: var(--text-4xl); letter-spacing: -.02em; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: var(--sp-3xl) 0; }

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--sp-sm);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-2xl);
}

.section-intro {
  font-size: var(--text-lg);
  color: var(--brown-light);
  margin-top: var(--sp-sm);
  font-weight: 300;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color var(--t-base), color var(--t-base),
              border-color var(--t-base), transform var(--t-fast),
              box-shadow var(--t-base);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-dk); border-color: var(--terracotta-dk); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background-color var(--t-base), box-shadow var(--t-base);
}
.site-header.scrolled {
  background: rgba(250,246,240,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem var(--pad);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--t-base);
}
.brand-tag {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  transition: color var(--t-base);
}
.site-header.scrolled .brand-name { color: var(--brown-dark); }
.site-header.scrolled .brand-tag  { color: var(--brown-light); }

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  list-style: none;
}
.nav-link {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: color var(--t-fast);
}
.nav-link:hover { color: var(--white); }
.site-header.scrolled .nav-link       { color: var(--brown-mid); }
.site-header.scrolled .nav-link:hover { color: var(--terracotta); }

.nav-cta {
  padding: .55rem 1.4rem;
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--r-full);
  font-weight: 700;
}
.nav-cta:hover { background: var(--terracotta-dk); color: var(--white) !important; }

.nav-instagram { display: flex; align-items: center; opacity: .85; }
.nav-instagram:hover { opacity: 1; }

/* Hamburger */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--white);
  z-index: 300;
  position: relative;
}
.site-header.scrolled .menu-btn { color: var(--brown-dark); }

.ham, .ham::before, .ham::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform var(--t-base), opacity var(--t-base);
}
.ham { position: relative; }
.ham::before, .ham::after { content: ''; position: absolute; left: 0; }
.ham::before { top: -7px; }
.ham::after  { top:  7px; }
.menu-btn[aria-expanded="true"] .ham { background: transparent; }
.menu-btn[aria-expanded="true"] .ham::before { transform: rotate(45deg) translate(5px,5px); }
.menu-btn[aria-expanded="true"] .ham::after  { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1516627145497-ae6968895b74?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 30%;
  background-color: #7A5C3A;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(44,31,14,.75) 0%,
    rgba(92,62,42,.55) 55%,
    rgba(200,109,74,.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-xl) var(--pad);
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: var(--sp-md);
}
.hero h1 {
  color: var(--white);
  margin-bottom: var(--sp-md);
  text-shadow: 0 2px 24px rgba(0,0,0,.2);
}
.hero-tagline {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.9);
  max-width: 640px;
  margin: 0 auto var(--sp-xl);
  font-weight: 300;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.55);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--t-fast);
}
.hero-scroll:hover { color: rgba(255,255,255,.85); }
.scroll-chevron {
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ── About ── */
.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--sand);
  box-shadow: var(--shadow-lg);
}
.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent-blob {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 220px;
  height: 220px;
  z-index: -1;
  opacity: .6;
}
.about-text h2 { margin-bottom: var(--sp-md); }
.about-text p  { color: var(--brown-mid); }
.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin: var(--sp-lg) 0;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  background: var(--sage-light);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--sage-dark);
}

/* ── Services ── */
.services-section {
  background: var(--sand);
  position: relative;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-lg);
}
.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--terracotta));
  opacity: 0;
  transition: opacity var(--t-base);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; }

.service-card.featured {
  background: linear-gradient(145deg, var(--terracotta) 0%, #A85A3A 100%);
  color: var(--white);
}
.service-card.featured::after { display: none; }
.service-card.featured h3,
.service-card.featured p { color: var(--white); }
.service-card.featured p { opacity: .9; }
.service-card.featured .svc-icon { background: rgba(255,255,255,.2); }

.svc-icon {
  width: 68px; height: 68px;
  margin: 0 auto var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  border-radius: 50%;
}
.service-card h3 { margin-bottom: var(--sp-sm); }
.service-card p  { font-size: var(--text-sm); color: var(--brown-light); line-height: 1.75; }

/* ── Why a Doula ── */
.why-section { background: var(--sage-light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.why-text h2 { margin-bottom: var(--sp-md); }
.why-text p  { color: var(--brown-mid); }

.stats-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}
.stat-item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem,4vw,3.5rem);
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--brown-mid);
  letter-spacing: .03em;
}

/* ── Work Together ── */
.work-section { background: var(--sand); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}

.work-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--terracotta);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.work-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  flex-shrink: 0;
}

.work-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--brown-dark);
  margin: 0;
}

.work-card p {
  font-size: var(--text-base);
  color: var(--brown-mid);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .work-grid { grid-template-columns: 1fr; }
}

.coverage-disclaimer {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  margin-top: var(--sp-xl);
  padding: var(--sp-lg) var(--sp-xl);
  background: var(--sage-light);
  border-left: 4px solid var(--sage-dark);
  border-radius: var(--r-lg);
  color: var(--brown-mid);
  font-size: var(--text-sm);
  line-height: 1.75;
}
.coverage-disclaimer svg { color: var(--sage-dark); }
.coverage-disclaimer strong { color: var(--brown-dark); }

/* ── Testimonials ── */
.testimonials-section { background: var(--cream); }

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-xl);
}
.tcard {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-lg) var(--sp-xl);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--terracotta-lt);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--sp-xl);
}
.tcard-meta {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: .25rem;
  border-right: 1px solid var(--sand);
  padding-right: var(--sp-lg);
}
.tcard-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--terracotta);
  opacity: .25;
  user-select: none;
  pointer-events: none;
  margin-bottom: .25rem;
}
.tcard-body {
  flex: 1;
}
.tcard-text {
  font-style: italic;
  font-size: var(--text-base);
  line-height: 1.85;
  color: var(--brown-mid);
  margin: 0;
}
.tcard-author { font-weight: 700; font-size: var(--text-sm); color: var(--brown-dark); margin-top: var(--sp-sm); }
.tcard-role   { font-size: var(--text-xs); color: var(--brown-light); }
.stars { color: var(--amber); letter-spacing: .08em; margin-bottom: var(--sp-xs); font-size: .9rem; }

/* ── Contact ── */
.contact-section { background: var(--sand); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-3xl);
  align-items: start;
}
.contact-info h2 { margin-bottom: var(--sp-md); }
.contact-info > p { color: var(--brown-mid); margin-bottom: var(--sp-xl); }

.contact-details { display: flex; flex-direction: column; gap: var(--sp-md); }
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  color: var(--brown-mid);
  text-decoration: none;
  font-size: var(--text-base);
  transition: color var(--t-fast);
}
.contact-item:hover { color: var(--terracotta); }
.c-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
.form-group { margin-bottom: var(--sp-md); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: .45rem;
  letter-spacing: .02em;
}
.req { color: var(--terracotta); }
.form-control {
  width: 100%;
  padding: .875rem 1rem;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--brown-dark);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}
.form-control::placeholder { color: var(--brown-light); opacity: .7; }
.form-control:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,.25);
}
textarea.form-control { min-height: 140px; resize: vertical; line-height: 1.65; }
.form-note {
  font-size: var(--text-xs);
  color: var(--brown-light);
  margin-top: var(--sp-md);
  text-align: center;
  line-height: 1.6;
}
.form-note a { color: var(--sage-dark); }
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-xl);
  color: var(--sage-dark);
  font-size: var(--text-lg);
}

/* ── Wave Dividers ── */
.wave-top, .wave-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-top svg, .wave-bottom svg {
  display: block;
  width: 100%;
}

/* ── Footer ── */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.65);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}
.footer-brand .brand-name { color: var(--white); font-size: 1.5rem; display: block; }
.footer-brand .brand-tag  { color: rgba(255,255,255,.45); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; margin-top: .25rem; display: block; }
.footer-brand p { margin-top: var(--sp-md); font-size: var(--text-sm); line-height: 1.75; }

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-md);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--terracotta-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  font-size: var(--text-xs);
}
.footer-legal { display: flex; gap: var(--sp-md); }
.footer-legal a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* ── Accessibility statement bar ── */
.a11y-bar {
  background: var(--sage-light);
  padding: .6rem var(--pad);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--sage-dark);
}
.a11y-bar a { color: var(--sage-dark); font-weight: 700; }

/* ── Fade-in animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .why-grid {
    gap: var(--sp-xl);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .menu-btn { display: block; }

  .nav-list {
    display: none;
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--brown-dark);
    z-index: 250;
    gap: var(--sp-xl);
  }
  .nav-list.open { display: flex; }
  .nav-link {
    font-size: var(--text-lg) !important;
    color: var(--white) !important;
    letter-spacing: .1em;
  }
  .nav-cta {
    padding: .8rem 2.5rem !important;
    background: var(--terracotta) !important;
  }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-img-frame {
    aspect-ratio: 4/3;
    max-width: 480px;
    margin: 0 auto;
  }
  .why-grid { gap: var(--sp-xl); }
  .stats-list { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .section { padding: var(--sp-2xl) 0; }
  .services-grid { grid-template-columns: 1fr; }
  .tcard { flex-direction: column; }
  .tcard-meta { flex: none; flex-direction: row; align-items: center; gap: var(--sp-md); border-right: none; border-bottom: 1px solid var(--sand); padding-right: 0; padding-bottom: var(--sp-sm); text-align: left; }
  .stats-list { grid-template-columns: 1fr; }
}

/* ── High-contrast mode support ── */
@media (prefers-contrast: high) {
  .btn-primary, .nav-cta { border: 2px solid var(--white); }
  .service-card, .tcard, .contact-form-wrap { border: 1px solid var(--brown-mid); }
}

/* ── Print ── */
@media print {
  .site-header, .skip-link, .hero-scroll, .menu-btn, .hero-actions { display: none; }
  body { color: #000; background: #fff; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: .8em; }
  .hero { min-height: auto; padding: 2rem 0; }
  .hero-bg, .hero-overlay { display: none; }
  .hero h1, .hero-tagline, .hero-eyebrow { color: #000; }
}
