:root {
  --bg: #f1ece4;
  --bg-soft: #e8e2d8;
  --paper: #faf7f1;
  --ink: #141414;
  --ink-soft: #59554f;
  --line: rgba(20, 20, 20, 0.12);
  --line-strong: rgba(20, 20, 20, 0.24);
  --dark: #111315;
  --dark-soft: #9ea7ab;
  --accent: #a1ff2a;
  --content: 1240px;
  --gutter: clamp(1rem, 3vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI Variable Text", "Aptos", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(161, 255, 42, 0.05), transparent 22%),
    linear-gradient(180deg, #f7f2ea 0%, var(--bg) 48%, var(--bg-soft) 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

figure {
  margin: 0;
}

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

.grid-glow {
  display: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.75rem var(--gutter);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: clamp(4.3rem, 7vw, 6.2rem);
  aspect-ratio: 1;
  padding: 0.24rem;
  border: 1px solid rgba(20, 20, 20, 0.16);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 1rem 2.2rem rgba(0, 70, 95, 0.18);
  object-fit: contain;
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.hero h1,
.chapter-rail h2,
.journey-timeline h3,
.scene-copy h3,
.outdoor-copy h3,
.explore-columns h3,
.gallery-panel figcaption {
  font-family: "Segoe UI Variable Display", "Bahnschrift", "Arial Narrow", sans-serif;
}

.brand-copy strong {
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0.45rem 1rem rgba(0, 70, 95, 0.12);
}

.brand-copy span:last-child {
  margin-top: 0.32rem;
  color: var(--ink-soft);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  justify-self: end;
}

.nav a {
  position: relative;
  padding: 0.15rem 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: end;
  padding: 0.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  border: 0;
  padding: 0.35rem 0.5rem;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.language-flag {
  width: 1.65rem;
  height: 1rem;
  flex: 0 0 auto;
  border-radius: 0.12rem;
  box-shadow: 0 0 0 1px rgba(20, 20, 20, 0.18);
}

.section {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
  padding: 4.5rem 0;
}

.top-film {
  padding-bottom: 0;
}

.film-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.eyebrow,
.card-kicker,
.hero-facts span {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow,
.card-kicker,
.hero-facts span {
  color: var(--ink-soft);
}

.hero {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 1.4rem;
  align-items: end;
  min-height: calc(100vh - 5rem);
}

.hero-image img {
  height: 76vh;
  min-height: 34rem;
  object-fit: cover;
}

.hero-copy {
  display: grid;
  align-content: end;
  gap: 1.25rem;
  padding-bottom: 0.35rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.hero-lede,
.chapter-intro p,
.journey-timeline p,
.scene-copy p,
.outdoor-copy p,
.explore-columns p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-social {
  margin: -0.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.hero-social a {
  position: relative;
  color: var(--ink);
}

.hero-social a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--line-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

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

.button-secondary {
  background: rgba(255, 255, 255, 0.45);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-facts strong {
  display: block;
  margin-top: 0.45rem;
  font-family: "Segoe UI Variable Display", "Bahnschrift", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
}

.chapter {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.chapter-rail {
  padding-top: 0.35rem;
}

.chapter-rail h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.chapter-body {
  display: grid;
  gap: 1.25rem;
}

.chapter-intro {
  max-width: 42rem;
}

.chapter-image img {
  height: 32rem;
  object-fit: cover;
}

.journey-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.journey-timeline article {
  padding-right: 0.85rem;
  border-right: 1px solid var(--line);
}

.journey-timeline article:last-child {
  border-right: 0;
}

.journey-timeline span {
  display: block;
  margin-bottom: 0.6rem;
  color: rgba(20, 20, 20, 0.38);
  font-family: "Segoe UI Variable Display", "Bahnschrift", sans-serif;
  font-size: 1.35rem;
}

.journey-timeline h3,
.scene-copy h3,
.outdoor-copy h3,
.explore-columns h3 {
  margin: 0 0 0.45rem;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.house-scenes {
  display: grid;
  gap: 2rem;
}

.scene {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 1.2rem;
  align-items: center;
}

.scene-reverse {
  grid-template-columns: 0.66fr 0.34fr;
}

.scene-copy {
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}

.scene-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.75rem;
}

.scene-image img {
  height: 18rem;
  object-fit: cover;
}

.chapter-outdoor {
  width: 100%;
  max-width: none;
  padding-inline: var(--gutter);
  background: var(--dark);
  border-top: 0;
}

.chapter-outdoor > * {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.chapter-outdoor .eyebrow,
.chapter-outdoor .chapter-rail h2,
.chapter-outdoor .chapter-intro p,
.chapter-outdoor .outdoor-copy p,
.chapter-outdoor .card-kicker {
  color: var(--paper);
}

.chapter-outdoor .chapter-intro p,
.chapter-outdoor .outdoor-copy p,
.chapter-outdoor .card-kicker {
  color: var(--dark-soft);
}

.outdoor-strip {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(0, 0.85fr));
  gap: 1rem;
}

.outdoor-feature-large {
  grid-row: span 3;
}

.outdoor-feature figure {
  margin: 0;
}

.outdoor-feature img {
  height: 100%;
  min-height: 15rem;
  object-fit: cover;
}

.outdoor-feature-large img {
  min-height: 48rem;
}

.outdoor-copy {
  padding-top: 0.85rem;
  border-top: 1px solid var(--dark-soft);
}

.chapter-explore {
  background: linear-gradient(180deg, #f5f0e8 0%, #efe9df 100%);
}

.explore-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.explore-columns article {
  padding-right: 0.85rem;
  border-right: 1px solid var(--line);
}

.explore-columns article:last-child {
  border-right: 0;
}

.explore-columns h3:not(:first-of-type) {
  margin-top: 1rem;
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.practical-grid article {
  padding-top: 0.25rem;
  padding-right: 1rem;
}

.practical-grid h3 {
  margin: 0.45rem 0 0.45rem;
  font-family: "Segoe UI Variable Display", "Bahnschrift", sans-serif;
  font-size: 1.45rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.practical-grid p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.chapter-contact {
  background:
    linear-gradient(135deg, rgba(161, 255, 42, 0.12), transparent 38%),
    var(--paper);
}

.chapter-contact .chapter-rail {
  padding-left: clamp(1.25rem, 4vw, 4.5rem);
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.3rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(0, 94, 122, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.5);
}

.contact-panel p {
  max-width: 44rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  display: grid;
  gap: 0.55rem;
  min-height: 12rem;
  padding: 1.1rem;
  align-content: end;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.2rem 2.6rem rgba(20, 20, 20, 0.14);
}

.contact-card span,
.contact-card em {
  color: rgba(250, 247, 241, 0.68);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card strong {
  overflow-wrap: anywhere;
  font-family: "Segoe UI Variable Display", "Bahnschrift", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

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

.gallery-panel {
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-panel img {
  height: 17rem;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-panel:hover img,
.gallery-panel:focus img {
  filter: contrast(1.05) saturate(1.04);
  transform: scale(1.02);
}

.gallery-panel:focus {
  outline: 2px solid var(--ink);
  outline-offset: 0.25rem;
}

.gallery-panel-wide img {
  height: 23rem;
}

.gallery-panel figcaption {
  padding-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(10, 12, 14, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  grid-column: 2;
  grid-row: 2;
  width: auto;
  max-width: 100%;
  max-height: 78vh;
  justify-self: center;
  object-fit: contain;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.48);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  border: 1px solid rgba(250, 247, 241, 0.28);
  background: rgba(250, 247, 241, 0.1);
  color: var(--paper);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.lightbox-close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  width: 3.2rem;
  height: 3.2rem;
}

.lightbox-prev,
.lightbox-next {
  grid-row: 2;
  min-height: 3.4rem;
  padding: 0.9rem 1rem;
}

.lightbox-prev {
  grid-column: 1;
}

.lightbox-next {
  grid-column: 3;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(250, 247, 241, 0.2);
}

.lightbox-caption {
  grid-column: 2;
  grid-row: 3;
  margin: 0;
  color: rgba(250, 247, 241, 0.72);
  text-align: center;
  line-height: 1.5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
  padding: 0 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal-on-load,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .button,
  .contact-card,
  .gallery-panel img,
  .nav a::after {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .topbar,
  .hero,
  .chapter,
  .scene,
  .scene-reverse,
  .outdoor-strip {
    grid-template-columns: 1fr;
  }

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

  .nav {
    justify-self: start;
  }

  .language-switcher {
    justify-self: start;
  }

  .hero-facts,
  .journey-timeline,
  .explore-columns,
  .practical-grid,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .outdoor-feature-large {
    grid-row: auto;
  }

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

  .hero-facts > div,
  .journey-timeline article,
  .explore-columns article {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.85rem;
  }

  .hero-facts > div:last-child,
  .journey-timeline article:last-child,
  .explore-columns article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .gallery-panel-wide {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .topbar {
    position: static;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-image img,
  .chapter-image img,
  .scene-image img,
  .outdoor-feature-large img,
  .gallery-panel-wide img,
  .gallery-panel img {
    height: 18rem;
    min-height: 18rem;
  }

  .brand-logo {
    width: 4.1rem;
    border-radius: 0.9rem;
  }

  .scene-gallery,
  .gallery-wall {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: 9rem;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
  }

  .lightbox-close {
    grid-column: 2;
    grid-row: 1;
  }

  .lightbox-image {
    grid-column: 1 / -1;
    grid-row: 2;
    max-height: 68vh;
  }

  .lightbox-prev,
  .lightbox-next {
    grid-row: 3;
    width: 100%;
  }

  .lightbox-prev {
    grid-column: 1;
  }

  .lightbox-next {
    grid-column: 2;
  }

  .lightbox-caption {
    grid-column: 1 / -1;
    grid-row: 4;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .chapter-rail h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .footer {
    flex-direction: column;
  }
}
