:root {
  --ink: #f7efe0;
  --muted: #c9bda9;
  --gold: #d5a84c;
  --gold-soft: #f1d58b;
  --charcoal: #0b0908;
  --smoke: #17120f;
  --line: rgba(213, 168, 76, 0.26);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--charcoal);
  font-family: Inter, Arial, sans-serif;
}

body::selection {
  color: #100d0b;
  background: var(--gold-soft);
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 32px;
  isolation: isolate;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  z-index: -3;
  filter: saturate(0.9) contrast(1.04);
}

.hero__shade {
  z-index: -2;
  background:
    radial-gradient(circle at 52% 36%, rgba(213, 168, 76, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.86), rgba(8, 6, 5, 0.34) 46%, rgba(8, 6, 5, 0.8)),
    linear-gradient(180deg, rgba(8, 6, 5, 0.2), rgba(8, 6, 5, 0.88));
}

.hero__content {
  width: min(100%, var(--max-width));
  padding-top: 12vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
.footer__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(4.35rem, 15.6vw, 9.6rem);
  line-height: 0.8;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  font-weight: 500;
}

.hero__actions,
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 213, 139, 0.75);
}

.button--primary {
  color: #15100c;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
}

.button--ghost {
  color: var(--ink);
  background: rgba(8, 6, 5, 0.28);
  backdrop-filter: blur(14px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(247, 239, 224, 0.38);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.section {
  padding: clamp(78px, 10vw, 136px) 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 38%),
    var(--charcoal);
}

.section--about {
  background-color: #100d0b;
}

.section--highlights {
  border-top: 1px solid rgba(213, 168, 76, 0.14);
  background-color: var(--smoke);
}

.section__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.about,
.highlights {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.highlights {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

.about__image,
.highlights__image {
  position: relative;
}

.about__image::after,
.highlights__image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(213, 168, 76, 0.4);
  pointer-events: none;
}

.about__image img,
.highlights__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.highlights__image img {
  aspect-ratio: 1 / 1.08;
}

h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(2.05rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.about__copy p:not(.section-kicker) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.85;
}

.highlight-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  position: relative;
  padding: 18px 18px 18px 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.65;
}

.highlight-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(213, 168, 76, 0.55);
}

.footer {
  padding: 34px 26px;
  border-top: 1px solid rgba(213, 168, 76, 0.18);
  background: #080605;
}

.footer__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__name {
  margin: 0;
  color: var(--gold-soft);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

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

.footer__icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__icon-dot {
  fill: currentColor;
  stroke: none;
}

.footer__copyright {
  margin: 0;
  color: rgba(201, 189, 169, 0.72);
  font-size: 0.82rem;
}

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

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

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    padding: max(18px, env(safe-area-inset-top)) 20px max(22px, env(safe-area-inset-bottom));
    place-items: end start;
  }

  .hero__video {
    height: 100svh;
    object-fit: cover;
    object-position: center 34%;
  }

  .hero__content {
    width: 100%;
    padding: 0 0 clamp(64px, 12svh, 96px);
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(8, 6, 5, 0.04), rgba(8, 6, 5, 0.28) 42%, rgba(8, 6, 5, 0.92)),
      linear-gradient(90deg, rgba(8, 6, 5, 0.64), rgba(8, 6, 5, 0.18) 58%, rgba(8, 6, 5, 0.36));
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3.05rem, 16.2vw, 5rem);
    line-height: 0.84;
  }

  .hero__subtitle {
    margin-top: 14px;
    max-width: 22rem;
    font-size: clamp(1rem, 4.8vw, 1.22rem);
    line-height: 1.35;
  }

  .hero__actions {
    width: min(100%, 340px);
    margin-top: 26px;
    gap: 12px;
  }

  .button {
    min-height: 56px;
    padding: 0 24px;
    font-size: 0.86rem;
  }

  .scroll-cue {
    bottom: 18px;
    width: 24px;
    height: 40px;
  }

  .section {
    padding: 58px 20px;
  }

  .about,
  .highlights {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .highlights__image {
    order: -1;
  }

  .about__image img,
  .highlights__image img {
    max-height: 420px;
    aspect-ratio: 4 / 4.7;
    object-fit: cover;
  }

  .about__image::after,
  .highlights__image::after {
    inset: 12px;
  }

  h2 {
    max-width: 10.5em;
    font-size: clamp(1.85rem, 8.2vw, 2.65rem);
    line-height: 1.05;
  }

  .about__copy p:not(.section-kicker) {
    max-width: 38rem;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .highlight-list {
    gap: 10px;
    margin-top: 24px;
  }

  .highlight-list li {
    padding: 14px 8px 14px 34px;
    line-height: 1.52;
  }

  .highlight-list li::before {
    left: 10px;
    top: 24px;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .footer__links a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .hero {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.75rem, 15.2vw, 4.2rem);
  }
}

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