@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-3-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #f7f1df;
  --muted: #c9c0a9;
  --night: #0d1110;
  --stone: #151b18;
  --stone-light: #202923;
  --gold: #d8b35d;
  --gold-light: #f1d58d;
  --gold-dark: #8e6d2e;
  --teal: #79b7a4;
  --danger: #ffcf70;
  --line: #4f4937;
  --max-width: 1180px;
  --shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--gold-light);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #fff2c7;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #fff0ad;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: #111;
  background: #fff0ad;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.section--stone {
  background: var(--stone);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Cinzel", serif;
  line-height: 1.18;
  letter-spacing: 0.015em;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 9vw, 5.2rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 5vw, 2.9rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 17, 16, 0.97);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  place-items: center;
  transform: rotate(45deg);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  transform: rotate(-45deg);
}

.desktop-nav {
  display: none;
}

.nav-list,
.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--gold-light);
}

.menu-toggle,
.menu-close {
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--stone);
  cursor: pointer;
  place-items: center;
}

.hamburger {
  position: relative;
  width: 23px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.hamburger::after {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  border-top: 2px solid currentColor;
  content: "";
}

.mobile-menu {
  position: fixed;
  z-index: 1000;
  inset: 0;
  visibility: hidden;
  transition: visibility 300ms;
}

.mobile-menu.is-open {
  visibility: visible;
}

.menu-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms ease;
}

.mobile-menu.is-open .menu-overlay {
  opacity: 1;
}

.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 380px);
  height: 100%;
  padding: 1.25rem;
  border-left: 1px solid var(--gold-dark);
  background: var(--stone);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 300ms ease;
}

.mobile-menu.is-open .menu-panel {
  transform: translateX(0);
}

.menu-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.menu-panel .nav-list {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.menu-panel .nav-list a {
  display: block;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.08rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--line);
  background: #101512;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(5, 8, 7, 0.38);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 510px;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
  padding: 1.5rem 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.hero-scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.cta-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.78rem 1.25rem;
  border: 2px solid var(--gold-light);
  color: #17140d;
  background: var(--gold-light);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.cta-button:hover {
  color: var(--gold-light);
  background: transparent;
}

.cta-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.disclaimer {
  padding: 1.5rem 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  background: #28200f;
}

.disclaimer-inner {
  display: grid;
  align-items: center;
  gap: 1rem;
}

.disclaimer-icon {
  display: grid;
  width: 58px;
  height: 58px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 1.15rem;
  font-weight: 700;
  place-items: center;
}

.disclaimer h2 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.disclaimer p {
  margin: 0;
  color: #f6e8bd;
  font-weight: 600;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.about-copy p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.8rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.screenshot-card {
  margin: 0;
  padding: 0.35rem;
  border: 1px solid var(--line);
  background: #090c0b;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.screenshot-card:nth-child(2),
.screenshot-card:nth-child(4) {
  transform: translateY(1rem);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: #101512;
}

.review-stars {
  margin-bottom: 0.75rem;
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
}

.review-card blockquote {
  margin: 0 0 1.1rem;
  color: #e2dccb;
}

.review-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review-meta strong {
  color: var(--gold-light);
}

.review-meta time {
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

.trust-item {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--stone-light);
}

.trust-item h3 {
  margin-bottom: 0.4rem;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #201a0e;
  text-align: center;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 1.75rem;
  color: #e1d6b9;
  font-size: 1.1rem;
}

.site-footer {
  padding: 3.5rem 0 8rem;
  background: #090c0b;
  content-visibility: auto;
  contain-intrinsic-size: 1px 420px;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-summary {
  max-width: 460px;
  color: var(--muted);
}

.footer-title {
  margin-bottom: 0.85rem;
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #9d9685;
  font-size: 0.9rem;
}

.legal-hero {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
  background: #141a17;
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 7vw, 3.8rem);
}

.legal-hero p {
  margin: 0;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  gap: 2rem;
}

.legal-toc {
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--stone);
}

.legal-toc h2 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-toc li + li {
  margin-top: 0.4rem;
}

.legal-content {
  max-width: 800px;
}

.legal-content section {
  scroll-margin-top: 95px;
}

.legal-content section + section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.legal-content h3 {
  margin-top: 1.6rem;
}

.legal-content p,
.legal-content li {
  color: #d6d0c1;
}

.legal-content ul {
  padding-left: 1.3rem;
}

.notice-box {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid var(--gold);
  background: #28200f;
  color: #f5e8c1;
}

.cookie-banner {
  position: fixed;
  z-index: 1100;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-top: 2px solid var(--gold);
  background: #181d1a;
  box-shadow: 0 -14px 35px rgba(0, 0, 0, 0.38);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
}

.cookie-banner.is-hidden {
  visibility: hidden;
  opacity: 0;
  transform: translateY(110%);
}

.cookie-inner {
  display: grid;
  align-items: center;
  gap: 1rem;
}

.cookie-copy {
  margin: 0;
  color: #f2ecdd;
  font-size: 0.94rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-button {
  min-height: 44px;
  padding: 0.6rem 1rem;
  border: 2px solid var(--gold-light);
  color: #18140d;
  background: var(--gold-light);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-button--secondary {
  color: var(--ink);
  background: transparent;
}

.cookie-button:hover {
  color: var(--ink);
  background: var(--gold-dark);
}

.cookie-button--secondary:hover {
  border-color: var(--ink);
  background: var(--stone-light);
}

@media (min-width: 620px) {
  .disclaimer-inner {
    grid-template-columns: auto 1fr;
  }

  .reviews-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .cookie-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 6.5rem 0;
  }

  .desktop-nav {
    display: block;
  }

  .desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    min-height: 660px;
    padding: 5.5rem 0;
  }

  .hero-grid {
    min-height: 550px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 4rem;
  }

  .legal-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
  }

  .legal-toc {
    position: sticky;
    top: 96px;
  }
}

@media (min-width: 1050px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
