:root {
  --ink: #0f1115;
  --night: #15181d;
  --night-2: #1f232a;
  --charcoal: #29231e;
  --paper: #fff7e7;
  --cream: #f9ead0;
  --muted: #b9aa91;
  --gold: #ffc66e;
  --gold-2: #e19a38;
  --copper: #c65a3b;
  --ember: #f0673e;
  --line: rgba(255, 198, 110, 0.22);
  --glass: rgba(255, 255, 255, 0.06);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 76% 5%, rgba(255, 183, 72, .22), transparent 29rem),
    radial-gradient(circle at 13% 20%, rgba(240, 103, 62, .14), transparent 25rem),
    linear-gradient(135deg, #101318 0%, #1d1c1a 45%, #211912 100%);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold); }
img, svg { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  background: var(--gold);
  color: #1a1108;
  padding: .7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { left: 12px; }

.promo {
  background: linear-gradient(90deg, #1d1610, #4b2b16, #1d1610);
  color: #fff1ce;
  text-align: center;
  font-size: .88rem;
  letter-spacing: .05em;
  padding: .55rem 1rem;
  border-bottom: 1px solid rgba(255, 198, 110, .25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(15, 17, 21, .78);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-width: 210px;
}
.brand-mark {
  width: 64px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,.32));
}
.brand-text strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.05;
  color: var(--paper);
  letter-spacing: -.03em;
}
.brand-text span {
  display: block;
  color: var(--gold);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--paper);
  border-radius: 999px;
  padding: .6rem .85rem;
  cursor: pointer;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
  flex-wrap: wrap;
}
.primary-nav a {
  color: #f5e7cc;
  padding: .7rem .85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .94rem;
}
.primary-nav a[aria-current="page"], .primary-nav a:hover {
  background: rgba(255, 198, 110, .12);
  color: var(--gold);
}

.socials { display: flex; gap: .5rem; align-items: center; }
.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.045);
  color: var(--paper);
  font-size: .78rem;
  font-weight: 900;
}
.socials a:hover { background: rgba(255, 198, 110, .14); }

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.hero {
  padding: clamp(3.5rem, 8vw, 7.5rem) 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, .86fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 900;
  margin: 0 0 .8rem;
}
.hero h1, .page-title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--paper);
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  line-height: .88;
  letter-spacing: -.07em;
  margin: 0;
}
.hero h1 em, .page-title em {
  color: var(--gold);
  font-style: italic;
  text-shadow: 0 0 40px rgba(255, 198, 110, .22);
}
.hero-copy {
  max-width: 740px;
  color: #ddcfb7;
  font-size: clamp(1.04rem, 1.8vw, 1.25rem);
  margin: 1.35rem 0 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 198, 110, .38);
  color: #fff4db;
  font-weight: 900;
  background: rgba(255,255,255,.055);
  box-shadow: 0 8px 25px rgba(0,0,0,.22);
}
.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1b1108;
  border-color: transparent;
}
.button:hover { transform: translateY(-1px); color: #1b1108; background: var(--gold); }
.button.ghost:hover { color: var(--gold); background: rgba(255,198,110,.10); }

.hero-card {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1rem;
  box-shadow: var(--shadow);
  position: relative;
  isolation: isolate;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 70% 10%, rgba(255,198,110,.28), transparent 45%);
  z-index: -1;
}
.hero-card img { border-radius: calc(var(--radius-xl) - .7rem); width: 100%; height: auto; }
.hero-card .caption {
  margin: .85rem .35rem .15rem;
  color: var(--muted);
  font-size: .94rem;
}

.section { padding: 4.4rem 0; }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--paper);
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin: 0;
}
.section-heading p { color: var(--muted); max-width: 42rem; margin: .45rem 0 0; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.35rem;
}
.filter-button {
  border: 1px solid var(--line);
  color: #f2e5cd;
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  padding: .55rem .82rem;
  font-weight: 800;
  cursor: pointer;
}
.filter-button.is-active,
.filter-button:hover {
  color: #1b1108;
  background: var(--gold);
  border-color: transparent;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.045);
  box-shadow: 0 18px 60px rgba(0,0,0,.24);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(255,198,110,.55); background: rgba(255,255,255,.065); }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #111; }
.post-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  color: var(--gold);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}
.post-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--paper);
  font-size: 1.62rem;
  line-height: 1.08;
  margin: .75rem 0 .55rem;
  letter-spacing: -.035em;
}
.post-card p { color: #d8cab3; margin: 0 0 1.1rem; }
.read-more { margin-top: auto; color: var(--gold); font-weight: 900; }

.feature-band {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 1.25rem;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.feature-band img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.feature-copy { padding: clamp(1.4rem, 5vw, 3rem); display: grid; align-content: center; }
.feature-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .96;
  letter-spacing: -.05em;
  color: var(--paper);
  margin: .4rem 0 .9rem;
}
.feature-copy p { color: #ddcfb7; font-size: 1.08rem; }

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(255,198,110,.28);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255,198,110,.14), rgba(240,103,62,.07)),
    rgba(255,255,255,.04);
}
.newsletter h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.75rem, 4vw, 3rem); line-height: 1; }
.newsletter p { margin: .45rem 0 0; color: #dfd0b8; }

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: rgba(8, 10, 12, .56);
  padding: 2.6rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer-brand { max-width: 620px; }
.footer-brand h2 { font-family: Georgia, serif; font-size: 2rem; margin: 0 0 .35rem; letter-spacing: -.05em; }
.footer-brand p { color: var(--muted); margin: .25rem 0; }
.footer-links { display: grid; gap: .45rem; text-align: right; }
.footer-links a { color: var(--cream); font-weight: 800; }
.copyright { color: #9f917b; margin-top: 1.2rem; font-size: .9rem; }

.post-page { padding: 4rem 0; }
.article-shell { width: min(840px, calc(100% - 2rem)); margin: 0 auto; }
.article-hero { margin: 2rem 0; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.article-meta { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 900; margin-bottom: .85rem; }
.article-shell h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: .93;
  letter-spacing: -.07em;
  color: var(--paper);
  margin: 0;
}
.article-dek { color: #ddcfb7; font-size: 1.2rem; margin: 1rem 0 0; }
.article-content { color: #f1dfc2; font-size: 1.07rem; }
.article-content h2 {
  font-family: Georgia, serif;
  font-size: 2.15rem;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -.04em;
  margin: 2.5rem 0 .7rem;
}
.article-content p { margin: 1.05rem 0; }
.article-content ul { padding-left: 1.2rem; }
.article-content li { margin: .45rem 0; }
.article-content blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.4rem;
  border-left: 5px solid var(--gold);
  background: rgba(255,198,110,.09);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: #fff0cb;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.3;
}
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    padding: 1rem;
    background: rgba(15,17,21,.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: .78rem .9rem; }
  .socials { display: none; }
  .hero-grid, .feature-band, .newsletter, .footer-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { text-align: left; }
}

@media (max-width: 640px) {
  .nav-wrap { min-height: 74px; }
  .brand-mark { width: 52px; }
  .brand-text strong { font-size: 1.1rem; }
  .hero { padding-top: 2.5rem; }
  .post-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .article-nav { flex-direction: column; }
}
