/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --n-950: hsl(280 12% 6%);
  --n-900: hsl(280 10% 9%);
  --n-850: hsl(280 9% 12%);
  --n-800: hsl(280 8% 15%);
  --n-700: hsl(280 7% 21%);
  --n-600: hsl(280 6% 32%);
  --n-400: hsl(280 6% 55%);
  --n-200: hsl(280 8% 84%);
  --n-100: hsl(280 10% 94%);

  /* Brand violet ramp */
  --b-700: hsl(292 55% 26%);
  --b-600: hsl(292 60% 36%);
  --b-500: hsl(294 68% 46%);
  --b-400: hsl(296 78% 58%);
  --b-300: hsl(298 86% 70%);
  --b-200: hsl(300 92% 82%);
  --b-100: hsl(300 95% 93%);

  --bg:          var(--n-950);
  --bg-raised:   var(--n-900);
  --bg-card:     var(--n-850);
  --border:      hsl(280 8% 20%);
  --border-soft: hsl(280 8% 16%);
  --text:        hsl(280 12% 96%);
  --text-muted:  var(--n-400);
  --text-faint:  hsl(280 6% 40%);
  --accent:      var(--b-400);
  --accent-dark: var(--b-500);
  --accent-glow: hsl(296 78% 58% / .20);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', ui-sans-serif, system-ui, sans-serif;

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  --r1: 4px; --r2: 8px; --r3: 14px;
  --t-fast: 140ms ease;
  --t-med:  220ms ease;
}

/* ─── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 90px; }
html.age-gate-open, body.age-gate-open { overflow: hidden; }
html.age-gate-open, body.age-gate-open { overflow: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.container-narrow { width: min(820px, calc(100% - 32px)); margin-inline: auto; }

/* ─── SKIP LINK ──────────────────────────────────────────────────────── */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--n-950);
  padding: 12px 20px; font-weight: 700; border-radius: 0 0 var(--r1) 0;
}
.skip:focus { left: 0; }

/* ─── EYEBROW / HEADINGS ─────────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
}
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(38px, 6vw, 72px); letter-spacing: .005em; }
h2 { font-size: clamp(30px, 4.4vw, 50px); }
h3 { font-size: clamp(21px, 2.4vw, 27px); }
p { color: var(--text-muted); }
.lead { font-size: 17px; line-height: 1.75; }

/* ─── BUTTONS ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  padding: 13px var(--s6);
  font-size: 13px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  border-radius: var(--r1);
  min-height: 46px;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast),
              box-shadow var(--t-fast), transform var(--t-fast);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn-primary { background: var(--accent); color: var(--n-950); }
.btn-primary:hover { background: var(--b-300); transform: translateY(-1px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-primary:active { transform: none; box-shadow: none; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--n-950); }
.btn-sm { padding: 9px var(--s5); font-size: 12px; min-height: 40px; }
.btn-lg { padding: 16px var(--s7); font-size: 14px; min-height: 54px; }
.btn-full { width: 100%; }

/* ─── TOPBAR ─────────────────────────────────────────────────────────── */
.topbar { background: var(--b-700); font-size: 12px; letter-spacing: .05em; }
.topbar-inner {
  width: min(1180px, calc(100% - 32px)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 38px; gap: var(--s5); color: var(--b-100);
}
.topbar-links { display: flex; align-items: center; gap: var(--s5); }
.topbar-links a { display: inline-flex; align-items: center; gap: 6px; transition: color var(--t-fast); }
.topbar-links a:hover { color: #fff; }

/* ─── HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: hsl(280 12% 6% / .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner {
  width: min(1180px, calc(100% - 32px)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: var(--s5);
}
.logo { display: flex; flex-direction: column; gap: 3px; }
.logo-main { font-family: var(--font-serif); font-size: 23px; font-weight: 600; letter-spacing: .06em; color: var(--accent); line-height: 1; }
.logo-sub { font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: var(--text-muted); }
.main-nav { display: flex; align-items: center; gap: var(--s4); }
.main-nav a {
  font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted); transition: color var(--t-fast); padding: 8px 2px;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--accent); }
.main-nav .nav-cta {
  background: var(--accent); color: var(--n-950); font-weight: 700;
  padding: 10px var(--s5); border-radius: var(--r1);
}
.main-nav .nav-cta:hover { background: var(--b-300); color: var(--n-950); }

.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 10px; border-radius: var(--r1); }
.burger:hover { background: var(--bg-raised); }
.burger span { display: block; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform var(--t-med), opacity var(--t-fast); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: min(88svh, 820px);
  display: flex; align-items: center;
  padding: var(--s9) 0 var(--s8);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 20%, hsl(292 45% 20% / .85) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 15% 85%, hsl(296 40% 16% / .7) 0%, transparent 60%),
    linear-gradient(165deg, var(--n-950) 0%, hsl(280 12% 8%) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(hsl(280 8% 16%) 1px, transparent 1px),
    linear-gradient(90deg, hsl(280 8% 16%) 1px, transparent 1px);
  background-size: 90px 90px; opacity: .3;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { margin-bottom: var(--s4); }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: clamp(16px, 1.9vw, 19px); max-width: 640px; margin-bottom: var(--s7); }
.hero-actions { display: flex; gap: var(--s5); flex-wrap: wrap; margin-bottom: var(--s6); }
.hero-badges { display: flex; gap: var(--s5); flex-wrap: wrap; }
.hero-badges span { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }

/* Page hero (inner pages) */
.page-hero { padding: var(--s8) 0 var(--s7); border-bottom: 1px solid var(--border-soft); background: var(--bg-raised); }
.page-hero h1 { font-size: clamp(34px, 5vw, 58px); margin-bottom: var(--s4); }
.page-hero p { font-size: 17px; max-width: 680px; }
.breadcrumbs { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--s4); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 8px; color: var(--n-700); }

/* ─── SECTIONS ───────────────────────────────────────────────────────── */
.section { padding: var(--s9) 0; }
.section-sm { padding: var(--s8) 0; }
.section-alt { background: var(--bg-raised); }
.section-head { margin-bottom: var(--s7); }
.section-head.center { text-align: center; }
.section-head h2 { margin-bottom: var(--s4); }
.section-head p { font-size: 16px; max-width: 620px; }
.section-head.center p { margin-inline: auto; }

/* ─── CARDS ──────────────────────────────────────────────────────────── */
.grid { display: grid; gap: var(--s4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: var(--s6);
  display: flex; flex-direction: column; gap: var(--s3);
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.card:hover { border-color: var(--b-600); }
.card h3 { font-size: 24px; }
.card p { font-size: 14.5px; line-height: 1.7; flex: 1; }

/* Service card */
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r2);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 18px 48px hsl(0 0% 0% / .45); }
.service-media { position: relative; aspect-ratio: 16 / 10; background: var(--n-800); overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, var(--bg-card)); }
.service-body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.service-body h3 { font-size: 22px; line-height: 1.2; }
.service-body p { font-size: 14px; line-height: 1.65; flex: 1; }
.price-row { display: flex; gap: var(--s2); flex-wrap: wrap; padding-top: var(--s2); }
.price-pill {
  background: var(--n-800); border: 1px solid var(--border);
  border-radius: 40px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .04em; color: var(--text);
}
.price-pill b { color: var(--accent); font-weight: 700; }

/* ─── FEATURE LIST ───────────────────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: var(--s3); }
.check-list li { position: relative; padding-left: var(--s6); font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.check-list li::before { content: '✦'; position: absolute; left: 0; top: 4px; color: var(--accent); font-size: 11px; }

/* ─── STEPS ──────────────────────────────────────────────────────────── */
.steps { display: grid; gap: var(--s5); counter-reset: step; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: var(--s5); padding-bottom: var(--s5); border-bottom: 1px solid var(--border-soft); }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
}
.step h3 { margin-bottom: var(--s2); font-size: 23px; }
.step p { font-size: 15px; line-height: 1.7; }

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--s3); }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: var(--s5);
  font-family: var(--font-serif); font-size: 20px; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  list-style: none; transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 24px; font-family: var(--font-sans); font-weight: 300; flex-shrink: 0; transition: transform var(--t-med); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer { padding: 0 var(--s5) var(--s5); }
.faq-answer p { font-size: 15px; line-height: 1.75; }
.faq-answer p + p { margin-top: var(--s3); }

/* ─── TABLE ──────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r2); }
table { width: 100%; border-collapse: collapse; min-width: 560px; }
th, td { padding: 14px var(--s5); text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--border-soft); }
th { background: var(--bg-card); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
td { color: var(--text-muted); }
td:first-child { color: var(--text); font-weight: 500; }
tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: hsl(280 8% 14%); }

/* ─── NOTICE / WARNING BOX ───────────────────────────────────────────── */
.notice {
  border: 1px solid var(--b-600); border-left: 3px solid var(--accent);
  background: hsl(292 40% 12%); border-radius: var(--r1);
  padding: var(--s5); display: flex; flex-direction: column; gap: var(--s2);
}
.notice h3 { font-size: 19px; color: var(--accent); }
.notice p, .notice li { font-size: 14.5px; line-height: 1.7; }
.notice ul { display: flex; flex-direction: column; gap: 6px; }
.notice li { padding-left: var(--s4); position: relative; }
.notice li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* ─── BLOG ───────────────────────────────────────────────────────────── */
.blog-card { display: flex; flex-direction: column; gap: var(--s3); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; transition: border-color var(--t-med), transform var(--t-med); }
.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.blog-card .thumb { aspect-ratio: 16 / 10; background: var(--n-800); overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: var(--s5); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.blog-card .meta { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.blog-card h3 { font-size: 21px; line-height: 1.25; }
.blog-card:hover h3 { color: var(--accent); }
.blog-card .excerpt { font-size: 14px; line-height: 1.65; flex: 1; }
.read-more { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* Mini post chips (homepage) */
.mini-posts { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s3); }
.mini-post {
  display: flex; flex-direction: column; gap: var(--s2);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r2);
  padding: var(--s4); transition: border-color var(--t-med), transform var(--t-med);
}
.mini-post:hover { border-color: var(--accent); transform: translateY(-3px); }
.mini-icon {
  width: 40px; height: 40px; border-radius: var(--r1);
  background: hsl(292 40% 16%); border: 1px solid var(--b-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; line-height: 1;
}
.mini-post h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 600; line-height: 1.45; color: var(--text); }
.mini-post:hover h4 { color: var(--accent); }

/* Article body */
.article-body { max-width: 760px; }
.article-body > * + * { margin-top: var(--s5); }
.article-body h2 { font-size: clamp(26px, 3.2vw, 36px); margin-top: var(--s7); }
.article-body h3 { font-size: 22px; margin-top: var(--s6); }
.article-body p { font-size: 16.5px; line-height: 1.8; }
.article-body ul, .article-body ol { display: flex; flex-direction: column; gap: var(--s2); padding-left: var(--s5); }
.article-body li { font-size: 16px; line-height: 1.75; color: var(--text-muted); }
.article-body ul li { list-style: none; position: relative; padding-left: var(--s4); }
.article-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.article-body ol { list-style: decimal; }
.article-body ol li { padding-left: var(--s2); }
.article-body ol li::marker { color: var(--accent); font-weight: 700; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: var(--s3) 0 var(--s3) var(--s5);
  font-family: var(--font-serif); font-size: 21px; font-style: italic; color: var(--n-200);
}
.article-body figure { margin: 0; }
.article-body figure img { border-radius: var(--r2); width: 100%; }
.article-body figcaption { font-size: 13px; color: var(--text-faint); margin-top: var(--s2); text-align: center; }

/* Info box in article */
.info-box {
  background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: var(--r1); padding: var(--s5);
}
.info-box h3 { font-size: 19px; margin-bottom: var(--s3); }

/* ─── CONTACT ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s8); align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: var(--s4); }
.contact-item { display: flex; gap: var(--s4); align-items: baseline; padding-bottom: var(--s4); border-bottom: 1px solid var(--border-soft); }
.ci-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); width: 96px; flex-shrink: 0; }
.contact-item a { color: var(--text); transition: color var(--t-fast); }
.contact-item a:hover { color: var(--accent); }
.contact-item span { font-size: 15px; color: var(--text-muted); }

.form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r2); padding: var(--s7); }
.form-wrap h3 { font-size: 27px; margin-bottom: var(--s6); }
.form-group { margin-bottom: var(--s5); }
.form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r1);
  color: var(--text); font-size: 15px; padding: 12px var(--s4);
  transition: border-color var(--t-fast), box-shadow var(--t-fast); -webkit-appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group input.invalid, .form-group textarea.invalid { border-color: hsl(0 62% 52%); }
.field-error { display: block; font-size: 12px; color: hsl(0 62% 62%); margin-top: 6px; min-height: 16px; }
.form-check { display: flex; align-items: flex-start; gap: var(--s3); margin-bottom: var(--s5); }
.form-check input[type="checkbox"] { width: 19px; height: 19px; flex-shrink: 0; accent-color: var(--accent); margin-top: 2px; cursor: pointer; }
.form-check label { font-size: 13px; color: var(--text-muted); cursor: pointer; }
.form-note { font-size: 12px; color: var(--text-faint); text-align: center; margin-top: var(--s4); }

/* ─── LOCATIONS ──────────────────────────────────────────────────────── */
.location-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r2); padding: var(--s5); }
.location-card:hover { border-color: var(--accent); }
.location-card h4 { font-family: var(--font-serif); font-size: 21px; margin-bottom: var(--s2); }
.location-card p { font-size: 14px; line-height: 1.55; margin-bottom: var(--s4); }
.loc-link { font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: .04em; }
.loc-link:hover { color: var(--b-300); }

/* ─── CTA BANNER ─────────────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(150deg, hsl(292 45% 16%) 0%, hsl(296 40% 12%) 100%); border-block: 1px solid var(--b-600); padding: var(--s9) 0; text-align: center; }
.cta-banner h2 { margin-bottom: var(--s4); }
.cta-banner p { font-size: 16px; max-width: 620px; margin: 0 auto var(--s7); }
.cta-actions { display: flex; gap: var(--s5); justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--n-950); border-top: 1px solid var(--border); padding-top: var(--s9); }
.footer-inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: var(--s7); padding-bottom: var(--s8); border-bottom: 1px solid var(--border-soft); }
.footer-brand .logo-main { font-size: 25px; }
.footer-brand p { font-size: 14px; margin-top: var(--s3); line-height: 1.65; }
.footer-social { display: flex; gap: var(--s3); margin-top: var(--s5); }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--r1);
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-nav { display: flex; flex-direction: column; gap: var(--s3); }
.footer-nav-title { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.footer-nav a { font-size: 14px; color: var(--text-muted); transition: color var(--t-fast); }
.footer-nav a:hover { color: var(--text); }
.footer-bottom { background: hsl(280 12% 4%); padding: var(--s5) 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: var(--s5); flex-wrap: wrap; font-size: 12px; color: var(--text-faint); }

/* ─── AGE GATE ───────────────────────────────────────────────────────── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: hsl(280 14% 5% / .98);
  display: flex; align-items: center; justify-content: center; padding: var(--s5);
}
.age-gate[hidden] { display: none; }
.age-gate-box {
  max-width: 520px; width: 100%; text-align: center;
  background: var(--bg-card); border: 1px solid var(--b-600); border-radius: var(--r2);
  padding: var(--s8) var(--s7);
}
.age-gate-box h2 { font-size: 32px; margin-bottom: var(--s4); }
.age-gate-box p { font-size: 15px; margin-bottom: var(--s6); }
.age-gate-actions { display: flex; gap: var(--s3); justify-content: center; flex-wrap: wrap; }
.age-gate small { display: block; margin-top: var(--s5); font-size: 12px; color: var(--text-faint); line-height: 1.6; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mini-posts { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s7); }
}
@media (max-width: 768px) {
  :root { --s9: 64px; --s8: 48px; }
  .burger { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-raised); border-bottom: 1px solid var(--border);
    padding: var(--s5) var(--s5) var(--s6);
    flex-direction: column; align-items: stretch; gap: 0; z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 15px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .main-nav .nav-cta { width: 100%; margin-top: var(--s4); border-bottom: none; }
  .site-header { position: relative; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .mini-posts { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: var(--s6); }
  .footer-bottom-inner { flex-direction: column; gap: var(--s3); }
  .hero { min-height: auto; }
  .hero-badges { display: none; }
  .form-wrap { padding: var(--s5); }
  .step { grid-template-columns: 1fr; gap: var(--s3); }
}
@media (max-width: 480px) {
  .mini-posts { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}

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

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
