:root {
  --paper: #f4efe5;
  --paper-strong: #fffcf6;
  --ink: #102c31;
  --ink-soft: #52676a;
  --teal-deep: #063e43;
  --teal: #078c8b;
  --teal-bright: #13b8b1;
  --amber: #c78a43;
  --line: #ded5c8;
  --shadow: 0 24px 70px rgba(56, 43, 31, .14), 0 4px 14px rgba(56, 43, 31, .08);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(19, 184, 177, .1), transparent 26rem),
    linear-gradient(180deg, #fbf7ef 0%, var(--paper) 42%, #eee6da 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:where(a, summary):focus-visible {
  outline: 3px solid var(--teal-bright);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  color: white;
  background: var(--teal-deep);
  font-weight: 700;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(16, 44, 49, .1);
  background: rgba(255, 252, 246, .88);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  width: max-content;
  text-decoration: none;
}
.brand-mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand-mark rect { fill: var(--teal); }
.brand-mark path { fill: white; }
.brand-name {
  font: 600 20px/1 var(--font-display);
  letter-spacing: -.025em;
}
.brand-name em { color: var(--teal); font-style: italic; }

.header-nav { display: flex; gap: 28px; }
.header-nav a, .text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}
.header-nav a:hover, .text-link:hover { color: var(--teal); }
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.button, .button-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  box-shadow: 0 12px 26px rgba(6, 62, 67, .2);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 17px 32px rgba(6, 62, 67, .26); }
.button-secondary {
  border-color: rgba(16, 44, 49, .22);
  color: var(--ink);
  background: rgba(255, 252, 246, .72);
}
.button-secondary:hover { border-color: var(--teal); color: var(--teal-deep); }
.button-small { min-height: 44px; padding: 9px 16px; border-radius: 10px; font-size: .9rem; }
.button-light { color: var(--teal-deep); background: var(--paper-strong); box-shadow: 0 14px 30px rgba(0, 0, 0, .18); }

.hero {
  width: min(var(--max), calc(100% - 48px));
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin: 0 auto;
  padding: 54px 0 72px;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-display); }
h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.4vw, 6.8rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.055em;
}
h1 em { color: var(--teal); font-weight: 500; }
.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin: 14px 0 0; color: #738284; font-size: .88rem; }
.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px;
  background: #c9b28f;
  box-shadow: var(--shadow);
}
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(.9) contrast(.98);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(4, 34, 36, .46));
  pointer-events: none;
}
.moment-card {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 22px;
  color: white;
  background: rgba(5, 49, 52, .88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}
.moment-card span, .moment-card small { display: block; color: rgba(255, 255, 255, .74); }
.moment-card span { font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.moment-card strong { display: block; margin: 4px 0; font: 500 clamp(1.55rem, 2.5vw, 2.2rem)/1.1 var(--font-display); }

.trust-strip {
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto 110px;
  overflow: hidden;
  border: 1px solid rgba(16, 44, 49, .12);
  border-radius: 20px;
  background: rgba(255, 252, 246, .78);
  box-shadow: 0 14px 38px rgba(56, 43, 31, .08);
}
.trust-strip div { padding: 22px; text-align: center; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font: 600 1.8rem/1 var(--font-display); color: var(--teal-deep); }
.trust-strip span { margin-top: 7px; color: var(--ink-soft); font-size: .82rem; }

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}
.section-intro { max-width: 860px; margin-bottom: 48px; }
.section-intro.compact { max-width: 720px; }
.section-intro h2, .proof-copy h2, .final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.045em;
}
.section-intro > p:last-child, .proof-copy > p {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-story {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.journey-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.journey-steps li {
  display: grid;
  grid-template-columns: 54px minmax(140px, .55fr) 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}
.journey-steps li > span { color: var(--amber); font: 600 1rem var(--font-display); }
.journey-steps strong { font: 500 1.35rem/1.2 var(--font-display); }
.journey-steps p { margin: 0; color: var(--ink-soft); }

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.experience-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 24px;
  color: white;
  background: var(--teal-deep);
  box-shadow: 0 16px 40px rgba(56, 43, 31, .12);
}
.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 34, 36, .02) 12%, rgba(5, 34, 36, .14) 48%, rgba(5, 34, 36, .94) 100%);
}
.experience-card picture {
  position: absolute;
  inset: 0;
}
.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(.98);
  transition: transform .45s ease;
}
.experience-card:hover img { transform: scale(1.035); }
.experience-card div { position: absolute; z-index: 2; right: 22px; bottom: 20px; left: 22px; }
.experience-card span { color: #d9c39c; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.experience-card h3 { margin: 3px 0 7px; font-size: 1.85rem; font-weight: 500; }
.experience-card p { margin: 0; color: rgba(255, 255, 255, .76); font-size: .92rem; line-height: 1.45; }

.world-section {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  color: #f8f3e8;
  background:
    radial-gradient(circle at 8% 0%, rgba(19, 184, 177, .22), transparent 30rem),
    linear-gradient(145deg, #063e43, #0c2d31 72%, #241f19);
}
.section-intro.light .eyebrow { color: #91ded8; }
.section-intro.light > p:last-child { color: rgba(255, 255, 255, .7); }
.world-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.world-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 10%, rgba(145, 222, 216, .12), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}
.world-card::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(145, 222, 216, .18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 10px rgba(145, 222, 216, .025),
    inset 0 0 0 11px rgba(145, 222, 216, .1);
}
.world-card::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 78px;
  height: 1px;
  background: rgba(145, 222, 216, .34);
}
.world-card-index {
  position: relative;
  z-index: 1;
  color: rgba(145, 222, 216, .72);
  font: 500 .72rem/1 var(--font-body);
  letter-spacing: .18em;
}
.world-card-copy {
  position: relative;
  z-index: 1;
  max-width: 430px;
}
.world-card-copy span {
  color: #91ded8;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.world-card-copy h3 {
  margin: 7px 0 12px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1;
}
.world-card-copy p { margin: 0; color: rgba(255, 255, 255, .68); }

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.proof-copy .button-secondary { margin-top: 10px; }
.proof-list { display: grid; gap: 12px; }
.proof-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(16, 44, 49, .12);
  border-radius: 16px;
  background: rgba(255, 252, 246, .74);
}
.proof-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-weight: 800;
}
.proof-list p { margin: 0; color: var(--ink-soft); }
.proof-list strong { display: block; margin-bottom: 2px; color: var(--ink); font: 500 1.14rem var(--font-display); }

.faq-section { padding-top: 50px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px;
  cursor: pointer;
  font: 500 1.25rem var(--font-display);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--teal); font: 400 1.7rem var(--font-body); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 780px; margin: -5px 0 24px; color: var(--ink-soft); }

.final-cta {
  width: min(var(--max), calc(100% - 48px));
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin: 50px auto 100px;
  padding: clamp(34px, 6vw, 72px);
  overflow: hidden;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(19, 184, 177, .34), transparent 22rem),
    linear-gradient(135deg, var(--teal-deep), #102c31);
  box-shadow: var(--shadow);
}
.final-cta .eyebrow { color: #9fe7e1; }
.final-cta h2 { max-width: 800px; margin-bottom: 15px; }
.final-cta p:last-child { max-width: 620px; margin: 0; color: rgba(255, 255, 255, .72); }
.final-cta .button { min-width: 210px; }

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 40px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: rgba(255, 252, 246, .7);
}
.site-footer p, .site-footer small { margin: 0; color: var(--ink-soft); }
.site-footer nav { display: flex; gap: 20px; }
.site-footer nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink-soft);
  font-size: .88rem;
  text-decoration: none;
}
.site-footer nav a:hover { color: var(--teal); }
.site-footer small { grid-column: 2; font-size: .78rem; }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 580px; }
  .section-story, .proof-section { grid-template-columns: 1fr; }
  .section-story .section-intro { margin-bottom: 0; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
  .site-footer small { grid-column: 1; }
}

@media (max-width: 760px) {
  .site-header { min-height: 64px; padding: 10px 16px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 17px; }
  .header-actions .text-link { display: none; }
  .button-small { min-height: 44px; padding: 8px 12px; }
  .hero, .section, .trust-strip, .final-cta { width: min(100% - 28px, var(--max)); }
  .hero { min-height: auto; gap: 28px; padding: 38px 0 54px; }
  h1 { font-size: clamp(3.05rem, 16vw, 4.7rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-visual { min-height: 520px; border-radius: 24px; }
  .moment-card { right: 14px; bottom: 14px; left: 14px; padding: 18px; border-radius: 17px; }
  .trust-strip { grid-template-columns: 1fr 1fr; margin-bottom: 50px; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 72px 0; }
  .section-intro { margin-bottom: 30px; }
  .section-intro h2, .proof-copy h2, .final-cta h2 { font-size: clamp(2.3rem, 11vw, 3.35rem); }
  .journey-steps li { grid-template-columns: 40px 1fr; gap: 8px 12px; }
  .journey-steps p { grid-column: 2; }
  .experience-grid, .world-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 350px; }
  .world-section { padding: 78px 14px; }
  .world-card { min-height: 270px; padding: 24px; }
  .world-card::before { top: 24px; right: 24px; width: 72px; height: 72px; }
  .world-card::after { right: 24px; bottom: 24px; }
  .proof-section { gap: 38px; }
  .final-cta { grid-template-columns: 1fr; align-items: start; margin-bottom: 60px; padding: 34px 24px; }
  .final-cta .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; align-items: start; padding: 32px 18px; }
  .site-footer nav { flex-wrap: wrap; gap: 12px 18px; }
  .site-footer small { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
