@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Latin.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Dragonwood";
  src: url("../assets/fonts/Dragonwood-DustyShelf.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Corben";
  src: url("../assets/fonts/Corben-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Corben";
  src: url("../assets/fonts/Corben-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --forest: #071d14;
  --forest-soft: #0c2b1e;
  --forest-bright: #143928;
  --cream: #f4efe4;
  --paper: #e8decc;
  --gold: #caa978;
  --gold-dark: #8d6f45;
  --sage: #88b095;
  --ink: #142019;
  --line: rgba(244, 239, 228, 0.18);
  --ink-line: rgba(20, 32, 25, 0.18);
  --sans: "Inter", sans-serif;
  --serif: "Corben", Georgia, serif;
  --wordmark: "Dragonwood", "Corben", serif;
  --page-pad: clamp(22px, 6vw, 92px);
  --section-space: clamp(88px, 11vw, 170px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest);
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 84% 7%, rgba(136, 176, 149, 0.1), transparent 36rem),
    var(--forest);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.site-menu-open {
  overflow: hidden;
}

body.production .site-header {
  top: 0;
}

body.production .guide-toolbar {
  top: 92px;
}

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

a {
  color: inherit;
}

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

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.review-bar {
  position: relative;
  z-index: 100;
  padding: 9px 20px;
  color: var(--ink);
  background: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 90;
  top: 30px;
  left: 0;
  width: 100%;
  padding: 24px clamp(24px, 3vw, 48px);
  transition: background 500ms ease, padding 500ms ease, backdrop-filter 500ms ease;
}

.site-header.is-solid {
  position: fixed;
  top: 0;
  padding-block: 16px;
  background: rgba(11, 30, 20, 0.95);
  box-shadow: 0 1px 0 rgba(244, 239, 228, 0.1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1600px, 100%);
  margin: auto;
}

.brand-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding-right: 16px;
  text-decoration: none;
}

.brand-lockup img {
  width: auto;
  object-fit: contain;
}

.brand-mark {
  height: 40px;
}

.brand-type {
  height: 20px;
  max-width: 150px;
}

.brand-mark-dark,
.brand-type-dark {
  display: none;
}

.primary-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.5vw, 27px);
  padding-inline: 24px;
}

.primary-nav > a,
.site-events > a {
  position: relative;
  flex: 0 0 auto;
  padding-block: 12px;
  border: 0;
  color: rgba(244, 239, 228, 0.82);
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.primary-nav > a,
.site-events > a {
  position: relative;
}

.primary-nav > a::after,
.site-events > a::after {
  display: none;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after,
.site-events > a:hover::after {
  display: none;
}

.primary-nav > a[aria-current="page"] {
  color: var(--gold);
}

.site-events {
  position: relative;
  flex: 0 0 auto;
}

.site-events-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 248px;
  padding: 8px;
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: 12px;
  background: var(--forest);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-events:hover .site-events-dropdown,
.site-events:focus-within .site-events-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-events-dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
}

.site-events-dropdown a:hover {
  background: rgba(244, 241, 234, 0.06);
}

.site-events-dropdown strong,
.site-events-dropdown small {
  display: block;
}

.site-events-dropdown strong {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
}

.site-events-dropdown small {
  margin-top: 4px;
  color: rgba(244, 241, 234, 0.46);
  font-size: 11px;
  line-height: 1.4;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 250ms ease;
}

.header-cta:hover {
  background: #f4f1ea;
}

.site-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-menu-lines,
.site-menu-lines::before,
.site-menu-lines::after {
  width: 24px;
  height: 2px;
  background: var(--cream);
}

.site-menu-lines {
  position: relative;
}

.site-menu-lines::before,
.site-menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.site-menu-lines::before {
  top: -7px;
}

.site-menu-lines::after {
  top: 7px;
}

.guide-toolbar {
  position: absolute;
  z-index: 72;
  top: 122px;
  right: var(--page-pad);
  left: var(--page-pad);
  transition: top 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.guide-toolbar.is-sticky {
  position: fixed;
  top: 84px;
  z-index: 88;
  animation: guide-toolbar-dock 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.guide-toolbar-inner {
  display: flex;
  width: min(1360px, 100%);
  min-height: 48px;
  align-items: center;
  gap: 24px;
  margin: auto;
  padding: 5px 7px 5px 20px;
  border: 1px solid rgba(244, 241, 234, 0.16);
  border-radius: 999px;
  background: rgba(7, 29, 20, 0.58);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.guide-toolbar.is-sticky .guide-toolbar-inner {
  width: min(1120px, 100%);
  min-height: 46px;
  border-color: rgba(217, 192, 137, 0.25);
  background:
    linear-gradient(110deg, rgba(217, 192, 137, 0.08), transparent 34%),
    rgba(7, 29, 20, 0.92);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(244, 241, 234, 0.08);
  backdrop-filter: blur(22px) saturate(130%);
}

@keyframes guide-toolbar-dock {
  from {
    opacity: 0;
    transform: translateY(-14px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.guide-toolbar-title {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: var(--wordmark);
  font-size: 17px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.guide-toolbar-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 26px);
}

.guide-toolbar-nav a {
  color: rgba(244, 241, 234, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.guide-toolbar-nav a:hover,
.guide-toolbar-nav a[aria-current="page"] {
  color: var(--cream);
}

.menu-toggle {
  display: inline-flex;
  min-height: 38px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(244, 241, 234, 0.18);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(7, 29, 20, 0.28);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle-lines {
  position: relative;
  width: 19px;
  height: 12px;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  width: 19px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 260ms ease, top 260ms ease;
}

.menu-toggle-lines::before {
  top: 2px;
}

.menu-toggle-lines::after {
  top: 9px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 6px;
  transform: rotate(-45deg);
}

.site-mobile-menu {
  position: fixed;
  z-index: 150;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
}

.site-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 13, 9, 0.74);
  opacity: 0;
  transition: opacity 500ms ease;
}

.site-mobile-menu.is-open .site-menu-backdrop {
  opacity: 1;
}

.site-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(448px, 100%);
  height: 100%;
  max-height: 100dvh;
  flex-direction: column;
  padding: 32px 32px calc(30px + env(safe-area-inset-bottom));
  background: var(--forest);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 500ms ease;
}

.site-mobile-menu.is-open .site-menu-panel {
  transform: none;
}

.site-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  font-family: var(--wordmark);
  font-size: 26px;
}

.site-menu-heading button {
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--cream);
  background: transparent;
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
}

.site-menu-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-menu-links > a,
.site-menu-events > button {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 4px 0;
  border: 0;
  color: var(--cream);
  background: transparent;
  font-family: var(--wordmark);
  font-size: 34px;
  line-height: 1;
  text-align: left;
  text-decoration: none;
}

.site-menu-links > a[aria-current="page"] {
  color: var(--gold);
}

.site-menu-events > button {
  width: 100%;
  justify-content: space-between;
  cursor: pointer;
}

.site-menu-events > button span {
  font-family: var(--sans);
  font-size: 18px;
  transition: transform 250ms ease;
}

.site-menu-events > button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.site-menu-event-links {
  display: block;
  max-height: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(202, 169, 120, 0.34);
  opacity: 0;
  overflow: hidden;
  transition: max-height 300ms ease, opacity 300ms ease, margin 300ms ease;
}

.site-menu-event-links.is-open {
  max-height: 150px;
  margin: 6px 0 8px;
  opacity: 1;
}

.site-menu-event-links a {
  display: block;
  min-height: 58px;
  padding: 9px 0;
  color: rgba(244, 241, 234, 0.84);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.site-menu-event-links small {
  display: block;
  margin-top: 4px;
  color: rgba(244, 241, 234, 0.45);
  font-size: 11px;
  font-weight: 400;
}

.site-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
  padding-top: 32px;
}

.site-menu-footer > a {
  color: rgba(244, 241, 234, 0.58);
  font-size: 14px;
  text-decoration: none;
}

.site-menu-footer .site-menu-book {
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-menu-book {
  display: flex;
}

.menu-scrim {
  position: fixed;
  z-index: 79;
  inset: 0;
  border: 0;
  background: rgba(3, 13, 9, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.mega-menu {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  max-height: min(780px, 100dvh);
  padding: 122px var(--page-pad) 38px;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  overflow-y: auto;
  visibility: hidden;
  transform: translateY(-104%);
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), visibility 460ms;
}

.menu-open .mega-menu {
  visibility: visible;
  transform: none;
}

.menu-open .menu-scrim {
  opacity: 1;
  pointer-events: auto;
}

.menu-open .site-header,
.menu-open .primary-nav > a,
.menu-open .site-events > a,
.menu-open .menu-toggle {
  color: var(--ink);
}

.menu-open .brand-mark-light,
.menu-open .brand-type-light {
  display: none;
}

.menu-open .brand-mark-dark,
.menu-open .brand-type-dark {
  display: block;
}

.menu-open .site-menu-lines,
.menu-open .site-menu-lines::before,
.menu-open .site-menu-lines::after {
  background: var(--ink);
}

.menu-open .header-cta {
  border-color: rgba(20, 32, 25, 0.34);
  color: var(--ink);
  background: rgba(244, 239, 228, 0.48);
}

.mega-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  width: min(1450px, 100%);
  margin: auto;
}

.mega-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sage);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mega-kicker {
  color: #54775f;
}

.mega-kicker::before,
.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.mega-title {
  max-width: 560px;
  margin: 20px 0 28px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.mega-note {
  max-width: 480px;
  margin: 0;
  color: rgba(20, 32, 25, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.mega-links {
  border-top: 1px solid var(--ink-line);
}

.mega-link {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 79px;
  border-bottom: 1px solid var(--ink-line);
  text-decoration: none;
}

.mega-index {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.mega-link strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.mega-link small {
  color: rgba(20, 32, 25, 0.55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-link .arrow {
  font-size: 25px;
  transform: translateX(-8px);
  transition: transform 180ms ease;
}

.mega-link:hover .arrow {
  transform: translateX(0);
}

.mega-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  color: rgba(20, 32, 25, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
}

.brand-word {
  font-family: var(--wordmark);
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button.secondary {
  color: var(--cream);
  background: rgba(7, 29, 20, 0.28);
  backdrop-filter: blur(10px);
}

.button.dark {
  color: var(--cream);
  background: var(--forest);
  border-color: var(--forest);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-hero,
.hero {
  position: relative;
  min-height: calc(100svh - 30px);
  overflow: hidden;
}

.page-hero {
  min-height: min(84svh, 900px);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  animation: hero-breathe 15s ease-out both;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 29, 20, 0.52), rgba(7, 29, 20, 0.08) 42%, rgba(7, 29, 20, 0.94)),
    linear-gradient(90deg, rgba(7, 29, 20, 0.68), transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  align-items: flex-end;
  padding: 150px var(--page-pad) clamp(105px, 12vh, 155px);
}

.hero-copy {
  width: min(1080px, 100%);
}

.hero h1,
.page-hero h1 {
  max-width: 1080px;
  margin: 23px 0 27px;
  font-size: clamp(58px, 8.7vw, 136px);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.page-hero h1 {
  font-size: clamp(54px, 8vw, 118px);
}

.hero-lede {
  max-width: 720px;
  color: rgba(244, 239, 228, 0.78);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: 35px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(590px, calc(100% - 44px));
  border-top: 1px solid rgba(244, 239, 228, 0.36);
}

.hero-stat {
  padding: 18px 16px 0;
  border-left: 1px solid rgba(244, 239, 228, 0.2);
}

.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.hero-stat span {
  display: block;
  margin-top: 4px;
  color: rgba(244, 239, 228, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: var(--section-space) var(--page-pad);
  overflow: hidden;
}

.section.paper {
  color: var(--ink);
  background: var(--paper);
}

.section.cream {
  color: var(--ink);
  background: var(--cream);
}

.section.soft {
  background: var(--forest-soft);
}

.wrap {
  width: min(1360px, 100%);
  margin: auto;
}

.narrow {
  width: min(920px, 100%);
  margin-inline: auto;
}

.display {
  margin: 20px 0 28px;
  font-size: clamp(45px, 6.1vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.047em;
}

.display.compact {
  font-size: clamp(40px, 5.2vw, 75px);
}

.body-large {
  color: rgba(244, 239, 228, 0.72);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.7;
}

.body {
  color: rgba(244, 239, 228, 0.67);
  font-size: 15px;
  line-height: 1.78;
}

.paper .eyebrow,
.cream .eyebrow {
  color: #54775f;
}

.paper .body-large,
.paper .body,
.cream .body-large,
.cream .body {
  color: rgba(20, 32, 25, 0.7);
}

.intro-grid,
.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.editorial-split.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.editorial-split.reverse .editorial-media {
  order: 2;
}

.editorial-photo,
.editorial-media {
  position: relative;
  min-height: 650px;
  border-radius: 210px 210px 24px 24px;
  overflow: hidden;
}

.editorial-photo img,
.editorial-media img {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.editorial-media.rect {
  border-radius: 20px;
}

.floating-note {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: min(370px, 78%);
  padding: 27px 30px;
  border-radius: 24px 0 0;
  color: var(--ink);
  background: var(--paper);
}

.floating-note strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.floating-note span {
  font-size: 13px;
  line-height: 1.55;
}

.proof-band {
  color: var(--ink);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.proof-item {
  min-height: 186px;
  padding: 31px 25px;
  border-left: 1px solid var(--ink-line);
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item .number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 61px);
  line-height: 1;
}

.proof-item .label {
  display: block;
  margin-top: 14px;
  color: rgba(20, 32, 25, 0.64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.proof-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proof-intro p {
  margin-bottom: 0;
  color: rgba(20, 32, 25, 0.7);
  font-size: 13px;
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 50px;
}

.section-heading .display {
  max-width: 850px;
  margin-bottom: 0;
}

.section-heading .body {
  max-width: 430px;
}

.story-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
}

.story-link {
  position: relative;
  min-height: 430px;
  padding: 28px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  overflow: hidden;
}

.story-link:last-child {
  border-right: 0;
}

.story-link img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transform: scale(1.03);
  transition: opacity 350ms ease, transform 700ms ease;
}

.story-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 29, 20, 0.12), rgba(7, 29, 20, 0.95));
}

.story-link:hover img {
  opacity: 0.64;
  transform: scale(1);
}

.story-link-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}

.story-link-index {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.story-link h3 {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.4vw, 38px);
  line-height: 1.1;
}

.story-link p {
  margin-bottom: 0;
  color: rgba(244, 239, 228, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.location-grid,
.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 14px;
}

.location-card,
.feature-card {
  position: relative;
  min-height: 590px;
  border-radius: 22px;
  overflow: hidden;
}

.location-card img,
.feature-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.location-card:hover img,
.feature-card:hover img {
  transform: scale(1.035);
}

.location-card::after,
.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(7, 29, 20, 0.94));
}

.location-copy,
.feature-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
}

.location-copy h3,
.feature-copy h3 {
  margin-bottom: 10px;
  font-size: 27px;
}

.location-copy p,
.feature-copy p {
  margin-bottom: 0;
  color: rgba(244, 239, 228, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.decision-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 680px;
}

.decision-image img {
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.decision-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 145px);
  background: var(--forest-soft);
}

.decision-copy .display {
  font-size: clamp(42px, 5vw, 77px);
}

.check-list,
.room-list,
.fact-list {
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.fact-list li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 228, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
}

.fact-list {
  counter-reset: fact;
}

.fact-list li {
  grid-template-columns: 36px 1fr;
}

.fact-list li::before {
  counter-increment: fact;
  content: counter(fact, decimal-leading-zero);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.weekend {
  background:
    linear-gradient(rgba(7, 29, 20, 0.84), rgba(7, 29, 20, 0.95)),
    url("../assets/weddings/processional-wide.webp") center / cover fixed;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
}

.day {
  position: relative;
  padding: 37px clamp(22px, 4vw, 56px) 20px;
  border-left: 1px solid var(--line);
}

.day:first-child {
  border-left: 0;
}

.day::before {
  position: absolute;
  top: -5px;
  left: 50px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.day-number {
  color: var(--sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.day h3 {
  margin: 17px 0 15px;
  font-size: 28px;
}

.day p {
  color: rgba(244, 239, 228, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.assurance article {
  padding: 30px;
  border-left: 1px solid var(--ink-line);
}

.assurance article:first-child {
  border-left: 0;
}

.assurance-label {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.assurance h3 {
  margin: 15px 0 12px;
  font-size: 25px;
}

.assurance p {
  margin-bottom: 0;
  color: rgba(20, 32, 25, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  background: #06180f;
}

.page-nav a {
  min-height: 235px;
  padding: 46px var(--page-pad);
  text-decoration: none;
}

.page-nav a + a {
  border-left: 1px solid var(--line);
  text-align: right;
}

.page-nav span {
  display: block;
  margin-bottom: 15px;
  color: var(--sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.page-nav strong {
  font-family: var(--serif);
  font-size: clamp(29px, 4vw, 55px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.stay-card {
  position: relative;
  min-height: 680px;
  color: var(--cream);
  border-radius: 23px;
  overflow: hidden;
}

.stay-card:nth-child(3) {
  grid-column: 1 / -1;
  min-height: 560px;
}

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

.stay-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 25%, rgba(7, 29, 20, 0.94));
}

.stay-card-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(27px, 4vw, 50px);
}

.stay-card h2 {
  margin: 10px 0 12px;
  font-size: clamp(37px, 5vw, 68px);
  letter-spacing: -0.04em;
}

.stay-card p {
  max-width: 650px;
  color: rgba(244, 239, 228, 0.72);
  line-height: 1.7;
}

.stay-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.stay-fact,
.status-chip {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(244, 239, 228, 0.28);
  border-radius: 999px;
  color: rgba(244, 239, 228, 0.75);
  background: rgba(7, 29, 20, 0.32);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.allocation-table {
  width: 100%;
  margin-top: 46px;
  border-collapse: collapse;
}

.allocation-table th,
.allocation-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--ink-line);
  text-align: left;
  vertical-align: top;
}

.allocation-table th {
  color: rgba(20, 32, 25, 0.5);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.allocation-table td {
  color: rgba(20, 32, 25, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.allocation-table td:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
}

.dining-moments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dining-moment {
  position: relative;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
}

.dining-moment:nth-child(even) {
  margin-top: 55px;
}

.dining-moment img {
  height: 100%;
  object-fit: cover;
}

.dining-moment figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 55px 20px 22px;
  background: linear-gradient(transparent, rgba(7, 29, 20, 0.9));
  font-family: var(--serif);
  font-size: 20px;
}

.commercial-kitchen-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.commercial-kitchen-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.commercial-kitchen-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.commercial-kitchen-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(transparent, rgba(7, 29, 20, 0.9));
  color: var(--cream);
  font-family: var(--serif);
  font-size: 20px;
}

.dining-venue-showcase {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.dining-venue-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(7, 29, 20, 0.16);
}

.dining-venue-block + .dining-venue-block {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.dining-venue-heading {
  position: sticky;
  top: 170px;
}

.dining-venue-heading h3 {
  margin: 12px 0 16px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 0.95;
}

.dining-venue-heading p {
  margin: 0;
  color: rgba(7, 29, 20, 0.68);
  line-height: 1.7;
}

.dining-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dining-venue-grid figure {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.dining-venue-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dining-venue-grid figure:hover img {
  transform: scale(1.035);
}

.dining-venue-grid-six figure:first-child,
.dining-venue-grid-three figure:first-child {
  grid-column: 1 / -1;
  min-height: clamp(340px, 42vw, 560px);
}

.dining-venue-grid-three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  border-top: 1px solid var(--ink-line);
}

.format-grid article {
  min-height: 290px;
  padding: 34px;
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}

.format-grid article:last-child {
  border-right: 0;
}

.format-grid h3 {
  margin: 15px 0;
  font-size: 27px;
}

.format-grid p {
  color: rgba(20, 32, 25, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.note {
  padding: 24px 27px;
  border-left: 3px solid var(--gold);
  color: rgba(244, 239, 228, 0.72);
  background: rgba(244, 239, 228, 0.06);
  font-size: 13px;
  line-height: 1.7;
}

.paper .note,
.cream .note {
  color: rgba(20, 32, 25, 0.72);
  background: rgba(20, 32, 25, 0.05);
}

.amenity-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 420px 420px;
  gap: 10px;
}

.amenity-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.amenity-tile:first-child {
  grid-row: 1 / -1;
}

.amenity-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.amenity-tile:hover img {
  transform: scale(1.035);
}

.amenity-tile figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 70px 25px 24px;
  background: linear-gradient(transparent, rgba(7, 29, 20, 0.93));
}

.amenity-tile strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.amenity-tile span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 239, 228, 0.64);
  font-size: 11px;
  line-height: 1.55;
}

.quote-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.quote-card {
  grid-column: span 4;
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
}

.quote-card.wide {
  grid-column: span 7;
}

.quote-card.tall {
  grid-column: span 5;
  min-height: 510px;
  color: var(--cream);
  background:
    linear-gradient(rgba(7, 29, 20, 0.48), rgba(7, 29, 20, 0.9)),
    url("../assets/weddings/woods-portrait.webp") center / cover;
}

.quote-mark {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 55px;
  line-height: 0.8;
}

.quote-card blockquote {
  margin: 24px 0 34px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.quote-card cite {
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-card.tall cite {
  color: rgba(244, 239, 228, 0.65);
}

.schedule {
  position: relative;
  margin-top: 60px;
}

.schedule::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 112px;
  width: 1px;
  content: "";
  background: var(--line);
}

.schedule-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 60px;
  padding: 28px 0;
}

.schedule-time {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: right;
  text-transform: uppercase;
}

.schedule-copy {
  position: relative;
  max-width: 780px;
}

.schedule-copy::before {
  position: absolute;
  top: 4px;
  left: -35px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.schedule-copy h3 {
  margin-bottom: 9px;
  font-size: 25px;
}

.schedule-copy p {
  margin: 0;
  color: rgba(244, 239, 228, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.space-selector {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: start;
}

.space-tabs {
  display: grid;
  border-top: 1px solid var(--ink-line);
}

.space-tab {
  display: flex;
  min-height: 83px;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  border: 0;
  border-bottom: 1px solid var(--ink-line);
  color: rgba(20, 32, 25, 0.52);
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(21px, 2.7vw, 35px);
  text-align: left;
  cursor: pointer;
}

.space-tab[aria-selected="true"] {
  color: var(--ink);
}

.space-tab[aria-selected="true"]::after {
  content: "→";
  color: var(--gold-dark);
}

.space-panel {
  display: none;
}

.space-panel.is-active {
  display: block;
  animation: panel-in 420ms ease both;
}

.space-panel img {
  height: 610px;
  object-fit: cover;
}

.space-panel-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  padding: 28px 0 0;
}

.space-panel h3 {
  margin-bottom: 0;
  font-size: 35px;
}

.space-panel p {
  margin: 0;
  color: rgba(20, 32, 25, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.gallery {
  padding-bottom: 0;
  color: var(--ink);
  background: var(--paper);
}

.gallery .eyebrow {
  color: #54775f;
}

.gallery .body {
  color: rgba(20, 32, 25, 0.62);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(210px, 18vw, 330px);
  gap: 10px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.gallery-grid .gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .gallery-wide {
  grid-column: span 2;
}

.gallery-grid .gallery-tall {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.carrie {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 720px;
  background: #102f22;
}

.carrie-photo {
  min-height: 650px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(16, 47, 34, 0.88)),
    url("https://dragonwood.me/images/team-carrie.jpg") 50% 20% / cover;
}

.carrie-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 145px);
}

.quote {
  margin: 30px 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.final-cta {
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 90px 24px;
  text-align: center;
  background:
    linear-gradient(rgba(7, 29, 20, 0.66), rgba(7, 29, 20, 0.9)),
    url("../assets/weddings/lakeside-couple.webp") center 46% / cover;
}

.final-cta-inner {
  max-width: 980px;
}

.final-cta .display {
  font-size: clamp(50px, 8vw, 112px);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: end;
  padding: 48px var(--page-pad);
  color: rgba(244, 239, 228, 0.5);
  background: #04130d;
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  text-transform: uppercase;
}

.footer-wordmark {
  color: var(--cream);
  font-family: var(--wordmark);
  font-size: 34px;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 25px;
}

.footer-links a {
  text-decoration: none;
}

.footer-meta {
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 820ms ease, transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-breathe {
  to {
    transform: scale(1);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1536px) {
  .brand-mark {
    height: 48px;
  }

  .brand-type {
    height: 24px;
    max-width: 180px;
  }

  .header-cta {
    padding-inline: 32px;
  }

  .primary-nav > a,
  .site-events > a {
    font-size: 12px;
  }
}

@media (max-width: 1279px) {
  .primary-nav {
    display: none;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

  .guide-toolbar-nav {
    gap: 17px;
  }

  .guide-toolbar-nav a {
    font-size: 8px;
  }
}

@media (max-width: 1120px) {
  .header-inner {
    display: flex;
  }

  .mega-inner {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 45px;
  }

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

  .proof-intro {
    grid-column: span 2;
  }

  .proof-item:nth-child(2),
  .proof-item:nth-child(4) {
    border-left: 0;
  }

  .story-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-link:nth-child(3) {
    border-right: 0;
  }

  .story-link:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .story-link:nth-child(4) {
    grid-column: span 1;
  }

  .story-link:last-child {
    grid-column: span 2;
  }

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

  .location-card:first-child,
  .feature-card:first-child {
    grid-column: span 2;
  }

  .location-card,
  .feature-card {
    min-height: 510px;
  }

  .dining-moments {
    grid-template-columns: 1fr 1fr;
  }

  .dining-moment:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .guide-toolbar-nav {
    display: none;
  }

  .guide-toolbar-inner {
    justify-content: space-between;
  }

  .guide-toolbar.is-sticky {
    top: 80px;
  }

  .mega-menu {
    max-height: 100dvh;
    padding-top: 108px;
  }

  .mega-inner {
    display: block;
  }

  .mega-intro {
    margin-bottom: 28px;
  }

  .mega-title {
    font-size: 43px;
  }

  .mega-note {
    display: none;
  }

  .hero-stats {
    right: 22px;
    left: 22px;
    bottom: 28px;
    width: auto;
  }

  .intro-grid,
  .editorial-split,
  .editorial-split.reverse,
  .decision-strip,
  .carrie,
  .space-selector {
    grid-template-columns: 1fr;
  }

  .editorial-split.reverse .editorial-media {
    order: 0;
  }

  .editorial-photo,
  .editorial-photo img,
  .editorial-media,
  .editorial-media img {
    min-height: 600px;
  }

  .decision-image img {
    min-height: 620px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .body {
    margin-top: 24px;
  }

  .dining-venue-block {
    grid-template-columns: 1fr;
  }

  .dining-venue-heading {
    position: static;
    max-width: 680px;
  }

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

  .day {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .day::before {
    left: 24px;
  }

  .assurance,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .assurance article,
  .format-grid article {
    border-top: 1px solid var(--ink-line);
    border-left: 0;
    border-right: 0;
  }

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

  .stay-card:nth-child(3) {
    grid-column: auto;
  }

  .stay-card {
    min-height: 620px;
  }

  .amenity-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 560px 370px 370px;
  }

  .amenity-tile:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .quote-card {
    grid-column: span 6;
  }

  .quote-card.wide,
  .quote-card.tall {
    grid-column: span 6;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 400px);
  }

  .gallery-grid figure:first-child,
  .gallery-grid figure:last-child {
    grid-row: span 1;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --page-pad: 21px;
    --section-space: 82px;
  }

  .commercial-kitchen-gallery {
    grid-template-columns: 1fr;
  }

  .review-bar {
    padding-inline: 12px;
    font-size: 8px;
  }

  .site-header {
    top: 25px;
    padding: 16px 21px;
  }

  body.production .site-header {
    top: 0;
  }

  .site-header.is-solid {
    top: 0;
    padding-block: 12px;
  }

  .brand-lockup {
    padding-right: 0;
  }

  .brand-mark {
    height: 40px;
  }

  .brand-type {
    display: none;
  }

  .menu-open .brand-type-dark {
    display: none;
  }

  .guide-toolbar {
    top: 105px;
    right: 21px;
    left: 21px;
  }

  body.production .guide-toolbar {
    top: 78px;
  }

  .guide-toolbar.is-sticky {
    top: 80px;
  }

  .guide-toolbar-inner {
    min-height: 44px;
    padding: 4px 5px 4px 16px;
  }

  .guide-toolbar-title {
    font-size: 15px;
  }

  .menu-toggle {
    width: 38px;
    min-height: 36px;
    justify-content: center;
    padding: 0;
  }

  .menu-toggle-label {
    display: none;
  }

  .mega-menu {
    padding: 100px 22px 30px;
  }

  .mega-title {
    margin-block: 15px 20px;
    font-size: 38px;
  }

  .mega-link {
    grid-template-columns: 38px 1fr auto;
    min-height: 67px;
    gap: 12px;
  }

  .mega-link strong {
    font-size: 23px;
  }

  .mega-link small {
    display: none;
  }

  .mega-footer {
    display: block;
    line-height: 1.8;
  }

  .hero,
  .page-hero {
    min-height: 790px;
  }

  .hero-content {
    align-items: center;
    padding: 120px 22px 190px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(52px, 17vw, 79px);
  }

  .hero-lede {
    font-size: 16px;
  }

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

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stat {
    padding: 14px 7px 0;
  }

  .hero-stat strong {
    font-size: 17px;
  }

  .hero-stat span {
    font-size: 8px;
  }

  .display {
    font-size: clamp(41px, 13vw, 65px);
  }

  .body-large {
    font-size: 17px;
  }

  .editorial-photo,
  .editorial-photo img,
  .editorial-media,
  .editorial-media img {
    min-height: 500px;
  }

  .floating-note {
    width: 88%;
    padding: 20px;
  }

  .proof-item {
    min-height: 154px;
    padding: 22px 16px;
  }

  .story-links {
    display: block;
  }

  .story-link {
    min-height: 390px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .location-grid,
  .feature-grid {
    display: block;
  }

  .location-card,
  .feature-card {
    min-height: 470px;
    margin-top: 12px;
  }

  .decision-copy,
  .carrie-copy {
    padding: 75px 24px;
  }

  .decision-image img {
    min-height: 520px;
  }

  .page-nav {
    grid-template-columns: 1fr;
  }

  .page-nav a {
    min-height: 170px;
    padding: 36px 22px;
  }

  .page-nav a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
    text-align: left;
  }

  .stay-card,
  .stay-card:nth-child(3) {
    min-height: 570px;
  }

  .allocation-table,
  .allocation-table tbody,
  .allocation-table tr,
  .allocation-table td {
    display: block;
  }

  .allocation-table thead {
    display: none;
  }

  .allocation-table tr {
    padding: 17px 0;
    border-bottom: 1px solid var(--ink-line);
  }

  .allocation-table td {
    padding: 5px 0;
    border: 0;
  }

  .allocation-table td::before {
    display: block;
    margin-bottom: 3px;
    color: rgba(20, 32, 25, 0.48);
    content: attr(data-label);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .dining-moments {
    grid-template-columns: 1fr;
  }

  .dining-venue-grid,
  .dining-venue-grid-three {
    grid-template-columns: 1fr;
  }

  .dining-venue-grid-six figure:first-child,
  .dining-venue-grid-three figure:first-child {
    grid-column: auto;
  }

  .dining-venue-grid figure,
  .dining-venue-grid-six figure:first-child,
  .dining-venue-grid-three figure:first-child {
    min-height: 310px;
  }

  .dining-moment {
    min-height: 470px;
  }

  .amenity-mosaic {
    display: block;
  }

  .amenity-tile {
    height: 470px;
    margin-top: 10px;
  }

  .quote-wall {
    display: block;
  }

  .quote-card,
  .quote-card.wide,
  .quote-card.tall {
    min-height: 0;
    margin-top: 10px;
  }

  .schedule::before {
    left: 69px;
  }

  .schedule-row {
    grid-template-columns: 49px 1fr;
    gap: 40px;
  }

  .schedule-copy::before {
    left: -25px;
  }

  .space-panel img {
    height: 430px;
  }

  .space-panel-copy {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 235px;
    gap: 6px;
  }

  .gallery-grid .gallery-feature,
  .gallery-grid .gallery-wide {
    grid-column: span 2;
  }

  .gallery-grid .gallery-feature {
    grid-row: span 2;
  }

  .gallery-grid .gallery-tall {
    grid-row: span 2;
  }

  .carrie-photo {
    min-height: 540px;
  }

  .footer {
    padding-block: 40px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .weekend {
    background-attachment: scroll;
  }
}
