:root {
  --spruce: #0c1714;
  --spruce-2: #12221e;
  --water: #172a30;
  --fog: #e5e1d7;
  --mist: #b7c0b8;
  --stone: #7b827b;
  --wood: #b98655;
  --ember: #d8944d;
  --paper: #f4f0e7;
  --ink: #16201d;
  --line: rgba(244, 240, 231, 0.18);
  --dark-line: rgba(22, 32, 29, 0.14);
  --shadow: 0 28px 80px rgba(3, 10, 8, 0.35);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--fog);
  background: linear-gradient(180deg, rgba(7, 14, 12, 0.84), rgba(7, 14, 12, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(12, 23, 20, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  color: currentColor;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(244, 240, 231, 0.82);
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--fog);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(244, 240, 231, 0.4);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244, 240, 231, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--fog);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.section-dark {
  color: var(--fog);
  background: var(--spruce);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding: 150px clamp(18px, 5vw, 72px) clamp(30px, 7vw, 80px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 14, 0.86), rgba(8, 16, 14, 0.42) 54%, rgba(8, 16, 14, 0.88)),
    linear-gradient(0deg, rgba(8, 16, 14, 0.86), rgba(8, 16, 14, 0.1) 42%),
    url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1800&q=84") center/cover;
  transform: scale(1.02);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.kicker {
  margin: 0 0 14px;
  color: var(--ember);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 116px);
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 74px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(244, 240, 231, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #1d140c;
  background: var(--ember);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #edaa61;
}

.button-ghost {
  color: var(--fog);
  border-color: rgba(244, 240, 231, 0.34);
  background: rgba(244, 240, 231, 0.06);
}

.hero-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 16, 14, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.panel-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(244, 240, 231, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--dark-line);
  background: #ebe5d8;
}

.proof-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 30px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--dark-line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  color: var(--stone);
  font-weight: 700;
}

.proof-item p {
  margin: 0;
  max-width: 360px;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.section-muted {
  background: #e8e2d5;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 86px);
}

.section-heading {
  align-self: start;
  position: sticky;
  top: 110px;
}

.format-grid {
  display: grid;
  gap: 18px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #f8f3e9;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card div {
  align-self: end;
  padding: 28px;
}

.feature-card p,
.timeline-item p,
.date-card p,
.quote-card p,
.request-copy p {
  color: #53605a;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.timeline-item {
  min-height: 300px;
  padding: 28px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.18);
}

.timeline-item span {
  display: block;
  margin-bottom: 58px;
  color: var(--wood);
  font-weight: 800;
}

.dates-section {
  background: var(--spruce-2);
  color: var(--fog);
}

.dates-section .section-heading {
  position: static;
  margin-bottom: 36px;
}

.date-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.date-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 240, 231, 0.055);
}

.date-card-featured {
  background:
    linear-gradient(180deg, rgba(216, 148, 77, 0.16), rgba(244, 240, 231, 0.06)),
    rgba(244, 240, 231, 0.04);
}

.date-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(244, 240, 231, 0.62);
  font-size: 14px;
}

.date-top strong {
  color: var(--ember);
}

.date-card p {
  color: rgba(244, 240, 231, 0.68);
}

.date-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--ember);
  font-weight: 800;
}

.image-band {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--fog);
  background: var(--spruce);
}

.image-band img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  opacity: 0.72;
}

.image-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 23, 20, 0.86), rgba(12, 23, 20, 0.16));
}

.image-band-caption {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(30px, 7vw, 80px);
  max-width: 520px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 16, 14, 0.58);
  backdrop-filter: blur(18px);
}

.image-band-caption ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.image-band-caption li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.image-band-caption li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quote-grid {
  display: grid;
  gap: 18px;
}

.quote-card {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #f8f3e9;
}

.quote-card p {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.quote-card cite {
  color: var(--stone);
  font-style: normal;
  font-weight: 700;
}

.faq-section {
  background: #ebe5d8;
}

.faq-section .section-heading {
  position: static;
  margin-bottom: 30px;
}

.faq-list {
  max-width: 920px;
  margin-left: auto;
  border-top: 1px solid var(--dark-line);
}

.faq-item {
  border-bottom: 1px solid var(--dark-line);
}

.faq-item summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 22px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  float: right;
  content: "+";
  color: var(--wood);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 680px;
  margin-bottom: 24px;
  color: #53605a;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 560px);
  gap: clamp(34px, 7vw, 90px);
  padding: clamp(72px, 10vw, 132px) clamp(18px, 5vw, 72px);
}

.request-copy h2 {
  margin-bottom: 24px;
}

.request-copy p {
  max-width: 560px;
  color: rgba(244, 240, 231, 0.72);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 240, 231, 0.06);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: rgba(244, 240, 231, 0.72);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 240, 231, 0.18);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--fog);
  background: rgba(7, 14, 12, 0.52);
  outline: none;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--ember);
}

.request-form ::placeholder {
  color: rgba(244, 240, 231, 0.42);
}

.form-note {
  margin: 0;
  color: rgba(244, 240, 231, 0.52);
  font-size: 13px;
}

.form-note.is-success {
  color: #f0c28f;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(244, 240, 231, 0.72);
  background: #07100e;
}

.site-footer p {
  margin: 0;
}

.site-footer a:last-child {
  color: var(--ember);
  font-weight: 800;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .split,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .section-heading {
    position: static;
  }

  .proof-strip,
  .date-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(12, 23, 20, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: clamp(44px, 16vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hero {
    padding: 112px 18px 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section,
  .request-section {
    padding: 64px 18px;
  }

  .feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 220px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    min-height: 240px;
  }

  .timeline-item span {
    margin-bottom: 34px;
  }

  .date-card {
    min-height: 310px;
  }

  .image-band,
  .image-band img {
    min-height: 680px;
  }

  .image-band-caption {
    right: 18px;
    padding: 22px;
  }

  .faq-item summary {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
