/* ============================================================
   SWing Ukraine - Shared Stylesheet
   swingers.in.ua
   ============================================================ */

:root {
  --black:   #0a0808;
  --deep:    #110c0c;
  --card:    #1c1414;
  --accent:  #c8304a;
  --gold:    #d4a853;
  --soft:    #f5ede0;
  --muted:   #c4b49e;
  --border:  rgba(200,48,74,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: #0a0808; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--soft);
  overflow-x: clip;
  min-height: 100vh;
}

/* -- NOISE OVERLAY -- */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
}

/* ==========================================
   GLASSMORPHISM NAV
========================================== */
.top-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 9, 9, 0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(200, 48, 74, 0.18);
  box-shadow: 0 1px 0 0 rgba(255,255,255,.04) inset, 0 8px 32px rgba(0,0,0,.35);
  padding: .85rem 1.8rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--soft); text-decoration: none;
  letter-spacing: .02em; flex-shrink: 0;
}
.nav-logo em { font-style: italic; color: var(--accent); }

/* Hamburger button — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--soft); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
}
.nav-links a {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(196,180,158,.75); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--soft); }

.nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem 1.25rem;
  background: linear-gradient(135deg, var(--accent), #9b1f35);
  color: #fff; text-decoration: none;
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border-radius: .25rem;
  box-shadow: 0 4px 16px rgba(200,48,74,.35);
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,48,74,.5); }
.nav-cta svg { width: 14px; height: 14px; fill: #fff; }

/* Mobile nav */
@media (max-width: 768px) {
  .top-nav { padding: .75rem 1.2rem; }

  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: fixed; top: 53px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    gap: 0;
    background: rgba(10, 6, 6, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: .5rem 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }

  .nav-links a {
    width: 100%; padding: .85rem 1.5rem;
    font-size: .72rem; letter-spacing: .1em;
    border-bottom: 1px solid rgba(200,48,74,.08);
  }
  .nav-links a:last-child { border-bottom: none; }

  .nav-cta {
    margin: .6rem 1.2rem .8rem;
    align-self: stretch;
    width: auto;
    max-width: calc(100% - 2.4rem);
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
  }
  .nav-burger { display: flex; }
}

/* -- HERO -- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  overflow: hidden;
  background: var(--black);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(200,48,74,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(212,168,83,.12) 0%, transparent 60%);
}
.flame-ring {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(200,48,74,.15);
  box-shadow: 0 0 60px rgba(200,48,74,.08) inset;
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
}
.flame-ring:nth-child(2) {
  width: 340px; height: 340px;
  border-color: rgba(212,168,83,.2);
  animation-delay: -3s;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.06); opacity: 1; }
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }

.badge {
  display: inline-block;
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(212,168,83,.4);
  padding: .35rem 1rem; border-radius: 2rem;
  margin-bottom: 1.8rem;
  animation: fadeUp .8s ease both;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -.01em;
  color: var(--soft);
  animation: fadeUp .9s .1s ease both;
}
h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(.9rem, 2vw, 1.08rem); font-weight: 400;
  color: var(--muted); line-height: 1.75;
  max-width: 520px; margin-inline: auto;
  animation: fadeUp 1s .22s ease both;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  margin-top: 2.5rem; padding: 1rem 2.4rem;
  background: linear-gradient(135deg, var(--accent), #9b1f35);
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: .25rem;
  box-shadow: 0 8px 32px rgba(200,48,74,.35);
  transition: transform .2s, box-shadow .2s;
  animation: fadeUp 1s .35s ease both;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(200,48,74,.5); }
.cta-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted);
  z-index: 2; animation: bounce 2.5s 1.5s ease infinite;
}
.scroll-hint span { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--muted), transparent); }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -- SECTIONS -- */
#about, #features, .seo-section, #faq, .cta-section {
  border-top: 1px solid rgba(200,48,74,.18);
}
section { position: relative; z-index: 1; padding: 5rem 1.5rem; background: var(--black); }
.hero { background: var(--black) !important; }
#about  { background: var(--black); }
#features { background: var(--deep); }
.seo-section { background: var(--deep); }
#faq  { background: var(--black); }
.cta-section { background: var(--black); }
.container { max-width: 1060px; margin: 0 auto; }

.section-label {
  font-size: .6rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--soft); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-body {
  font-size: .95rem; font-weight: 400; color: var(--muted);
  line-height: 1.85; max-width: 620px;
}

/* -- WHO / STATS -- */
.who-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 3.5rem; align-items: center;
}
@media(max-width:680px){ .who-grid { grid-template-columns: 1fr; } }
.who-text p + p { margin-top: 1rem; color: var(--muted); font-size: .95rem; line-height: 1.85; }
.stats-box {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; border: 1px solid var(--border);
  border-radius: .5rem; overflow: hidden; background: var(--border);
}
.stat { background: var(--card); padding: 1.8rem 1.5rem; text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600;
  line-height: 1;
  color: var(--accent);
}
.stat-num.gradient {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-top: .4rem;
}

/* -- CARDS -- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: .6rem; padding: 2rem 1.8rem;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: rgba(200,48,74,.4); transform: translateY(-4px); }
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  margin-bottom: .6rem; color: var(--soft);
}
.card p { font-size: .86rem; color: var(--muted); line-height: 1.75; }

/* -- SEO TEXT -- */
.seo-cols { columns: 2; column-gap: 3rem; margin-top: 2rem; }
@media(max-width:600px){ .seo-cols { columns: 1; } }
.seo-cols p {
  font-size: .88rem; color: var(--muted); line-height: 1.85;
  margin-bottom: 1rem; break-inside: avoid;
}
.seo-cols strong { color: var(--soft); font-weight: 600; }

/* -- CTA STRIP -- */
.cta-strip {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-strip p { font-size: .88rem; color: var(--muted); font-style: italic; }
.cta-strip .cta-btns {
  display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center;
}

/* -- BUTTONS -- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.8rem; font-family: 'Montserrat', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: .25rem;
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #9b1f35);
  color: #fff; box-shadow: 0 6px 24px rgba(200,48,74,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,48,74,.5); }
.btn-ghost {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(212,168,83,.35);
}
.btn-ghost:hover { background: rgba(212,168,83,.08); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8892e);
  color: #1a1000; font-weight: 700;
  box-shadow: 0 6px 24px rgba(212,168,83,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,168,83,.5); }

/* -- TEXT LINKS -- */
.tg-link {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid rgba(200,48,74,.3);
  transition: border-color .2s, color .2s;
}
.tg-link:hover { color: var(--gold); border-color: var(--gold); }

/* -- FAQ -- */
.faq-list { margin-top: 2.5rem; }
details { border-bottom: 1px solid var(--border); padding: 1.2rem 0; }
details[open] summary { color: var(--accent); }
summary {
  font-size: .9rem; font-weight: 500; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--soft); transition: color .2s;
}
summary::after { content: '+'; font-size: 1.2rem; color: var(--gold); }
details[open] summary::after { content: '-'; }
details p { margin-top: .8rem; font-size: .88rem; color: var(--muted); line-height: 1.8; }

/* -- CITIES -- */
.cities-section { background: var(--deep); border-top: 1px solid var(--border); }
.cities-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.city-link {
  padding: .45rem 1rem; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  border-radius: 2rem; text-decoration: none; transition: all .2s;
}
.city-link:hover, .city-link.active {
  color: var(--soft); border-color: var(--accent); background: rgba(200,48,74,.08);
}

/* -- SHOP PROMO -- */
.shop-section { background: var(--deep); border-top: 1px solid rgba(212,168,83,.2); }
.shop-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 3rem;
}
@media(max-width:680px){ .shop-inner { grid-template-columns: 1fr; } }
.shop-text p { font-size: .95rem; color: var(--muted); line-height: 1.85; margin-top: 1rem; }
.shop-badge-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.8rem; }
.shop-badge-item { display: flex; align-items: center; gap: .8rem; font-size: .88rem; color: var(--muted); }
.shop-badge-item span:first-child { font-size: 1.2rem; flex-shrink: 0; }
.shop-promo-box {
  background: var(--card); border: 1px solid rgba(212,168,83,.25);
  border-radius: .8rem; padding: 2.5rem 2rem;
  text-align: center; position: relative; overflow: hidden;
}
.shop-promo-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,168,83,.08), transparent 70%);
  pointer-events: none;
}
.shop-discount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 600; line-height: 1;
  background: linear-gradient(135deg, var(--gold), #f0c96a);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.shop-discount-label {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-top: .3rem;
}
.shop-divider { width: 40px; height: 1px; background: rgba(212,168,83,.3); margin: 1.2rem auto; }
.shop-promo-box p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }

/* -- CTA BOTTOM -- */
.cta-section { text-align: center; padding: 6rem 1.5rem; }
.cta-section .section-title { margin-inline: auto; }
.cta-section .section-body { margin: 1rem auto 0; }
.cta-big {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-top: 2.8rem; padding: 1.2rem 3rem;
  background: linear-gradient(135deg, var(--accent), #7a1525);
  color: #fff; text-decoration: none;
  font-size: .95rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  border-radius: .3rem; box-shadow: 0 12px 48px rgba(200,48,74,.4);
  transition: transform .2s, box-shadow .2s;
}
.cta-big:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(200,48,74,.55); }
.cta-big svg { width: 24px; height: 24px; fill: #fff; }

/* -- FOOTER -- */
footer {
  text-align: center; padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--deep);
  font-size: .72rem; color: rgba(196,180,158,.5);
  letter-spacing: .08em;
}
footer a { color: var(--gold); text-decoration: none; }

/* -- DATING GRID (alias for .cards on dating section) -- */
#dating { border-top: 1px solid rgba(200,48,74,.18); }

/* ==========================================
   MOBILE FIXES
========================================== */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  html, body { overflow-x: clip; max-width: 100vw; }
  section { padding: 3rem 1.2rem; }
  .container { padding: 0; }

  /* Sections with inline styles that use who-grid */
  .who-grid { gap: 2rem; margin-top: 2rem; }

  /* Cards min-width fix */
  .cards { grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }

  /* Stats box */
  .stats-box { margin-top: 2rem; }
  .stat { padding: 1.2rem 1rem; }
  .stat-num { font-size: 2.2rem; }

  /* Hero */
  .hero { padding: 2rem 1.2rem; min-height: 90svh; }
  .hero-sub br { display: none; }
  .flame-ring { width: 280px !important; height: 280px !important; }
  .flame-ring:nth-child(2) { width: 180px !important; height: 180px !important; }

  /* Buttons */
  .cta-btn { padding: .85rem 1.6rem; font-size: .78rem; }
  .btn { padding: .7rem 1.2rem; font-size: .74rem; white-space: normal; text-align: center; }
  .cta-big { padding: 1rem 1.8rem; font-size: .82rem; }

  /* Shop */
  .shop-inner { gap: 2rem; margin-top: 2rem; }

  /* FAQ */
  summary { font-size: .85rem; }

  /* CTA strip */
  .cta-strip { gap: .8rem; margin-top: 2rem; padding-top: 1.8rem; }
  .cta-strip p { text-align: center; }

  /* Inline style overrides for game/vip blocks */
  [style*="display:flex"][style*="gap:.8rem"] { flex-wrap: wrap; }
  [style*="display:grid"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns: repeat"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .top-nav { padding: .65rem 1rem; }
  .nav-logo { font-size: 1.1rem; }
  section { padding: 2.5rem 1rem; }
  h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .stat-num { font-size: 1.9rem; }
  .stat-label { font-size: .6rem; }
}

/* ==========================================
   RULES PAGE
========================================== */
.rules-hero { min-height: 40svh; padding: 4rem 1.5rem 3rem; }
.rules-body { background: var(--black); border-top: 1px solid var(--border); padding: 4rem 1.5rem; }
.rules-body .container { max-width: 760px; }
.rules-block { margin-bottom: 3rem; }
.rules-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--soft); margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
}
.rules-block-title em { font-style: italic; color: var(--accent); }
.rules-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.rules-list li { font-size: .9rem; color: var(--muted); line-height: 1.7; display: flex; gap: .7rem; align-items: flex-start; }
.rules-list li .icon { flex-shrink: 0; font-size: 1rem; margin-top: .1rem; }
.rules-list li strong { color: var(--soft); font-weight: 600; }
.rules-list.forbidden li { color: #d4a89a; }
.rules-list.forbidden li strong { color: var(--soft); }
.rules-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, rgba(212,168,83,.2) 50%, var(--border) 70%, transparent);
  margin: 2.5rem 0;
}
.punishment-grid { display: flex; flex-direction: column; gap: .8rem; margin-top: 1rem; }
.punishment-item { background: var(--card); border: 1px solid var(--border); border-radius: .5rem; padding: 1rem 1.2rem; display: flex; gap: .8rem; align-items: flex-start; }
.punishment-item .icon { font-size: 1.2rem; flex-shrink: 0; }
.punishment-item p { font-size: .86rem; color: var(--muted); line-height: 1.7; }
.punishment-item p strong { color: var(--soft); }
.rules-footer-note { text-align: center; margin-top: 3rem; padding: 2rem; background: var(--card); border: 1px solid rgba(212,168,83,.2); border-radius: .6rem; }
.rules-footer-note p { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--soft); line-height: 1.5; }
.rules-footer-note p em { font-style: italic; color: var(--gold); }

/* ==========================================
   BLOG PAGE
========================================== */
.blog-hero { min-height: 35svh; padding: 4rem 1.5rem 3rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: .7rem;
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.blog-card:hover { border-color: rgba(200,48,74,.4); transform: translateY(-4px); }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  background: var(--deep);
}
.blog-card-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--deep) 0%, #1f1010 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.blog-card-num { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--soft); line-height: 1.3; }
.blog-card-excerpt { font-size: .83rem; color: var(--muted); line-height: 1.7; flex: 1; }
.blog-card-more { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-top: .5rem; }

/* ── BLOG POST PAGE ── */
.post-hero { min-height: 30svh; padding: 4rem 1.5rem 2rem; }
.post-body { background: var(--black); border-top: 1px solid var(--border); padding: 4rem 1.5rem 5rem; }
.post-body .container { max-width: 720px; }

.post-img {
  width: 100%; border-radius: .6rem; margin-bottom: 2.5rem;
  object-fit: cover; max-height: 420px;
  border: 1px solid var(--border);
}

.post-content { font-size: .97rem; color: var(--muted); line-height: 1.9; }
.post-content p { margin-bottom: 1.2rem; }
.post-content p:last-child { margin-bottom: 0; }

.post-content .dialogue {
  margin: 1.5rem 0;
  padding: 1.2rem 1.5rem;
  background: var(--deep);
  border-left: 3px solid var(--accent);
  border-radius: 0 .4rem .4rem 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.post-content .dialogue p { margin: 0; font-size: .9rem; color: var(--muted); font-style: italic; }
.post-content .dialogue p strong { color: var(--soft); font-style: normal; }

.post-content .highlight-block {
  margin: 1.8rem 0;
  padding: 1.4rem 1.8rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: .5rem;
}
.post-content .highlight-block p { margin: 0; }
.post-content .highlight-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--soft); margin-bottom: .8rem !important;
}

.post-content .example-block {
  margin: 1.5rem 0;
  padding: 1.2rem 1.5rem;
  background: rgba(200,48,74,.06);
  border: 1px solid rgba(200,48,74,.2);
  border-radius: .5rem;
}
.post-content .example-block p { margin: 0; color: var(--soft); font-size: .9rem; }

.post-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.post-meta span { color: var(--gold); }

.post-nav {
  display: flex; justify-content: space-between; gap: 1rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.post-nav a { font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.post-nav a:hover { color: var(--soft); }
/* no extra border on cta-strip when it follows post-nav */
.post-nav + .cta-strip { border-top: none; padding-top: 2rem; }
.cta-strip a:not(.btn):not(.btn-primary):not(.btn-ghost) {
  font-size: .8rem; color: var(--muted); text-decoration: none; transition: color .2s;
}
.cta-strip a:not(.btn):not(.btn-primary):not(.btn-ghost):hover { color: var(--soft); }

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-body { padding: 2.5rem 1rem 3rem; }
}
