/* --- Fonts ----------------------------------------------------------------------------------------------*/

/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/open-sans-v44-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/open-sans-v44-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/open-sans-v44-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300;
  src: url('./fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  src: url('./fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/cormorant-garamond-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* --- Core CSS ---------------------------------------------------------------------------------------------*/

:root {
  --black:      #080808;
  --white:      #FFFFFF;
  --gold:       #FDCF83;
  --gold01:     #C09040;
  --dark-blue:  #141430;
  --gray:       #888888;
  --card:       #101010;
  --mid:        #2A2A2A;
  --off:        #F0EDE8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-family: 'Open Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV (absolute, floats over hero) ───────────────────── */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,0.7) 0%, transparent 100%);
}

.nav-logo {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover {
  color: var(--white);
  border-bottom: 1px solid #dadada;
}

.nav-cta {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.65);
}

/* ─── HERO MOSAIC ─────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: grid;
  grid-template-columns: 58fr 42fr;
  grid-template-rows: 62fr 38fr;
  gap: 2px;
  background: #000;
  overflow: hidden;
}

.mosaic-cell {
  position: relative;
  overflow: hidden;
  background: #141414;
}
.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 10s ease;
}
.mosaic-cell:hover img { transform: scale(1.04); }

.mosaic-cell-1 { grid-column: 1; grid-row: 1 / 3; }
.mosaic-cell-2 { grid-column: 2; grid-row: 1; }
.mosaic-cell-3 { grid-column: 2; grid-row: 2; }

/* Global dark vignette over the mosaic */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(0,0,0,0.55) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, transparent 40%, rgba(8,8,8,0.7) 100%);
  pointer-events: none;
  z-index: 2;
}

/* The big title block */
.hero-title-block {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 56px 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(88px, 13vw, 172px);
  font-weight: 700;
  line-height: 0.88;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 8px 60px rgba(0,0,0,0.6);
}

.hero-title-sub {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.13em;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 12px;
  font-style: normal;
}

@media (max-width: 1400px) {
  .hero-title-sub {
    font-size: 0.11em;
    letter-spacing: 0.15em;
  }
}

.hero-aside {
  max-width: 345px;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-height: 80vh;
}
.hero-aside p {
  font-size: 16px;
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-visit-info {
  color: rgba(255,255,255,0.95);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  background-color: rgba(0,0,0,0.7);
  padding: 16px;
  border-radius: 8px;
}
.hero-visit-info p {
  margin-bottom: 18px;
}
.hero-visit-info h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.hero-visit-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 14px;
  justify-content: end;
  color: rgba(255,255,255,0.90);
}
.hero-visit-info dt {
  font-weight: 500;
  color: rgba(255,255,255,0.84);
  white-space: nowrap;
}
.hero-visit-info dd {
  margin: 0;
}
.hero-archive-cta {
  margin-top: auto;
}

.btn-outline-white {
  display: inline-block;
  border: 1px solid  rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.12);
  color: var(--gold);
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s;
  border-radius: 8px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); }

/* ─── EDITORIAL GRID ──────────────────────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #000;
}

.ed-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #141414;
}
.ed-cell-standard { aspect-ratio: 4/3; }
.ed-cell-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.ed-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  grid-row: span 2;
}
.ed-cell-grow {
  flex: 1;
  min-height: 0;
}

.ed-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, opacity 0.4s;
}
.ed-cell:hover img { transform: scale(1.05); opacity: 0.65; }

.ed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 55%);
}

.ed-label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.55);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}

.ed-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 26px;
}
.ed-date {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ed-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.ed-cell-wide .ed-title { font-size: 44px; }
.ed-body {
  width: 60%;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  font-weight: 300;
}

.dark-bg {
  background-color: rgba(0,0,0,0.45);
  padding: 4px 10px;
}

/* ─── FULL-WIDTH CINEMATIC ────────────────────────────────── */
.cinema {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: #101010;
}
.cinema img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  display: block;
}
.cinema-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px;
}
.cinema-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.cinema-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 900px;
}
.cinema-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--off);
}
.cinema-body {
  font-size: 16px;
  color: rgba(255,255,255);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ─── ACTIVITIES ───────────────────────────────────────────── */
.activities {
  /* background: linear-gradient(135deg, #1f1f4a 0%, #0a0a18 100%); */
  /* background: linear-gradient(135deg, #141f3a 0%, #0f171c 100%); */
  background-color: #233d3d;
  background: linear-gradient(135deg, #233d3d 0%, #0f171c 100%);
  padding: 42px 80px 80px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.activities-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 60px;
}
.activities-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}
.activities-header a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.15s;
}
.activities-header a:hover { color: var(--white); }

.activities-header em {
  font-style: italic;
  color: var(--gold);
}

.activities-carousel-outer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.activities-carousel-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.activities-track {
  display: flex;
  gap: 40px;
  transition: transform 0.48s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.act-card {
  flex: 0 0 calc((100% - 80px) / 3);
  min-width: 0;
  cursor: pointer;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 16px rgba(0,0,0,0.30);
}
.carousel-btn:hover {
  background: #fff;
  transform: scale(1.06);
}
.carousel-btn[aria-hidden="true"] {
  visibility: hidden;
  pointer-events: none;
}

.act-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 20px;
  border-radius: 6px;
}
.act-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, opacity 0.4s;
}
.act-card:hover .act-img img {
  transform: scale(1.04);
  opacity: 0.82;
}

.act-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}

.act-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.act-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 8px;
}
.act-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}

/* ─── SPONSORS ───────────────────────────────────────────── */
.sponsors {
  background: var(--card);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}

.sponsors-label {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 60px;
}

.sponsors-label h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}

.sponsors-label em {
  font-style: italic;
  color: var(--gold);
}

.sponsors-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.sponsors-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: sponsors-scroll 36s linear infinite;
}

.sponsors-track:hover { animation-play-state: paused; }

.sponsor-logo {
  /* height: 48px; */
  width: auto;
  padding: 0 44px;
  /* opacity: 0.45; */
  /* filter: grayscale(1) brightness(2); */
  flex-shrink: 0;
  transition: opacity 0.2s, filter 0.2s;
}

.sponsor-logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

@keyframes sponsors-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── VISIT ───────────────────────────────────────────── */
.visit {
  background: var(--card);
  padding: 0 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.visit-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.visit-col-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.visit-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ─── DONATION FORM ───────────────────────────────────────── */
.don-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 16px;
}
.don-toggle .visit-col-title {
  margin-bottom: 0;
}
.don-chevron {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.don-toggle[aria-expanded="true"] .don-chevron {
  transform: rotate(180deg);
}
.don-body {
  display: none;
  flex-direction: column;
}
.don-body--open {
  display: flex;
}
.don-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 24px;
}
.don-section {
  margin-bottom: 18px;
}
.don-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.don-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,0.3);
}
.don-freq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.18);
}
.don-freq-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.45);
  padding: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.don-freq-btn + .don-freq-btn {
  border-left: 1px solid rgba(255,255,255,0.18);
}
.don-freq-btn--active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.don-freq-btn:hover:not(.don-freq-btn--active) {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
}
.don-amount-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.15s;
}
.don-amount-wrap:focus-within {
  border-color: var(--gold);
}
.don-currency {
  padding: 0 12px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  border-right: 1px solid rgba(255,255,255,0.1);
  line-height: 42px;
  white-space: nowrap;
}
.don-amount-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 10px 14px;
  width: 100%;
}
.don-amount-input::placeholder { color: rgba(255,255,255,0.2); }
.don-amount-input::-webkit-inner-spin-button,
.don-amount-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.don-comment {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 10px 14px;
  resize: none;
  outline: none;
  transition: border-color 0.15s;
  line-height: 1.5;
}
.don-comment:focus { border-color: var(--gold); }
.don-char-count {
  text-align: right;
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin-top: 5px;
}
.don-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 13px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-bottom: 16px;
}
.don-submit:hover { opacity: 0.85; }
.don-paypal-row {
  display: flex;
  align-items: center;
}
.don-paypal-logo {
  height: 20px;
  opacity: 0.45;
  filter: brightness(0) invert(1);
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats {
  display: none;
  background: var(--card);
  padding: 60px 80px;
  /* display: grid; */
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stat {
  border-left: 1px solid rgba(192,144,64,0.35);
  padding-left: 28px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 6px;
}
.stat-num sup {
  font-size: 0.45em;
  opacity: 0.55;
  vertical-align: super;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── ABOUT ───────────────────────────────────────────────── */
.about {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
}
.about-title em {
  font-style: italic;
  color: var(--gold);
}
.about-body {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}

.about-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.about-img-cap-light {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
}

/* ─── PASSION BLOCK ─────────────────────────────────────────── */
.passion {
  background: var(--card);
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.passion-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 42px;
}
.passion-title em {
  font-style: italic;
  color: var(--gold);
}
.passion-body {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}

/* Crossfade slideshow */
.passion-slideshow {
  position: relative;
  margin-bottom: 40px;
}
.passion-slideshow .passion-slide {
  width: 100%;
  height: auto;
  display: block;
  animation: passion-fade 12s ease-in-out infinite;
  animation-fill-mode: backwards;
}
.passion-slideshow .passion-slide:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}
.passion-slideshow .passion-slide:nth-child(1) { animation-delay: -1s; }
.passion-slideshow .passion-slide:nth-child(2) { animation-delay: 3s; }
.passion-slideshow .passion-slide:nth-child(3) { animation-delay: 7s; }

@keyframes passion-fade {
  0%      { opacity: 0; }
  8.33%   { opacity: 1; }
  33.33%  { opacity: 1; }
  41.67%  { opacity: 0; }
  100%    { opacity: 0; }
}

.passion1-block {
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 48px 80px;
}

.passion1-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 60px;
}

.passion1-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
}

.passion1-header em {
  font-style: italic;
  color: var(--gold);
}



/* ─── VISIT STRIP ─────────────────────────────────────────── */
.visit-strip {
  background: var(--card);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.vs-group { display: flex; gap: 48px; }
.vs-item {}
.vs-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.vs-val {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2px;
}
.vs-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 80px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  padding-top: 24px;
  display: block;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 250px;
  margin-bottom: 28px;
  font-weight: 400;
}
.footer-addr {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  font-style: normal;
  font-weight: 400;
}
.footer-addr a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  line-height: 1.75;
  font-style: normal;
  font-weight: 400;
}
.footer-col-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

.footer-nl-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.footer-nl-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
  font-weight: 300;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-form input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.75);
  color: var(--white);
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  font-weight: 300;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.18); }
.footer-form input:focus { border-color: var(--gold); }
.footer-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}
.footer-form button:hover { opacity: 0.82; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  font-weight: 00;
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title       { animation: fadeIn 1s 0.2s both ease-out; }
.hero-aside       { animation: fadeIn 0.8s 0.5s both ease-out; }
