:root {
  color-scheme: light;
  --ink: #101413;
  --muted: #5e6865;
  --paper: #f7f5ef;
  --white: #ffffff;
  --stone: #d8d0c4;
  --forest: #25443b;
  --sea: #2f6f78;
  --gold: #b58a4b;
  --line: rgba(16, 20, 19, 0.14);
  --shadow: 0 24px 80px rgba(16, 20, 19, 0.18);
}

* {
  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;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(16, 20, 19, 0.78), rgba(16, 20, 19, 0));
}

.brand {
  display: grid;
  line-height: 1;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.brand strong {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
}

nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 160px clamp(20px, 6vw, 88px) 84px;
  color: var(--white);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 20, 19, 0.76) 0%, rgba(16, 20, 19, 0.42) 48%, rgba(16, 20, 19, 0.14) 100%),
    linear-gradient(0deg, rgba(16, 20, 19, 0.68) 0%, rgba(16, 20, 19, 0) 52%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7.2vw, 94px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.strip div {
  min-height: 104px;
  padding: 26px clamp(18px, 3vw, 40px);
  border-right: 1px solid var(--line);
}

.strip div:last-child {
  border-right: 0;
}

.strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.strip strong {
  font-size: 18px;
  font-weight: 650;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 88px);
  scroll-margin-top: 92px;
}

.split,
.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.final-cta p,
footer p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.note {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.visual-grid {
  display: block;
  aspect-ratio: 16 / 10;
}

.visual-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program {
  background: var(--ink);
  color: var(--white);
}

.program .section-copy p:not(.eyebrow),
.program-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.narrow {
  max-width: 790px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.12);
}

.program-grid article {
  min-height: 280px;
  padding: 30px;
  background: #151c1a;
}

.program-grid span {
  display: block;
  margin-bottom: 56px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.video-section {
  background: #ece8df;
  padding-left: 0;
  padding-right: 0;
}

.video-section .section-copy {
  margin-left: clamp(20px, 6vw, 88px);
  margin-right: clamp(20px, 6vw, 88px);
}

.feature-video {
  width: 100%;
  margin-top: 44px;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(16, 20, 19, 0.2);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

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

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

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

figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
}

.location {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--sea);
  font-weight: 750;
}

.map-wrap {
  min-height: 440px;
  border: 1px solid var(--line);
  background: var(--stone);
}

.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
}

.final-cta {
  padding: clamp(76px, 10vw, 140px) clamp(20px, 6vw, 88px);
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(16, 20, 19, 0.72), rgba(16, 20, 19, 0.78)),
    url("/assets/v10-render-07-20260613-ccd8662e.webp") center / cover;
}

.final-cta h2,
.final-cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 30px;
}

footer {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 30px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer p {
  margin: 0;
  font-size: 14px;
}

footer p:first-child {
  color: var(--ink);
  font-weight: 800;
}

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

  nav {
    display: none;
  }

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

  .split,
  .location {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand strong {
    font-size: 18px;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 86vh;
    padding: 132px 18px 54px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.04;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .strip,
  .program-grid,
  .gallery,
  footer {
    grid-template-columns: 1fr;
  }

  .strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

  .section-heading .button {
    margin-top: 22px;
  }
}
