:root {
  --bg: #0c0c0d;
  --bg-soft: #121214;
  --panel: rgba(255,255,255,.035);
  --line: rgba(255,255,255,.13);
  --line-strong: rgba(255,255,255,.22);
  --line-soft-accent: rgba(200,173,131,.28);
  --text: #f2efe9;
  --muted: #aaa59d;
  --muted-2: #77736c;
  --muted-readable: #969087;
  --muted-footer: #b2aca3;
  --accent: #c8ad83;
  --accent-soft: rgba(200,173,131,.12);
  --max: 1180px;
  --radius: 26px;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 26%, rgba(200,173,131,.075), transparent 34rem),
    linear-gradient(180deg, #0b0b0c 0%, #0e0e10 100%);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.page-shell {
  width: min(100%, calc(var(--max) + 48px));
  min-height: 100svh;
  margin-inline: auto;
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 10;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(200,173,131,.42);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 17px;
}

.adult-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line-soft-accent);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  color: #d8cfbf;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: .12em;
}

.language-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #98938b;
  opacity: .95;
}

.language-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lang-separator {
  color: #706c65;
}

.lang-button {
  appearance: none;
  border: 0;
  padding: 7px 1px;
  background: transparent;
  color: var(--muted-2);
  font: inherit;
  cursor: pointer;
  transition: color .2s ease;
}

.lang-button:hover,
.lang-button:focus-visible,
.lang-button.is-active { color: var(--text); }

.language-switch:focus-within .language-icon,
.language-switch:hover .language-icon {
  color: #b5aea3;
}

.lang-button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 3px;
}

main { flex: 1; }

.hero {
  min-height: calc(100svh - 146px);
  padding: clamp(52px, 8vh, 104px) 0 clamp(38px, 7vh, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.hero-copy { position: relative; z-index: 2; min-width: 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(64px, 9vw, 126px);
  line-height: .82;
  letter-spacing: -.065em;
  font-weight: 800;
}

.location {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.positioning {
  max-width: 620px;
  margin-top: clamp(30px, 5vh, 54px);
}

.lead {
  margin: 0;
  font-size: clamp(23px, 2.65vw, 36px);
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 500;
}

.sublead {
  max-width: 56ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.62;
}

.actions { margin-top: 30px; }

.primary-cta {
  width: min(100%, 420px);
  min-height: 58px;
  padding: 0 20px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(200,173,131,.55);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(200,173,131,.16), rgba(200,173,131,.08));
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 18px 55px rgba(0,0,0,.18);
  transition: transform .24s var(--ease), border-color .24s ease, background .24s ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(200,173,131,.82);
  background: linear-gradient(180deg, rgba(200,173,131,.22), rgba(200,173,131,.11));
}

.arrow { color: var(--accent); font-size: 18px; }

.platform-links {
  width: min(100%, 420px);
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.platform-link {
  min-height: 46px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .035em;
  transition: color .2s ease, border-color .2s ease;
}

.platform-link:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.private-note {
  max-width: 54ch;
  margin: 24px 0 0;
  color: #a09a91;
  font-size: 12px;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.04), transparent 32%),
    radial-gradient(circle at 54% 30%, rgba(200,173,131,.12), transparent 28%),
    var(--bg-soft);
  box-shadow: 0 34px 90px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.visual-frame::before {
  inset: 18px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: calc(var(--radius) - 10px);
}

.visual-frame::after {
  width: 120%;
  height: 1px;
  left: -10%;
  top: 62%;
  background: linear-gradient(90deg, transparent, rgba(200,173,131,.32), transparent);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: .96;
}

.visual-kicker,
.visual-caption {
  position: absolute;
  z-index: 3;
  color: rgba(242,239,233,.66);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.visual-kicker { top: 30px; left: 30px; }
.visual-caption { right: 30px; bottom: 28px; }

.professional-note {
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.professional-note p {
  margin: 0;
  color: var(--muted-readable);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.site-footer {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-footer);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.site-footer p { margin: 0; }

@media (min-width: 821px) and (max-height: 1100px) {
  .hero {
    min-height: calc(100svh - 215px);
    padding: clamp(36px, 5vh, 60px) 0 clamp(24px, 4vh, 42px);
  }

  .positioning { margin-top: clamp(24px, 3.5vh, 38px); }
  .actions { margin-top: 24px; }
  .private-note { margin-top: 18px; }
  .professional-note { padding: 16px 0 18px; }
  .site-footer { padding-top: 14px; }
}

@media (max-width: 820px) {
  .page-shell { padding: 18px 18px 22px; }

  .hero {
    min-height: 0;
    padding: 50px 0 36px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy { padding-right: 4px; }
  h1 { font-size: clamp(64px, 20vw, 104px); }
  .positioning { margin-top: 30px; }
  .lead { max-width: 18ch; }
  .sublead { max-width: 48ch; }
  .primary-cta, .platform-links { width: 100%; max-width: 520px; }

  .hero-visual {
    width: min(78vw, 410px);
    justify-self: end;
    margin-top: -6px;
  }

  .visual-frame { width: 100%; }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 520px) {
  .site-header { min-height: 38px; }
  .brand-mark { font-size: 10px; }
  .top-actions { gap: 12px; }
  .adult-badge { min-width: 36px; height: 28px; padding: 0 8px; font-size: 10px; }
  .language-switch { gap: 6px; font-size: 10px; }
  .language-icon { width: 14px; height: 14px; }

  .hero { padding-top: 38px; }
  .eyebrow { margin-bottom: 14px; letter-spacing: .13em; }
  h1 { font-size: clamp(54px, 18.6vw, 84px); max-width: 100%; }
  .location { margin-top: 15px; font-size: 11px; }
  .lead { font-size: clamp(24px, 7.2vw, 31px); }
  .sublead { font-size: 14px; line-height: 1.55; }

  .actions { margin-top: 25px; }
  .primary-cta { min-height: 56px; }
  .platform-links { gap: 8px; }
  .platform-link { min-height: 44px; padding-inline: 11px; font-size: 11px; }
  .private-note { margin-top: 20px; font-size: 11px; }

  .hero-visual {
    width: min(88vw, 390px);
    justify-self: center;
  }

  .visual-kicker { top: 25px; left: 25px; }
  .visual-caption { right: 25px; bottom: 23px; }
  .professional-note p { font-size: 9px; letter-spacing: .09em; }
}

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