:root {
  --bg: #f8f4ea;
  --paper: #fffcf4;
  --paper-warm: #fff8f5;
  --tile: #efe7d6;
  --tile-strong: #d8ccb9;
  --ink: #2b2520;
  --muted: #6e655d;
  --brick: #c75f42;
  --brick-dark: #8f3929;
  --sage: #5f8e76;
  --sage-dark: #386653;
  --ochre: #d9a441;
  --blue: #3e7187;
  --radius: 8px;
  --shadow-soft: 0 24px 70px rgba(43, 37, 32, 0.1);
  --max: 1180px;
  --header-height: 82px;
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(216, 204, 185, 0.23) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 204, 185, 0.2) 1px, transparent 1px),
    var(--bg);
  background-size: 52px 52px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

address {
  font-style: normal;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
}

h1 {
  font-size: 6rem;
  margin-bottom: 22px;
}

h2 {
  font-size: 3.25rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

p {
  margin-bottom: 18px;
}

ul {
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-80px);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 72px 0;
}

.section-band,
.section-muted {
  position: relative;
}

.section-muted {
  background: rgba(239, 231, 214, 0.64);
  border-top: 1px solid rgba(216, 204, 185, 0.82);
  border-bottom: 1px solid rgba(216, 204, 185, 0.82);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brick-dark);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 100;
  pointer-events: none;
}

.header-shell {
  width: min(calc(100% - 48px), 1240px);
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 286px 1fr auto auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(216, 204, 185, 0.88);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(43, 37, 32, 0.08);
  pointer-events: auto;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 6px;
}

.brand-generated-mark {
  width: 54px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-word {
  display: inline-flex;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--brick);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  border-color: var(--brick);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.header-cta {
  padding: 0 20px;
  background: var(--ink);
  color: var(--paper);
  white-space: nowrap;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--tile);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: auto;
  padding-top: 138px;
  padding-bottom: 58px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 84px;
  width: 42vw;
  height: 1px;
  background: rgba(43, 37, 32, 0.18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.hero-lead {
  max-width: 600px;
  color: var(--brick-dark);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-text {
  color: var(--muted);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  padding: 0 22px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--brick);
  color: white;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brick-dark);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(43, 37, 32, 0.28);
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--ink);
  background: rgba(255, 252, 244, 0.68);
}

.btn-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 34px;
  width: 84px;
  height: 84px;
  border: 2px solid rgba(95, 142, 118, 0.5);
  border-radius: 30% 70% 48% 52%;
  transform: rotate(-12deg);
}

.hero-image-frame,
.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--tile-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.hero-image-frame {
  margin: 0;
  aspect-ratio: 3 / 2;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transform-origin: 52% 48%;
}

.hero-image-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.88);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-image-frame figcaption span {
  color: var(--brick-dark);
  text-transform: uppercase;
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--tile);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(43, 37, 32, 0.92);
  color: var(--paper);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 25px solid currentColor;
}

.video-frame.is-playing .play-button {
  display: none;
}

.video-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 252, 244, 0.44);
  border-radius: 999px;
  background: rgba(43, 37, 32, 0.76);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brick);
}

.intro-note {
  margin-top: 48px;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(43, 37, 32, 0.15);
}

.intro-note p {
  max-width: 840px;
  margin: 0;
  color: var(--sage-dark);
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
}

.story-section-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

.story-copy {
  position: sticky;
  top: 128px;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.story-copy h2 {
  margin-bottom: 34px;
}

.story-copy h3 {
  color: var(--ink);
  font-size: 2rem;
}

.story-flow {
  display: grid;
  justify-items: end;
  gap: 24px;
}

.story-video {
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.story-video-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  overflow: hidden;
  border: 1px solid var(--tile-strong);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.timeline {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 4px;
}

.timeline-item {
  position: relative;
  min-height: 164px;
  padding: 28px;
  border: 1px solid var(--tile-strong);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.78);
}

.timeline-item::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 32% 68% 60% 40%;
  background: rgba(199, 95, 66, 0.16);
}

.timeline-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(95, 142, 118, 0.15);
  color: var(--sage-dark);
  font-weight: 800;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: heroIn 720ms ease both;
  }

  .hero-media {
    animation: heroIn 780ms ease 120ms both;
  }

  .hero-image-frame img {
    animation: heroPhotoDrift 18s ease-in-out infinite alternate;
  }

  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 640ms ease,
      transform 640ms ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

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

  .feature-card,
  .person,
  .gallery-tile,
  .timeline-item {
    transition:
      opacity 640ms ease,
      transform 640ms ease,
      border-color 180ms ease,
      background-color 180ms ease;
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPhotoDrift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-1.2%, -0.8%, 0);
  }
}

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

.feature-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--tile-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-card-accent {
  background:
    linear-gradient(rgba(95, 142, 118, 0.1), rgba(95, 142, 118, 0.1)),
    var(--paper);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(199, 95, 66, 0.12);
  color: var(--brick);
}

.feature-icon.sage {
  background: rgba(95, 142, 118, 0.14);
  color: var(--sage-dark);
}

.feature-icon.ochre {
  background: rgba(217, 164, 65, 0.17);
  color: #7a5500;
}

.feature-icon.blue {
  background: rgba(62, 113, 135, 0.15);
  color: var(--blue);
}

.feature-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.feature-card p,
.feature-card li {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 45% 55% 60% 40%;
  background: var(--brick);
  transform: translateY(-50%);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--brick-dark);
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.rental-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: 56px;
  align-items: start;
}

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

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 24px;
  list-style: none;
}

.tag-list li {
  padding: 8px 12px;
  border: 1px solid rgba(95, 142, 118, 0.3);
  border-radius: 999px;
  background: rgba(95, 142, 118, 0.11);
  color: var(--sage-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.pricing-panel {
  overflow: hidden;
  border: 1px solid var(--tile-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.pricing-header,
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
}

.pricing-header {
  padding: 26px 26px 22px;
  background: var(--ink);
  color: var(--paper);
}

.pricing-header h3 {
  margin: 0;
  font-size: 1.55rem;
}

.pricing-header span {
  color: rgba(255, 252, 244, 0.78);
  font-weight: 700;
}

.price-row {
  padding: 18px 26px;
  border-top: 1px solid var(--tile-strong);
}

.price-row span {
  color: var(--muted);
}

.price-row strong {
  text-align: right;
  color: var(--ink);
}

.pricing-note {
  margin: 0;
  padding: 20px 26px 24px;
  border-top: 1px solid var(--tile-strong);
  background: rgba(217, 164, 65, 0.13);
  color: #6c4a00;
  font-weight: 700;
}

.events-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.events-layout p {
  color: var(--muted);
}

.event-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.event-board article {
  min-height: 190px;
  padding: 24px;
  border: 1px dashed rgba(143, 57, 41, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.75);
}

.event-board span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(199, 95, 66, 0.14);
  color: var(--brick-dark);
  font-weight: 800;
  font-size: 0.84rem;
}

.event-board p {
  margin-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  grid-auto-rows: 190px;
  gap: 14px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  border: 1px solid var(--tile-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(43, 37, 32, 0.02), rgba(43, 37, 32, 0.56));
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile figcaption {
  position: relative;
  z-index: 2;
  max-width: 300px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.88);
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.12;
  backdrop-filter: blur(10px);
}

.tile-large {
  grid-row: span 2;
}

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

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

.support-section .eyebrow {
  color: #ffb5a1;
}

.support-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.support-layout p {
  max-width: 540px;
  color: rgba(255, 252, 244, 0.76);
}

.support-list {
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 252, 244, 0.18);
}

.support-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 252, 244, 0.18);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.support-list span {
  color: #ffb5a1;
  font-size: 0.88rem;
}

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

.person {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--tile-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.person span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--tile);
  color: var(--brick-dark);
  font-family: var(--font-heading);
  font-weight: 800;
}

.person h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.person p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-section {
  padding: 86px 0;
  background: var(--paper);
  border-top: 1px solid var(--tile-strong);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 46px;
  align-items: stretch;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-copy address {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-links {
  margin-bottom: 18px;
}

.contact-links a,
.social-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--tile);
  color: var(--ink);
  font-weight: 800;
}

.social-links img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 0.9;
}

.social-links a {
  background: rgba(199, 95, 66, 0.12);
  color: var(--brick-dark);
}

.map-panel {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--tile-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(62, 113, 135, 0.18) 3px, transparent 3px),
    linear-gradient(90deg, rgba(62, 113, 135, 0.18) 3px, transparent 3px),
    linear-gradient(rgba(216, 204, 185, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 204, 185, 0.7) 1px, transparent 1px),
    #f7efe2;
  background-size: 170px 170px, 170px 170px, 34px 34px, 34px 34px, auto;
}

.map-panel::before {
  content: "";
  position: absolute;
  left: 45%;
  top: 36%;
  width: 46px;
  height: 46px;
  border-radius: 50% 50% 50% 0;
  background: var(--brick);
  transform: rotate(-45deg);
}

.map-panel::after {
  content: "";
  position: absolute;
  left: calc(45% + 14px);
  top: calc(36% + 14px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--paper);
}

.map-panel span,
.map-panel strong {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  padding: 8px 12px;
  background: rgba(255, 252, 244, 0.9);
}

.map-panel span {
  margin-bottom: 6px;
  border-radius: 999px;
  color: var(--blue);
  font-weight: 800;
}

.map-panel strong {
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.map-embed {
  padding: 0;
  background: var(--tile);
}

.map-embed::before,
.map-embed::after {
  display: none;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border-radius: var(--radius);
}

.site-footer {
  padding: 24px 0;
  background: var(--ink);
  color: rgba(255, 252, 244, 0.78);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  font-weight: 800;
}

@media (max-width: 1120px) {
  .header-shell {
    grid-template-columns: 244px 1fr auto auto;
    gap: 12px;
  }

  .brand {
    width: max-content;
  }

  .nav {
    gap: 14px;
    font-size: 0.86rem;
  }

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

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

@media (max-width: 940px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .site-header {
    inset: 12px 0 auto;
  }

  .header-shell {
    width: min(calc(100% - 24px), 720px);
    grid-template-columns: 1fr auto auto;
  }

  .brand {
    width: max-content;
  }

  .nav {
    display: none;
  }

  .header-cta {
    padding: 0 15px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .mobile-menu {
    width: min(calc(100% - 24px), 720px);
    margin: 8px auto 0;
    padding: 14px;
    border: 1px solid var(--tile-strong);
    border-radius: 22px;
    background: rgba(255, 252, 244, 0.96);
    box-shadow: 0 16px 50px rgba(43, 37, 32, 0.08);
    pointer-events: auto;
  }

  .mobile-menu.is-open {
    display: grid;
    gap: 4px;
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 800;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    background: var(--tile);
  }

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

  .hero-grid,
  .story-section-grid,
  .rental-layout,
  .events-layout,
  .support-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 38px;
  }

  .story-copy {
    position: static;
    max-width: 760px;
  }

  .story-flow {
    justify-items: start;
  }

  .story-video {
    justify-self: start;
    max-width: 320px;
  }

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

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

  .tile-large,
  .tile-wide {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15.5px;
  }

  .container {
    width: min(calc(100% - 36px), var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .section-compact {
    padding: 56px 0;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .header-shell {
    min-height: 66px;
    padding: 10px;
    grid-template-columns: 1fr auto auto;
    border-radius: 28px;
  }

  .brand {
    width: max-content;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero-lead {
    font-size: 1.28rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }

  .play-button {
    width: 66px;
    height: 66px;
  }

  .video-label {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    font-size: 0.8rem;
  }

  .story-video {
    max-width: 260px;
  }

  .intro-note {
    margin-top: 42px;
  }

  .intro-note p {
    font-size: 1.18rem;
  }

  .timeline-item,
  .feature-card,
  .person {
    padding: 22px;
  }

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

  .pricing-header,
  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-row strong {
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 155px;
  }

  .support-list li {
    grid-template-columns: 42px 1fr;
    font-size: 1.08rem;
  }

  .map-panel {
    min-height: 260px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .brand {
    width: max-content;
  }

  .brand-generated-mark {
    width: 46px;
    height: 40px;
  }

  .brand-word {
    font-size: 1.35rem;
  }

  .hero-image-frame figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    gap: 2px;
    font-size: 0.78rem;
  }
}

@media (max-width: 430px) {
  .container,
  .header-shell,
  .mobile-menu {
    width: min(calc(100% - 24px), var(--max));
  }

  h1 {
    font-size: 3rem;
  }

  .brand {
    width: max-content;
  }

  .brand-generated-mark {
    width: 40px;
    height: 34px;
  }

  .brand-word {
    font-size: 1.12rem;
  }
}
