:root {
  --sage: #cdd9c5;
  --sage-deep: #7e927b;
  --paper: #fbfff8;
  --ink: #2f2b2b;
  --muted: #706a64;
  --blue: #304e7a;
  --clay: #b5655f;
  --line: rgba(47, 43, 43, 0.16);
  --shadow: 0 18px 48px rgba(37, 43, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(23, 30, 26, 0.46), rgba(23, 30, 26, 0));
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  text-decoration: none;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.94rem;
  min-width: 0;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
}

.language-select {
  min-height: 34px;
  padding: 6px 26px 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.language-select option {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 72px) 72px;
  color: #fff;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(22, 24, 22, 0.72), rgba(22, 24, 22, 0.25) 52%, rgba(22, 24, 22, 0.05)),
    linear-gradient(0deg, rgba(22, 24, 22, 0.58), rgba(22, 24, 22, 0.05) 48%);
}

.hero__copy {
  position: relative;
  width: min(760px, 100%);
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4d9d5;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  max-width: 100%;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  font-size: clamp(4rem, 13vw, 10.5rem);
}

h2 {
  font-size: clamp(2.1rem, 6vw, 5.2rem);
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.hero__copy p:not(.eyebrow) {
  width: min(600px, 100%);
  margin: 18px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.button--light {
  background: #fff;
  color: var(--ink);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero__domain {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 24px;
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.86;
}

.section {
  padding: clamp(64px, 10vw, 120px) clamp(20px, 6vw, 72px);
}

.section__heading {
  width: min(980px, 100%);
  margin: 0 auto 34px;
}

.section__heading h2 {
  color: var(--ink);
}

.intro {
  background: #fff;
}

.intro__grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.moment {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

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

.moment div {
  padding: 18px;
}

.moment span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage-deep);
  font-weight: 900;
}

.moment p,
.closing p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  min-height: clamp(360px, 55vw, 680px);
  background: var(--sage);
}

.feature-strip img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-strip img:nth-child(2) {
  border-left: 8px solid var(--paper);
  border-right: 8px solid var(--paper);
}

.films {
  background: var(--paper);
}

.film-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.film-feature {
  width: min(980px, 100%);
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 52px);
  align-items: center;
  padding: clamp(14px, 3vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.film-feature__copy {
  display: grid;
  gap: 12px;
}

.film-feature__copy .eyebrow {
  margin-bottom: 0;
}

.film-feature__copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
}

.film-feature__copy p:not(.eyebrow) {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.film-card {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.video-shell {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: #151515;
}

.video-shell--portrait {
  aspect-ratio: 9 / 16;
  width: min(100%, 360px);
  margin: 0 auto;
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.film-card h3 {
  padding: 14px 4px 4px;
}

.gallery-section {
  background: #fff;
}

.gallery {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 12px;
}

.photo-tile {
  appearance: none;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: var(--sage);
  cursor: pointer;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.photo-tile--tall {
  grid-row: span 2;
}

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

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: end;
  padding: clamp(70px, 10vw, 128px) clamp(20px, 6vw, 72px);
  background: var(--sage);
}

.closing > * {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 72px 20px 24px;
  background: rgba(14, 15, 14, 0.9);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.lightbox img {
  max-height: 78svh;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}

.lightbox figcaption {
  color: #fff;
  text-align: center;
}

.lightbox button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 10px 14px;
}

.lightbox__nav {
  width: 100%;
  padding: 12px 8px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 84svh;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, rgba(22, 24, 22, 0.76), rgba(22, 24, 22, 0.16) 70%),
      linear-gradient(90deg, rgba(22, 24, 22, 0.48), rgba(22, 24, 22, 0.04));
  }

  .intro__grid,
  .film-feature,
  .film-grid,
  .closing {
    grid-template-columns: 1fr;
  }

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

  .feature-strip img {
    min-height: 300px;
  }

  .feature-strip img:nth-child(2) {
    border: 0;
    border-top: 8px solid var(--paper);
    border-bottom: 8px solid var(--paper);
  }

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

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    gap: 8px 12px;
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

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

  .language-select {
    min-height: 32px;
    margin-left: auto;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 82svh;
    padding: 96px 18px 58px;
  }

  .hero__image {
    object-position: 48% center;
  }

  .hero__domain {
    left: 18px;
    right: auto;
    bottom: 18px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 18px;
  }

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

  .photo-tile--wide {
    grid-column: span 1;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "image image"
      "prev next";
  }

  .lightbox figure {
    grid-area: image;
  }

  .lightbox__nav--prev {
    grid-area: prev;
  }

  .lightbox__nav--next {
    grid-area: next;
  }
}

@media (max-width: 540px) {
  .nav-links,
  .hero__copy,
  .section__heading {
    width: min(354px, 100%);
    max-width: 100%;
  }

  .nav-links {
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .language-select {
    position: absolute;
    top: 12px;
    right: 18px;
  }

  .section__heading {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 12px 18px 10px;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3.35rem, 14.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
