/* ==========================================================================
   Dr. Biru Sir — Chiropractic & Physiotherapy
   Design system v2: warm clinic — deep forest green + soft sage, rounded
   cards, mustard CTA, floating panels. Spine motif carried over as the
   site's own signature (softened/rounded) rather than generic leaf doodles.
   ========================================================================== */

:root {
  /* -- color tokens -- */
  --forest: #1F3A2E;
  --forest-2: #24402F;
  --forest-3: #2B4A37;
  --sage: #F3F6EF;
  --sage-2: #E9F0E3;
  --white: #FFFFFF;
  --charcoal: #1E2A22;
  --slate: #5C6B60;
  --leaf: #4F7A2C;
  --leaf-mid: #6FA23A;
  --leaf-bright: #86BE4F;
  --gold: #F0B429;
  --gold-dark: #D89A1D;
  --hairline: rgba(31, 58, 46, 0.12);
  --hairline-dark: rgba(255, 255, 255, 0.16);

  /* -- type -- */
  --font-display: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* -- layout -- */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* -- shadow -- */
  --shadow-sm: 0 2px 10px rgba(31, 58, 46, 0.07);
  --shadow-md: 0 12px 28px rgba(31, 58, 46, 0.10);
  --shadow-lg: 0 24px 56px rgba(31, 58, 46, 0.16);

  /* -- motion -- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -- reset -- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
input, textarea { font: inherit; color: inherit; }

body {
  font-family: var(--font-body);
  background: var(--sage);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

main { display: block; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark a:focus-visible,
.on-dark button:focus-visible {
  outline-color: var(--leaf-bright);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 999;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; border-radius: var(--radius-sm); }

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }

h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { color: var(--slate); max-width: 62ch; }
.on-dark p { color: rgba(255, 255, 255, 0.78); }

strong { font-weight: 600; color: var(--charcoal); }
.on-dark strong { color: var(--white); }

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--slate);
  max-width: 46ch;
}
.on-dark .lede { color: rgba(255, 255, 255, 0.78); }

/* Pill "eyebrow" tag — replaces the old mono label; icon + text on a soft chip */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--leaf);
  background: var(--sage-2);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.95em 0.4em 0.6em;
}
.eyebrow svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.on-dark .eyebrow { background: rgba(255, 255, 255, 0.08); color: var(--leaf-bright); }

.placeholder-note {
  font-size: 0.85rem;
  color: var(--gold-dark);
  background: rgba(240, 180, 41, 0.14);
  border: 1px dashed var(--gold-dark);
  padding: 0.6rem 0.9rem;
  display: inline-block;
  border-radius: var(--radius-sm);
}
.on-dark .placeholder-note {
  color: var(--gold);
  background: rgba(240, 180, 41, 0.12);
  border-color: var(--gold);
}
.placeholder-note a { text-decoration: underline; text-underline-offset: 2px; }

.form-note {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 0.75rem;
}
.on-dark .form-note { color: rgba(255, 255, 255, 0.65); }
.form-note a { text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */

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

.section { padding-block: clamp(3.25rem, 7vw, 6rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3.25rem); }
.section--dark { background: var(--forest); }
.section--white { background: var(--white); }

.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-top: 0.7rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 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: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.9em 1.7em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: var(--forest); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-dark); }

.btn--outline { background: transparent; border-color: rgba(255, 255, 255, 0.4); color: var(--white); }
.btn--outline:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }

.btn--outline-dark { background: transparent; border-color: var(--hairline); color: var(--charcoal); }
.btn--outline-dark:hover { border-color: var(--leaf); background: var(--sage-2); }

.btn--ghost { color: var(--leaf); padding-inline: 0; font-weight: 600; }
.btn--ghost::after { content: '→'; transition: transform 0.18s var(--ease); }
.btn--ghost:hover::after { transform: translateX(3px); }
.on-dark .btn--ghost { color: var(--leaf-bright); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 0.9rem;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(243, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.brand__mark { width: 1.9rem; height: 1.9rem; color: var(--leaf); flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 1.6vw, 1.75rem); flex-shrink: 0; }
.nav__list { display: flex; gap: clamp(0.9rem, 1.3vw, 1.6rem); }

.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--leaf); border-color: var(--leaf); }

.nav__cta { display: none; }
@media (min-width: 900px) { .nav__cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
}
.nav-toggle span { display: block; width: 1.1rem; height: 2px; background: var(--forest); margin-inline: auto; border-radius: 2px; transition: transform 0.2s var(--ease), opacity 0.2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav__list { display: flex; }
  .nav__cta-mobile { display: none; }
}
@media (max-width: 899px) {
  .nav__list {
    position: fixed;
    inset: 4.6rem 0.75rem auto 0.75rem;
    background: var(--white);
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  }
  .nav__list.is-open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
  .nav__list li { border-bottom: 1px solid var(--hairline); }
  .nav__list li:last-of-type { border-bottom: none; }
  .nav__link { display: block; padding-block: 1rem; font-size: 1rem; }
  .nav__cta-mobile { margin-top: 1rem; display: block; }
}

/* ==========================================================================
   Hero + floating panel system
   ========================================================================== */

.hero { background: var(--forest); position: relative; overflow: hidden; padding-block: clamp(2.75rem, 7vw, 4.5rem) clamp(6rem, 14vw, 9rem); }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(134, 190, 79, 0.16), transparent),
    radial-gradient(50% 40% at 10% 90%, rgba(240, 180, 41, 0.08), transparent);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; text-align: center; }
.hero__inner > div:first-child { text-align: left; }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__inner > div:first-child { text-align: center; }
  .hero__inner .btn-row, .hero__inner .eyebrow { justify-content: center; }
}

.hero h1 { margin-block: 1.1rem 1.2rem; }
.hero__sub { margin-inline: 0; margin-bottom: 2rem; }
@media (max-width: 900px) { .hero__sub { margin-inline: auto; } }

.hero__figure { display: flex; justify-content: center; }

/* Floating panel row that overlaps the hero's bottom edge */
.floating-panels {
  position: relative;
  margin-top: clamp(-5.5rem, -9vw, -4rem);
  z-index: 2;
}
.floating-panels__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}
@media (max-width: 820px) { .floating-panels__grid { grid-template-columns: 1fr; } }

.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.panel__eyebrow { margin-bottom: 1rem; }
.panel h3 { margin-bottom: 1rem; }

.schedule-table { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.25rem; }
.schedule-table__row {
  display: flex;
  justify-content: space-between;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.92rem;
}
.schedule-table__row:last-child { border-bottom: none; }
.schedule-table__day { font-weight: 600; color: var(--charcoal); }
.schedule-table__time { color: var(--slate); }

.panel__contact-row { display: flex; flex-direction: column; gap: 0.85rem; }
.panel__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  background: var(--sage);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.18s var(--ease);
}
a.panel__contact-item:hover { background: var(--sage-2); }
.panel__contact-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.panel__contact-icon svg { width: 1.1rem; height: 1.1rem; }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */

.page-header { background: var(--forest); position: relative; overflow: hidden; padding-block: clamp(2.75rem, 6vw, 4rem) clamp(2.25rem, 5vw, 3.25rem); }
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 90% 0%, rgba(134, 190, 79, 0.16), transparent);
  pointer-events: none;
}
.page-header__inner { position: relative; }
.page-header h1 { margin-block: 1rem 0.85rem; }
.page-header .lede { margin: 0; }
.page-header--with-panels { padding-bottom: clamp(6rem, 13vw, 8.5rem); }

/* ==========================================================================
   Chips (trust strip)
   ========================================================================== */

.chip-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 0.55em 1.1em;
  color: var(--charcoal);
  background: var(--white);
}
.on-dark .chip { border-color: var(--hairline-dark); color: rgba(255, 255, 255, 0.85); background: rgba(255, 255, 255, 0.06); }

/* ==========================================================================
   Icon badges
   ========================================================================== */

.icon-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-pill);
  background: var(--sage-2);
  color: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-badge svg { width: 1.35rem; height: 1.35rem; }
.icon-badge--gold { background: var(--gold); color: var(--forest); }
.on-dark .icon-badge { background: rgba(255, 255, 255, 0.1); color: var(--leaf-bright); }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: 100%;
}
.on-dark .card { background: var(--forest-2); box-shadow: none; border: 1px solid var(--hairline-dark); }

.card--link { display: flex; flex-direction: column; transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease); }
a.card--link:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.96rem; margin: 0; }
.card .icon-badge { margin-bottom: 1.1rem; }

.service-card dl { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.85rem; padding-top: 1rem; border-top: 1px solid var(--hairline); }
.on-dark .service-card dl { border-color: var(--hairline-dark); }
.service-card dt { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--leaf); }
.on-dark .service-card dt { color: var(--leaf-bright); }
.service-card dd { margin: 0.25rem 0 0; color: var(--slate); font-size: 0.92rem; }
.on-dark .service-card dd { color: rgba(255, 255, 255, 0.72); }

.card__meta {
  margin-top: 1.1rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  border-top: 1px solid var(--hairline);
}
.on-dark .card__meta { border-color: var(--hairline-dark); color: rgba(255, 255, 255, 0.6); }

/* ==========================================================================
   Process (numbered stages)
   ========================================================================== */

.process { display: flex; flex-direction: column; gap: 1rem; }
.process__stage {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.process__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process__stage h3 { margin-bottom: 0.4rem; }
.process__stage p { font-size: 0.95rem; margin: 0; }

/* ==========================================================================
   Spine signature motif
   ========================================================================== */

.spine-wrap { --spine-accent: var(--leaf-bright); }
.spine-wrap.spine--on-light { --spine-accent: var(--leaf); }
.spine { overflow: visible; }
.spine .vertebra { transition: transform 0.7s var(--ease); transform-origin: center; transform-box: fill-box; }
.spine:not(.is-aligned) .vertebra { transform: translate(var(--tx, 0), var(--ty, 0)) translateX(var(--dx, 0)) rotate(var(--dr, 0deg)); }
.spine.is-aligned .vertebra { transform: translate(var(--tx, 0), var(--ty, 0)); }
.spine .disc-line { transition: opacity 0.5s var(--ease) 0.4s; opacity: 0; }
.spine.is-aligned .disc-line { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .spine .vertebra { transition: none; transform: translate(var(--tx, 0), var(--ty, 0)) !important; }
  .spine .disc-line { transition: none; opacity: 1; }
}

.divider-spine { display: flex; justify-content: center; align-items: center; margin-block: clamp(1.25rem, 3vw, 2rem); opacity: 0.9; position: relative; }
.divider-spine::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--hairline); z-index: 0; }
.divider-spine .spine { position: relative; z-index: 1; }

/* ==========================================================================
   Profile feature (solo practitioner — replaces a multi-person team grid)
   ========================================================================== */

.profile-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (max-width: 820px) { .profile-feature { grid-template-columns: 1fr; } }
.profile-feature__frame {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--sage-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.profile-feature__frame span { font-size: 0.82rem; font-weight: 500; color: var(--slate); }
.profile-feature__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.profile-feature__badge strong { display: block; font-size: 0.95rem; }
.profile-feature__badge span { display: block; font-size: 0.78rem; color: var(--slate); }

/* ==========================================================================
   Testimonial carousel
   ========================================================================== */

.carousel { position: relative; }
.carousel__track { overflow: hidden; }
.carousel__slides { display: flex; transition: transform 0.5s var(--ease); }
.carousel__slide { flex: 0 0 100%; }

.testimonial-feature {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(1.75rem, 4vw, 3rem);
}
@media (max-width: 760px) { .testimonial-feature { grid-template-columns: 1fr; } }

.avatar-circle {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-pill);
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-feature__person { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.testimonial-feature__person strong { display: block; }
.testimonial-feature__person span { display: block; font-size: 0.85rem; color: var(--slate); }
.testimonial-feature__stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.testimonial-feature blockquote { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--charcoal); line-height: 1.5; }

.carousel__controls { display: flex; gap: 0.75rem; margin-top: 1.5rem; justify-content: center; }
@media (min-width: 760px) { .carousel__controls { justify-content: flex-start; } }
.carousel__btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}
.carousel__btn:hover { background: var(--sage-2); border-color: var(--leaf); }
.carousel__btn svg { width: 1.1rem; height: 1.1rem; }

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__mark { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-dark); line-height: 1; }
.on-dark .testimonial__mark { color: var(--gold); }
.testimonial blockquote { color: var(--charcoal); font-size: 1rem; }
.on-dark .testimonial blockquote { color: rgba(255, 255, 255, 0.85); }
.testimonial cite { font-style: normal; font-size: 0.85rem; font-weight: 600; color: var(--slate); display: block; }
.on-dark .testimonial cite { color: var(--leaf-bright); }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band { background: var(--forest); position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 90% 20%, rgba(134, 190, 79, 0.14), transparent);
  pointer-events: none;
}
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: clamp(2rem, 5vw, 3.5rem); }
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band__copy { max-width: 34rem; }
.cta-wrap { padding-block: clamp(1rem, 3vw, 2rem); }

/* ==========================================================================
   Gallery / photo placeholders
   ========================================================================== */

.gallery-frame {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--sage-2);
}
.gallery-frame span { font-size: 0.82rem; font-weight: 500; color: var(--slate); }

.photo-frame {
  border-radius: var(--radius-lg);
  background: var(--sage-2);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}
.photo-frame span { font-size: 0.82rem; font-weight: 500; color: var(--slate); }

/* ==========================================================================
   Forms
   ========================================================================== */

.field { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.15rem; }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.on-dark .field label { color: rgba(255, 255, 255, 0.85); }
.field input, .field textarea {
  background: var(--sage);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 0.85em 1.1em;
  color: var(--charcoal);
  font-size: 0.98rem;
  font-family: var(--font-body);
}
.on-dark .field input, .on-dark .field textarea { background: rgba(255, 255, 255, 0.06); border-color: var(--hairline-dark); color: var(--white); }
.field input::placeholder, .field textarea::placeholder { color: var(--slate); opacity: 0.8; }
.on-dark .field input::placeholder, .on-dark .field textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.field textarea { resize: vertical; min-height: 7rem; }

/* ==========================================================================
   Contact info blocks
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: flex; flex-direction: column; gap: 0.75rem; }
.info-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: var(--sage);
}
.on-dark .info-list__item { background: rgba(255, 255, 255, 0.06); }
.info-list__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--leaf); min-width: 6.5rem; }
.on-dark .info-list__label { color: var(--leaf-bright); }
.info-list__value { color: var(--charcoal); font-size: 1rem; font-weight: 500; }
.on-dark .info-list__value { color: var(--white); }
.info-list__value a:hover { text-decoration: underline; text-underline-offset: 3px; }

.map-frame { border-radius: var(--radius-lg); padding: 2.5rem 1.5rem; text-align: center; background: var(--forest-2); }
.map-frame span { display: block; font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 1.2rem; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--forest); padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--hairline-dark); }
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer__brand { display: flex; align-items: center; gap: 0.6rem; }
.footer__brand .brand__mark { color: var(--leaf-bright); }
.footer__brand__text .brand__name { display: block; font-size: 1.25rem; color: var(--white); }
.footer__tagline { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-top: 0.9rem; max-width: 26rem; }
.footer__heading { font-size: 0.85rem; font-weight: 700; color: var(--leaf-bright); margin-bottom: 1rem; }
.footer__list { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__list a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.78); transition: color 0.18s var(--ease); }
.footer__list a:hover { color: var(--white); }

.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; padding-top: 1.5rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

/* ==========================================================================
   404
   ========================================================================== */

.error-page { min-height: 60vh; display: flex; align-items: center; background: var(--forest); }
.error-page__code { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.5rem, 11vw, 7rem); color: var(--leaf-bright); line-height: 1; }

/* ==========================================================================
   Utility spacing
   ========================================================================== */

.stack { display: flex; flex-direction: column; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.mt-lg { margin-top: clamp(2rem, 5vw, 3rem); }
.center-text { text-align: center; margin-inline: auto; }
.small { font-size: 0.85rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
