:root {
  --midnight: #050505;
  --graphite: #141414;
  --graphite-soft: #22201d;
  --gold: #c9a45c;
  --gold-soft: #ead7a4;
  --emerald: #0e4f3d;
  --burgundy: #641f2c;
  --ivory: #f7f0df;
  --muted: #c9c0ad;
  --line: rgba(234, 215, 164, 0.22);
  --surface: rgba(255, 255, 255, 0.055);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  --default-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --heading-font: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--midnight);
  font-family: var(--default-font);
  line-height: 1.65;
}

body.mobile-nav-active {
  overflow: hidden;
}

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

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--ivory);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--ivory);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
}

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

.section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.dark-section {
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(100, 31, 44, 0.18), transparent 28%),
    linear-gradient(180deg, var(--midnight), var(--graphite));
}

.soft-section {
  color: var(--graphite);
  background: var(--ivory);
}

.soft-section h2,
.soft-section h3 {
  color: var(--graphite);
}

.sticky-top {
  position: sticky;
  top: 0;
}

.header {
  z-index: 997;
  padding: 1rem 0;
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(234, 215, 164, 0.14);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.scrolled .header {
  padding: 0.7rem 0;
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.34);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ivory);
  font-weight: 700;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  font-family: var(--heading-font);
  font-size: 1.3rem;
}

.sitename {
  font-family: var(--heading-font);
  font-size: 1.58rem;
  line-height: 1;
}

.navmenu {
  margin-left: auto;
}

.navmenu ul {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.navmenu a {
  display: block;
  padding: 0.75rem 0.9rem;
  color: rgba(247, 240, 223, 0.82);
  border-radius: 8px;
  font-size: 0.96rem;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--gold-soft);
  background: rgba(201, 164, 92, 0.1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1rem;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(201, 164, 92, 0.22);
}

.header-cta:hover {
  color: var(--midnight);
  transform: translateY(-1px);
}

.mobile-nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 5px auto;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-active .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-active .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-active .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 7rem 0;
}

.sub-hero {
  min-height: 78vh;
}

.hero img,
.image-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay,
.band-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.5)),
    radial-gradient(circle at 70% 25%, rgba(14, 79, 61, 0.36), transparent 30%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.88));
}

.hero-content,
.band-content {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 720px;
  color: rgba(247, 240, 223, 0.84);
  font-size: 1.2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.25rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  color: var(--midnight);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 34px rgba(201, 164, 92, 0.22);
}

.btn-primary:hover {
  color: var(--midnight);
  box-shadow: 0 22px 42px rgba(201, 164, 92, 0.31);
}

.btn-outline {
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.btn-outline:hover {
  color: var(--gold-soft);
  border-color: rgba(234, 215, 164, 0.62);
  background: rgba(201, 164, 92, 0.12);
}

.soft-section .btn-outline {
  color: var(--graphite);
  border-color: rgba(20, 20, 20, 0.2);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: center;
}

.split-grid.reverse .image-frame {
  order: 1;
}

.split-copy {
  max-width: 620px;
}

.split-copy p,
.section-title p,
.feature-card p,
.reason-grid p,
.image-card p,
.responsible-card p,
.legal-content p,
.legal-content li {
  color: rgba(247, 240, 223, 0.74);
}

.soft-section p,
.soft-section li {
  color: rgba(20, 20, 20, 0.76);
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--emerald);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.mini-metrics div {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-metrics strong,
.mini-metrics span {
  display: block;
}

.mini-metrics strong {
  color: var(--gold-soft);
  font-size: 1.35rem;
  line-height: 1;
}

.mini-metrics span {
  margin-top: 0.45rem;
  color: rgba(247, 240, 223, 0.7);
  font-size: 0.86rem;
}

.section-title {
  max-width: 760px;
  margin-bottom: 2.8rem;
}

.card-grid,
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card,
.responsible-card,
.age-notice,
.contact-panel,
.legal-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.feature-card,
.responsible-card {
  padding: 1.35rem;
}

.feature-card {
  min-height: 16rem;
}

.feature-card:hover,
.responsible-card:hover,
.image-card:hover {
  border-color: rgba(234, 215, 164, 0.48);
  transform: translateY(-4px);
}

.feature-card,
.responsible-card,
.image-card {
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.3rem;
  color: var(--gold-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(14, 79, 61, 0.36);
  font-weight: 800;
}

.image-band {
  min-height: 680px;
  display: flex;
  align-items: center;
}

.band-content {
  max-width: 980px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.reason-grid div {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.faq-container {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.soft-section .faq-item {
  background: rgba(20, 20, 20, 0.035);
  border-color: rgba(20, 20, 20, 0.12);
}

.faq-item h3 {
  margin: 0;
  font-family: var(--default-font);
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  visibility: hidden;
  opacity: 0;
  transition: grid-template-rows 0.25s ease, opacity 0.25s ease, padding 0.25s ease;
}

.faq-content p {
  overflow: hidden;
  margin-bottom: 0;
}

.faq-active {
  background: rgba(201, 164, 92, 0.09);
  border-color: rgba(234, 215, 164, 0.48);
}

.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 0.85rem;
}

.faq-toggle {
  position: absolute;
  top: 1.08rem;
  right: 1rem;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.75rem;
  height: 2px;
  background: var(--gold-soft);
  transform: translate(-50%, -50%);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 0.2s ease;
}

.faq-active .faq-toggle::after {
  opacity: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem;
}

.soft-section .contact-panel {
  background: linear-gradient(135deg, #fff8e8, #f3e5c4);
  border-color: rgba(20, 20, 20, 0.11);
  color: var(--graphite);
}

.contact-list p {
  margin-bottom: 0.65rem;
}

.contact-list .btn {
  margin-top: 1rem;
}

.alert-section {
  padding: 2.5rem 0;
  background: var(--graphite);
}

.age-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem;
  background:
    linear-gradient(135deg, rgba(100, 31, 44, 0.32), rgba(14, 79, 61, 0.22)),
    rgba(255, 255, 255, 0.05);
}

.age-notice strong {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 8px;
  font-size: 1.45rem;
}

.age-notice p {
  margin: 0;
  color: rgba(247, 240, 223, 0.82);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card div {
  padding: 1.25rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list div {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.responsible-section {
  background:
    linear-gradient(180deg, var(--ivory), #efe0bd);
  color: var(--graphite);
}

.responsible-section h2,
.responsible-section h3 {
  color: var(--graphite);
}

.responsible-section .eyebrow {
  color: var(--burgundy);
}

.responsible-card {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(20, 20, 20, 0.12);
}

.responsible-card p {
  color: rgba(20, 20, 20, 0.74);
}

.page-hero {
  padding: 6rem 0 5rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(14, 79, 61, 0.36), transparent 30%),
    linear-gradient(135deg, var(--midnight), var(--graphite) 58%, #251016);
}

.page-hero .container {
  max-width: 850px;
}

.page-hero p {
  color: rgba(247, 240, 223, 0.78);
}

.legal-section {
  background: #0a0a0a;
}

.legal-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 6.5rem;
  padding: 1.4rem;
}

.legal-aside h2 {
  font-size: 1.6rem;
}

.legal-aside p {
  color: rgba(247, 240, 223, 0.72);
  font-size: 0.95rem;
}

.legal-content {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.65rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(234, 215, 164, 0.16);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr;
  gap: 2rem;
}

.footer h3 {
  font-family: var(--default-font);
  font-size: 0.98rem;
  text-transform: uppercase;
}

.footer p,
.footer li {
  color: rgba(247, 240, 223, 0.72);
}

.footer ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
}

.responsible-note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-soft);
  background: rgba(201, 164, 92, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(234, 215, 164, 0.14);
}

.footer-bottom p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  color: var(--ivory);
  background: rgba(10, 10, 10, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

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

.cookie-banner p {
  margin: 0;
  color: rgba(247, 240, 223, 0.78);
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.32);
}

.scroll-top::before {
  content: "";
  width: 0.78rem;
  height: 0.78rem;
  border-left: 3px solid var(--midnight);
  border-top: 3px solid var(--midnight);
  transform: translateY(0.2rem) rotate(45deg);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.cookie-banner:not([hidden]) + .scroll-top,
body.cookie-visible .scroll-top {
  bottom: 7rem;
}

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

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

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

  h2 {
    font-size: 2.2rem;
  }

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

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

@media (max-width: 920px) {
  .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: start stretch;
    padding: 6rem 1rem 1rem;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-nav-active .navmenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navmenu ul {
    display: grid;
    gap: 0.6rem;
    width: min(100%, 540px);
    margin: 0 auto;
  }

  .navmenu a {
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    font-size: 1.05rem;
  }

  .split-grid,
  .contact-panel,
  .legal-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .split-grid.reverse .image-frame {
    order: 0;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4.2rem 0;
  }

  .hero {
    min-height: 82vh;
    padding: 5rem 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .card-grid,
  .responsible-grid,
  .reason-grid,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .age-notice {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-content {
    padding: 1.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
