:root {
  --bg: #f3f1ec;
  --bg-soft: #e8e5dd;
  --text: #1d1a16;
  --muted: rgba(29, 26, 22, 0.68);
  --line: rgba(29, 26, 22, 0.12);
  --accent: #7f92a3;
  --shadow: 0 24px 60px rgba(29, 26, 22, 0.08);
  --hero-radius: 30px;
  --content-width: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(180deg, #f7f5f0 0%, var(--bg) 32%, #f9f7f3 100%);
  color: var(--text);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(127, 146, 163, 0.65);
  text-underline-offset: 0.18em;
}

p {
  margin: 0;
  line-height: 1.8;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero {
  position: relative;
  min-height: 80svh;
  padding: 0;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80svh;
  overflow: hidden;
  background: #1b1815;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15, 12, 10, 0.5), rgba(15, 12, 10, 0.38) 24%, rgba(15, 12, 10, 0.24) 52%, rgba(15, 12, 10, 0.54) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.92) contrast(0.94);
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 16px 5.5rem;
  color: #f6f3ec;
  text-align: center;
  pointer-events: none;
}

.eyebrow,
.hero-date {
  font-family: "Cormorant Garamond", serif;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.eyebrow {
  font-size: clamp(2.5rem, 7.6vw, 4.6rem);
}

.hero-date {
  font-size: clamp(1.6rem, 4.8vw, 2.6rem);
}

.desktop-nav,
.menu-toggle,
.mobile-menu {
  position: absolute;
  z-index: 3;
}

.desktop-nav {
  display: none;
}

.menu-toggle {
  top: 34px;
  right: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  width: 52px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 1px;
  margin-left: auto;
  background: rgba(255, 248, 241, 0.95);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  top: 82px;
  right: 20px;
  width: min(250px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(244, 241, 233, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 48px rgba(24, 21, 17, 0.16);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 1rem;
}

.mobile-menu a,
.desktop-nav a {
  color: var(--text);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

body.menu-open .mobile-menu-backdrop {
  pointer-events: auto;
}

.section {
  padding: 88px 24px;
  background: #f7f5f0;
}

.section-soft {
  background: #ebe7df;
}

.section-inner {
  width: min(100%, var(--content-width));
  margin: 0 auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section h2 {
  margin-bottom: 1.1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.section h3 {
  font-size: clamp(2.1rem, 5vw, 2.7rem);
  margin-bottom: 1rem;
}

.section-inner > p + p,
.story-block p + p {
  margin-top: 0.8rem;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.timeline li {
  display: grid;
  gap: 0.5rem;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 12px 30px rgba(29, 26, 22, 0.03);
}

.time {
  font-size: 0.86rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.event {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  line-height: 1.18;
}

.palette-wrap {
  width: min(100%, 380px);
  margin: 0 auto 2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-copy {
  display: grid;
  gap: 32px;
  margin-top: 2.8rem;
  text-align: left;
}

.split-copy article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
}

.detail-list {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.8;
}

.note {
  margin-top: 2rem;
  color: var(--muted);
}

.weather-card {
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(127, 146, 163, 0.2), rgba(255, 255, 255, 0.7)),
    rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.weather-temp {
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 7vw, 4rem);
}

.weather-copy {
  color: var(--muted);
}

.story-block + .story-block {
  margin-top: 3.5rem;
}

.faq-shell {
  width: min(100%, 860px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-question span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 4vw, 2rem);
  line-height: 1.2;
}

.faq-chevron {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 1.5px solid var(--text);
  border-bottom: 1.5px solid var(--text);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(225deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted);
  text-align: left;
}

.faq-groups {
  display: grid;
  gap: 0.8rem;
}

@media (min-width: 760px) {
  .section {
    padding: 112px 32px;
  }

  .timeline li {
    grid-template-columns: 120px 1fr;
    align-items: start;
    text-align: left;
  }

  .split-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 600px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
    gap: 28px;
    min-height: 100svh;
    padding: 24px 24px 28px;
  }

  .hero-media {
    align-self: center;
    height: auto;
    min-height: 0;
    background: transparent;
  }

  .hero-media::after {
    background: none;
  }

  .hero-media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100svh - 64px);
    object-fit: contain;
    object-position: center center;
  }

  .hero-copy {
    position: relative;
    inset: auto;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.8vw 1rem;
    color: var(--text);
    text-align: center;
    max-width: none;
  }

  .eyebrow,
  .hero-date {
    text-shadow: none;
  }

  .menu-toggle span {
    background: rgba(29, 26, 22, 0.92);
  }

  .eyebrow {
    font-size: clamp(1.9rem, 2.5vw, 2.7rem);
    max-width: none;
    white-space: nowrap;
  }

  .hero-date {
    font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    letter-spacing: 0.04em;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    top: 34px;
    right: 36px;
    display: inline-flex;
  }

  .mobile-menu {
    top: 82px;
    right: 28px;
  }

  .time {
    padding-top: 10px;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    align-items: stretch;
    gap: 44px;
    padding: 28px 32px 36px;
  }

  .hero-media {
    height: calc(100svh - 64px);
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center bottom;
  }
}
