:root {
  --gold: #c89c4d;
  --gold-soft: #d4b06b;
  --white: #f7f1e8;
  --muted: rgba(247, 241, 232, .78);
  --dark: #100d09;
  --header-h: 112px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body.menu-open { overflow: hidden; }

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  padding: 28px 64px;
  display: grid;
  grid-template-columns: 260px 1fr 190px;
  align-items: center;
  gap: 32px;
  background: linear-gradient(to bottom, rgba(0,0,0,.36), rgba(0,0,0,0));
}

.brand img { width: 230px; max-width: 100%; height: auto; display: block; }

.main-menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(42px, 6vw, 98px);
}

.main-menu a,
.schedule-button {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 14px;
  font-weight: 500;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}

.main-menu a:hover { color: var(--gold-soft); }

.schedule-button {
  justify-self: end;
  width: 176px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,176,107,.75);
  color: var(--gold-soft);
}
.schedule-button:hover { background: rgba(212,176,107,.11); border-color: rgba(212,176,107,1); }

.mobile-toggle { display: none; }

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.image-carousel,
.image-slide,
.image-slide img,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }

.image-slide {
  opacity: 0;
  transform: scale(1.012);
  transition: opacity 1700ms ease, transform 7600ms ease;
}
.image-slide.is-active { opacity: 1; transform: scale(1); }
.image-slide img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7600ms ease;
}
.image-slide.is-active img { transform: scale(1.09); }

.hero-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 76% 50%, rgba(0,0,0,.05), rgba(0,0,0,.48) 65%, rgba(0,0,0,.78) 100%),
    linear-gradient(90deg, rgba(10,8,5,.88) 0%, rgba(10,8,5,.62) 30%, rgba(10,8,5,.18) 62%, rgba(10,8,5,.42) 100%),
    linear-gradient(0deg, rgba(0,0,0,.46), rgba(0,0,0,.04) 42%, rgba(0,0,0,.26));
  pointer-events: none;
}

.copy-carousel {
  position: absolute;
  z-index: 5;
  left: clamp(86px, 9vw, 170px);
  top: 45%;
  width: min(610px, 46vw);
  transform: translateY(-50%);
  min-height: 430px;
}
.copy-slide {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity 900ms ease, transform 900ms ease;
}
.copy-slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.eyebrow {
  margin-bottom: 30px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 14px;
  font-weight: 500;
}

h1, h2 {
  margin-bottom: 34px;
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(64px, 6.4vw, 112px);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.035em;
}

.support {
  position: relative;
  max-width: 430px;
  padding-top: 36px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: .035em;
}
.support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 1px;
  background: var(--gold);
}


.next-slide {
  position: absolute;
  z-index: 8;
  right: 64px;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
}
.next-slide span {
  display: block;
  width: 30px;
  height: 30px;
  border-top: 1.5px solid rgba(255,255,255,.9);
  border-right: 1.5px solid rgba(255,255,255,.9);
  transform: rotate(45deg);
  transition: border-color .3s ease, transform .3s ease;
}
.next-slide:hover span { border-color: var(--gold-soft); transform: rotate(45deg) translate(4px, -4px); }

.explore-hint {
  display: none;
  position: absolute;
  z-index: 6;
  left: 64px;
  bottom: 110px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 13px;
}
.mouse-icon {
  width: 36px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  position: relative;
}
.mouse-icon::before,
.mouse-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  height: 7px;
  background: var(--gold);
  transform: translateX(-50%);
}
.mouse-icon::before { top: 12px; }
.mouse-icon::after { bottom: 12px; }

.hero-locations {
  position: absolute;
  z-index: 6;
  right: 64px;
  bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.hero-locations a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 13px;
  font-weight: 500;
  transition: color .3s ease;
}
.hero-locations a:hover {
  color: var(--gold-soft);
}
.location-dot {
  color: var(--gold-soft);
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 210px 1fr 160px; padding: 26px 34px; }
  .main-menu { gap: 34px; }
  .copy-carousel { left: 92px; width: min(620px, 70vw); }
}

@media (max-width: 760px) {
  :root { --header-h: 88px; }
  body { overflow: hidden; }
  .site-header {
    height: var(--header-h);
    padding: 22px 24px;
    grid-template-columns: 1fr auto;
  }
  .brand img { width: 178px; }
  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
  }
  .mobile-toggle span { display: block; width: 30px; height: 1px; background: var(--white); }
  .main-menu {
    position: fixed;
    right: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }
  .main-menu {
    top: 88px;
    left: 24px;
    right: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    background: rgba(16,13,9,.92);
    border: 1px solid rgba(212,176,107,.2);
    backdrop-filter: blur(16px);
  }
  .schedule-button {
    position: fixed;
    left: 24px;
    right: auto;
    bottom: 24px;
    top: auto;
    z-index: 40;
    width: 152px;
    height: 48px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(16,13,9,.36);
    backdrop-filter: blur(10px);
    font-size: 11px;
  }
  body.menu-open .main-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }

  .image-slide img { object-position: 62% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10,8,5,.82), rgba(10,8,5,.42), rgba(10,8,5,.22)),
      linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.18) 50%, rgba(0,0,0,.32));
  }
  .copy-carousel {
    left: 28px;
    right: 28px;
    top: 47%;
    width: auto;
    min-height: 360px;
  }
  .eyebrow { font-size: 11px; letter-spacing: .2em; margin-bottom: 22px; }
  h1, h2 { font-size: clamp(48px, 16vw, 68px); margin-bottom: 26px; }
  .support { max-width: 92%; font-size: 16px; line-height: 1.65; }
  .next-slide { right: 24px; width: 42px; height: 42px; top: 66%; }
  .next-slide span { width: 22px; height: 22px; }
  .explore-hint { display: none; }
  .hero-locations {
    right: 28px;
    bottom: 28px;
    gap: 10px;
  }
  .hero-locations a {
    font-size: 10px;
    letter-spacing: .14em;
  }
  .location-dot {
    font-size: 16px;
  }
}
