:root {
  --black: #080807;
  --charcoal: #15130f;
  --ink: #201b13;
  --muted: #7a7163;
  --paper: #0d0c0a;
  --ivory: #fffaf0;
  --line: rgba(215, 166, 79, 0.18);
  --gold: #d7a64f;
  --gold-deep: #9a6b25;
  --green: #111a16;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ivory);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  border-bottom: 1px solid rgba(215, 166, 79, 0.14);
  background:
    linear-gradient(180deg, rgba(3, 3, 2, 0.96), rgba(8, 8, 7, 0.78)),
    rgba(8, 8, 7, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-mark {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  padding: 7px;
  border: 1px solid rgba(215, 166, 79, 0.55);
  border-radius: 8px;
  background: radial-gradient(circle at 50% 35%, rgba(215, 166, 79, 0.16), rgba(8, 8, 7, 0.9) 58%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(215, 166, 79, 0.16);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 5px;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--gold);
  font-size: clamp(1.35rem, 1.6vw, 1.75rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(215, 166, 79, 0.32);
}

.brand small {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.78rem, 0.92vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.header-action,
.primary-button,
.secondary-button,
.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.header-action {
  padding: 0 20px;
  color: var(--black);
  background: linear-gradient(135deg, #f6d779, var(--gold));
  box-shadow: 0 14px 32px rgba(215, 166, 79, 0.22);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 3200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 22%, rgba(215, 166, 79, 0.16), rgba(215, 166, 79, 0) 22%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.93) 0%, rgba(8, 8, 7, 0.72) 42%, rgba(8, 8, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.92) 0%, rgba(8, 8, 7, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 36px));
  padding: clamp(190px, 28vh, 270px) 0 158px clamp(18px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.7vw, 1.34rem);
  line-height: 1.62;
}

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

.primary-button,
.secondary-button {
  padding: 0 22px;
}

.primary-button {
  color: var(--black);
  background: var(--gold);
}

.secondary-button {
  color: var(--white);
  border-color: rgba(215, 166, 79, 0.38);
  background: rgba(8, 8, 7, 0.42);
}

.carousel-controls {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 64px);
  bottom: 118px;
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.38);
}

.carousel-controls button.is-active {
  background: var(--gold);
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 64px);
  bottom: 28px;
  left: clamp(18px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(8, 8, 7, 0.66);
  backdrop-filter: blur(12px);
}

.hero-facts span {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--ivory);
  font-weight: 900;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts span:last-child {
  border-right: 0;
  color: var(--gold);
}

.quick-facts,
.feature-section,
.dark-section,
.plans-section,
.contact-band {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.quick-facts article {
  min-height: 230px;
  padding: clamp(26px, 4vw, 44px);
  border-top: 1px solid rgba(215, 166, 79, 0.2);
  background: linear-gradient(180deg, #16120c, #0b0a08);
}

.quick-facts span {
  color: var(--gold-deep);
  font-weight: 900;
}

.quick-facts h2 {
  margin: 18px 0 12px;
  font-size: 1.26rem;
}

.quick-facts p,
.section-heading p,
.distribution-grid p,
.contact-band p {
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.72;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

.section-heading h2,
.contact-band h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.large-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(215, 166, 79, 0.24);
  background: var(--charcoal);
}

.large-photo img {
  width: 100%;
  max-height: 780px;
  object-fit: contain;
  background: var(--charcoal);
}

.dark-section {
  color: var(--white);
  background: var(--green);
}

.dark-section .section-heading p,
.dark-section .distribution-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.distribution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.distribution-grid article {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
}

.distribution-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 900;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.plans-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(215, 166, 79, 0.18);
  background: #11100d;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.plans-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.plans-grid figcaption {
  padding: 18px 22px 22px;
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) minmax(280px, 360px);
  gap: 28px;
  align-items: start;
  color: var(--white);
  background: var(--black);
}

.contact-band h2 {
  color: var(--white);
}

.contact-band p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.contact-form input:focus {
  border-color: var(--gold);
}

.advisor-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 4px;
  padding: 0;
  border: 0;
}

.advisor-selector legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advisor-selector label {
  display: block;
}

.advisor-selector input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.advisor-selector span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
}

.advisor-selector input:checked + span {
  color: var(--black);
  border-color: var(--gold);
  background: var(--gold);
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form button {
  margin-top: 4px;
  color: var(--black);
  background: var(--gold);
}

.contact-form .email-button {
  color: var(--gold);
  border-color: rgba(215, 166, 79, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.form-status.is-error {
  color: #ffb4a8;
}

.form-status.is-success {
  color: #d7f5c2;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-card strong {
  color: var(--gold);
  font-size: 1.16rem;
}

.contact-card small {
  color: rgba(255, 255, 255, 0.66);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.contact-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 166, 79, 0.35);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: #030302;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-facts,
  .quick-facts,
  .distribution-grid,
  .plans-grid,
  .contact-band {
    grid-template-columns: 1fr 1fr;
  }

  .contact-band > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 68px;
    height: 68px;
    padding: 4px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    width: 100%;
    padding: 116px 18px 300px;
  }

  .carousel-controls {
    right: 18px;
    bottom: 255px;
  }

  .hero-facts,
  .quick-facts,
  .distribution-grid,
  .plans-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    bottom: 18px;
  }

  .hero-facts span {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-facts span:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: grid;
  }

  .advisor-selector,
  .form-actions {
    grid-template-columns: 1fr;
  }
}
