@charset "UTF-8";

/* =========================
   GLOBAL BODY CSS
========================= */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0b0c0f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote {
  margin-top: 0;
}

section {
  position: relative;
}

::selection {
  background: rgba(198, 161, 110, 0.28);
  color: #ffffff;
}

/* =========================
   ACCESSIBILITY
========================= */

.skiplink {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 999px;
  background: #c6a16e;
  color: #111111;
  font-size: 13px;
  font-weight: 700;
}

.skiplink:focus {
  top: 16px;
}

/* =========================
   SHARED UTILITIES
========================= */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(198, 161, 110, 0.9);
}

.lead {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

.sublead {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
}

.panel,
.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.accent-line {
  width: 84px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #6e0f1a 0%,
    #c6a16e 50%,
    #32424a 100%
  );
}

.media-frame,
.video-frame,
.image-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050608;
}

.media-frame img,
.image-frame img,
.video-frame video {
  width: 100%;
}

/* =========================
   BUTTONS
========================= */

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid rgba(198, 161, 110, 0.55);
  border-radius: 999px;
  background: linear-gradient(135deg, #c6a16e 0%, #e0c08a 100%);
  color: #111111;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease,
    opacity 0.25s ease;
}

.button:hover,
.button:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(198, 161, 110, 0.18);
  filter: brightness(1.03);
  outline: none;
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HEADER SCROLLED SUPPORT
========================= */

.header {
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* =========================
   ACTIVE NAV LINK SUPPORT
========================= */

.header__link,
.header__cta {
  position: relative;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}

.header__link:hover,
.header__cta:hover,
.header__link.is-active,
.header__cta.is-active {
  color: #d7b783;
}

.header__link.is-active::after,
.header__cta.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #6e0f1a 0%,
    #c6a16e 100%
  );
  border-radius: 999px;
}

/* =========================
   FORM BASICS
========================= */

input,
select,
textarea {
  border-radius: 14px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(198, 161, 110, 0.7);
  outline-offset: 3px;
}

/* =========================
   BODY STATES
========================= */

body.lightbox-open {
  overflow: hidden;
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .header,
  .header__link,
  .header__cta,
  .button,
  .btn {
    transition: none;
  }
}

/* =========================
   RESPONSIVE FOUNDATION
========================= */

@media (max-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
  }

  .header__link.is-active::after,
  .header__cta.is-active::after {
    bottom: -6px;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .sublead {
    font-size: 14px;
    line-height: 1.7;
  }

  .panel,
  .card {
    border-radius: 20px;
  }

  .media-frame,
  .video-frame,
  .image-frame {
    border-radius: 18px;
  }

  .button,
  .btn {
    min-height: 54px;
    padding: 0 22px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .header__link.is-active::after,
  .header__cta.is-active::after {
    height: 1px;
    bottom: -4px;
  }

  .button,
  .btn {
    width: 100%;
  }
}

@media (max-width: 300px) {
  body {
    font-size: 14px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .panel,
  .card,
  .media-frame,
  .video-frame,
  .image-frame {
    border-radius: 16px;
  }
}