/* Blog Stay Luvi — identidade noir/champagne, League Spartan + Cormorant Garamond */
:root {
  --noir-950: #0b0b0c;
  --noir-900: #111113;
  --noir-850: #161618;
  --noir-800: #1c1c1f;
  --noir-700: #26262a;
  --line: rgba(255, 255, 255, 0.10);
  --champ-300: #e8d5ae;
  --champ-400: #dfc08e;
  --champ-500: #c9a86a;
  --champ-600: #a98a4f;
  --ink-100: #f5f3ee;
  --ink-300: #cfcabf;
  --ink-400: #a7a299;
  --ink-500: #7e7a72;
  --maxw: 76rem;
  --readw: 44rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--noir-950);
  color: var(--ink-300);
  font-family: 'League Spartan', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(201, 168, 106, 0.30); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.kicker {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--champ-500); margin: 0;
}
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 12, 0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brandgroup { display: flex; align-items: center; }
.brand { display: flex; align-items: center; }
.brand img { height: 26px; width: auto; }
.blogtag { margin-left: 11px; font-size: 15px; font-weight: 400; letter-spacing: 0.02em; color: var(--champ-400); border-left: 1px solid var(--line); padding-left: 12px; line-height: 1; transition: color .2s; }
.blogtag:hover { color: var(--champ-300); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-400); transition: color .2s; }
.nav a:hover { color: #fff; }
.nav .cta { color: var(--noir-950); background: var(--champ-500); padding: 9px 18px; border-radius: 999px; }
.nav .cta:hover { background: var(--champ-300); color: var(--noir-950); }
@media (max-width: 760px) { .nav .hide-sm { display: none; } .brand .blogtag { display: none; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 13px 28px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; transition: all .25s; cursor: pointer; }
.btn-gold { background: var(--champ-500); color: var(--noir-950); }
.btn-gold:hover { background: var(--champ-300); box-shadow: 0 0 32px rgba(201, 168, 106, 0.35); }
.btn-outline { border: 1px solid rgba(255,255,255,0.25); color: #fff; }
.btn-outline:hover { border-color: var(--champ-400); color: var(--champ-300); }

/* ---------- Index hero ---------- */
.index-hero { padding: 72px 0 36px; border-bottom: 1px solid var(--line); }
.index-hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(40px, 7vw, 68px); line-height: 1.04; color: #fff; margin: 14px 0 0; max-width: 16ch; }
.index-hero p { margin: 18px 0 0; max-width: 56ch; color: var(--ink-400); font-size: 18px; }

/* ---------- Category chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; }
.chip { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-300); transition: all .2s; }
.chip:hover, .chip[aria-current="true"] { border-color: var(--champ-500); color: var(--champ-300); background: rgba(201,168,106,0.07); }

/* ---------- Post grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding: 44px 0 80px; }
@media (max-width: 980px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid { grid-template-columns: 1fr; gap: 20px; } }
.card { display: flex; flex-direction: column; background: var(--noir-850); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: transform .3s, border-color .3s; }
.card:hover { transform: translateY(-4px); border-color: rgba(201,168,106,0.45); }
.card .thumb { aspect-ratio: 16 / 10; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .thumb img { transform: scale(1.05); }
.card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card .cat { font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champ-500); }
.card h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 25px; line-height: 1.14; color: #fff; margin: 10px 0 0; }
.card p { margin: 10px 0 0; font-size: 15px; color: var(--ink-400); line-height: 1.55; }
.card .meta { margin-top: auto; padding-top: 16px; font-size: 12.5px; color: var(--ink-500); display: flex; gap: 8px; align-items: center; }
.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr 1fr; }
.featured .thumb { aspect-ratio: auto; height: 100%; min-height: 320px; }
.featured h2 { font-size: clamp(28px, 4vw, 40px); }
.featured .body { padding: 38px 40px; justify-content: center; }
.featured p { font-size: 17px; }
@media (max-width: 760px) { .featured { grid-template-columns: 1fr; } .featured .thumb { min-height: 220px; } .featured .body { padding: 24px 22px 28px; } }

/* ---------- Article ---------- */
.article-hero { position: relative; }
.article-hero .img { aspect-ratio: 21 / 9; max-height: 60vh; overflow: hidden; }
.article-hero .img img { width: 100%; height: 100%; object-fit: cover; }
.article-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,11,12,0.25), rgba(11,11,12,0.92)); }
.article-head { position: relative; margin-top: -150px; z-index: 2; padding-bottom: 8px; }
.article-head .cat { color: var(--champ-400); }
.article-head h1 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(32px, 5.4vw, 56px); line-height: 1.05; color: #fff; margin: 12px 0 0; max-width: 20ch; }
.article-head .dek { margin: 16px 0 0; font-size: 19px; color: var(--ink-300); max-width: 60ch; }
.article-head .byline { margin: 20px 0 0; font-size: 13px; color: var(--ink-500); display: flex; flex-wrap: wrap; gap: 6px 14px; align-items: center; }
.article-head .byline .dot::before { content: '·'; margin-right: 14px; color: var(--champ-600); }

.prose { max-width: var(--readw); margin: 40px auto 0; padding: 0 20px; }
.prose > * + * { margin-top: 1.15em; }
.prose p { color: var(--ink-300); }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 32px; line-height: 1.15; color: #fff; margin-top: 1.8em; }
.prose h3 { font-family: 'League Spartan', sans-serif; font-weight: 600; font-size: 20px; color: var(--champ-300); margin-top: 1.5em; }
.prose a { color: var(--champ-300); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(201,168,106,0.4); }
.prose a:hover { text-decoration-color: var(--champ-300); }
.prose strong { color: #fff; font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.3em; color: var(--ink-300); }
.prose li { margin-top: 0.5em; }
.prose li::marker { color: var(--champ-500); }
.prose blockquote { border-left: 3px solid var(--champ-500); margin: 1.6em 0; padding: 6px 0 6px 22px; font-family: 'Cormorant Garamond', serif; font-size: 23px; font-style: italic; color: var(--ink-100); }
.prose figure { margin: 2em 0; }
.prose figure img { border-radius: 14px; }
.prose figcaption { margin-top: 8px; font-size: 13px; color: var(--ink-500); text-align: center; }
.prose .lead { font-size: 20px; color: var(--ink-100); }
.prose code { background: var(--noir-800); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; font-size: 0.9em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.prose th { background: var(--noir-850); color: #fff; font-weight: 600; }

.callout { max-width: var(--readw); margin: 2em auto; padding: 0 20px; }
.callout .box { border: 1px solid rgba(201,168,106,0.30); background: rgba(201,168,106,0.06); border-radius: 16px; padding: 22px 24px; }
.callout .box .kicker { margin-bottom: 6px; }
.callout .box p { margin: 0; color: var(--ink-300); }

/* tags + share */
.article-foot { max-width: var(--readw); margin: 40px auto 0; padding: 0 20px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; color: var(--ink-400); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }

/* CTA block */
.cta-block { margin: 64px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(201,168,106,0.05), transparent); }
.cta-block .inner { max-width: var(--readw); margin: 0 auto; padding: 52px 20px; text-align: center; }
.cta-block h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(26px, 4vw, 38px); color: #fff; margin: 12px 0 0; line-height: 1.1; }
.cta-block p { margin: 14px auto 0; max-width: 52ch; color: var(--ink-400); }
.cta-block .btn { margin-top: 26px; }

/* related */
.related { padding: 64px 0 20px; }
.related h2.sec { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 30px; color: #fff; margin: 0 0 24px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--noir-900); margin-top: 80px; }
.site-footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding: 56px 0 40px; }
@media (max-width: 760px) { .site-footer .cols { grid-template-columns: 1fr; gap: 28px; } }
.site-footer p { color: var(--ink-400); font-size: 14px; max-width: 38ch; margin: 16px 0 0; }
.site-footer h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--champ-500); margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 14px; color: var(--ink-300); }
.site-footer ul a:hover { color: var(--champ-300); }
.site-footer .social { display: flex; gap: 12px; margin-top: 18px; }
.site-footer .social a { border: 1px solid var(--line); border-radius: 999px; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-300); }
.site-footer .social a svg { width: 17px; height: 17px; }
.site-footer .social a:hover { border-color: var(--champ-400); color: var(--champ-300); }
.site-footer .legal { border-top: 1px solid var(--line); padding: 22px 0; font-size: 12px; color: var(--ink-500); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; }

.breadcrumb { font-size: 12.5px; color: var(--ink-500); padding-top: 22px; }
.breadcrumb a:hover { color: var(--champ-300); }
.breadcrumb span { color: var(--champ-600); margin: 0 8px; }
