/* palette: bg=#F4EBCE fg=#1B3A2A accent=#F2B33D */
/* fonts: display="Fraunces" body="Nunito" mono="IBM Plex Mono" */

:root {
  --bg: #F4EBCE;
  --bg-alt: #E9DDB6;
  --bg-deep: #DCC98A;
  --fg: #1B3A2A;
  --fg-soft: #2F5240;
  --muted: #7A8470;
  --accent: #F2B33D;
  --accent-deep: #D89518;
  --clay: #C97A4F;
  --leaf: #4F8B5B;
  --border: rgba(27, 58, 42, 0.14);
  --border-strong: rgba(27, 58, 42, 0.32);
  --serif: 'Fraunces', ui-serif, Georgia, serif;
  --sans: 'Nunito', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 400;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--fg); }

/* Decorative organic shape utilities */
.blob {
  position: absolute;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  filter: blur(24px);
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 100, "WONK" 0;
}

h1 em, h2 em, h3 em {
  color: var(--accent-deep);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--fg-soft);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(244, 235, 206, 0.84);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 var(--border), 0 8px 24px -16px rgba(27, 58, 42, 0.18);
  border-bottom-color: var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
}
@media (min-width: 768px) { .header__inner { padding: 0 40px; height: 84px; } }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-deep) 70%, var(--leaf));
  position: relative;
  flex-shrink: 0;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px dashed rgba(27, 58, 42, 0.5);
}
.brand strong { font-weight: 400; }
.brand em {
  font-style: italic;
  color: var(--accent-deep);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.nav {
  display: none;
  align-items: center;
  gap: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  position: relative;
  padding: 8px 0;
  color: var(--fg-soft);
  transition: color .25s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--fg); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  display: none;
  padding: 12px 22px;
  border-radius: 9999px;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
@media (min-width: 1024px) { .nav-cta { display: inline-flex; align-items: center; gap: 8px; } }
.nav-cta:hover { background: var(--accent-deep); color: var(--fg); transform: translateY(-1px); }
.nav-cta::after { content: "→"; transition: transform .3s var(--ease); }
.nav-cta:hover::after { transform: translateX(4px); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--fg);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 110px 32px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { opacity: 1; pointer-events: all; }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 32px;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}
.mobile-menu a:hover { color: var(--accent-deep); }
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 64px;
  overflow: hidden;
  background: var(--bg);
}
.hero__sun {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vmin;
  height: 70vmin;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--accent) 0%, rgba(242,179,61,.6) 35%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
  animation: heroZoom 14s ease-out infinite alternate;
}
.hero__leaf {
  position: absolute;
  bottom: -10%;
  left: -8%;
  width: 50vmin;
  height: 50vmin;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  background: radial-gradient(circle at 60% 40%, var(--leaf) 0%, rgba(79,139,91,.35) 50%, transparent 80%);
  filter: blur(20px);
  z-index: 0;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes drift {
  from { transform: translate(0, 0) rotate(0deg); }
  to   { transform: translate(60px, -30px) rotate(8deg); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}
@media (min-width: 1024px) {
  .hero__inner { padding: 0 40px; grid-template-columns: 1.4fr 1fr; gap: 64px; }
}

.hero__copy { max-width: 920px; }
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-weight: 400;
  margin: 32px 0 0;
}
.hero h1 .pulse { display: inline-block; }
.hero__lede {
  margin-top: 36px;
  max-width: 560px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  color: var(--fg-soft);
}
.hero__meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
  max-width: 560px;
}
@media (min-width: 768px) { .hero__meta { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.hero__meta dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
  color: var(--fg);
}

.hero__panel {
  position: relative;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px -30px rgba(27, 58, 42, 0.4);
}
.hero__panel img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 12s ease-out forwards;
}
.hero__panel-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(244, 235, 206, 0.92);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
}
.hero__panel-tag::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(79, 139, 91, 0.25);
}

.hero__cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent-deep); color: var(--fg); transform: translateY(-2px); }
.btn--accent {
  background: var(--accent);
  color: var(--fg);
  box-shadow: 0 8px 24px -8px rgba(216, 149, 24, 0.5);
}
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.btn::after {
  content: "→";
  transition: transform .3s var(--ease);
  font-family: var(--sans);
  font-size: 14px;
}
.btn:hover::after { transform: translateX(5px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--fg);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.text-link:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

/* Sections */
section { position: relative; }
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--fg);
  color: var(--bg);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--bg); }
.section--dark h1 em, .section--dark h2 em, .section--dark h3 em { color: var(--accent); }
.section--dark .eyebrow { color: rgba(244, 235, 206, 0.7); }
.section--dark .eyebrow::before { background: rgba(244, 235, 206, 0.7); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: clamp(48px, 8vw, 80px);
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 0.6fr 1.4fr; gap: 64px; align-items: end; }
}
.section-head h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.025em;
  line-height: 1;
  font-weight: 400;
}
.section-head__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-soft);
  max-width: 520px;
}
.section--dark .section-head__lede { color: rgba(244, 235, 206, 0.78); }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Journey: before / after */
.journey {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}
@media (min-width: 900px) {
  .journey { grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
}
.journey__card {
  padding: 40px 32px;
  background: var(--bg);
  border-radius: 36px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 24px -4px rgba(27, 58, 42, 0.08);
}
.journey__card--after {
  background: var(--fg);
  color: var(--bg);
  border: 1px solid var(--fg);
  box-shadow: 0 20px 60px -20px rgba(27, 58, 42, 0.45);
}
.journey__card--after .journey__label,
.journey__card--after .journey__list li::before { color: var(--accent); }
.journey__card--after .journey__list li { border-color: rgba(244, 235, 206, 0.16); }
.journey__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.journey__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.journey__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.journey__list li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px dashed var(--border);
  font-size: 15px;
  line-height: 1.55;
}
.journey__list li:last-child { border-bottom: 0; }
.journey__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--accent-deep);
  font-size: 14px;
}
.journey__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-deep);
  font-size: 64px;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
@media (max-width: 899px) {
  .journey__arrow { transform: rotate(90deg); }
}

/* Manifesto */
.manifesto {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.manifesto__quote::before {
  content: "“";
  display: block;
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 0.6;
  color: var(--accent);
  margin-bottom: -20px;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.manifesto__text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}
.manifesto__text em {
  color: var(--accent);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.manifesto__cite {
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 235, 206, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.manifesto__cite::before {
  content: "";
  width: 36px; height: 1px;
  background: rgba(244, 235, 206, 0.6);
}

/* Timeline */
.timeline {
  position: relative;
  padding: 0;
}
.timeline__track {
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--accent) 8%, var(--leaf) 60%, transparent);
}
@media (min-width: 900px) {
  .timeline__track { left: calc(20% + 18px); }
}
.timeline__step {
  position: relative;
  padding: 32px 0 56px 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .timeline__step {
    grid-template-columns: 20% 1fr;
    padding: 48px 0 56px 0;
    gap: 56px;
    align-items: start;
  }
}
.timeline__step::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 38px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--fg);
  z-index: 1;
}
.timeline__step::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 41px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  z-index: 2;
  transition: transform .4s var(--ease);
}
.timeline__step:hover::after { transform: scale(1.4); }
@media (min-width: 900px) {
  .timeline__step::before { left: calc(20% + 11px); }
  .timeline__step::after  { left: calc(20% + 14px); }
}
.timeline__phase {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.timeline__phase strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}
.timeline__step h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
  line-height: 1.1;
}
.timeline__step p {
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
}
.timeline__tags {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.timeline__tags li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  color: var(--fg-soft);
}

/* Instructors */
.instructors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.instructor {
  display: flex;
  flex-direction: column;
}
.instructor__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 200px 200px 24px 24px;
  background: var(--bg-deep);
  position: relative;
}
.instructor__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.instructor:hover .instructor__photo img { transform: scale(1.05); }
.instructor__role {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.instructor__name {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.instructor__bio {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-soft);
}

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--border-strong);
  padding: 8px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border-strong); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
  line-height: 1.25;
  gap: 32px;
}
.faq__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 300;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.faq__item[data-open="true"] .faq__icon { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq__a-inner {
  padding: 0 56px 32px 0;
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}
.faq__item[data-open="true"] .faq__a { max-height: 400px; }

/* CTA */
.cta-final {
  position: relative;
  overflow: hidden;
}
.cta-final__inner {
  position: relative;
  background: var(--fg);
  color: var(--bg);
  border-radius: 32px;
  padding: clamp(56px, 8vw, 120px) clamp(28px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  overflow: hidden;
}
@media (min-width: 1024px) { .cta-final__inner { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
.cta-final__inner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  filter: blur(12px);
  opacity: 0.45;
}
.cta-final h2 {
  position: relative;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--bg);
  margin: 0 0 24px;
}
.cta-final h2 em { color: var(--accent); }
.cta-final p {
  position: relative;
  color: rgba(244, 235, 206, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 460px;
}
.cta-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(244, 235, 206, 0.06);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(244, 235, 206, 0.14);
}
.cta-form label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 235, 206, 0.6);
}
.cta-form input, .cta-form select, .cta-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 235, 206, 0.22);
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--bg);
  width: 100%;
}
.cta-form textarea { resize: vertical; min-height: 80px; font-family: var(--sans); font-size: 16px; }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(244, 235, 206, 0.4); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: none; border-bottom-color: var(--accent); }
.cta-form__field { display: flex; flex-direction: column; gap: 6px; }
.cta-form button { margin-top: 12px; align-self: flex-start; }
.cta-form__note {
  font-size: 12px;
  color: rgba(244, 235, 206, 0.55);
  margin-top: 8px;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: var(--bg-alt);
  padding: 96px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 360px;
}
.footer__tag {
  font-size: 15px;
  color: var(--fg-soft);
  max-width: 320px;
  line-height: 1.65;
}
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--fg); transition: color .25s var(--ease); font-size: 15px; }
.footer__col a:hover { color: var(--accent-deep); }
.footer__col address { font-style: normal; font-size: 15px; line-height: 1.65; color: var(--fg-soft); }

.footer__bottom {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--fg); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 24px; }

/* Cookie popup */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  background: rgba(27, 58, 42, 0.5);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
@media (min-width: 768px) {
  .cookie-popup { padding: 32px; align-items: flex-end; justify-content: flex-start; }
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 32px 36px;
  max-width: 480px;
  width: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -20px rgba(27, 58, 42, 0.4);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}
.cookie-popup__card h3 {
  font-size: 1.55rem;
  margin: 0 0 12px;
  line-height: 1.15;
}
.cookie-popup__card p {
  font-size: 14px;
  color: var(--fg-soft);
  line-height: 1.65;
  margin: 0;
}
.cookie-popup__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cookie-popup__actions button {
  padding: 12px 24px;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.cookie-popup__actions button:hover { transform: translateY(-1px); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--fg); }

/* About page bits */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .bio-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .values { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 24px -4px rgba(27, 58, 42, 0.08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(27, 58, 42, 0.16); }
.value-card__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent-deep);
  font-style: italic;
}
.value-card h3 { font-size: 1.4rem; margin: 0; line-height: 1.15; }
.value-card p { font-size: 15px; color: var(--fg-soft); line-height: 1.65; margin: 0; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .service-grid { grid-template-columns: 1fr 1fr; } }
.service {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: 36px 32px;
  background: var(--bg);
  border-radius: 32px;
  border: 1px solid var(--border);
  align-items: start;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 4px 24px -4px rgba(27, 58, 42, 0.08);
}
.service:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(27, 58, 42, 0.16); }
.service__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 8px;
}
.service h3 { font-size: 1.65rem; margin: 0 0 12px; line-height: 1.15; }
.service p { font-size: 15px; color: var(--fg-soft); line-height: 1.7; margin: 0; }
.service ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--fg-soft); }
.service ul li { padding-left: 22px; position: relative; }
.service ul li::before { content: "→"; position: absolute; left: 0; color: var(--accent-deep); }

/* Approach steps */
.approach {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .approach { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.approach__step {
  position: relative;
  padding: 28px 24px;
  background: var(--bg);
  border-radius: 24px;
  border: 1px solid var(--border);
}
.approach__step h4 { margin: 16px 0 12px; font-size: 1.25rem; line-height: 1.15; }
.approach__step p { font-size: 14.5px; color: var(--fg-soft); line-height: 1.65; margin: 0; }
.approach__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent-deep);
  font-style: italic;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.contact-info dl { margin: 0; display: grid; gap: 28px; }
.contact-info dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-info dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.contact-info dd a:hover { color: var(--accent-deep); }
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input, .contact-form select, .contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--fg);
  width: 100%;
}
.contact-form textarea { font-family: var(--sans); font-size: 16px; min-height: 100px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-bottom-color: var(--accent-deep); }

/* Legal pages */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 24px;
}
.legal h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.legal__updated {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}
.legal h2 {
  font-size: 1.6rem;
  margin: 56px 0 16px;
  letter-spacing: -0.01em;
}
.legal h3 { font-size: 1.2rem; margin: 32px 0 12px; }
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-soft);
}
.legal ul { padding-left: 22px; }
.legal ul li { margin-bottom: 8px; }

/* Thanks page */
.thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.thanks__inner { max-width: 640px; }
.thanks h1 { font-size: clamp(2.8rem, 6vw, 5rem); margin-bottom: 24px; line-height: 1; }
.thanks p { font-size: 1.1rem; color: var(--fg-soft); margin-bottom: 40px; }

/* Page hero (sub-pages) */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero__sun {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 50vmin;
  height: 50vmin;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.6;
  z-index: 0;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .page-hero__inner { grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
}
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-weight: 400;
}
.page-hero__lede {
  max-width: 480px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-soft);
}

/* Numbers row */
.numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  margin: 80px 0 0;
}
@media (min-width: 768px) { .numbers { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.number {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.number__value {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.number__value em { color: var(--accent-deep); font-style: italic; }
.number__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Gallery / About imagery */
.about-imagery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}
.about-imagery img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 18px;
}
.about-imagery img:nth-child(1) { border-radius: 200px 18px 18px 18px; }
.about-imagery img:nth-child(2) { margin-top: 40px; border-radius: 18px 200px 18px 18px; }
.about-imagery img:nth-child(3) { border-radius: 18px 18px 18px 200px; }
.about-imagery img:nth-child(4) { margin-top: 40px; border-radius: 18px 18px 200px 18px; }

/* Testimonial / pull quote */
.pullquote {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.pullquote__author {
  margin-top: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
