/*
Theme Name: Onyx & Rose Premium Ultimate
Theme URI: https://huegotnails.com
Author: HueGotNails
Description: Luxury dark editorial beauty theme for nail art, beauty & style. Dark onyx background, rose gold accents, full JS animations, blog-ready.
Version: 4.0
License: GPL v2 or later
Text Domain: onyx-rose
*/

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

/* ── Tokens ───────────────────────────────── */
:root {
  --bg:         #0e0e0e;
  --bg2:        #161616;
  --card:       #1a1a1a;
  --card2:      #1f1f1f;
  --rose:       #E2A1A6;
  --rose-dark:  #c9838a;
  --rose-dim:   rgba(226,161,166,.12);
  --gold:       #C9A87C;
  --gold-dim:   rgba(201,168,124,.12);
  --white:      #f0f0f0;
  --muted:      #888;
  --border:     rgba(226,161,166,.14);
  --border2:    rgba(255,255,255,.06);
  --shadow:     0 12px 40px rgba(226,161,166,.14);
  --shadow-lg:  0 24px 64px rgba(226,161,166,.18);
  --r-sm:       8px;
  --r-md:       16px;
  --r-lg:       24px;
  --r-xl:       36px;
  --tr:         0.3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a    { color: inherit; text-decoration: none; }
img  { max-width: 100%; height: auto; display: block; }

/* ── Layout ───────────────────────────────── */
.container { width: min(1280px, 92%); margin: 0 auto; padding: 0 16px; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── Reading Progress ─────────────────────── */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  z-index: 9999; transition: width .1s linear;
}

/* ── Top Bar ──────────────────────────────── */
.top-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border2);
  padding: 8px 0; font-size: 12px; color: var(--muted);
  letter-spacing: .5px;
}
.top-bar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.top-bar a { color: var(--rose); transition: color var(--tr); }
.top-bar a:hover { color: var(--white); }
.top-bar-links { display: flex; gap: 20px; }

/* ── Header ───────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(14,14,14,.94);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 20px; }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300; letter-spacing: 4px;
  color: var(--rose); white-space: nowrap;
}
.logo span { font-style: italic; color: var(--gold); font-weight: 400; }
.logo img  { height: 40px; width: auto; }

/* nav */
.nav-menu ul { list-style: none; display: flex; gap: 6px; align-items: center; }
.nav-menu a  { font-size: 12px; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); padding: 7px 14px; border-radius: 20px; transition: color var(--tr), background var(--tr); }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--white); background: var(--rose-dim); }
.nav-cta { background: var(--rose) !important; color: #111 !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); }

/* header search */
.header-search { position: relative; }
.header-search input {
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); padding: 8px 36px 8px 16px;
  border-radius: 20px; font-family: 'Montserrat', sans-serif;
  font-size: 12px; width: 170px; outline: none;
  transition: width var(--tr), border-color var(--tr);
}
.header-search input:focus { width: 230px; border-color: var(--rose); }
.header-search input::placeholder { color: var(--muted); }
.header-search button { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--muted); cursor: pointer; font-size: 14px; }

.menu-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--white); padding: 8px 12px; border-radius: var(--r-sm); cursor: pointer; font-size: 18px; }

/* ── Hero ─────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(226,161,166,.07) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,168,124,.05) 0%, transparent 60%);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 760px; padding: 120px 0 100px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--rose); background: var(--rose-dim);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300; line-height: 1.02;
  margin-bottom: 24px; letter-spacing: -1px;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero-sub { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stat { display: flex; gap: 36px; margin-top: 52px; padding-top: 52px; border-top: 1px solid var(--border2); }
.hero-stat-item { }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--rose); }
.hero-stat-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* hero floating nails */
.hero-visual {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 580px; height: 580px; z-index: 0; pointer-events: none;
  opacity: .18;
}

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px; font-size: 13px;
  font-weight: 600; letter-spacing: .5px; cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
  border: none; text-decoration: none;
}
.btn-rose { background: var(--rose); color: #0e0e0e; }
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-3px); box-shadow: var(--shadow); color: #0e0e0e; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-3px); }
.btn-gold { background: var(--gold); color: #0e0e0e; }
.btn-gold:hover { filter: brightness(1.1); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(201,168,124,.3); }

/* ── Section titles ───────────────────────── */
.section-header { margin-bottom: 52px; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-label::after { content: ''; flex: 0 0 32px; height: 1px; background: var(--rose); opacity: .5; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.1;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub { font-size: 15px; color: var(--muted); margin-top: 12px; line-height: 1.7; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; gap: 20px; flex-wrap: wrap; }
.view-all { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: gap var(--tr); }
.view-all:hover { gap: 12px; }

/* ── Cards ────────────────────────────────── */
.grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fill, minmax(440px,1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); }

.card {
  background: var(--card); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform var(--tr), box-shadow var(--tr);
  cursor: pointer; position: relative;
  opacity: 0; transform: translateY(32px);
}
.card.revealed { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-8px) !important; box-shadow: var(--shadow-lg); }

.card-img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .5s ease; }
.card:hover .card-img { transform: scale(1.05); }
.card-img-wrap { overflow: hidden; }

/* gradient overlay */
.card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  pointer-events: none;
}

/* placeholder gradient */
.card-ph { width: 100%; height: 260px; }
.ph-1 { background: linear-gradient(135deg,#1e1218,#3a1a22); }
.ph-2 { background: linear-gradient(135deg,#1a1a1e,#2d2012); }
.ph-3 { background: linear-gradient(135deg,#1a1218,#2d1a30); }
.ph-4 { background: linear-gradient(135deg,#181e1e,#0d2a2a); }
.ph-5 { background: linear-gradient(135deg,#1e1a10,#302808); }
.ph-6 { background: linear-gradient(135deg,#1a1a18,#2a2810); }

/* shimmer */
.shimmer { position: absolute; inset: 0; background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.04) 50%, transparent 62%); background-size: 200% 100%; animation: shim 2.6s infinite; }
@keyframes shim { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.card-body { padding: 20px 22px 24px; }
.card-cat { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; line-height: 1.35; margin-bottom: 10px; color: var(--white); }
.card-title a { color: inherit; transition: color var(--tr); }
.card-title a:hover { color: var(--rose); }
.card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.card-meta { font-size: 11px; color: #555; display: flex; align-items: center; gap: 8px; }
.card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rose); opacity: .6; flex-shrink: 0; }

/* HERO CARD */
.card-hero { display: grid; grid-template-columns: 1.1fr 1fr; border-radius: var(--r-xl); border: 1px solid var(--border); overflow: hidden; margin-bottom: 64px; opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.card-hero.revealed { opacity: 1; transform: translateY(0); }
.card-hero .card-ph, .card-hero .card-img { height: 480px; border-radius: 0; }
.card-hero .card-body { padding: 52px 44px; display: flex; flex-direction: column; justify-content: center; background: var(--card); }
.card-hero .card-title { font-size: 32px; margin-bottom: 16px; }
.card-hero .card-excerpt { font-size: 15px; line-height: 1.75; margin-bottom: 28px; }

/* HORIZONTAL CARD */
.card-h { display: grid; grid-template-columns: 100px 1fr; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); background: var(--card); transition: transform var(--tr), box-shadow var(--tr); cursor: pointer; opacity: 0; transform: translateX(-12px); }
.card-h.revealed { opacity: 1; transform: translateX(0); }
.card-h:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-h .card-ph, .card-h .card-img { height: 84px; width: 100px; object-fit: cover; }
.card-h .card-body { padding: 12px 14px; display: flex; flex-direction: column; justify-content: center; }
.card-h .card-title { font-size: 14px; margin-bottom: 4px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ── Filter Bar ───────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border2); }
.filter-pill { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); padding: 8px 20px; border-radius: 24px; border: 1px solid var(--border); background: transparent; cursor: pointer; transition: all var(--tr); text-decoration: none; }
.filter-pill:hover, .filter-pill.active { background: var(--rose); color: #0e0e0e; border-color: var(--rose); }

/* ── Category strip ───────────────────────── */
.cat-strip { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-card { flex-shrink: 0; background: var(--card2); border-radius: var(--r-md); padding: 20px 24px; border: 1px solid var(--border); text-align: center; min-width: 120px; cursor: pointer; transition: all var(--tr); }
.cat-card:hover, .cat-card.active { background: var(--rose-dim); border-color: var(--rose); }
.cat-card-icon { font-size: 24px; margin-bottom: 8px; }
.cat-card-name { font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

/* ── Color Swatches ───────────────────────── */
.swatches { display: flex; gap: 14px; flex-wrap: wrap; }
.swatch { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); cursor: pointer; transition: transform var(--tr), box-shadow var(--tr); position: relative; }
.swatch:hover { transform: scale(1.2); box-shadow: 0 0 0 3px rgba(226,161,166,.4); }
.swatch.active::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 700; }

/* ── Video Grid ───────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 20px; }
.video-card { aspect-ratio: 9/16; overflow: hidden; border-radius: var(--r-lg); position: relative; border: 1px solid var(--border); background: var(--card); }
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
.video-play { width: 52px; height: 52px; border-radius: 50%; background: rgba(226,161,166,.2); border: 1.5px solid var(--rose); display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; transition: all var(--tr); }
.video-play:hover { background: var(--rose); color: #0e0e0e; transform: scale(1.1); }
.video-label { font-size: 12px; color: var(--muted); text-align: center; padding: 0 16px; }

/* ── Marquee strip ────────────────────────── */
.marquee-wrap { overflow: hidden; border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); padding: 16px 0; background: var(--bg2); }
.marquee-track { display: flex; gap: 48px; animation: marquee 24s linear infinite; width: max-content; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 16px; }
.marquee-item::before { content: '◆'; color: var(--rose); font-size: 10px; font-style: normal; }

/* ── Newsletter ───────────────────────────── */
.newsletter { position: relative; overflow: hidden; padding: 80px; border-radius: var(--r-xl); background: var(--card2); border: 1px solid var(--border); text-align: center; margin: 80px 0; }
.newsletter::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(var(--rose-dim), transparent 70%); }
.newsletter::after  { content: ''; position: absolute; bottom: -60px; left: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(var(--gold-dim), transparent 70%); }
.newsletter > * { position: relative; z-index: 1; }
.newsletter h2 { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; margin-bottom: 12px; }
.newsletter h2 em { font-style: italic; color: var(--rose); }
.newsletter p { color: var(--muted); font-size: 15px; margin-bottom: 32px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input { background: var(--bg); border: 1px solid var(--border); color: var(--white); padding: 14px 24px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-size: 14px; min-width: 300px; outline: none; transition: border-color var(--tr); }
.newsletter-form input:focus { border-color: var(--rose); }
.newsletter-form button { background: var(--rose); color: #0e0e0e; border: none; padding: 14px 30px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--tr); }
.newsletter-form button:hover { background: var(--rose-dark); transform: translateY(-2px); }

/* ── Sidebar ──────────────────────────────── */
.content-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.sidebar { position: sticky; top: 92px; }
.widget { background: var(--card); border-radius: var(--r-md); padding: 24px; margin-bottom: 24px; border: 1px solid var(--border); }
.widget-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--white); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.widget-title::before { content: ''; width: 3px; height: 18px; background: var(--rose); border-radius: 2px; flex-shrink: 0; }
.widget ul { list-style: none; }
.widget ul li { padding: 9px 0; border-bottom: 1px solid var(--border2); font-size: 13px; color: var(--muted); }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--white); transition: color var(--tr), padding-left var(--tr); display: block; }
.widget ul li a:hover { color: var(--rose); padding-left: 4px; }
.cat-count { font-size: 10px; background: var(--rose-dim); color: var(--rose); padding: 2px 8px; border-radius: 10px; float: right; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item { font-size: 11px; color: var(--muted); background: var(--bg); padding: 5px 12px; border-radius: 14px; border: 1px solid var(--border); cursor: pointer; transition: all var(--tr); text-decoration: none; }
.tag-item:hover { color: var(--rose); border-color: var(--rose); background: var(--rose-dim); }

/* ── Mini card (sidebar) ─────────────────── */
.card-mini { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border2); }
.card-mini:last-child { border-bottom: none; }
.card-mini-img { width: 68px; height: 56px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; overflow: hidden; }
.card-mini-img .card-ph { width: 68px; height: 56px; border-radius: var(--r-sm); }
.card-mini-cat  { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--rose); margin-bottom: 4px; }
.card-mini-title{ font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.4; }
.card-mini-title a { color: inherit; transition: color var(--tr); }
.card-mini-title a:hover { color: var(--rose); }
.card-mini-date { font-size: 11px; color: #444; margin-top: 3px; }

/* ── Single post ──────────────────────────── */
.post-wrap { max-width: 800px; }
.post-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.post-eyebrow a { color: var(--rose); transition: color var(--tr); }
.post-eyebrow a:hover { color: var(--white); }
.post-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 4vw, 52px); font-weight: 300; line-height: 1.2; margin-bottom: 24px; }
.post-meta { display: flex; align-items: center; gap: 14px; font-size: 12px; color: #555; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border2); flex-wrap: wrap; }
.author-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--rose-dim), var(--rose)); display: flex; align-items: center; justify-content: center; font-size: 12px; color: #0e0e0e; font-weight: 600; flex-shrink: 0; }
.post-thumb-wrap { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 40px; }
.post-thumb-wrap img { width: 100%; height: auto; }
.entry-content { font-size: 15px; line-height: 1.9; color: #aaa; }
.entry-content p { margin-bottom: 1.6em; }
.entry-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: var(--white); margin: 2.4em 0 .8em; }
.entry-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--white); margin: 2em 0 .7em; }
.entry-content strong { color: var(--white); }
.entry-content em { color: var(--rose); }
.entry-content a { color: var(--rose); text-decoration: underline; text-underline-offset: 3px; transition: color var(--tr); }
.entry-content a:hover { color: var(--rose-dark); }
.entry-content img { border-radius: var(--r-md); margin: 2em 0; }
.entry-content blockquote { border-left: 2px solid var(--rose); margin: 2em 0; padding: 16px 24px; background: var(--rose-dim); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--rose); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin-bottom: 1.5em; }
.entry-content li { margin-bottom: .5em; }

/* Post nav */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 48px 0; }
.post-nav-item { background: var(--card); border-radius: var(--r-md); padding: 20px; border: 1px solid var(--border); transition: all var(--tr); }
.post-nav-item:hover { border-color: var(--rose); box-shadow: var(--shadow); transform: translateY(-3px); }
.post-nav-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; display: block; }
.post-nav-title { font-size: 14px; color: var(--white); line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.post-nav-next { text-align: right; }

/* ── Breadcrumb ───────────────────────────── */
.breadcrumb { padding: 16px 0; font-size: 12px; color: #444; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--rose); }

/* ── Page Hero ───────────────────────────── */
.page-hero { padding: 80px 0 60px; border-bottom: 1px solid var(--border2); }
.page-hero-tag { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.1; }
.page-hero-title em { font-style: italic; color: var(--rose); }
.page-hero-sub { font-size: 15px; color: var(--muted); margin-top: 12px; line-height: 1.7; }

/* ── Comments ────────────────────────────── */
.comments-area { margin-top: 48px; }
.comments-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; margin-bottom: 28px; }
.comment-list { list-style: none; }
.comment-body { background: var(--card); border-radius: var(--r-md); padding: 20px; margin-bottom: 16px; border: 1px solid var(--border); }
.comment-form input, .comment-form textarea { width: 100%; background: var(--card); border: 1px solid var(--border); color: var(--white); padding: 12px 16px; border-radius: var(--r-sm); font-family: 'Montserrat', sans-serif; font-size: 13px; margin-bottom: 14px; outline: none; transition: border-color var(--tr); }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--rose); }
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form input[type="submit"] { background: var(--rose); color: #0e0e0e; border: none; cursor: pointer; font-weight: 600; width: auto; padding: 12px 28px; border-radius: 50px; transition: all var(--tr); }
.comment-form input[type="submit"]:hover { background: var(--rose-dark); transform: translateY(-2px); }

/* ── Pagination ──────────────────────────── */
.pagination-wrap { display: flex; justify-content: center; margin: 52px 0; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.nav-links a, .nav-links span { padding: 9px 18px; border-radius: 24px; font-size: 12px; font-weight: 500; letter-spacing: .5px; border: 1px solid var(--border); color: var(--muted); transition: all var(--tr); }
.nav-links a:hover, .nav-links .current { background: var(--rose); color: #0e0e0e; border-color: var(--rose); }
.nav-links .dots { border: none; }

/* ── Ad banner ───────────────────────────── */
.ad-banner { background: var(--card2); border-radius: var(--r-md); padding: 20px; text-align: center; min-height: 90px; display: flex; align-items: center; justify-content: center; color: #333; font-size: 12px; border: 1.5px dashed var(--border); letter-spacing: .5px; margin: 28px 0; }

/* ── Back to top ─────────────────────────── */
.back-to-top { position: fixed; bottom: 28px; right: 28px; z-index: 800; width: 46px; height: 46px; border-radius: 50%; background: var(--rose); color: #0e0e0e; display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; border: none; box-shadow: 0 4px 20px rgba(226,161,166,.35); opacity: 0; transform: translateY(14px); transition: opacity var(--tr), transform var(--tr), background var(--tr); pointer-events: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--rose-dark); transform: translateY(-3px) !important; }

/* ── Footer ──────────────────────────────── */
.footer-top { background: var(--bg2); padding: 64px 0 48px; border-top: 1px solid var(--border2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--rose); letter-spacing: 3px; display: block; margin-bottom: 14px; }
.footer-brand .footer-logo span { font-style: italic; color: var(--gold); }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; font-weight: 700; cursor: pointer; transition: all var(--tr); text-decoration: none; }
.social-btn:hover { background: var(--rose); border-color: var(--rose); color: #0e0e0e; transform: translateY(-2px); }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border2); font-weight: 400; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--muted); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--rose); }
.footer-bottom { background: #090909; padding: 18px 0; border-top: 1px solid var(--border2); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: #333; flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: #333; transition: color var(--tr); }
.footer-bottom-links a:hover { color: var(--rose); }

/* ── 404 ─────────────────────────────────── */
.error-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; }
.error-404-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(120px, 18vw, 240px); font-weight: 300; line-height: 1; color: var(--rose); opacity: .18; }
.error-404 h2 { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; margin-bottom: 14px; }
.error-404 p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }

/* ── Mobile Nav ──────────────────────────── */
.mobile-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(14,14,14,.96); backdrop-filter: blur(16px); border-top: 1px solid var(--border); padding: 12px 0 max(12px, env(safe-area-inset-bottom)); z-index: 990; }
.mobile-nav-inner { display: flex; justify-content: space-around; }
.mobile-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--muted); text-decoration: none; font-size: 10px; letter-spacing: .5px; text-transform: uppercase; transition: color var(--tr); padding: 4px 12px; }
.mobile-nav-item:hover, .mobile-nav-item.active { color: var(--rose); }
.mobile-nav-icon { font-size: 20px; }

/* ── Responsive ──────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 900px) {
  .card-hero { grid-template-columns: 1fr; }
  .card-hero .card-ph, .card-hero .card-img { height: 260px; }
  .card-hero .card-body { padding: 32px 28px; }
  .post-nav { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 640px) {
  .top-bar { display: none; }
  .header-search { display: none; }
  .nav-menu ul { display: none; flex-direction: column; padding: 12px 0; gap: 4px; }
  .nav-menu ul.open { display: flex; }
  .menu-toggle { display: block; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: 48px; }
  .grid, .grid-2 { grid-template-columns: 1fr; }
  .newsletter { padding: 40px 24px; }
  .newsletter-form input { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 72px; right: 18px; }
  .mobile-nav { display: block; }
  body { padding-bottom: 64px; }
}

/* ── Elementor compat ────────────────────── */
.elementor-page-wrap { min-height: 200px; }
.elementor-widget-container, .elementor-widget-container * { font-family: 'Montserrat', sans-serif; }
.elementor-widget-heading .elementor-heading-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.elementor-button-wrapper .elementor-button { border-radius: 50px !important; background: var(--rose) !important; color: #0e0e0e !important; }
