:root {
  --cream: #f6f0e6;
  --cream-2: #ebe3d4;
  --cream-soft: #fbf7f0;
  --ink: #2a2e34;
  --ink-soft: #5c636c;
  --evening: #1b3a5b;
  --evening-deep: #10243a;
  --terracotta: #c0632f;
  --terracotta-dark: #a9531f;
  --green: #8fbb4f;
  --blue: #4f97c4;
  --amber: #eaa423;
  --line: rgba(43, 47, 54, 0.11);
  --line-strong: rgba(43, 47, 54, 0.18);
  --shadow: 0 22px 48px -28px rgba(27, 58, 91, 0.38);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(143, 187, 79, 0.08), transparent 55%),
    radial-gradient(900px 420px at 100% 8%, rgba(79, 151, 196, 0.08), transparent 50%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 38%, var(--cream-2) 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  min-height: 100vh;
}

/* Soft film grain — ~0.5KB SVG, no image files */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.045;
  mix-blend-mode: multiply;
  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%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection {
  background: rgba(192, 99, 47, 0.22);
  color: var(--evening-deep);
}

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

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 22px 0;
}

.site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav .logo img {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s var(--ease);
}

.site-nav .logo:hover img { transform: translateY(-1px); }

.site-nav.on-light .logo img { filter: none; }

.site-nav .links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav .links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav .links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-nav.on-light .links a { color: var(--evening); }

.site-nav.on-light .links a:hover {
  color: var(--terracotta-dark);
  background: rgba(192, 99, 47, 0.08);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1.5px solid transparent;
  appearance: none;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 14px 28px -14px rgba(192, 99, 47, 0.85);
}

.btn-primary:hover { background: var(--terracotta-dark); }

.btn-light {
  background: #fff;
  color: var(--evening);
  box-shadow: 0 14px 30px -16px rgba(0, 0, 0, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--evening);
  border-color: rgba(27, 58, 91, 0.28);
}

.btn-ghost:hover { background: rgba(27, 58, 91, 0.06); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); }

/* ---------- Hero: typographic dusk + circle motif ---------- */
.hero-bleed {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0a1624;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-atmosphere .sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 120%, rgba(192, 99, 47, 0.2), transparent 55%),
    radial-gradient(90% 70% at 80% 10%, rgba(79, 151, 196, 0.22), transparent 50%),
    radial-gradient(70% 60% at 15% 30%, rgba(143, 187, 79, 0.08), transparent 45%),
    linear-gradient(
      180deg,
      #07121f 0%,
      #10263d 38%,
      #1a3a57 68%,
      #234560 100%
    );
}

.hero-atmosphere .glow {
  position: absolute;
  border-radius: 50%;
}

.glow-warm {
  width: min(90vw, 760px);
  height: min(90vw, 760px);
  left: 50%;
  bottom: -28%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(240, 194, 122, 0.34) 0%, rgba(192, 99, 47, 0.14) 34%, transparent 68%);
  animation: glow-pulse 11s ease-in-out infinite alternate;
}

.glow-cool {
  width: min(70vw, 560px);
  height: min(70vw, 560px);
  right: -8%;
  top: -12%;
  background: radial-gradient(circle, rgba(120, 178, 214, 0.22) 0%, transparent 68%);
  animation: glow-pulse 15s ease-in-out infinite alternate-reverse;
}

.rings {
  position: absolute;
  left: 62%;
  top: 48%;
  width: min(88vw, 780px);
  height: min(88vw, 780px);
  transform: translate(calc(-50% + var(--mx, 0px)), calc(-50% + var(--my, 0px)));
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  will-change: transform;
}

.hero-bleed.is-ready .rings {
  opacity: 0.62;
}

.rings-inner {
  position: relative;
  width: 100%;
  height: 100%;
  animation: ring-spin 90s linear infinite;
}

.rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(192, 99, 47, 0.16);
  animation: ring-breathe 12s ease-in-out infinite;
}

/* Soft radial pulse that expands off each ring */
.rings span::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(234, 164, 35, 0.4);
  box-shadow: 0 0 28px rgba(192, 99, 47, 0.12);
  animation: ring-pulse-wave 4.8s ease-out infinite;
  pointer-events: none;
}

/* Warm amber arc on the outer ring */
.rings span::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    transparent 0deg,
    rgba(192, 99, 47, 0.05) 50deg,
    rgba(234, 164, 35, 0.7) 95deg,
    rgba(192, 99, 47, 0.12) 145deg,
    transparent 190deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
  pointer-events: none;
}

.rings span:nth-child(2) {
  inset: 12%;
  border-color: rgba(143, 187, 79, 0.18);
  border-style: dashed;
  animation-delay: -4s;
  animation-duration: 16s;
}

.rings span:nth-child(2)::before {
  border-color: rgba(143, 187, 79, 0.38);
  box-shadow: 0 0 22px rgba(143, 187, 79, 0.1);
  animation-delay: 1.6s;
  animation-duration: 5.4s;
}

.rings span:nth-child(2)::after {
  background: conic-gradient(
    from 40deg,
    transparent 0deg,
    rgba(143, 187, 79, 0.05) 45deg,
    rgba(180, 210, 110, 0.62) 95deg,
    rgba(143, 187, 79, 0.1) 140deg,
    transparent 185deg
  );
}

.rings span:nth-child(3) {
  inset: 26%;
  border-color: rgba(79, 151, 196, 0.16);
  animation-delay: -7s;
  animation-duration: 10s;
}

.rings span:nth-child(3)::before {
  border-color: rgba(120, 178, 214, 0.4);
  box-shadow: 0 0 22px rgba(79, 151, 196, 0.12);
  animation-delay: 3.2s;
  animation-duration: 5s;
}

.rings span:nth-child(3)::after {
  background: conic-gradient(
    from 300deg,
    transparent 0deg,
    rgba(79, 151, 196, 0.06) 45deg,
    rgba(150, 200, 230, 0.65) 95deg,
    rgba(79, 151, 196, 0.12) 140deg,
    transparent 185deg
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  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%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes glow-pulse {
  from { opacity: 0.75; }
  to { opacity: 1; }
}

@keyframes ring-breathe {
  0%, 100% { transform: scale(1); opacity: 0.65; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ring-pulse-wave {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    opacity: 0.12;
  }
  100% {
    transform: scale(1.16);
    opacity: 0;
  }
}

.hero-bleed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: min(38vh, 280px);
  background: linear-gradient(
    180deg,
    rgba(251, 247, 240, 0) 0%,
    rgba(251, 247, 240, 0.18) 32%,
    rgba(251, 247, 240, 0.55) 62%,
    rgba(251, 247, 240, 0.88) 86%,
    var(--cream-soft) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-bleed .content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 108px;
}

.hero-bleed .wrap {
  max-width: 1120px;
}

.hero-bleed h1 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 14ch;
}

.hero-bleed h1 .brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding-left: 0.28em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero-bleed.is-ready .brand {
  opacity: 1;
  transform: none;
  transition-delay: 0.12s;
}

.hero-bleed h1 .title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  min-height: 1.05em;
  white-space: nowrap;
}

.hero-bleed h1 .title .typed-em {
  font-style: italic;
  display: inline-block;
  padding: 0 0.18em 0.06em 0.02em;
  color: var(--terracotta);
  background-image: linear-gradient(
    90deg,
    #f6d07a 0%,
    var(--amber) 25%,
    var(--terracotta) 50%,
    var(--amber) 75%,
    #f6d07a 100%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: circle-shift 3.6s linear infinite;
}

@keyframes circle-shift {
  from { background-position: 0% 50%; }
  to { background-position: -200% 50%; }
}

.hero-bleed h1 .title .caret {
  display: inline-block;
  width: 0.08em;
  height: 0.82em;
  margin-left: 0.06em;
  background: rgba(240, 194, 122, 0.9);
  vertical-align: -0.04em;
  animation: caret-blink 0.9s steps(1) infinite;
}

.hero-bleed h1 .title .caret.is-done {
  opacity: 0;
  animation: none;
  transition: opacity 0.4s ease 0.2s;
}

@keyframes caret-blink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hero-bleed .lede {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 26px;
  max-width: 36ch;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.35s var(--ease), transform 1.35s var(--ease);
}

.hero-bleed.is-typed .lede {
  opacity: 1;
  transform: none;
}

.hero-bleed .lede p + p {
  margin-top: 0.55em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.35s var(--ease), transform 1.35s var(--ease);
}

.hero-bleed.is-typed .hero-actions {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}

/* Desktop: wider stage, rings sit beside type */
@media (min-width: 960px) {
  .hero-bleed .content {
    padding: 140px 0 130px;
  }

  .hero-bleed h1 .title {
    font-size: clamp(4.8rem, 7.2vw, 7rem);
  }

  .hero-bleed .lede {
    max-width: 38ch;
    font-size: 1.2rem;
  }

  .rings {
    left: 72%;
    top: 50%;
    width: min(52vw, 820px);
    height: min(52vw, 820px);
  }

  .hero-bleed.is-ready .rings {
    opacity: 0.68;
  }

  .glow-warm {
    left: 68%;
    bottom: -22%;
    width: min(48vw, 700px);
    height: min(48vw, 700px);
  }
}

@media (max-width: 700px) {
  .hero-bleed h1 .title {
    white-space: normal;
  }
}

/* Compact page hero (detail pages) */
.page-hero {
  position: relative;
  padding: 148px 0 64px;
  background:
    linear-gradient(180deg, rgba(27, 58, 91, 0.04), transparent 55%),
    radial-gradient(ellipse at 12% 0%, rgba(143, 187, 79, 0.14), transparent 48%),
    radial-gradient(ellipse at 92% 18%, rgba(192, 99, 47, 0.1), transparent 42%),
    linear-gradient(180deg, var(--cream-2), var(--cream-soft));
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(27, 58, 91, 0.015) 11px,
      rgba(27, 58, 91, 0.015) 12px
    );
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}

.page-hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  padding-left: 0.3em;
}

.page-hero .kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--terracotta);
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 7.5vw, 4.5rem);
  line-height: 1.02;
  color: var(--evening);
  margin-top: 16px;
  letter-spacing: -0.01em;
}

.page-hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.55rem, 3.6vw, 2.15rem);
  color: var(--evening);
  margin-top: 22px;
  max-width: 28ch;
  line-height: 1.28;
  position: relative;
  padding-left: 18px;
}

.page-hero .tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.25em;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--terracotta), rgba(192, 99, 47, 0.35));
}

.page-hero .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.page-hero .hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-hero .hero-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ---------- Sections ---------- */
.section {
  padding: 84px 0;
  position: relative;
}

.section-tight { padding: 56px 0; }

.why-strip {
  padding: 36px 0 8px;
}

.why-strip .section-rule {
  margin: 0 0 22px;
}

.why-strip .intro {
  color: var(--ink);
  font-size: 1.08rem;
  max-width: 42ch;
  line-height: 1.7;
}

.why-strip .intro + .intro {
  margin-top: 14px;
}

.why-strip + .section {
  padding-top: 56px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  margin-bottom: 14px;
  padding-left: 0.3em;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.15rem, 5.2vw, 3rem);
  color: var(--evening);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section .intro {
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 48ch;
  margin-top: 14px;
  line-height: 1.7;
}

.note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-style: italic;
}

.section-rule {
  width: 48px;
  height: 1px;
  margin: 22px 0 0;
  background: linear-gradient(to right, var(--terracotta), transparent);
}

.section-break {
  width: min(180px, 40vw);
  height: 1px;
  margin: 0 auto 36px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}

/* ---------- Experience list ---------- */
.exp-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.exp-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px 28px;
  align-items: center;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.5s ease;
}

.exp-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28%;
  bottom: 28%;
  width: 1.5px;
  background: var(--terracotta);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.exp-row:hover {
  background: rgba(255, 255, 255, 0.32);
}

.exp-row:hover::before {
  opacity: 0.7;
}

.exp-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: rgba(27, 58, 91, 0.35);
  min-width: 2ch;
  transition: color 0.45s ease;
}

.exp-row:hover .num { color: rgba(192, 99, 47, 0.85); }

.exp-row .when {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 500;
}

.exp-row h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 2.5rem);
  color: var(--evening);
  margin-top: 8px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.exp-row p {
  margin-top: 10px;
  color: var(--ink-soft);
  max-width: 44ch;
  line-height: 1.5;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 400;
}

.exp-row .go {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--evening);
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.exp-row:hover .go {
  opacity: 0.9;
  transform: translateX(3px);
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  margin-top: 40px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 8px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 12px;
  line-height: 1;
}

.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--evening);
  line-height: 1.2;
}

.step p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 28ch;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Detail blocks ---------- */
.prose {
  font-size: 1.12rem;
  color: var(--ink);
  max-width: 54ch;
  line-height: 1.75;
}

.prose p + p { margin-top: 1.05em; }

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.detail {
  padding: 24px 22px;
  border-bottom: 1px solid var(--line);
}

.detail:nth-child(odd) { border-right: 1px solid var(--line); }

.detail dt {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 500;
}

.detail dd {
  margin-top: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--evening);
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.detail dd small {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.checklist {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 14px;
  max-width: 58ch;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #6fa338);
  box-shadow: 0 0 0 3px rgba(143, 187, 79, 0.15);
}

.callout {
  margin-top: 32px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--evening);
  max-width: 36ch;
  line-height: 1.35;
}

.invite-lines {
  margin-top: 28px;
  display: grid;
  gap: 20px;
  max-width: 38ch;
}

.invite-lines p {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.find-us {
  text-align: center;
}

.find-us-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--evening);
  text-decoration: none;
  border-bottom: 1px solid rgba(192, 99, 47, 0.35);
  padding-bottom: 8px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.find-us-pin {
  display: grid;
  place-items: center;
  width: 1.15em;
  height: 1.15em;
  color: var(--terracotta);
  flex: 0 0 auto;
}

.find-us-pin svg {
  width: 0.72em;
  height: 0.72em;
}

.find-us-arrow {
  font-family: var(--sans);
  font-size: 0.55em;
  font-weight: 600;
  color: var(--terracotta);
  transition: transform 0.35s var(--ease);
}

.find-us-link:hover,
.find-us-link:focus-visible {
  color: var(--terracotta-dark);
  border-color: var(--terracotta);
}

.find-us-link:hover .find-us-arrow,
.find-us-link:focus-visible .find-us-arrow {
  transform: translateX(4px);
}

.section-note {
  padding: 38px 0;
}

.contribution-block {
  text-align: center;
  padding: 8px 0 4px;
}

.contribution-block .section-label {
  display: block;
}

.contribution-amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 8vw, 4.4rem);
  color: var(--evening);
  line-height: 1;
  margin-top: 10px;
  letter-spacing: -0.02em;
}

.contribution-block .intro {
  margin-left: auto;
  margin-right: auto;
  margin-top: 14px;
}

/* Pull the form closer to the last content section */
.section.section-before-form {
  padding-bottom: 16px;
}

.section.section-note.section-before-form {
  padding-top: 38px;
  padding-bottom: 16px;
}

.section.section-signup {
  padding: 12px 0 72px;
}

.section-signup .form-panel {
  margin-top: 0;
}

/* ---------- Form ---------- */
.form-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(43, 47, 54, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: clamp(28px, 5vw, 48px);
  margin-top: 12px;
  border-radius: 2px;
}

.form-panel > h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--evening);
  line-height: 1.15;
}

.form-panel .form-lede {
  color: var(--ink-soft);
  margin: 12px 0 30px;
  max-width: 46ch;
  line-height: 1.65;
}

.form-section + .form-section {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.form-section h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--evening);
  font-weight: 500;
}

.field {
  margin-top: 18px;
}

.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.field .hint {
  display: block;
  margin-top: 7px;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="email"],
.field input[type="file"],
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--cream-soft);
  border: 1.5px solid rgba(27, 58, 91, 0.14);
  border-radius: 8px;
  padding: 13px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea { min-height: 112px; resize: vertical; }

.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: rgba(27, 58, 91, 0.28);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  background: #fff;
  border-color: rgba(192, 99, 47, 0.5);
  box-shadow: 0 0 0 4px rgba(192, 99, 47, 0.1);
}

.choices {
  display: grid;
  gap: 10px;
}

.choice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 14px;
  background: var(--cream-soft);
  border: 1.5px solid rgba(27, 58, 91, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice:hover {
  border-color: rgba(192, 99, 47, 0.35);
  transform: translateX(2px);
}

.choice:has(input:checked) {
  border-color: rgba(192, 99, 47, 0.55);
  background: rgba(192, 99, 47, 0.06);
}

.choice input { margin-top: 3px; accent-color: var(--terracotta); }

.form-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 40ch;
  line-height: 1.5;
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(143, 187, 79, 0.12);
  border: 1px solid rgba(143, 187, 79, 0.35);
  border-radius: 10px;
  color: var(--evening);
  margin-bottom: 22px;
  line-height: 1.55;
}

.form-success.show { display: block; }

/* ---------- Footer ---------- */
footer.site-footer {
  position: relative;
  /* Overlap upward so blue fades over the beige — no hard seam */
  margin-top: -72px;
  background:
    radial-gradient(600px 200px at 50% 60%, rgba(79, 151, 196, 0.14), transparent 58%),
    linear-gradient(
      180deg,
      rgba(235, 227, 212, 0) 0%,
      rgba(235, 227, 212, 0.35) 12%,
      rgba(154, 164, 168, 0.55) 28%,
      #4a5f6e 48%,
      var(--evening) 68%,
      var(--evening-deep) 100%
    );
  color: #dfe7ee;
  text-align: center;
  padding: 120px 24px 44px;
  border: 0;
  box-shadow: none;
}

footer.site-footer .made {
  font-size: 0.95rem;
  color: #c3d2e0;
}

footer.site-footer .made a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

footer.site-footer .made a:hover {
  border-color: var(--amber);
  color: var(--amber);
}

footer.site-footer .copy {
  margin-top: 18px;
  font-size: 12px;
  color: #7f97ab;
}

footer.site-footer .social {
  margin-top: 14px;
  font-size: 0.92rem;
}

footer.site-footer .social a {
  color: #c3d2e0;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer.site-footer .social a:hover { color: var(--amber); }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step p { max-width: none; }
}

@media (max-width: 720px) {
  .details-grid { grid-template-columns: 1fr; }
  .detail:nth-child(odd) { border-right: none; }
  .exp-row {
    grid-template-columns: auto 1fr;
    gap: 14px 16px;
  }
  .exp-row .go {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .site-nav .logo img { width: 108px; }
  .hero-bleed .content { padding: 112px 0 100px; }
  .rings {
    left: 78%;
    top: 38%;
    width: 120vw;
    height: 120vw;
  }
  .hero-bleed.is-ready .rings { opacity: 0.45; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 0 0 auto;
    width: auto;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .form-actions .btn { width: 100%; }
  .page-hero { padding: 128px 0 48px; }
  .section { padding: 68px 0; }
  .section.section-tight { padding: 36px 0; }
  .section.section-note {
    padding: 26px 0;
  }
  .section.section-note.section-before-form {
    padding-top: 26px;
    padding-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow-warm,
  .glow-cool,
  .rings span,
  .rings span::before,
  .rings-inner,
  .hero-bleed h1 .title .caret,
  .hero-bleed h1 .title .typed-em { animation: none; }
  .hero-bleed h1 .brand,
  .hero-bleed .lede,
  .hero-actions {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .choice:hover,
  .exp-row:hover .go,
  .btn:hover { transform: none; }
}
