:root {
  color-scheme: dark;
  --bg: #0b0a08;
  --bg-2: #12100d;
  --surface: #17130f;
  --surface-2: #211713;
  --wine: #3a1718;
  --gold: #d7b271;
  --gold-2: #f0d99c;
  --text: #f7efe2;
  --muted: #c9baa3;
  --soft: rgba(247, 239, 226, 0.72);
  --line: rgba(215, 178, 113, 0.2);
  --line-strong: rgba(215, 178, 113, 0.36);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(58, 23, 24, 0.42), transparent 32rem),
    linear-gradient(180deg, var(--bg), #110d0b 48%, var(--bg));
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: #171008;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.68;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 8vw, 7.1rem);
  line-height: 0.94;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 6.4vw, 5.95rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1.04;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  line-height: 1.14;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--gold);
  color: #160f08;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(11, 10, 8, 0.9), rgba(11, 10, 8, 0.42) 72%, transparent);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
}

.brand-text strong,
.brand-text small {
  display: block;
  overflow: hidden;
  max-width: 19rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-text small {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 2.2rem);
  color: rgba(247, 239, 226, 0.78);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 0.18s ease;
}

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

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.7rem;
}

.phone-link,
.button,
.round-button {
  -webkit-tap-highlight-color: transparent;
}

.phone-link {
  display: grid;
  width: 2.85rem;
  min-height: 2.85rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 239, 226, 0.06);
}

.phone-link svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: var(--gold-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border: 1px solid rgba(240, 217, 156, 0.64);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.phone-link:hover,
.round-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #f2dca0, #bb8846);
  box-shadow: 0 18px 54px rgba(187, 136, 70, 0.24);
  color: #171008;
}

.button-primary:hover {
  box-shadow: 0 22px 64px rgba(187, 136, 70, 0.36);
}

.button-secondary {
  background: rgba(11, 10, 8, 0.22);
  color: var(--text);
}

.button-small {
  min-height: 2.7rem;
  padding: 0.82rem 1.08rem;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 96svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-picture,
.hero-picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-picture {
  z-index: -3;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 10, 8, 0.84) 0%, rgba(11, 10, 8, 0.57) 39%, rgba(11, 10, 8, 0.16) 72%, rgba(11, 10, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(11, 10, 8, 0.18) 0%, rgba(11, 10, 8, 0.16) 48%, rgba(11, 10, 8, 0.92) 100%);
}

.hero-content {
  align-self: center;
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto;
  padding: 8rem 0 9.5rem;
}

.eyebrow,
.section-kicker,
.tag {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 660px;
  margin-top: 1.25rem;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.35vw, 2.05rem);
  line-height: 1.18;
}

.hero-copy {
  max-width: 570px;
  margin-top: 1rem;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-strip {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 0;
  left: clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(11, 10, 8, 0.64);
  backdrop-filter: blur(16px);
}

.hero-strip span {
  min-height: 4.4rem;
  padding: 1.22rem 1rem;
  border-right: 1px solid var(--line);
  color: rgba(247, 239, 226, 0.9);
  font-size: clamp(0.84rem, 1.15vw, 1rem);
}

.hero-strip span:last-child {
  border-right: 0;
}

.section {
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.split,
.video-section,
.certificate,
.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.flow {
  display: grid;
  gap: 1.1rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.3rem;
}

.social-row a {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(247, 239, 226, 0.05);
  color: var(--gold-2);
  font-size: 0.92rem;
  font-weight: 800;
}

.directions h2 {
  max-width: 820px;
  margin-top: 0.85rem;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 3.2rem);
}

.direction-grid article {
  min-height: 0;
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(24, 19, 15, 0.96), rgba(11, 10, 8, 0.96)),
    var(--surface);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.direction-grid p {
  margin-top: 0.75rem;
  font-size: 0.98rem;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100vw - var(--wrap)) / 2));
  padding-left: max(1rem, calc((100vw - var(--wrap)) / 2));
  background:
    linear-gradient(180deg, rgba(58, 23, 24, 0.34), rgba(18, 16, 13, 0.98)),
    linear-gradient(90deg, rgba(215, 178, 113, 0.08), transparent 38%);
  border-block: 1px solid rgba(215, 178, 113, 0.09);
}

.section-heading,
.gallery-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.section-heading {
  max-width: 850px;
}

.video-section {
  align-items: center;
}

.video-copy h2,
.intro h2,
.reasons h2,
.certificate h2,
.faq h2,
.final-cta h2 {
  margin-top: 0.85rem;
}

.video-copy p:last-child,
.certificate p {
  margin-top: 1.15rem;
}

.video-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #050504;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: var(--shadow);
}

.process-grid article {
  min-height: 21rem;
  padding: clamp(1.2rem, 2.2vw, 1.8rem);
  background: linear-gradient(180deg, rgba(24, 19, 15, 0.98), rgba(10, 9, 8, 0.98));
}

.process-grid span {
  display: inline-block;
  margin-bottom: 4.2rem;
  color: rgba(240, 217, 156, 0.64);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
}

.process-grid p {
  margin-top: 1rem;
  font-size: 0.98rem;
}

.gallery-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.gallery-controls {
  display: flex;
  gap: 0.65rem;
}

.round-button {
  display: grid;
  width: 2.85rem;
  min-height: 2.85rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 239, 226, 0.06);
  color: var(--gold-2);
  cursor: pointer;
}

.round-button svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(280px, 33%);
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--gold) rgba(247, 239, 226, 0.08);
}

.gallery-track figure {
  position: relative;
  min-height: 34rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  scroll-snap-align: start;
}

.gallery-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-track figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(240, 217, 156, 0.28);
  background: rgba(11, 10, 8, 0.72);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 750;
  line-height: 1.35;
}

.reasons-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.62fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(24, 19, 15, 0.98), rgba(58, 23, 24, 0.48)),
    rgba(11, 10, 8, 0.82);
  box-shadow: var(--shadow);
}

.reasons-panel p {
  margin-top: 1.2rem;
}

.check-list,
.price-card ul,
.certificate-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.price-card li,
.certificate-list li {
  position: relative;
  padding-left: 1.65rem;
  color: rgba(247, 239, 226, 0.88);
  line-height: 1.55;
}

.check-list li::before,
.price-card li::before,
.certificate-list li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--gold-2);
  content: "";
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 1.15rem;
  min-height: 33rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(11, 10, 8, 0.62);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(58, 23, 24, 0.8), rgba(11, 10, 8, 0.88)),
    var(--surface-2);
}

.price-card p {
  font-size: 0.98rem;
}

.price-line {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.price-line strong {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
}

.price-line span {
  color: var(--muted);
  font-size: 0.92rem;
}

.enrollment {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.enrollment h2 {
  margin-top: 0.85rem;
}

.enrollment-panel {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(24, 19, 15, 0.98), rgba(58, 23, 24, 0.44)),
    var(--surface);
  box-shadow: var(--shadow);
}

.enrollment-panel ol {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(247, 239, 226, 0.9);
  line-height: 1.55;
}

.enrollment-panel p {
  font-size: 0.98rem;
}

.enrollment-panel .button {
  justify-self: start;
}

.certificate {
  align-items: center;
}

.certificate .button {
  margin-top: 1.8rem;
}

.certificate-list {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(24, 19, 15, 0.98), rgba(58, 23, 24, 0.52));
  box-shadow: var(--shadow);
}

.faq {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.faq details {
  border: 1px solid var(--line);
  background: rgba(247, 239, 226, 0.04);
}

.faq summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  padding: 0 1.25rem 1.25rem;
}

.faq a {
  color: var(--gold-2);
}

.final-cta {
  width: min(100% - 2rem, var(--wrap));
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  align-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(58, 23, 24, 0.78), rgba(11, 10, 8, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
}

.final-actions {
  justify-content: end;
  margin-top: 0;
}

.phone-text {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  color: var(--gold-2);
  font-weight: 850;
}

.site-footer {
  display: flex;
  width: min(100% - 2rem, var(--wrap));
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 2rem 0 2.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--text);
}

.site-footer span {
  margin-top: 0.32rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--gold-2);
}

.mobile-cta {
  display: none;
}

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

  .nav-links {
    display: none;
  }

  .split,
  .video-section,
  .certificate,
  .final-cta,
  .enrollment,
  .reasons-panel {
    grid-template-columns: 1fr;
  }

  .direction-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
  }

  .final-actions {
    justify-content: start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(4.35rem + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .site-header {
    padding: 0.72rem 0.86rem;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand-text small {
    display: none;
  }

  .brand-text strong {
    max-width: 10rem;
    font-size: 0.85rem;
  }

  .phone-link,
  .round-button {
    width: 2.5rem;
    min-height: 2.5rem;
  }

  .button-small {
    min-height: 2.5rem;
    padding: 0.72rem 0.86rem;
  }

  .hero {
    min-height: 830px;
  }

  .hero-picture img {
    object-fit: contain;
    object-position: center top;
  }

  .hero-picture {
    bottom: auto;
    height: 21rem;
    background: #0b0a08;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 10, 8, 0.06) 0%, rgba(11, 10, 8, 0.34) 28%, rgba(11, 10, 8, 0.97) 51%, rgba(11, 10, 8, 0.99) 100%),
      linear-gradient(90deg, rgba(11, 10, 8, 0.62), rgba(11, 10, 8, 0.14), rgba(11, 10, 8, 0.52));
  }

  .hero-content {
    align-self: end;
    width: min(100% - 1.55rem, var(--wrap));
    padding: 12rem 0 10.6rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-strip {
    right: 0.8rem;
    left: 0.8rem;
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    min-height: auto;
    padding: 0.78rem 0.95rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    width: min(100% - 1.55rem, var(--wrap));
  }

  .dark-band {
    padding-right: 0.78rem;
    padding-left: 0.78rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: 16.5rem;
  }

  .process-grid span {
    margin-bottom: 2.2rem;
  }

  .gallery-head {
    grid-template-columns: 1fr;
  }

  .gallery-controls {
    display: none;
  }

  .gallery-track {
    grid-auto-columns: 82%;
    gap: 0.75rem;
  }

  .gallery-track figure {
    min-height: 28rem;
  }

  .reasons-panel,
  .final-cta {
    padding: 1.15rem;
  }

  .site-footer {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 0.55rem;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(11, 10, 8, 0.88);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: grid;
    min-height: 2.95rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    font-weight: 850;
  }

  .mobile-cta a:last-child {
    border-color: rgba(240, 217, 156, 0.72);
    background: linear-gradient(135deg, #f2dca0, #bb8846);
    color: #171008;
  }
}

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