@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Cinzel:wght@400;600&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --bg:    #0d0c0b;
  --bg2:   #111009;
  --bg3:   #161411;
  --panel: #191714;
  --gold:  #c6a85b;
  --gold2: #e8c97a;
  --gold3: rgba(198,168,91,.12);
  --white: #f0ebe0;
  --muted: #8a8070;
  --faint: #2a2720;
  --line:  rgba(198,168,91,.14);
  --line2: rgba(240,235,224,.06);
  --contrast-panel: #1e1b17;
  --nav-h: 92px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

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

/* ── LOGO ── */
.logo-wrap { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.logo-emblem { width: 66px; height: 66px; flex-shrink: 0; }
.logo-texts { display: flex; flex-direction: column; gap: 4px; }
.logo-main {
  font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600;
  letter-spacing: .36em; color: var(--white); text-transform: uppercase; line-height: 1;
}
.logo-sub {
  font-size: 7px; font-weight: 300; letter-spacing: .44em;
  text-transform: uppercase; color: var(--gold); line-height: 1;
}

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  background: rgba(13,12,11,.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1440px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
nav.links { display: flex; align-items: center; }
nav.links a {
  font-size: 9px; font-weight: 400; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); padding: 8px 12px; border: 1px solid transparent; transition: all .28s;
}
nav.links a:hover { color: var(--white); }
nav.links a.active { color: var(--white); border-color: var(--line); background: rgba(198,168,91,.05); }
nav.links .ncta {
  background: var(--gold); color: var(--bg); border-color: var(--gold); margin-left: 10px; font-weight: 400;
}
nav.links .ncta:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: all .3s; }

.mobile-nav {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(13,12,11,.99); backdrop-filter: blur(20px);
  z-index: 490; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); transition: color .25s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); }
.mobile-nav .ncta { color: var(--gold); border: 1px solid var(--gold); padding: 14px 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Jost', sans-serif; font-size: 9.5px; font-weight: 400;
  letter-spacing: .24em; text-transform: uppercase;
  padding: 15px 30px; border: 1px solid; transition: all .32s; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(198,168,91,.22); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--faint); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

/* ── LAYOUT ── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 140px 80px; }
.wrap-narrow { max-width: 900px; margin: 0 auto; padding: 140px 80px; }

/* ── EYEBROW ── */
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.ey-line { width: 36px; height: 1px; background: var(--gold); flex-shrink: 0; }
.ey-text { font-size: 9px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  min-height: 58vh; display: flex; align-items: flex-end;
  padding-top: var(--nav-h); border-bottom: 1px solid var(--line2);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(198,168,91,.06) 0%, transparent 70%);
  bottom: -100px; right: 5%; pointer-events: none;
}
.page-hero-inner { padding: 72px 60px; max-width: 1440px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 128px);
  font-weight: 300; line-height: .92; letter-spacing: -.01em; color: var(--white);
}
.page-hero h1 em { font-style: italic; color: rgba(240,235,224,.28); }
.page-hero p { margin-top: 28px; font-size: 14px; color: var(--muted); max-width: 52ch; line-height: 2; }

/* ── NOTE ── */
.note { padding: 18px 22px; border-left: 2px solid var(--gold); background: var(--gold3); font-size: 12px; color: var(--muted); line-height: 1.85; }
.note strong { color: var(--white); font-weight: 400; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--bg2); border-top: 1px solid var(--line2); padding: 120px 60px; text-align: center; }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(38px, 5vw, 70px);
  font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 24px;
}
.cta-banner h2 em { font-style: italic; color: rgba(240,235,224,.28); }
.cta-banner p { font-size: 14px; color: var(--muted); max-width: 52ch; margin: 0 auto 44px; line-height: 2; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── LEGAL ── */
.legal-layout {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 80px; max-width: 1100px; margin: 0 auto; padding: 100px 60px;
}
.legal-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); height: fit-content; }
.legal-sidebar-title { font-size: 8px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.legal-sidebar nav { display: flex; flex-direction: column; gap: 2px; }
.legal-sidebar nav a {
  font-size: 11px; color: var(--muted); padding: 8px 0 8px 16px;
  border-left: 1px solid var(--faint); letter-spacing: .06em; transition: all .22s;
}
.legal-sidebar nav a:hover { color: var(--white); border-color: var(--gold); padding-left: 22px; }

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 300;
  color: var(--white); margin: 52px 0 16px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line2); scroll-margin-top: calc(var(--nav-h) + 20px);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 13.5px; color: var(--muted); line-height: 2; margin-bottom: 14px; }
.legal-content strong { color: var(--white); font-weight: 400; }
.legal-content a { color: var(--gold); }
.legal-content ul { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 20px; }
.legal-content li { display: flex; gap: 14px; font-size: 13px; color: var(--muted); line-height: 1.75; }
.legal-content li::before { content: ''; width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; margin-top: 10px; }

/* ── FOOTER ── */
footer { background: var(--bg2); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 60px 56px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 60px; flex-wrap: wrap;
}
.footer-brand .fb-name { font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: .28em; color: var(--white); margin-bottom: 6px; }
.footer-brand .fb-sub { font-size: 7.5px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-brand p { font-size: 12px; color: var(--muted); line-height: 1.85; max-width: 34ch; }
.footer-links { display: flex; flex-direction: column; gap: 10px; padding-top: 2px; }
.footer-links a { font-size: 11px; color: var(--muted); letter-spacing: .1em; transition: color .22s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--line2); max-width: 1440px; margin: 0 auto; padding: 22px 60px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 10px; color: var(--muted); letter-spacing: .06em;
}

/* ── ANIMATIONS ── */
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.anim-1 { animation: up .85s ease both; }
.anim-2 { animation: up .85s .1s ease both; }
.anim-3 { animation: up .85s .2s ease both; }
.anim-4 { animation: up .85s .3s ease both; }
.fade { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.fade.in { opacity: 1; transform: none; }

/* ── COOKIE ── */
#cookie {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 1000;
  max-width: 800px; margin: 0 auto;
  background: var(--bg3); border: 1px solid rgba(198,168,91,.22);
  padding: 22px 28px; box-shadow: 0 24px 60px rgba(0,0,0,.6); display: none;
}
.ck-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ck-txt { font-size: 12px; color: var(--muted); line-height: 1.7; }
.ck-txt a { color: var(--gold); }
.ck-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cbtn {
  font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  padding: 10px 18px; border: 1px solid var(--faint); background: transparent; color: var(--white); cursor: pointer; transition: all .3s;
}
.cbtn-acc { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.cbtn-acc:hover { background: var(--gold2); }

/* ── PRICING ── */
.pricing-section { padding: 120px 60px; background: var(--bg); }
.pricing-label { font-size: 8.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); display: block; text-align: center; margin-bottom: 18px; }
.pricing-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300; line-height: 1.08; color: var(--white); margin-bottom: 16px; text-align: center;
}
.pricing-title em { font-style: italic; color: rgba(240,235,224,.28); }
.pricing-sub { font-size: 13.5px; color: var(--muted); line-height: 1.9; text-align: center; max-width: 54ch; margin: 0 auto 72px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line); overflow: hidden; max-width: 1200px; margin: 0 auto;
}
.pricing-card {
  background: var(--contrast-panel); padding: 50px 42px;
  display: flex; flex-direction: column; gap: 26px; position: relative; transition: background .35s;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--faint); transition: background .35s;
}
.pricing-card:hover { background: var(--bg3); }
.pricing-card:hover::before { background: var(--gold); }
.pricing-card.featured { background: rgba(198,168,91,.06); }
.pricing-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold2)); }
.pricing-card-name { font-size: 8px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); }
.pricing-card-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; line-height: 1.2; color: var(--white); }
.price { font-family: 'Cormorant Garamond', serif; font-size: 54px; font-weight: 300; line-height: 1; color: var(--white); }
.price span { font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 300; color: var(--muted); margin-left: 4px; }
.pricing-sep { height: 1px; background: var(--line2); }
.pricing-card-feats { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pricing-card-feat { display: flex; align-items: baseline; gap: 13px; font-size: 13px; color: var(--muted); line-height: 1.65; }
.pricing-card-feat::before { content: ''; width: 12px; height: 1px; background: var(--gold); flex-shrink: 0; margin-top: 9px; }
.pricing-card-cta {
  font-family: 'Jost', sans-serif; font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  padding: 14px 0; border: 1px solid var(--line); text-align: center; transition: all .3s;
  color: var(--white); background: transparent; cursor: pointer; display: block;
}
.pricing-card-cta:hover { border-color: var(--gold); color: var(--gold); }
.pricing-card.featured .pricing-card-cta { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.pricing-card.featured .pricing-card-cta:hover { background: var(--gold2); border-color: var(--gold2); }

.abo-premium {
  max-width: 1200px; margin: 60px auto 0; border: 1px solid var(--line); background: var(--bg2);
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.abo-left { padding: 56px 52px; border-right: 1px solid var(--line); }
.abo-right { padding: 56px 52px; display: flex; flex-direction: column; gap: 14px; }
.abo-price-block { display: flex; align-items: baseline; gap: 10px; margin: 20px 0 8px; }
.abo-price { font-family: 'Cormorant Garamond', serif; font-size: 68px; font-weight: 300; line-height: 1; color: var(--white); }
.abo-price-unit { font-size: 14px; color: var(--muted); }

.exclusion-note {
  margin-top: 52px; padding: 18px 22px; border-left: 2px solid rgba(198,168,91,.28);
  background: rgba(198,168,91,.04); font-size: 11.5px; color: var(--muted); line-height: 1.9;
}
.exclusion-note strong { color: var(--white); font-weight: 400; }

/* ── RESPONSIVE ── */
@media (max-width: 1060px) {
  .nav, .wrap, .wrap-narrow, .footer-inner, .footer-bottom, .pricing-section, .cta-banner { padding-left: 24px; padding-right: 24px; }
  .page-hero-inner { padding: 56px 28px; }
  .legal-layout { grid-template-columns: 1fr; gap: 44px; padding: 60px 28px; }
  .legal-sidebar { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .abo-premium { grid-template-columns: 1fr; }
  .abo-left { border-right: none; border-bottom: 1px solid var(--line); padding: 40px 28px; }
  .abo-right { padding: 40px 28px; }
  .cta-banner { padding: 80px 28px; }
}
@media (max-width: 768px) {
  nav.links { display: none; }
  .hamburger { display: flex; }
}
