:root {
  --ink: #161412;
  --paper: #f7f4ef;
  --mute: #6a645c;
  --line: rgba(22, 20, 18, 0.12);
  --gold: #9a7b4f;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-weight: 300;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 5vw;
  mix-blend-mode: difference;
  color: #fff;
}
.logo {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.8vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 48%;
  line-height: 1.15;
}
.nav-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 70%;
}
.pill {
  border: 1px solid currentColor;
  padding: 0.45rem 0.9rem;
  transition: background 0.25s ease, color 0.25s ease;
}
.pill:hover {
  background: #fff;
  color: var(--ink);
  mix-blend-mode: normal;
}
.nav .pill:hover { mix-blend-mode: normal; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end start;
  color: #f8f5f0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/hero.png") center/cover no-repeat;
  transform: scale(1.04);
  animation: ken 18s ease-in-out infinite alternate;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 10, 8, 0.72) 0%, rgba(12, 10, 8, 0.35) 48%, rgba(12, 10, 8, 0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 5vw 12vh;
  max-width: 40rem;
  animation: fadeup 1.1s ease both;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-style: italic;
}
.tag {
  margin: 0 0 1.75rem;
  color: rgba(248, 245, 240, 0.82);
  font-size: 1.02rem;
  max-width: 28rem;
}
.hero-link {
  display: inline-block;
  border-bottom: 1px solid rgba(248, 245, 240, 0.55);
  padding-bottom: 0.2rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s ease;
}
.hero-link:hover { border-color: #fff; }

@keyframes ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, 1%, 0); }
}
@keyframes fadeup {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.chapter {
  padding: 6rem 5vw;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.chapter-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 1rem;
}
.chapter h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}
.chapter-text {
  margin: 0;
  color: var(--mute);
  font-size: 1.05rem;
}
.chapter-cred {
  margin: 1.5rem 0 0;
  color: var(--mute);
  font-size: 0.92rem;
  line-height: 1.5;
}
.chapter.compact {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.chapter-actions {
  margin: 1.75rem 0 0;
}

.where {
  text-align: center;
  padding: 4.5rem 5vw;
  border-top: 1px solid var(--line);
}
.where h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 500;
  margin: 0 0 1.75rem;
}
.where-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 560px;
  margin: 0 auto 1rem;
  text-align: left;
}
.where-grid h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.where-grid p { margin: 0; color: var(--mute); }
.where-note { margin: 1rem 0 0; color: var(--mute); font-size: 0.95rem; }

.panels { padding: 0 0 4rem; }
.panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 52vh;
  border-top: 1px solid var(--line);
}
.panel.reverse { grid-template-columns: 0.85fr 1.15fr; }
.panel.reverse .panel-img { order: 2; }
.panel-img {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: #2a2622;
}
.panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 8vw;
}
.panel-copy h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}
.panel-copy p {
  margin: 0;
  color: var(--mute);
  max-width: 28rem;
  font-size: 1.02rem;
}

.closing {
  text-align: center;
  padding: 5.5rem 5vw 6rem;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(154, 123, 79, 0.12), transparent 70%),
    #efeae2;
}
.closing h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 0.75rem;
}
.closing p {
  margin: 0 auto 1.75rem;
  color: var(--mute);
  max-width: 26rem;
}
.pill.large {
  display: inline-block;
  color: var(--ink);
  border-color: var(--ink);
  padding: 0.7rem 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 400;
}
.pill.large:hover {
  background: var(--ink);
  color: var(--paper);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  padding: 1.5rem 5vw;
  font-size: 0.8rem;
  color: var(--mute);
  border-top: 1px solid var(--line);
  text-align: center;
}
.foot span:first-child {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink);
}

@media (max-width: 860px) {
  .panel,
  .panel.reverse {
    grid-template-columns: 1fr;
  }
  .panel.reverse .panel-img { order: 0; }
  .panel-copy { padding: 2rem 6vw 2.5rem; }
  .hero-content { padding-bottom: 8vh; }
}
