/* ──────────────────────────────────────────────────────────────────────
   Praxis Petra Schemmann · One-Pager Stylesheet
   Editorial Heilpraxis · Sage / Cream / Terracotta
   ────────────────────────────────────────────────────────────────────── */

/* ───── Tokens ───── */
:root {
  /* Off-white canvas with old-site colors as accents
     Purple (primary brand) · Turquoise (secondary) · Orange (warm CTAs) */
  --cream: #F8F5EE;
  --cream-soft: #FBF9F4;
  --cream-deep: #EDE6D6;
  --paper: #FFFFFF;

  /* "sage-deep" alias keeps existing rules working — now points to deep purple-ink */
  --sage: #5B2D7E;
  --sage-deep: #221334;
  --sage-soft: #C9B5DE;

  /* Old-site purple */
  --purple: #5B2D7E;
  --purple-deep: #3E1B5C;
  --purple-soft: #C9B5DE;

  /* "terracotta" alias kept; now an old-site warm orange */
  --terracotta: #E64D1E;
  --terracotta-deep: #B83612;
  --clay: #2FA5A8;

  /* Old-site turquoise */
  --turquoise: #2FA5A8;
  --turquoise-deep: #1F7A7C;

  --ink: #1A0F22;
  --ink-soft: #4A3D58;
  --ink-mute: #8B7E96;
  --line: #DCD2E6;
  --line-soft: #E8E0EE;

  /* Fonts */
  --font-display: "Newsreader", "Cormorant Garamond", Georgia, serif;
  --font-accent: "Gambarino", "Newsreader", Georgia, serif;
  --font-body: "Switzer", -apple-system, "Helvetica Neue", sans-serif;

  /* Type scale (clamp) — Newsreader needs more px than Fraunces to feel large */
  --t-display-1: clamp(4rem, 10vw, 9rem);
  --t-display-2: clamp(3rem, 7vw, 5.8rem);
  --t-display-3: clamp(2.4rem, 5vw, 4rem);
  --t-h2: clamp(2.4rem, 4.6vw, 3.8rem);
  --t-h3: clamp(1.4rem, 2.4vw, 1.8rem);
  --t-lead: clamp(1.05rem, 1.6vw, 1.3rem);
  --t-body: 1.05rem;
  --t-small: 0.875rem;
  --t-eyebrow: 0.72rem;

  /* Layout */
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --max: 1320px;
  --max-narrow: 980px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ───── Reset / Base ───── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease-soft); }
a:hover { color: var(--terracotta); }

::selection { background: var(--sage-deep); color: var(--cream); }

/* Focus states */
:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}

.skip-link {
  position: absolute; left: -9999px; top: -9999px;
  background: var(--sage-deep); color: var(--cream);
  padding: .75rem 1rem; font-weight: 500;
  border-radius: 0 0 .5rem 0; z-index: 100;
}
.skip-link:focus {
  position: fixed; left: 0; top: 0;
}

/* ───── Typography utilities ───── */
.display, .section-title, .spotlight-title, .contact-title {
  font-family: var(--font-display);
  font-weight: 380;
  font-style: normal;
  letter-spacing: -0.025em;
  line-height: 0.98;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
  margin: 0;
}

em {
  font-style: italic;
  color: var(--sage-deep);
  font-weight: 380;
  font-variation-settings: "opsz" 72;
}

.eyebrow, .section-num {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--t-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.section-num::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.section-num.light { color: rgba(244, 237, 224, 0.6); }

.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terracotta);
  display: inline-block;
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--sage-deep);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(42, 38, 32, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--cream-deep);
  color: var(--ink);
  border-color: var(--ink-soft);
}

.btn-light {
  background: var(--cream);
  color: var(--sage-deep);
}
.btn-light:hover {
  background: var(--paper);
  transform: translateY(-2px);
  color: var(--ink);
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 1.05rem 1.5rem;
}

/* ───── Header ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-soft), background .3s var(--ease-soft);
}
.site-header.scrolled {
  border-bottom-color: var(--line-soft);
  background: color-mix(in srgb, var(--cream) 96%, transparent);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sage-deep);
}
.brand-mark { display: inline-flex; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  font-size: 0.95rem;
}
.nav a {
  color: var(--ink-soft);
  position: relative;
  padding: .25rem 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { padding: 0.7rem 1.2rem; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  background: none; border: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: all .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: auto 0 0 0;
  top: 65px;
  background: var(--cream);
  padding: 2rem var(--gutter);
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 40;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 380;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { color: var(--ink); }
.mobile-cta { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; margin-top: 1rem; align-self: flex-start; }

/* ───── Grain texture ───── */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.15 0 0 0 0 0.13 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 1;
}

/* ───── HERO ───── */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(3rem, 6vw, 4rem);
  width: 100%;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero-inner .eyebrow { justify-content: center; }

.hero-inner .display {
  font-size: var(--t-display-1);
  font-weight: 350;
  font-variation-settings: "opsz" 72;
  text-align: center;
}
.underlined { position: relative; display: inline-block; padding-bottom: 0.05em; }
.word-underline {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -0.18em;
  width: 104%;
  height: 0.4em;
  color: var(--terracotta);
  pointer-events: none;
  opacity: 0;
  animation: underlineDraw 1.4s var(--ease) 1.2s forwards;
}
.word-underline path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawPath 1.6s var(--ease) 1.2s forwards;
}
@keyframes underlineDraw { to { opacity: 1; } }
@keyframes drawPath { to { stroke-dashoffset: 0; } }
.hero-inner .display .line {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: heroLine 1.1s var(--ease) forwards;
}
.hero-inner .display .line-1 { animation-delay: 0.15s; }
.hero-inner .display .line-2 { animation-delay: 0.32s; }
.hero-inner .display .line-3 { animation-delay: 0.5s; font-style: italic; color: var(--ink-soft); margin-top: 0.15em; }

@keyframes heroLine {
  to { opacity: 1; transform: translateY(0); }
}

.hero-lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  max-width: 38em;
  line-height: 1.6;
  margin: 0 auto;
  opacity: 0;
  animation: heroLine .9s var(--ease) 0.7s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  opacity: 0;
  animation: heroLine .9s var(--ease) 0.85s forwards;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 28em;
  line-height: 1.5;
  margin: 0.5rem auto 0;
  opacity: 0;
  animation: heroLine .9s var(--ease) 1s forwards;
  font-variation-settings: "opsz" 14;
}
.hero-quote .cap-num {
  display: inline-block;
  margin-right: 0.6em;
  color: var(--terracotta);
  font-style: normal;
  letter-spacing: 0.05em;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1rem, 4vw, 2.5rem);
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: heroLine .9s var(--ease) 1.15s forwards;
  text-align: center;
  justify-content: center;
}
.hero-meta div { text-align: center; }
.hero-meta dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.hero-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
}

/* About-section figure (kept for portrait there) */
.figure-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4/5;
  transform: rotate(0.6deg);
  box-shadow: 0 30px 80px -30px rgba(26, 15, 34, 0.25);
}
.figure-frame img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 25%;
  filter: contrast(0.96) saturate(0.92);
  transition: transform 1.4s var(--ease);
}
.figure-frame:hover img { transform: scale(1.04); }

.cap-num {
  font-style: normal;
  color: var(--terracotta);
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1px solid var(--ink-mute);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 2;
}
.scroll-indicator span {
  width: 2px; height: 6px;
  background: var(--ink-mute);
  border-radius: 1px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ───── TRUST BAR ───── */
.trust {
  background: var(--cream-deep);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
}
.trust-inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  flex: 1;
  min-width: 130px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 5.5vw, 5rem);
  font-weight: 350;
  font-variation-settings: "opsz" 72;
  line-height: 0.9;
  color: var(--sage-deep);
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0.25rem;
}
.trust-divider {
  width: 1px;
  height: 80px;
  background: var(--line);
}
.trust { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); }

/* ───── Section Heads ───── */
.section-head {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.section-head.centered { align-items: center; text-align: center; }
.section-title {
  font-size: var(--t-h2);
  font-weight: 380;
  max-width: 18ch;
}
.section-head.centered .section-title { max-width: 24ch; }
.section-sub {
  margin: 0;
  color: var(--ink-soft);
  max-width: 50ch;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ───── ABOUT ───── */
.about {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--cream);
  width: 100%;
}

.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-portrait {
  position: relative;
  margin: 0;
  position: sticky;
  top: 100px;
}
.portrait-frame {
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px -28px rgba(42, 38, 32, 0.35);
  transform: rotate(-0.8deg);
}
.portrait-frame img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 18%;
  filter: contrast(0.96) saturate(0.88);
}
.portrait-badge {
  position: absolute;
  top: -0.85rem; right: -1rem;
  background: var(--terracotta);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 450;
  transform: rotate(3deg);
  box-shadow: 0 8px 20px -8px rgba(160, 78, 46, 0.5);
  letter-spacing: -0.01em;
}

.about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text .lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 380;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
.about-text p { margin: 0; color: var(--ink-soft); line-height: 1.7; max-width: 60ch; }
.about-text strong { color: var(--ink); font-weight: 600; }

.timeline {
  list-style: none;
  margin: 2rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.timeline li:last-child { border-bottom: none; padding-bottom: 0; }
.t-year {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--terracotta);
  font-weight: 500;
}
.t-text { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }

/* ───── SERVICES ───── */
.services {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service {
  position: relative;
  padding: 2.25rem 1.75rem 2.5rem;
  background: var(--cream-soft);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service:hover {
  background: var(--paper);
}
.service::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: transparent;
  transition: background .35s var(--ease);
}
.service:hover::before { background: var(--terracotta); }
.service[data-accent="sage"]:hover::before { background: var(--sage-deep); }
.service[data-accent="clay"]:hover::before { background: var(--clay); }

.service-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--terracotta);
  letter-spacing: 0.05em;
}
.service[data-accent="sage"] .service-num { color: var(--sage-deep); }
.service[data-accent="clay"] .service-num { color: var(--clay); }

.service h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.service p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}
.service-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

/* ───── SPOTLIGHT ───── */
.spotlight {
  background: var(--sage-deep);
  color: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(198, 107, 71, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(184, 144, 122, 0.1), transparent 50%);
  pointer-events: none;
}

.spotlight-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.spotlight-head { margin-bottom: 4rem; max-width: 24ch; }

.spotlight-title {
  font-size: var(--t-display-2);
  color: var(--cream);
  font-weight: 320;
  line-height: 0.95;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5rem;
  margin: 1.5rem 0;
}
.spotlight-title span { display: inline-block; }
.spotlight-title em { color: var(--clay); font-style: italic; }

.spotlight-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream-deep);
  margin: 0;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(244, 237, 224, 0.2);
  border-left: 1px solid rgba(244, 237, 224, 0.2);
}

.spot-card {
  padding: 2rem 1.5rem 2.25rem;
  border-right: 1px solid rgba(244, 237, 224, 0.2);
  border-bottom: 1px solid rgba(244, 237, 224, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .35s var(--ease);
  position: relative;
}
.spot-card:hover { background: rgba(244, 237, 224, 0.05); }
.spot-card:hover .spot-glyph svg { transform: rotate(-4deg) translateY(-2px); }

.spot-glyph {
  display: inline-flex;
  width: 52px;
  height: 52px;
  color: var(--clay);
  margin-bottom: 0.25rem;
}
.spot-glyph svg {
  width: 100%;
  height: 100%;
  transition: transform .5s var(--ease);
}

.spot-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0;
  color: var(--cream);
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.spot-card p {
  margin: 0;
  color: rgba(244, 237, 224, 0.78);
  line-height: 1.55;
  font-size: 0.95rem;
}

.spotlight-cta { display: flex; justify-content: flex-start; }

/* ───── AUDIENCE ───── */
.audience {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.audience-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.audience-list li {
  background: var(--cream-soft);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all .35s var(--ease);
}
.audience-list li:hover {
  background: var(--paper);
  border-color: var(--line);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -18px rgba(42, 38, 32, 0.2);
}

.aud-glyph {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
  transition: transform .45s var(--ease);
}
.aud-glyph svg { width: 100%; height: 100%; }
.audience-list li:hover .aud-glyph { transform: rotate(-6deg) translateY(-2px); }

.audience-list h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.audience-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ───── PROCESS ───── */
.process {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  top: 32px;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.process-list li {
  position: relative;
  padding: 0 1.5rem 0 0;
  z-index: 1;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  color: var(--sage-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 450;
  margin-bottom: 1.25rem;
  transition: all .35s var(--ease);
}
.process-list li:hover .step-num {
  background: var(--sage-deep);
  color: var(--cream);
  border-color: var(--sage-deep);
}

.process-list h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.process-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ───── SEMINARS ───── */
.seminars {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--cream);
}

.seminars-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.seminars-text { display: flex; flex-direction: column; gap: 1.5rem; }
.seminars-text .section-title { font-size: var(--t-display-3); margin-top: 1rem; }
.seminars-text .lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
  max-width: 38em;
}

.seminar-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin: 1.5rem 0 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.seminar-meta dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.seminar-meta dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}
.seminar-meta dd strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 450;
  color: var(--sage-deep);
}

.seminar-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--cream-soft);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--line-soft);
}
.seminar-day {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.seminar-day:last-child { border-bottom: none; padding-bottom: 0; }
.seminar-day:first-child { padding-top: 0; }

.seminar-day h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 450;
  margin: 0 0 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  letter-spacing: -0.005em;
}
.seminar-day h4 span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  font-weight: 600;
  background: rgba(198, 107, 71, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}
.seminar-day p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ───── CONTACT ───── */
.contact {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact-head { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-title {
  font-size: var(--t-display-3);
  color: var(--cream);
  font-weight: 350;
  letter-spacing: -0.02em;
}
.contact-title em { color: var(--clay); }
.contact-lead {
  font-size: 1.1rem;
  color: rgba(244, 237, 224, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 36em;
}

.contact-info {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(244, 237, 224, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-info li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
}
.ci-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(244, 237, 224, 0.55);
  font-weight: 500;
}
.ci-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
a.ci-value:hover { color: var(--clay); }

/* Form */
.contact-form {
  background: rgba(244, 237, 224, 0.04);
  border: 1px solid rgba(244, 237, 224, 0.15);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(244, 237, 224, 0.7);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: rgba(244, 237, 224, 0.06);
  border: 1px solid rgba(244, 237, 224, 0.2);
  color: var(--cream);
  font: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  transition: all .25s var(--ease);
  font-family: inherit;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: rgba(244, 237, 224, 0.1);
  border-color: var(--clay);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 237, 224, 0.4);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23F4EDE0' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field select option { background: var(--ink); color: var(--cream); }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(244, 237, 224, 0.7);
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-field input[type="checkbox"] {
  width: 16px; height: 16px;
  margin: 3px 0 0;
  accent-color: var(--clay);
  flex-shrink: 0;
}
.checkbox-field a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
}

.contact-form .btn-primary {
  background: var(--clay);
  color: var(--ink);
  margin-top: 0.5rem;
}
.contact-form .btn-primary:hover {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(184, 144, 122, 0.5);
}

.form-status {
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.5em;
  margin-top: 0.25rem;
}
.form-status.success { color: var(--clay); }
.form-status.error { color: #E8967A; }

/* ───── FOOTER ───── */
.site-footer {
  background: var(--cream-deep);
  color: var(--ink-soft);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--sage-deep);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  font-weight: 600;
  margin: 0 0 1rem;
}
.footer-col p,
.footer-col ul { margin: 0; font-size: 0.92rem; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--terracotta); }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem var(--gutter) 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-mark {
  font-family: var(--font-display);
  font-style: italic;
}

/* ───── Responsive ───── */
@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }

  .scroll-indicator { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-portrait { position: static; max-width: 380px; margin-inline: auto; width: 100%; }

  .seminars-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }

  .process-list { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .process-list::before { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  .trust-divider { display: none; }
  .trust-inner { gap: 1.5rem; justify-content: flex-start; }
  .trust-item { flex: 0 0 calc(50% - 0.75rem); min-width: auto; }

  .form-row { grid-template-columns: 1fr; }
  .seminar-meta { grid-template-columns: 1fr; gap: 1.25rem; }

  .process-list { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .contact-info li { grid-template-columns: 1fr; gap: 0.25rem; }
  .ci-label { color: rgba(244, 237, 224, 0.45); }

  .timeline li { grid-template-columns: 60px 1fr; gap: 1rem; }
}

/* ───── Reveal on Scroll ───── */
.reveal { opacity: 0; transform: translateY(24px); transition: all 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .hero-text .display .line, .hero-lead, .hero-cta, .hero-meta, .hero-figure { opacity: 1 !important; transform: none !important; }
}
