:root {
  --bg: #14100c;
  --bg-soft: #221b13;
  --panel: rgba(20, 16, 12, 0.74);
  --panel-strong: rgba(20, 16, 12, 0.92);
  --gold: #b28e4f;
  --gold-light: #dfc17f;
  --gold-dark: #7f6335;
  --paper: #f3eadc;
  --text: #f7efe4;
  --muted: #cfc1ad;
  --muted-dark: #766a5c;
  --line: rgba(223, 193, 127, 0.24);
  --line-soft: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 4%, rgba(178, 142, 79, 0.2), transparent 26rem),
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(180deg, #0f0b08 0%, var(--bg) 46%, #100c09 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 42px 42px;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 16, 12, 0.76);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(20, 16, 12, 0.95);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(3rem, 5vw, 4.35rem);
  height: clamp(3rem, 5vw, 4.35rem);
  object-fit: contain;
}

.brand-text {
  color: var(--gold-light);
  font-size: clamp(0.74rem, 1.3vw, 1.1rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.65rem, 1.25vw, 1.15rem);
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.1rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.header-cta,
.button-primary {
  color: #14100c;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 34px rgba(178, 142, 79, 0.18);
}

.header-cta {
  flex-direction: column;
  min-height: 3.35rem;
  gap: 0.12rem;
  padding: 0.55rem 1.15rem;
}

.header-cta span {
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.header-cta strong {
  font-size: clamp(1.04rem, 1.35vw, 1.26rem);
  line-height: 1;
  white-space: nowrap;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 1.14rem;
  height: 2px;
  margin: 0.25rem auto;
  background: currentColor;
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

section {
  scroll-margin-top: 6rem;
}

.section-kicker {
  display: inline-flex;
  max-width: 100%;
  margin: 0 0 0.9rem;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h1,
h2 {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  hyphens: manual;
}

h1 span,
h2 span {
  color: var(--gold-light);
  text-shadow: 0 0 30px rgba(178, 142, 79, 0.18);
}

h1 span,
h2 span {
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: manual;
  white-space: nowrap;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 5.2vw, 4.9rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.5rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.66;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding: clamp(2.4rem, 6vw, 5.2rem) 0 clamp(2.4rem, 6vw, 4.8rem);
}

.hero-copy {
  min-width: 0;
}

.hero-lines {
  display: grid;
  gap: 0.35rem;
  max-width: 34rem;
  margin: 1.3rem 0;
  padding-left: 1.1rem;
  border-left: 4px solid var(--gold);
}

.hero-lines p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 820;
  line-height: 1.18;
}

.hero-lead {
  max-width: 43rem;
  color: var(--paper);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 720;
  line-height: 1.3;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.hero-media {
  position: relative;
  min-height: clamp(25rem, 42vw, 34rem);
  display: grid;
}

.topic-card,
.call-section {
  margin: clamp(2rem, 5vw, 4.2rem) 0;
  padding: clamp(1.3rem, 3.4vw, 2.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(178, 142, 79, 0.14), transparent 22rem),
    var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.topic-stack {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}

.topic-card {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.98fr);
  gap: clamp(1.3rem, 4vw, 2.6rem);
  align-items: center;
  margin: 0;
}

.topic-card:nth-child(even) {
  grid-template-columns: minmax(18rem, 0.98fr) minmax(0, 1.02fr);
}

.topic-card:nth-child(even) .topic-copy {
  grid-column: 2;
}

.topic-card:nth-child(even) .media-frame {
  grid-column: 1;
  grid-row: 1;
}

.topic-number {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  border: 1px solid rgba(223, 193, 127, 0.42);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.25rem;
  font-weight: 950;
  background: rgba(178, 142, 79, 0.09);
}

.topic-card h2 {
  max-width: 16ch;
  font-size: clamp(2.45rem, 5vw, 4.6rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.topic-copy p {
  max-width: 46rem;
}

.text-list {
  display: grid;
  gap: 0.55rem;
  max-width: 46rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.text-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.text-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(178, 142, 79, 0.32);
  transform: translateY(-50%);
}

.topic-copy .button {
  margin-top: 0.85rem;
}

.media-frame {
  position: relative;
  min-height: clamp(18rem, 30vw, 25rem);
  border: 1px solid rgba(20, 16, 12, 0.12);
  border-radius: 16px;
  background: #f8f3e8;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-media .media-frame {
  min-height: 100%;
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.media-frame video {
  background: #111;
}

.call-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: clamp(1.3rem, 4vw, 2.8rem);
  align-items: center;
  border-top: 5px solid var(--gold);
  background:
    radial-gradient(circle at 82% 20%, rgba(223, 193, 127, 0.18), transparent 20rem),
    var(--panel-strong);
}

.call-copy h2 {
  max-width: 14ch;
}

.call-card {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border: 1px solid rgba(223, 193, 127, 0.44);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.phone-line {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(4.2rem, 8vw, 5.4rem);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #14100c;
  font-size: clamp(1.3rem, 3vw, 2.24rem);
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.1rem, 3vw, 1.7rem);
  justify-items: center;
  padding: clamp(1.5rem, 4vw, 2.6rem) clamp(1rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0, rgba(178, 142, 79, 0.17), transparent 24rem),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  color: var(--text);
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  max-width: 42rem;
  text-align: center;
}

.footer-brand img {
  display: block;
  width: 4.1rem;
  height: 4.1rem;
  border: 1px solid rgba(223, 193, 127, 0.28);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.4;
}

.footer-brand strong {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.2;
}

.site-footer a {
  text-decoration: none;
}

.footer-link-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem;
  width: min(100%, 60rem);
}

.footer-link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid rgba(178, 142, 79, 0.36);
  border-radius: 999px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 820;
  line-height: 1.1;
  background: rgba(0, 0, 0, 0.16);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.footer-link-grid a:nth-child(-n + 4) {
  color: var(--text);
}

.footer-link-grid a:hover,
.footer-link-grid a:focus-visible {
  border-color: rgba(223, 193, 127, 0.62);
  color: var(--text);
  background: rgba(178, 142, 79, 0.16);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes dash {
  to { stroke-dashoffset: -220; }
}

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

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

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 4.75rem 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(20, 16, 12, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
  }

  .header-cta {
    display: none;
  }

  .hero,
  .topic-card,
  .topic-card:nth-child(even),
  .call-section {
    grid-template-columns: 1fr;
  }

  .topic-card:nth-child(even) .topic-copy,
  .topic-card:nth-child(even) .media-frame {
    grid-column: auto;
    grid-row: auto;
  }

}

@media (max-width: 700px) {
  .site-header {
    padding: 0.75rem;
  }

  .brand {
    max-width: min(70vw, 19rem);
    gap: 0.55rem;
  }

  .brand-logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .brand-text {
    font-size: clamp(0.7rem, 3vw, 0.78rem);
    white-space: normal;
  }

  main {
    width: min(100% - 1rem, 1180px);
  }

  section {
    scroll-margin-top: 5rem;
  }

  .hero {
    min-height: auto;
    padding: 1.8rem 0 2.5rem;
  }

  h1 {
    max-width: 11ch;
    font-size: 3.35rem;
  }

  h2,
  .topic-card h2,
  .call-copy h2 {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 2.55rem);
  }

  .button-row {
    display: grid;
  }

  .topic-card,
  .call-section {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 14px;
  }

  .hero-media {
    min-height: 23rem;
  }

  .media-frame {
    min-height: 16rem;
  }

  .phone-link {
    font-size: clamp(1.16rem, 5.75vw, 1.72rem);
  }

  .footer-brand img {
    width: 3.4rem;
    height: 3.4rem;
  }

  .footer-link-grid {
    justify-content: center;
    gap: 0.62rem;
  }

  .footer-link-grid a {
    flex: 1 1 calc(50% - 0.62rem);
    min-width: 9.2rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 3rem;
  }

  .footer-link-grid a {
    flex-basis: 100%;
    min-width: 0;
  }
}
