:root {
  --obsidian: #070706;
  --obsidian-soft: #0d0d0b;
  --charcoal: #171715;
  --charcoal-light: #24231f;
  --ivory: #fff8ea;
  --ivory-muted: #d8cfbc;
  --gold: #d8b76a;
  --gold-deep: #9b7432;
  --emerald: #0d5c49;
  --emerald-soft: #123b32;
  --burgundy: #7b2036;
  --burgundy-soft: #461827;
  --line: rgba(216, 183, 106, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --container: 1160px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ivory);
  background:
    radial-gradient(circle at 14% 0%, rgba(216, 183, 106, 0.12), transparent 24rem),
    radial-gradient(circle at 84% 8%, rgba(13, 92, 73, 0.18), transparent 28rem),
    var(--obsidian);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

p {
  color: var(--ivory-muted);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.js-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--obsidian);
  opacity: 1;
  visibility: visible;
  transition: opacity var(--transition), visibility var(--transition);
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.dot,
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(216, 183, 106, 0.65);
}

.dot {
  animation: glide 1.2s ease-in-out infinite;
}

.dots {
  display: inline-flex;
  gap: 7px;
}

.dots span {
  opacity: 0.34;
  animation: pulse 1.2s ease-in-out infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.12s;
}

.dots span:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes glide {
  50% {
    transform: translateX(14px);
  }
}

@keyframes pulse {
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.sub-header {
  display: none;
  border-bottom: 1px solid rgba(255, 248, 234, 0.08);
  background: rgba(7, 7, 6, 0.92);
}

.sub-header-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.88rem;
}

.contact-strip {
  display: flex;
  gap: 24px;
  color: var(--ivory-muted);
}

.contact-strip a,
.footer-contact a,
.legal-body a {
  color: var(--gold);
}

.age-strip {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.header-area {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 248, 234, 0.08);
  background: rgba(7, 7, 6, 0.76);
  backdrop-filter: blur(18px);
  transition: min-height var(--transition), background var(--transition), box-shadow var(--transition);
}

.header-area.background-header {
  min-height: 68px;
  background: rgba(7, 7, 6, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

.main-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height var(--transition);
}

.background-header .main-nav {
  min-height: 68px;
}

.logo {
  display: grid;
  gap: 0;
  color: var(--ivory);
  line-height: 1.1;
}

.logo span,
.footer-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo small {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  position: fixed;
  inset: 78px 0 auto 0;
  display: none;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 6, 0.98);
  box-shadow: var(--shadow);
}

.nav.is-open {
  display: grid;
  gap: 6px;
}

.nav a {
  display: block;
  padding: 14px 12px;
  border-radius: var(--radius);
  color: var(--ivory-muted);
  font-weight: 650;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
  background: rgba(216, 183, 106, 0.09);
}

.nav-cta {
  border: 1px solid rgba(216, 183, 106, 0.45);
  color: var(--obsidian) !important;
  background: linear-gradient(135deg, var(--gold), #f4df9b) !important;
  text-align: center;
}

.menu-trigger {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 183, 106, 0.36);
  border-radius: var(--radius);
  background: rgba(216, 183, 106, 0.08);
  cursor: pointer;
}

.menu-trigger span,
.menu-trigger span::before,
.menu-trigger span::after {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  content: "";
  transition: transform var(--transition), opacity var(--transition);
}

.menu-trigger span {
  top: 21px;
}

.menu-trigger span::before {
  top: -7px;
  left: 0;
}

.menu-trigger span::after {
  top: 7px;
  left: 0;
}

.menu-trigger.active span {
  background: transparent;
}

.menu-trigger.active span::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-trigger.active span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 76px 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 6, 0.94), rgba(7, 7, 6, 0.64) 54%, rgba(7, 7, 6, 0.34)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, var(--obsidian));
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}

.hero-copy {
  max-width: 780px;
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 10vw, 5.9rem);
  line-height: 0.98;
  font-weight: 700;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold), #f2d88d);
  box-shadow: 0 14px 32px rgba(216, 183, 106, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(216, 183, 106, 0.34);
}

.btn-secondary {
  color: var(--ivory);
  border-color: rgba(255, 248, 234, 0.22);
  background: rgba(255, 248, 234, 0.06);
}

.btn-secondary:hover {
  border-color: rgba(216, 183, 106, 0.5);
  background: rgba(216, 183, 106, 0.12);
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.hero-panel,
.age-notice,
.notice-card,
.accent-card,
.feature-card,
.reason-card,
.contact-card,
.experience-card,
.program-list article,
.responsible-card,
.legal-toc,
.legal-body {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(36, 35, 31, 0.88), rgba(13, 13, 11, 0.9));
  box-shadow: var(--shadow);
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.hero-panel div {
  padding: 22px;
  background: rgba(255, 248, 234, 0.035);
}

.hero-panel span,
.feature-icon,
.program-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid rgba(216, 183, 106, 0.36);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ivory);
  font-size: 1.04rem;
}

.hero-panel p,
.age-notice p {
  margin: 0;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(18, 59, 50, 0.16), rgba(70, 24, 39, 0.12));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.showcase-copy h2 {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 3.7rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.section-copy p {
  font-size: 1.02rem;
}

.split-grid,
.showcase-grid,
.program-grid,
.responsible-grid,
.contact-grid,
.legal-grid,
.faq-layout {
  display: grid;
  gap: 34px;
}

.image-stack {
  position: relative;
}

.image-stack img,
.experience-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.accent-card {
  position: relative;
  margin: -54px 18px 0;
  padding: 18px;
}

.accent-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
}

.accent-card span {
  display: block;
  color: var(--ivory-muted);
}

.accent-card.burgundy {
  background: linear-gradient(145deg, rgba(123, 32, 54, 0.92), rgba(13, 13, 11, 0.94));
}

.info-table {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.info-table li {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-bottom: 1px solid rgba(216, 183, 106, 0.12);
  background: rgba(255, 248, 234, 0.03);
}

.info-table li:last-child {
  border-bottom: 0;
}

.info-table span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-table strong {
  color: var(--ivory);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ivory-muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(216, 183, 106, 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold) 0 34%, transparent 38%);
  content: "";
}

.card-grid,
.reason-grid,
.responsible-cards,
.contact-cards {
  display: grid;
  gap: 18px;
}

.feature-card,
.reason-card,
.responsible-card {
  padding: 24px;
}

.feature-card h3,
.reason-card h3,
.responsible-card h3,
.experience-card h3,
.program-list h3 {
  margin-bottom: 10px;
  color: var(--ivory);
  font-size: 1.24rem;
}

.feature-card p,
.reason-card p,
.responsible-card p,
.experience-card p,
.program-list p {
  margin-bottom: 0;
}

.showcase-section {
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 6, 0.92), rgba(7, 7, 6, 0.78)),
    var(--showcase-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.showcase-copy {
  align-self: start;
}

.faq-section {
  background: rgba(255, 248, 234, 0.03);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(23, 23, 21, 0.72);
}

.faq-question {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  padding: 18px;
  color: var(--ivory);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 183, 106, 0.4);
  border-radius: 50%;
  color: var(--gold);
  content: "+";
}

.accordion-item.is-open .faq-question {
  color: var(--gold);
}

.accordion-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.accordion-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin-bottom: 0;
}

.contact-preview {
  padding-bottom: 96px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 22px;
  font-style: normal;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 183, 106, 0.5);
}

.contact-card span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.age-notice {
  padding: 28px;
  align-self: end;
}

.age-notice strong {
  display: block;
  color: var(--gold);
  font-size: clamp(3rem, 14vw, 7rem);
  line-height: 0.9;
  font-family: Georgia, "Times New Roman", serif;
}

.notice-band {
  padding: 36px 0 0;
}

.notice-card {
  padding: 24px;
  border-color: rgba(216, 183, 106, 0.42);
  background: linear-gradient(135deg, rgba(123, 32, 54, 0.78), rgba(13, 92, 73, 0.5));
}

.notice-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ivory);
  font-size: 1.2rem;
}

.notice-card p {
  margin-bottom: 0;
  color: var(--ivory);
}

.experience-grid,
.program-list {
  display: grid;
  gap: 22px;
}

.experience-card {
  overflow: hidden;
}

.experience-card div {
  padding: 22px;
}

.experience-card img {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.program-list article {
  padding: 22px;
}

.responsible-section {
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.96), rgba(7, 7, 6, 0.86)),
    radial-gradient(circle at 85% 0%, rgba(216, 183, 106, 0.16), transparent 30rem);
}

.legal-hero {
  min-height: 54vh;
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.legal-content {
  padding-top: 52px;
}

.legal-toc {
  position: sticky;
  top: 94px;
  align-self: start;
  padding: 20px;
}

.legal-toc strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
}

.legal-toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid rgba(216, 183, 106, 0.12);
  color: var(--ivory-muted);
}

.legal-toc a:hover {
  color: var(--gold);
}

.legal-body {
  padding: 24px;
}

.legal-section {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(216, 183, 106, 0.14);
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  margin-bottom: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050504;
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ivory);
}

.responsible-note {
  padding: 14px;
  border: 1px solid rgba(216, 183, 106, 0.3);
  border-radius: var(--radius);
  color: var(--gold);
  background: rgba(216, 183, 106, 0.07);
  font-weight: 700;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: var(--ivory-muted);
}

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

.footer-contact p {
  margin: 0 0 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 183, 106, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(216, 207, 188, 0.72);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(216, 183, 106, 0.38);
  border-radius: var(--radius);
  background: rgba(7, 7, 6, 0.96);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cookie-actions a {
  color: var(--gold);
  font-weight: 700;
}

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

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

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

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

@media (min-width: 700px) {
  .sub-header {
    display: block;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid,
  .reason-grid,
  .responsible-cards,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) 1fr;
  }

  .experience-card img {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
}

@media (min-width: 960px) {
  .menu-trigger {
    display: none;
  }

  .nav {
    position: static;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav a {
    padding: 10px 13px;
    font-size: 0.94rem;
  }

  .nav-cta {
    padding-inline: 18px !important;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
  }

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

  .split-grid,
  .program-grid,
  .responsible-grid,
  .contact-grid,
  .faq-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
  }

  .split-grid-reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .showcase-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

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

  .legal-grid {
    grid-template-columns: 280px minmax(0, 1fr);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.1fr 0.7fr 0.9fr;
  }
}

@media (min-width: 1180px) {
  .nav a {
    padding-inline: 16px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero {
    padding: 56px 0;
  }

  .section {
    padding: 58px 0;
  }

  .btn {
    width: 100%;
  }

  .legal-body {
    padding: 18px;
  }
}
