:root {
  color-scheme: dark;
  --night: #101713;
  --night-soft: #141c17;
  --panel: #1a231c;
  --panel-raised: #202a22;
  --paper: #efe5d3;
  --text: #e9e5da;
  --muted: #aab2a5;
  --sage: #a8b995;
  --sage-deep: #697b65;
  --rust: #bd765d;
  --line: rgba(196, 207, 186, 0.16);
  --line-strong: rgba(196, 207, 186, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Helvetica, Arial, sans-serif;
  --page: min(1180px, calc(100% - 48px));
  --wide: min(1440px, calc(100% - 32px));
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
  background: var(--night);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(107, 127, 98, 0.08), transparent 30rem),
    radial-gradient(circle at 5% 47%, rgba(168, 185, 149, 0.045), transparent 35rem),
    var(--night);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.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;
  z-index: 200;
  left: 20px;
  top: 16px;
  padding: 10px 15px;
  background: var(--paper);
  color: var(--night);
  transform: translateY(-160%);
  border-radius: 8px;
}

.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--page); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(16, 23, 19, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--wide);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.4vw, 2.25rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover { color: var(--paper); }
.site-nav a:hover::after { transform: scaleX(1); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--paper);
}

.menu-button span[aria-hidden] {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

.hero {
  width: var(--wide);
  margin: 18px auto 0;
}

.hero-frame {
  position: relative;
  min-height: clamp(560px, 46vw, 690px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 6px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-edge {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 14, 0.9) 0%, rgba(12, 18, 14, 0.58) 28%, rgba(12, 18, 14, 0.12) 57%, transparent 74%),
    linear-gradient(0deg, rgba(12, 18, 14, 0.55), transparent 42%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: clamp(30px, 5vw, 76px);
  bottom: clamp(52px, 7vw, 88px);
  max-width: 560px;
}

.hero-kicker,
.section-label,
.season-index {
  margin: 0 0 20px;
  color: var(--sage);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(3.35rem, 7vw, 5.9rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.tagline {
  margin: 28px 0 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.hero-note {
  max-width: 470px;
  margin: 14px 0 0;
  color: rgba(233, 229, 218, 0.75);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue svg,
.quiet-link svg,
.visit-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue svg { animation: cue-drift 2s ease-in-out infinite; }

.status-strip {
  margin-top: 22px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.status-strip .section-label { margin: 0; }
.status-strip h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); }
.status-strip h2 span { color: var(--rust); }
.status-strip p:not(.section-label) { margin: 6px 0 0; color: var(--muted); }

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
}

.quiet-link:hover { color: var(--sage); }

h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.25rem, 4.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.032em;
}

h3 {
  margin: 10px 0 15px;
  color: var(--paper);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.story {
  padding-block: clamp(100px, 13vw, 170px);
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(430px, 1.18fr);
  align-items: center;
  gap: clamp(60px, 10vw, 130px);
}

.story-copy p:not(.section-label) {
  max-width: 550px;
  color: var(--muted);
}

.story-copy p:nth-of-type(2) { margin-top: 32px; }
.story-copy em { color: var(--paper); font-family: var(--serif); }
.story-image { margin: 0; transform: rotate(1.2deg); }

.image-frame {
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel-raised);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
}

.story-image figcaption {
  margin: 16px 10px 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
}

.seasons {
  padding-block: clamp(90px, 11vw, 140px);
  border-block: 1px solid var(--line);
  background: rgba(21, 29, 24, 0.72);
}

.seasons-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 0.9fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 42px;
  margin-bottom: clamp(70px, 9vw, 110px);
}

.seasons-heading .section-label { align-self: start; }
.seasons-heading > p:last-child { margin: 0; color: var(--muted); }
.season-list { margin-block: 0; padding: 0; list-style: none; }

.season {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(290px, 0.78fr);
  align-items: center;
  gap: clamp(45px, 8vw, 105px);
  margin-bottom: clamp(80px, 10vw, 130px);
}

.season::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) + 8px);
  transition: border-color 320ms ease, background 320ms ease;
}

.season:hover::before {
  border-color: var(--line);
  background: rgba(31, 41, 33, 0.36);
}

.season:nth-child(even) figure { order: 2; }
.season:nth-child(even) .season-copy { justify-self: end; }
.season:last-child { margin-bottom: 0; }
.season figure {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.season figure > img:first-child {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1), filter 650ms ease;
}

.season:hover figure > img:first-child { transform: scale(1.018); filter: saturate(1.06); }
.season-copy { max-width: 430px; }
.season-index { margin-bottom: 8px; }
.season-copy p:last-child { margin: 0; color: var(--muted); }

.season-date {
  margin: 0;
  color: var(--rust);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}


.season-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 76% 25%, rgba(215, 157, 98, 0.3) 0 10%, transparent 10.5%),
    radial-gradient(circle at 20% 85%, rgba(122, 93, 55, 0.5), transparent 34%),
    linear-gradient(145deg, #263126 0%, #4a4330 48%, #7a4e32 100%);
  color: var(--paper);
}

.season-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(245, 230, 197, 0.08) 48%, transparent 70%);
  opacity: 0.8;
}

.season-placeholder strong {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: none;
  text-shadow: 0 8px 28px rgba(10, 14, 11, 0.38);
}

.placeholder-sun {
  position: absolute;
  top: 16%;
  right: 13%;
  width: 15%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(235, 202, 143, 0.78);
  box-shadow: 0 0 55px rgba(225, 168, 101, 0.32);
}

.placeholder-shore {
  position: absolute;
  right: -8%;
  bottom: -24%;
  left: -8%;
  height: 58%;
  border-radius: 50% 42% 0 0;
  background: rgba(18, 28, 21, 0.62);
  transform: rotate(-4deg);
}

.placeholder-leaf {
  position: absolute;
  left: 13%;
  bottom: 18%;
  z-index: 1;
  color: rgba(229, 180, 115, 0.72);
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  transform: rotate(28deg) scaleX(0.72);
  opacity: 0.86;
}
.gallery { padding-block: clamp(100px, 13vw, 170px); }

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.gallery-heading > p { margin: 0 0 7px; color: var(--muted); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  color: var(--paper);
  cursor: zoom-in;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.84);
  transition: transform 800ms cubic-bezier(.2,.7,.2,1), filter 500ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 15, 12, 0.76), transparent 55%);
  pointer-events: none;
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  font-family: var(--serif);
  font-size: 1rem;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.02) brightness(0.98);
}

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

.people {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 720px;
  border-block: 1px solid var(--line);
  background: var(--panel);
}

.people-image { min-height: 620px; overflow: hidden; }

.people-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.86) brightness(0.82);
  transition: transform 9s ease-out;
}

.people-image.is-visible img { transform: scale(1.035); }

.people-copy {
  align-self: center;
  max-width: 650px;
  padding: clamp(62px, 9vw, 125px);
}

.people-copy p:not(.section-label) { color: var(--muted); }

.quiet-line {
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: var(--paper) !important;
  font-family: var(--serif);
  font-style: italic;
}

.visit {
  padding-block: clamp(100px, 12vw, 155px);
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(400px, 1.22fr);
  gap: clamp(65px, 11vw, 150px);
}

.visit > div > p:last-child { max-width: 500px; color: var(--muted); }
.visit-links { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }

.visit-links a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 22px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding 220ms ease, color 220ms ease;
}

.visit-links a:hover { padding-left: 10px; color: var(--sage); }
.visit-links span { font-family: var(--serif); font-size: 1.15rem; }
.visit-links small { color: var(--muted); font-size: 0.76rem; letter-spacing: 0.04em; }
.visit-links svg { width: 18px; }

.site-footer {
  padding: 32px max(24px, calc((100% - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  background: #0c120e;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-footer p { margin: 0; color: var(--paper); font-family: var(--serif); letter-spacing: 0.04em; }
.site-footer a { text-underline-offset: 4px; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(7, 11, 8, 0.94);
  color: var(--paper);
}

.lightbox::backdrop { background: rgba(7, 11, 8, 0.92); backdrop-filter: blur(12px); }

.lightbox-shell {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 48px clamp(54px, 8vw, 130px);
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 28px;
}

.lightbox figure { min-width: 0; max-width: 1320px; max-height: 88vh; margin: auto; }

.lightbox-image {
  width: 100%;
  max-height: calc(88vh - 55px);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,.48);
}

.lightbox figcaption {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 0.84rem;
}

.lightbox-caption { color: var(--paper); font-family: var(--serif); font-size: 1rem; }

.lightbox-close,
.lightbox-nav {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--panel);
  color: var(--paper);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover { background: var(--panel-raised); transform: scale(1.05); }

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 24px;
}

.lightbox button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms ease, transform 850ms cubic-bezier(.2,.7,.2,1);
}

.has-js .reveal-late { transition-delay: 120ms; }
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}

@keyframes cue-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 900px) {
  :root { --page: min(100% - 32px, 760px); }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    padding: 14px 16px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(16, 23, 19, 0.98);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 8px; }
  .site-nav a::after { display: none; }
  .hero-frame { min-height: min(620px, calc(100svh - 110px)); }
  .hero-image { object-position: center center; }
  .hero-edge { background: linear-gradient(90deg, rgba(12,18,14,.85), rgba(12,18,14,.2)), linear-gradient(0deg, rgba(12,18,14,.55), transparent 55%); }
  .status-strip { grid-template-columns: 1fr; gap: 14px; }
  .status-strip .quiet-link { margin-top: 4px; }
  .story,
  .visit { grid-template-columns: 1fr; }
  .story-image { width: min(100%, 680px); }
  .seasons-heading { grid-template-columns: 1fr; gap: 12px; }
  .seasons-heading > p:last-child { max-width: 600px; }
  .season,
  .season:nth-child(even) { grid-template-columns: 1fr; gap: 34px; }
  .season:nth-child(even) figure { order: 0; }
  .season:nth-child(even) .season-copy { justify-self: start; }
  .season-copy { max-width: 620px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 22px; }
  .gallery-heading > p { max-width: 590px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .people { grid-template-columns: 1fr; }
  .people-image { min-height: 500px; }
  .people-copy { padding: 68px max(24px, calc((100% - 728px) / 2)); }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 22px); --radius: 17px; }
  body { font-size: 0.95rem; }
  .nav-shell { min-height: 70px; }
  .wordmark { font-size: 1.75rem; }
  .site-nav { top: 70px; }
  .hero { margin-top: 11px; }
  .hero-frame {
    min-height: 560px;
    height: calc(100svh - 86px);
    max-height: 680px;
  }
  .hero-image {
    inset: 0 0 auto;
    height: auto;
    aspect-ratio: 2 / 1;
    object-position: center center;
    transform-origin: center top;
  }
  .hero-edge {
    background: linear-gradient(180deg, transparent 0 22%, rgba(12,18,14,.3) 34%, rgba(12,18,14,.97) 50%, rgba(12,18,14,1) 100%);
  }
  .hero-copy { left: 24px; right: 24px; bottom: 64px; }
  .hero-kicker { max-width: 230px; line-height: 1.5; }
  .hero h1 { font-size: clamp(3.35rem, 18vw, 4.6rem); }
  .hero-note { max-width: 310px; }
  .scroll-cue { right: 20px; bottom: 18px; }
  .status-strip { padding: 24px 22px; }
  h2 { font-size: clamp(2.2rem, 12vw, 3.35rem); }
  .story { padding-block: 90px; }
  .season::before { display: none; }
  .season figure { aspect-ratio: 4 / 3; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; gap: 10px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .gallery-item span { left: 13px; bottom: 10px; font-size: .9rem; }
  .people-image { min-height: 380px; }
  .people-copy { padding: 58px 22px; }
  .visit { gap: 42px; }
  .visit-links a { grid-template-columns: minmax(0,1fr) 20px; gap: 8px; }
  .visit-links small { grid-column: 1; grid-row: 2; }
  .visit-links svg { grid-column: 2; grid-row: 1 / span 2; }
  .site-footer { padding: 27px 18px; flex-direction: column; gap: 7px; }
  .lightbox-shell { padding: 62px 14px 24px; grid-template-columns: 40px minmax(0,1fr) 40px; gap: 7px; }
  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox figcaption { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .has-js .reveal { opacity: 1; transform: none; }
}
