:root {
    --ink: #1a1119;
    --cream: #f6f1eb;
    --malbec: #4a1942;
    --malbec-light: #6b2d5e;
    --stone: #8c8279;
    --warm-gray: #c4bab0;
    --rule: #d4ccc3;
    --accent: #8b3a62;
    --white: #fffdf9;
  }

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

  html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
  }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Cormorant Garamond', Georgia, serif;
    line-height: 1.75;
  }

  /* ── HEADER BAR ── */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(246, 241, 235, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s ease;
  }

  .site-header .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--malbec);
  }

  .site-header .section-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    background: var(--ink);
  }

  .hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.55;
    filter: saturate(0.7);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem 3.5rem;
    max-width: 900px;
  }

  .hero-kicker {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-kicker::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--warm-gray);
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 750px;
  }

  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: #d4a0c0;
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 520px;
    line-height: 1.6;
  }

  .hero-meta {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .hero-meta span {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  /* ── ARTICLE BODY ── */
  .article-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
  }

  .article-body p {
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #2a2025;
    hanging-punctuation: first last;
  }

  .article-body p:first-of-type::first-letter {
    font-size: 3.8rem;
    float: left;
    line-height: 0.8;
    margin: 0.1em 0.12em 0 0;
    font-weight: 600;
    color: var(--malbec);
  }

  .article-body h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 1.85rem;
    line-height: 1.25;
    margin: 3.5rem 0 1.5rem;
    color: var(--malbec);
    letter-spacing: -0.01em;
  }

  .article-body h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin-top: 0.75rem;
    opacity: 0.5;
  }

  .article-body strong {
    font-weight: 600;
    color: var(--ink);
  }

  /* ── PULL QUOTE ── */
  .pull-quote {
    margin: 3rem -1rem;
    padding: 2.5rem 2rem;
    border-left: 2px solid var(--malbec);
    background: linear-gradient(135deg, rgba(74,25,66,0.04), transparent);
  }

  .pull-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: var(--malbec);
    margin-bottom: 0;
  }

  /* ── IMAGES ── */
  .article-image {
    margin: 3rem -2rem;
    position: relative;
  }

  .article-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .article-image figcaption {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--stone);
    padding: 0.75rem 2rem 0;
    max-width: 720px;
  }

  /* Full-bleed image */
  .full-bleed {
    margin: 4rem calc(-50vw + 50%);
    max-width: 100vw;
  }

  .full-bleed img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
  }

  .full-bleed figcaption {
    max-width: 720px;
    margin: 0 auto;
    padding: 0.75rem 2rem 0;
  }

  /* ── WINE GRID ── */
  .wine-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem -1rem;
  }

  .wine-pair figure {
    position: relative;
    overflow: hidden;
  }

  .wine-pair img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .wine-pair figure:hover img {
    transform: scale(1.02);
  }

  .wine-pair figcaption {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--stone);
    padding: 0.6rem 0 0;
    line-height: 1.5;
  }

  .wine-pair figcaption strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0;
    color: var(--ink);
  }

  /* Three-column wine grid */
  .wine-trio {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
    margin: 3rem -1rem;
  }

  .wine-trio figure { position: relative; overflow: hidden; }

  .wine-trio img {
    width: 100%;
    aspect-ratio: 3/4.5;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .wine-trio figcaption {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
    color: var(--stone);
    padding: 0.5rem 0 0;
    line-height: 1.5;
  }

  .wine-trio figcaption strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0;
    color: var(--ink);
  }

  /* Single bottle - centered narrow */
  .wine-single {
    margin: 3rem auto;
    max-width: 360px;
    text-align: center;
  }

  .wine-single img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
  }

  .wine-single figcaption {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: var(--stone);
    padding: 0.75rem 0 0;
  }

  .wine-single figcaption strong {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0;
    color: var(--ink);
  }

  /* ── SECTION BREAK ── */
  .section-break {
    text-align: center;
    margin: 3.5rem 0;
    color: var(--warm-gray);
    font-size: 1.2rem;
    letter-spacing: 0.5em;
  }

  /* ── FOOTER ── */
  .article-footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
    border-top: 1px solid var(--rule);
  }

  .article-footer .author-block {
    padding: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .author-block .author-info {
    flex: 1;
  }

  .author-block .author-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 0.25rem;
  }

  .author-block .author-bio {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    line-height: 1.6;
    color: var(--stone);
    letter-spacing: 0.02em;
  }

  .wine-list-summary {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: rgba(74,25,66,0.03);
    border: 1px solid var(--rule);
  }

  .wine-list-summary h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--malbec);
    margin-bottom: 1.25rem;
  }

  .wine-list-summary .wine-entry {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink);
  }

  .wine-list-summary .wine-entry:last-child {
    border-bottom: none;
  }

  .wine-list-summary .wine-entry .wine-name {
    font-weight: 600;
  }

  .wine-list-summary .wine-entry .wine-detail {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    color: var(--stone);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    html { font-size: 16px; }
    .hero-content { padding: 3rem 1.5rem 2.5rem; }
    .article-body { padding: 3rem 1.5rem 5rem; }
    .article-image { margin: 2.5rem -1.5rem; }
    .wine-pair { grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }
    .wine-trio { grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin: 2.5rem 0; }
    .full-bleed { margin: 3rem -1.5rem; max-width: calc(100% + 3rem); }
    .pull-quote { margin: 2.5rem 0; padding: 2rem 1.5rem; }
    .wine-list-summary { padding: 1.5rem; }
    .article-footer { padding: 0 1.5rem 4rem; }
  }

  @media (max-width: 520px) {
    .wine-trio { grid-template-columns: 1fr 1fr; }
  }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }