
:root {
  --bg: #090607;
  --panel: #130d10;
  --panel-soft: #1a1015;
  --text: #fff7ee;
  --muted: #c9b6aa;
  --gold: #d7b46a;
  --wine: #751b35;
  --wine-dark: #3c0d1b;
  --line: rgba(255, 247, 238, 0.13);
  --shadow: rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(117, 27, 53, 0.28), transparent 32rem), var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(9, 6, 7, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 190px;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  display: none;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(215, 180, 106, 0.55);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold), #f1dca1);
  color: #1b0d08 !important;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(215, 180, 106, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 140px clamp(20px, 5vw, 72px) 76px;
  background:
    linear-gradient(90deg, rgba(9, 6, 7, 0.9), rgba(9, 6, 7, 0.54), rgba(9, 6, 7, 0.74)),
    linear-gradient(180deg, rgba(9, 6, 7, 0.1), rgba(9, 6, 7, 0.96)),
    var(--hero-image),
    linear-gradient(135deg, #1b0d10, #3c0d1b);
  background-position: center;
  background-size: cover;
}

.hero-content {
  max-width: 760px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  max-width: 680px;
  margin: 22px auto 28px;
  color: #f1dfd3;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.page-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.page-content h2,
.page-content h3 {
  max-width: 780px;
  margin: 48px auto 14px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
}

.page-content h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.page-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.page-content p,
.page-content ul {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.05rem;
  text-align: left;
}

.page-content a {
  color: var(--gold);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.page-content p:has(> a:only-child) a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  text-decoration: none;
}

.page-content p:has(> a:only-child) {
  text-align: center;
}

figure {
  max-width: 760px;
  margin: 54px auto;
}

figure img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--wine-dark), #090607);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow);
}

.site-footer {
  padding: 56px clamp(20px, 5vw, 72px) 32px;
  background: #060405;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 32px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  text-decoration: none;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer p,
.copyright {
  color: var(--muted);
}

.adult-note {
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.copyright {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(9, 6, 7, 0.96);
    box-shadow: 0 24px 60px var(--shadow);
  }

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

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 22px 56px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.75rem);
    line-height: 1.08;
  }

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