/* ============================================================
   Sara Ellis Conant — Conant Coaching & Consulting
   Design system: warm evergreen + cream + terracotta
   Type: Fraunces (display) / Outfit (body)
   ============================================================ */

:root {
  --ink: #1c2b23;            /* near-black evergreen */
  --evergreen: #24463a;      /* primary deep green */
  --evergreen-deep: #16302a; /* footer / dark sections */
  --sage: #7f9a8a;           /* muted supporting green */
  --cream: #faf6ee;          /* page background */
  --cream-deep: #f2ead9;     /* alternate section background */
  --white: #fffdf8;
  --terracotta: #c4643b;     /* accent */
  --terracotta-soft: #e2a486;
  --gold: #d9a441;           /* secondary accent */
  --line: rgba(36, 70, 58, 0.16);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Outfit", "Helvetica Neue", sans-serif;

  --radius-arch: 50% 50% 0 0;
  --shadow-soft: 0 20px 60px -20px rgba(22, 48, 42, 0.25);
  --shadow-card: 0 10px 40px -14px rgba(22, 48, 42, 0.18);

  --max-w: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.5 0 0 0 0 0.42 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: var(--terracotta); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--evergreen); }

::selection { background: var(--gold); color: var(--evergreen-deep); }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* ---------- typography ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 480;
  line-height: 1.12;
  color: var(--evergreen);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

em, .accent-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  color: var(--terracotta);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.7;
}

.lede {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  font-weight: 300;
  color: var(--ink);
  max-width: 46ch;
}

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
/* blur lives on a pseudo-element: backdrop-filter on the header itself
   would make it the containing block for the fixed mobile menu */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 246, 238, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.scrolled { box-shadow: 0 6px 30px -18px rgba(22, 48, 42, 0.35); }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand .brand-name {
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 520;
  color: var(--evergreen);
  white-space: nowrap;
}
.brand .brand-name .paren { color: var(--terracotta); font-style: italic; }
.brand .brand-tag {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2.2rem);
  list-style: none;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transition: right 0.28s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.nav-links a[aria-current="page"] { color: var(--evergreen); font-weight: 500; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.78rem 1.6rem;
  border-radius: 999px;
  background: var(--evergreen);
  color: var(--cream) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--evergreen);
  cursor: pointer;
  transition: background 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}
.btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(196, 100, 59, 0.55);
}
.btn.btn-light {
  background: var(--cream);
  color: var(--evergreen) !important;
  border-color: var(--cream);
}
.btn.btn-light:hover { background: var(--gold); border-color: var(--gold); color: var(--evergreen-deep) !important; }
.btn.btn-outline {
  background: transparent;
  color: var(--evergreen) !important;
  border: 1px solid var(--evergreen);
}
.btn.btn-outline:hover { background: var(--evergreen); color: var(--cream) !important; }
.btn .arrow { transition: transform 0.28s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.nav-cta { display: inline-flex; }

/* mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--evergreen);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--cream);
    transform: translateY(-102%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 55;
  }
  .brand .brand-name { font-size: 1.15rem; }
  .nav-links a { font-size: 1.5rem; font-family: var(--font-display); }
  body.nav-open .nav-links { transform: translateY(0); }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 6rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero h1 .line-accent { display: block; }

.hero-portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 420px);
}
.hero-portrait .arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}
.hero-portrait .arch img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
/* concentric frame: surrounds the arch evenly so the curves stay parallel */
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: -1.15rem;
  border: 1px solid var(--terracotta);
  border-radius: var(--radius-arch);
  opacity: 0.55;
  z-index: 1;
}
.hero-portrait::after {
  content: "";
  position: absolute;
  bottom: -2.2rem;
  left: -2.6rem;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--terracotta));
  opacity: 0.18;
  z-index: 0;
}

.hero-caption {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
  align-items: center;
}

/* decorative floating parenthesis */
.hero-deco {
  position: absolute;
  right: -2vw;
  bottom: -6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34rem;
  line-height: 1;
  color: var(--evergreen);
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; width: min(78%, 340px); }
}

/* ---------- sections ---------- */

section.band { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
section.band.tint { background: var(--cream-deep); }
section.band.dark {
  background: var(--evergreen-deep);
  color: rgba(250, 246, 238, 0.88);
}
section.band.dark h2, section.band.dark h3 { color: var(--cream); }
section.band.dark .eyebrow { color: var(--gold); }
section.band.dark .eyebrow::before { background: var(--gold); }

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* numbered benefits */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  counter-reset: benefit;
  list-style: none;
}
.benefits li {
  counter-increment: benefit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 2rem 1.8rem 1.9rem;
  box-shadow: var(--shadow-card);
  position: relative;
  font-size: 1.1rem;
  line-height: 1.55;
}
.benefits li::before {
  content: "0" counter(benefit);
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}
@media (max-width: 780px) { .benefits { grid-template-columns: 1fr; } }

/* three areas cards */
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
}
.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.area-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px -22px rgba(22, 48, 42, 0.3);
}
.area-card .area-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.area-card h3 { margin-bottom: 0.35rem; font-size: 1.7rem; }
.area-card .ready {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.2rem;
}
.area-card ul { list-style: none; display: grid; gap: 0.85rem; }
.area-card li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
}
.area-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 0.85rem;
  height: 1px;
  background: var(--terracotta);
}
@media (max-width: 900px) { .areas { grid-template-columns: 1fr; } }

/* ---------- LinkedIn feed ---------- */

.linkedin-band { background: var(--cream-deep); }

.li-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.linkedin-band.no-posts .li-layout { grid-template-columns: 1fr; }
.linkedin-band.no-posts .li-grid { display: none; }
.linkedin-band.no-posts .li-follow { max-width: 560px; margin: 0 auto; width: 100%; }

.li-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.li-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  padding: 0.6rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.li-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px -20px rgba(22, 48, 42, 0.3);
}
.li-card iframe {
  display: block;
  width: 100%;
  height: 540px;
  border: none;
  border-radius: 0.9rem;
  background: var(--white);
}

.li-follow-card {
  position: relative;
  background: var(--evergreen);
  color: rgba(250, 246, 238, 0.88);
  border-radius: 1.4rem;
  padding: 2.6rem 2.2rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.li-follow-card::after {
  content: ")";
  position: absolute;
  right: -1.5rem;
  bottom: -7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16rem;
  line-height: 1;
  color: var(--cream);
  opacity: 0.06;
  pointer-events: none;
}
.li-follow-card h3 { color: var(--cream); }
.li-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  background: var(--gold);
  color: var(--evergreen-deep);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.li-follow-card .btn { background: var(--cream); color: var(--evergreen) !important; border-color: var(--cream); }
.li-follow-card .btn:hover { background: var(--gold); border-color: var(--gold); color: var(--evergreen-deep) !important; }

@media (max-width: 900px) {
  .li-layout { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band .cta-inner {
  display: grid;
  gap: 1.6rem;
  justify-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-band .paren-deco {
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22rem;
  opacity: 0.05;
  color: var(--cream);
  pointer-events: none;
  user-select: none;
}
.cta-band .paren-deco.left { left: -3rem; top: -6rem; }
.cta-band .paren-deco.right { right: -3rem; bottom: -8rem; transform: scaleX(-1); }
.cta-band .cta-email {
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(217, 164, 65, 0.4);
}
.cta-band .cta-email:hover { color: var(--cream); }

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

.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.service-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}
.service-block:first-of-type { border-top: none; padding-top: 0; }
.service-block .service-meta h2 { margin-bottom: 0.4rem; }
.service-block .service-for {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.service-list { list-style: none; display: grid; gap: 0.9rem; }
.service-list li {
  position: relative;
  padding: 1rem 1.2rem 1rem 3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  font-size: 1.02rem;
  line-height: 1.5;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.service-list li:hover { transform: translateX(6px); border-color: var(--terracotta-soft); }
.service-list li::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: calc(1rem + 0.75em); /* padding-top + half the first line's height */
  width: 0.95rem;
  height: 1px;
  background: var(--terracotta);
}
.service-figure {
  position: sticky;
  top: 6rem;
  max-width: 340px; /* source photo is modest resolution — keep display size honest */
  justify-self: center;
}
.service-figure .frame {
  position: relative;
}
.service-figure .frame::before {
  content: "";
  position: absolute;
  inset: -0.9rem;
  border: 1px solid var(--terracotta);
  border-radius: 2rem;
  opacity: 0.5;
}
.service-figure img {
  position: relative;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
}
@media (max-width: 860px) {
  .service-block { grid-template-columns: 1fr; }
  .service-figure { position: static; }
}

/* ---------- clients / logo marquee ---------- */

.logo-marquee {
  display: grid;
  gap: 1.6rem;
  overflow: hidden;
  padding: 0.6rem 0 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-row { overflow: hidden; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 46s linear infinite;
}
.marquee-row.reverse .marquee-track { animation-name: marquee-right; animation-duration: 52s; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.logo-chip {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 112px;
  margin-right: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.logo-chip:hover {
  transform: translateY(-5px);
  border-color: var(--terracotta-soft);
  box-shadow: 0 22px 45px -18px rgba(22, 48, 42, 0.3);
}
.logo-chip img {
  max-height: 52px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s ease;
}
.logo-chip:hover img { filter: grayscale(0) opacity(1); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .logo-marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-row { overflow-x: auto; }
}

/* testimonials */
.quote-grid {
  columns: 2;
  column-gap: 1.8rem;
}
.quote-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  padding: 2.2rem 2rem 1.9rem;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.quote-card::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 0.6;
  color: var(--terracotta);
  display: block;
  margin-bottom: 1rem;
}
.quote-card.featured {
  background: var(--evergreen);
  border-color: var(--evergreen);
}
.quote-card.featured p { color: rgba(250, 246, 238, 0.92); }
.quote-card.featured::before { color: var(--gold); }
.quote-card.featured cite .who { color: var(--cream); }
.quote-card p {
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.quote-card cite {
  font-style: normal;
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.quote-card.featured cite { border-top-color: rgba(250, 246, 238, 0.2); }
.quote-card cite .who {
  display: block;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--evergreen);
}
.quote-card cite .role {
  display: block;
  font-size: 0.88rem;
  color: var(--sage);
  line-height: 1.45;
}
@media (max-width: 820px) { .quote-grid { columns: 1; } }

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

.founder-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.founder-hero .arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.founder-hero .arch img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 860px) {
  .founder-hero { grid-template-columns: 1fr; }
  .founder-hero .arch { max-width: 320px; margin: 0 auto; }
}

.cred-list { list-style: none; display: grid; gap: 0.8rem; margin-top: 1.2rem; }
.cred-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.6;
}
.cred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 0.85rem;
  height: 1px;
  background: var(--terracotta);
}
.cred-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 2rem;
}

.team-grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }

.coach-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-card);
  align-items: start;
}
.coach-card .coach-photo {
  position: sticky;
  top: 6rem;
}
.coach-card .coach-photo img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-arch);
}
.coach-card h3 { font-size: 1.9rem; margin-bottom: 0.2rem; }
.coach-card .coach-kicker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}
.coach-card details {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.coach-card summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.coach-card summary::-webkit-details-marker { display: none; }
.coach-card summary::after { content: "+"; font-size: 1.1rem; }
.coach-card details[open] summary::after { content: "–"; }
.coach-bio p { margin-bottom: 1rem; font-size: 1rem; }
.coach-bio p:last-child { margin-bottom: 0; }
@media (max-width: 860px) {
  .coach-card { grid-template-columns: 1fr; }
  .coach-card .coach-photo { position: static; max-width: 200px; }
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-figure .arch {
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.contact-figure img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-figure { max-width: 320px; margin: 0 auto; }
}

.contact-form {
  display: grid;
  gap: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--evergreen);
}
.field label .req { color: var(--terracotta); }
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 100, 59, 0.15);
}
.field textarea { resize: vertical; min-height: 150px; }
.form-note { font-size: 0.85rem; color: var(--sage); }

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

.site-footer {
  background: var(--evergreen-deep);
  color: rgba(250, 246, 238, 0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 246, 238, 0.14);
}
.site-footer .brand-name { color: var(--cream); font-size: 1.5rem; }
.site-footer .brand-tag { color: rgba(250, 246, 238, 0.5); }
.site-footer h4 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.site-footer ul { list-style: none; display: grid; gap: 0.6rem; }
.site-footer a { color: rgba(250, 246, 238, 0.75); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 238, 0.45);
}
.footer-paren {
  position: absolute;
  right: -2rem;
  top: -4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20rem;
  color: var(--cream);
  opacity: 0.04;
  pointer-events: none;
}
@media (max-width: 780px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }

/* ---------- reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
