:root {
  --paper: #f8f8f5;
  --white: #ffffff;
  --ink: #171717;
  --muted: #656565;
  --line: #d8d8d2;
  --blue: #c9dcf3;
  --blue-deep: #315d82;
  --wine: #701f35;
  --wine-soft: #f0dfe4;
  --khaki: #5f6748;
  --khaki-soft: #e6e7dc;
  --yellow: #f1d35e;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 248, 245, .96);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(calc(100% - 32px), var(--max));
  min-height: 68px;
  margin: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  text-decoration: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}
.brand span { color: var(--wine); font-style: italic; }
.main-nav { display: flex; justify-content: center; gap: 28px; }
.main-nav a,
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.main-nav a:hover, .footer-nav a:hover { color: var(--ink); }
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: white;
  padding: 10px 17px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: transform .16s ease, background .16s ease;
}
.button:hover, .header-cta:hover { background: var(--wine); border-color: var(--wine); transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--white); border-color: var(--ink); }
.menu-button { display: none; }

.trend-ticker { border-bottom: 1px solid var(--line); background: var(--white); }
.ticker-inner {
  width: min(calc(100% - 32px), var(--max));
  min-height: 36px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
}
.ticker-label { color: var(--wine); font-weight: 900; text-transform: uppercase; }
.ticker-inner a { color: var(--muted); text-decoration: none; }

.shell { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.hero {
  min-height: min(760px, calc(100vh - 104px));
  display: grid;
  grid-template-columns: minmax(300px, 43%) 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px clamp(26px, 5vw, 74px) 58px max(16px, calc((100vw - var(--max)) / 2));
}
.hero-media { position: relative; min-height: 590px; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; letter-spacing: 0; }
h1 { max-width: 650px; margin: 0; font-size: clamp(46px, 5.5vw, 78px); line-height: .98; font-weight: 600; }
h1 em { color: var(--wine); font-weight: 500; }
.hero-lede { max-width: 560px; margin: 25px 0 28px; color: #444; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.source-note { margin: 22px 0 0; color: var(--muted); font-size: 12px; }

.section { padding: 78px 0; border-bottom: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.section-heading h2 { max-width: 740px; margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.05; font-weight: 600; }
.section-heading p { max-width: 420px; margin: 0; color: var(--muted); }
.text-link { color: var(--wine); font-size: 13px; font-weight: 900; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card { min-width: 0; }
.story-card a { text-decoration: none; }
.story-image { aspect-ratio: 4 / 5; overflow: hidden; background: #e6e6e2; }
.story-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.story-card:hover .story-image img { transform: scale(1.025); }
.story-kicker { display: block; margin-top: 16px; color: var(--wine); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.story-card h3 { margin: 7px 0 8px; font-size: 26px; line-height: 1.08; font-weight: 600; }
.story-card p { margin: 0; color: var(--muted); font-size: 14px; }

.ad-slot {
  min-height: 108px;
  margin: 40px auto;
  display: grid;
  place-items: center;
  border-block: 1px solid var(--line);
  color: #989893;
  font-size: 10px;
  text-transform: uppercase;
}
.ad-slot[data-active="false"] { display: none; }

.guide-band { background: var(--blue); }
.guide-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.guide-copy h2 { margin: 0 0 18px; font-size: clamp(38px, 4.5vw, 62px); line-height: 1.02; font-weight: 600; }
.guide-copy p { max-width: 590px; color: #2f4558; }
.formula {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(23,23,23,.24);
}
.formula div { padding: 18px; border-right: 1px solid rgba(23,23,23,.24); }
.formula div:last-child { border-right: 0; }
.formula b { display: block; font-size: 12px; text-transform: uppercase; }
.formula span { color: #38546a; font-size: 12px; }
.guide-photo { min-height: 450px; overflow: hidden; }
.guide-photo img { width: 100%; height: 100%; object-fit: cover; }

.newsletter { background: var(--wine); color: white; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.newsletter h2 { margin: 0; font-size: clamp(36px, 4vw, 54px); line-height: 1.02; }
.newsletter p { color: rgba(255,255,255,.74); }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.newsletter-form input { min-height: 48px; border: 1px solid rgba(255,255,255,.45); border-radius: 4px; background: white; padding: 10px 14px; }
.newsletter-form button { min-height: 48px; border: 1px solid white; border-radius: 4px; background: var(--yellow); color: var(--ink); padding: 10px 18px; font-weight: 900; cursor: pointer; }
.form-note { margin: 8px 0 0; font-size: 11px; color: rgba(255,255,255,.68); }

.site-footer { padding: 46px 0 30px; background: var(--ink); color: white; }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.site-footer .brand { display: inline-block; color: white; }
.site-footer .brand span { color: var(--blue); }
.footer-copy { max-width: 470px; color: #aaa; font-size: 13px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 28px; }
.footer-nav a { color: #ccc; }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid #333; color: #888; font-size: 11px; }

.article-header { padding: 68px 0 40px; }
.breadcrumbs { margin-bottom: 26px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { text-decoration: none; }
.article-header h1 { max-width: 900px; font-size: clamp(44px, 6vw, 76px); }
.article-deck { max-width: 760px; margin: 24px 0; color: #484848; font-size: 20px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 12px; }
.article-hero { width: min(calc(100% - 32px), 1180px); max-height: 720px; margin: auto; overflow: hidden; }
.article-hero img { width: 100%; max-height: 720px; object-fit: cover; object-position: center 40%; }
.article-layout { width: min(calc(100% - 32px), 1060px); margin: 55px auto 90px; display: grid; grid-template-columns: minmax(0, 680px) 270px; gap: 80px; align-items: start; }
.article-body { min-width: 0; }
.article-body h2 { margin: 52px 0 14px; font-size: 36px; line-height: 1.08; }
.article-body h3 { margin: 36px 0 10px; font-size: 25px; line-height: 1.12; }
.article-body p { margin: 0 0 20px; }
.article-body ul { margin: 0 0 24px; padding-left: 22px; }
.article-body li { margin-bottom: 9px; }
.article-body blockquote { margin: 36px 0; padding: 22px 26px; border-left: 4px solid var(--wine); background: var(--wine-soft); font-family: "Playfair Display", Georgia, serif; font-size: 22px; line-height: 1.35; }
.look-formula { display: grid; grid-template-columns: repeat(3, 1fr); margin: 30px 0; border: 1px solid var(--line); background: white; }
.look-formula div { min-height: 110px; padding: 18px; border-right: 1px solid var(--line); }
.look-formula div:last-child { border-right: 0; }
.look-formula b { display: block; color: var(--wine); font-size: 11px; text-transform: uppercase; }
.look-formula span { display: block; margin-top: 6px; font-size: 14px; }
.article-source { padding: 18px; background: #ecece7; color: #555; font-size: 12px; }
.article-source a { color: var(--wine); }
.sidebar { position: sticky; top: 92px; }
.sidebar-ad { min-height: 280px; margin: 0 0 18px; background: #eeeeea; }
.sidebar-box { padding: 22px; border: 1px solid var(--line); background: white; }
.sidebar-box + .sidebar-box { margin-top: 18px; }
.sidebar-box h2 { margin: 0 0 10px; font-size: 23px; line-height: 1.1; }
.sidebar-box p { color: var(--muted); font-size: 13px; }
.sidebar-cover { aspect-ratio: 1; margin-bottom: 16px; overflow: hidden; }
.sidebar-cover img { width: 100%; height: 100%; object-fit: cover; }
.related-list a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 13px; font-weight: 800; }
.related-list a:last-child { border-bottom: 0; }

.legal { width: min(calc(100% - 32px), 820px); margin: 65px auto 100px; }
.legal h1 { font-size: clamp(42px, 6vw, 68px); }
.legal h2 { margin-top: 42px; font-size: 30px; }
.legal p, .legal li { color: #444; }

.consent {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  width: min(calc(100% - 36px), 420px);
  padding: 20px;
  border: 1px solid #3b3b3b;
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.consent[hidden] { display: none; }
.consent p { margin: 0 0 14px; color: #ccc; font-size: 12px; }
.consent-actions { display: flex; gap: 8px; }
.consent button { min-height: 40px; border: 1px solid white; border-radius: 4px; padding: 8px 12px; cursor: pointer; font-size: 12px; font-weight: 800; }
.consent-accept { background: white; color: var(--ink); }
.consent-essential { background: transparent; color: white; }

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
  .main-nav { display: none; grid-column: 1 / -1; padding: 0 0 16px; justify-content: start; flex-wrap: wrap; gap: 14px 24px; }
  .main-nav.is-open { display: flex; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 50px 24px; }
  .hero-media { min-height: 58vw; order: -1; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center; }
  .guide-layout, .newsletter-inner { grid-template-columns: 1fr; }
  .guide-photo { min-height: 360px; }
  .article-layout { grid-template-columns: 1fr; gap: 45px; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .sidebar-box + .sidebar-box { margin-top: 0; }
}

@media (max-width: 620px) {
  .section { padding: 56px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 14px; }
  .story-grid { grid-template-columns: 1fr; gap: 34px; }
  .story-card:last-child { grid-column: auto; display: block; }
  .hero-media { min-height: 74vw; }
  h1 { font-size: 46px; }
  .formula, .look-formula { grid-template-columns: 1fr; }
  .formula div, .look-formula div { border-right: 0; border-bottom: 1px solid rgba(23,23,23,.2); }
  .formula div:last-child, .look-formula div:last-child { border-bottom: 0; }
  .newsletter-form { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .article-header { padding-top: 48px; }
  .article-deck { font-size: 18px; }
  .article-layout { margin-top: 38px; }
  .article-body h2 { font-size: 31px; }
  .sidebar { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
