:root {
  --sage: #93a78f;
  --sage-dark: #6f8470;
  --brick: #9c5b47;
  --chalk: #f4f2ed;
  --paper: #faf8f4;
  --stubble: #c8b694;
  --ink: #1f1e1c;
  --ink-soft: #4a4742;
  --line: #d9d2c6;
  --max: 72rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--brick); }
h1, h2, h3 {
  font-family: Fraunces, "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}
p { margin: 0 0 1em; max-width: 40rem; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(40rem, calc(100% - 2rem)); margin-inline: auto; }

.preview-note {
  background: #2b3a2e;
  color: #e8eee8;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
}
/* Top bar */
.top {
  position: sticky; top: 0; z-index: 20;
  background: #f4f2ed;
  border-bottom: 1px solid var(--line);
}
.top-inner {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}
.wordmark {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}
.wordmark span { color: var(--brick); font-style: italic; font-weight: 400; }
.top nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.top nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
}
.top nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  position: relative;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: transparent;
}
.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(31,30,28,0.72) 0%, rgba(31,30,28,0.2) 55%, transparent 100%);
  pointer-events: none;
}
.hero-copy {
  position: absolute; z-index: 1;
  left: 0; right: 0; bottom: 0;
  color: #f7f4ee;
  padding: 0 0 2.2rem;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  line-height: 1.6;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin: 0 0 0.7rem;
  color: #e8e0d2;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin-bottom: 0.2em; }
.hero .where { margin: 0 0 0.4rem; font-size: 1.05rem; color: #e6dfd4; }
.hero .price {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.6rem;
}
.hero .strap { color: #ddd6c9; max-width: 34rem; margin-bottom: 1.3rem; }
@media (max-width: 720px) {
  .hero::after { display: none; }
  .hero-copy {
    position: relative;
    background: #1f1e1c;
    width: auto;
    padding: 1.3rem 1rem 1.5rem;
  }
}
.actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  font-size: 0.98rem;
  cursor: pointer;
  background: none;
  font-family: inherit;
}
.btn-primary { background: var(--sage); color: #1b1c19; }
.btn-primary:hover { background: var(--sage-dark); color: #fff; }
.btn-ghost { border-color: #e8e0d2; color: #f7f4ee; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-ink { background: var(--ink); color: #f7f4ee; }
.btn-ink:hover { background: #000; }
.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #f7f4ee; }

/* Glance */
.glance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.2rem, 1fr));
  gap: 0;
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.glance div {
  padding: 1.1rem 0.8rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.glance div:last-child { border-right: 0; }
.glance b {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
}
.glance span { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.04em; }

/* Sections */
section { padding: 3.4rem 0; }
.rule { border-top: 1px solid var(--brick); }
.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 0.6rem;
}
.band { background: #efe8db; }
.note {
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.gallery a:first-child { grid-column: 1 / -1; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.gallery a:first-child img { aspect-ratio: 16/9; }
@media (min-width: 800px) {
  .gallery { grid-template-columns: 2fr 1fr 1fr; }
  .gallery a:first-child { grid-column: 1; grid-row: 1 / 3; }
  .gallery a:first-child img { aspect-ratio: auto; height: 100%; }
}

/* Tables */
table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
th, td { text-align: left; padding: 0.55rem 0.4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 600; color: var(--ink-soft); font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
.two-col { display: grid; gap: 2rem; }
@media (min-width: 800px) { .two-col { grid-template-columns: 1fr 1fr; align-items: start; } }
.plan-fig { background: #fff; padding: 0.6rem; border: 1px solid var(--line); }
.plan-fig figcaption { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* Process */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.steps li {
  counter-increment: step;
  padding: 0.7rem 0 0.7rem 2.4rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0.7rem;
  font-family: Fraunces, Georgia, serif;
  color: var(--brick);
}

/* Form */
form { display: grid; gap: 0.85rem; max-width: 36rem; }
label { display: grid; gap: 0.28rem; font-size: 0.92rem; }
input, select, textarea {
  font: inherit;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 2px;
}
textarea { min-height: 6rem; resize: vertical; }
.fine { font-size: 0.88rem; color: var(--ink-soft); }

footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.coming {
  border: 1px dashed var(--stubble);
  padding: 1.2rem 1.3rem;
  background: #fff;
}

.media-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 880px) {
  .media-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.media-card h2 { margin-bottom: 0.45em; }
.media-frame {
  position: relative;
  background: #1f1e1c;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 0 0.9rem;
}
.media-frame video,
.media-frame img.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-slot {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.1rem 1.2rem;
  color: #f4f2ed;
  background:
    linear-gradient(to top, rgba(20,18,16,0.82), rgba(20,18,16,0.18)),
    center/cover no-repeat;
}
.media-slot strong { font-family: Fraunces, Georgia, serif; font-size: 1.25rem; font-weight: 500; }
.media-slot p { margin: 0.25rem 0 0; color: #ddd6c9; max-width: none; font-size: 0.92rem; }
.watch-page .media-frame { max-width: 56rem; margin: 1.2rem auto 1.4rem; }

/* Lightbox */
.lb {
  position: fixed; inset: 0; background: rgba(15,14,12,0.92);
  display: none; align-items: center; justify-content: center; z-index: 50;
  padding: 1.5rem;
}
.lb.open { display: flex; }
.lb img { max-height: 90vh; max-width: 96vw; }
.lb button {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: 0; color: #fff; font-size: 1.6rem; cursor: pointer;
}

.page-hero {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 800px) {
  body { font-size: 1rem; }
  .preview-note { font-size: 0.78rem; padding: 0.4rem 0.8rem; }
  .top-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 0;
    gap: 0.45rem;
  }
  .top nav { gap: 0.55rem 0.9rem; }
  .hero-copy {
    position: relative;
    background: #1f1e1c;
    width: auto;
    max-width: none;
    padding: 1.2rem 1rem 1.4rem;
    line-height: 1.5;
  }
  .hero h1 { font-size: 2.1rem; }
  .actions { gap: 0.5rem; }
  .btn { padding: 0.7rem 1rem; font-size: 0.92rem; }
  .glance {
    grid-template-columns: 1fr 1fr;
  }
  .glance div { padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--line); }
  section { padding: 2.2rem 0; }
  .wrap, .narrow { width: auto; padding-left: 1rem; padding-right: 1rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .plan-fig { padding: 0.4rem; overflow: hidden; }
  .plan-fig img { width: 100%; height: auto; display: block; }
  table { font-size: 0.88rem; display: block; overflow-x: auto; }
  form { max-width: none; }
}
