/* ============================================================
   ISLAND GROVE — TASTE SATELLITE
   ig.css — full production stylesheet
   Hugo static file: /static/css/ig.css
   ============================================================ */

/* ── SELF-HOSTED FONTS ──────────────────────────────────────────
   Place font files in /static/fonts/ — Netlify serves automatically.
   Obtain:
     Gill Sans Nova      → fonts.adobe.com (Creative Cloud) or Monotype
     Elegant Typewriter  → dafont.com (free)
     Stupid Meeting      → dafont.com (free)
   Convert to woff2/woff at fontsquirrel.com/tools/webfont-generator
──────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Gill Sans Nova';
  src: url('../fonts/gill-sans-nova.woff2') format('woff2'),
       url('../fonts/gill-sans-nova.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Gill Sans Nova';
  src: url('../fonts/gill-sans-nova-bold.woff2') format('woff2'),
       url('../fonts/gill-sans-nova-bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
} 
@font-face {
  font-family: 'Elegant Typewriter';
  src: url('../fonts/elegant-typewriter.woff2') format('woff2'),
       url('../fonts/elegant-typewriter.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Stupid Meeting';
  src: url('../fonts/stupid-meeting.woff2') format('woff2'),
       url('../fonts/stupid-meeting.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ── TOKENS ── */
:root {
  --ig-black:      #111111;
  --ig-white:      #ffffff;
  --ig-cream:      #f7f4ef;
  --ig-cream-mid:  #f0ede8;
  --ig-border:     #e8e3db;
  --ig-muted:      #aaaaaa;
  --ig-teal:       #00b5ac;
  --ig-teal-bg:    #edfaf9;
  --ig-teal-text:  #00875e;
  --ig-pink:       #e8004d;
  --ig-pink-bg:    #fff0f4;
  --ig-lime:       #8dc63f;
  --ig-lime-bg:    #f4fae8;
  --ig-lime-text:  #5a8a1a;
  --ig-blue:       #4a7fcb;
  --ig-blue-bg:    #edf3fb;
  --font-h1:         'futura-pt', Futura, 'Futura Std', 'FuturaPT', Arial, sans-serif;
  --font-h2:         'lulo-clean-w01-one-bold', 'lulo-clean-w05-one-bold', Arial, sans-serif;
  --font-h3:         'futura-pt', Futura, 'Futura Std', 'FuturaPT', Arial, sans-serif;
  --font-body:       'futura-pt', Futura, 'Futura Std', 'FuturaPT', Arial, sans-serif;
  --font-body-light: 'futura-pt', Futura, 'Futura Std', 'FuturaPT', Arial, sans-serif;
  --font-button:     'futura-pt', Futura, 'Futura Std', 'FuturaPT', Arial, sans-serif;
  --font-script:     'MonteCarlo', cursive;
  --font-ui:         'Gill Sans Nova', 'Barlow Condensed', sans-serif;
  --font-typewriter: 'Elegant Typewriter', 'Courier New', monospace;
  --font-accent:     'Stupid Meeting', 'Bebas Neue', sans-serif;
  --section-pad:   28px;
  --card-radius:   6px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 96px; }
body { font-family: var(--font-body-light); font-weight: 300; background: var(--ig-cream); color: var(--ig-black); -webkit-font-smoothing: antialiased; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── PAGE WRAPPER ── */
.ig-page { max-width: 1200px; margin: 0 auto; }

/* ── PROGRESS BAR ── */
.ig-progress { height: 3px; background: var(--ig-cream-mid); position: sticky; top: 0; z-index: 200; }
.ig-progress__fill { height: 100%; background: var(--ig-teal); width: 0%; transition: width 0.1s linear; border-radius: 0 2px 2px 0; }

/* ── NAV ── */
.ig-nav {
  background: var(--ig-white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 2px solid var(--ig-black);
  position: sticky; top: 3px; z-index: 100;
}
.ig-nav__logo { display: flex; align-items: center; flex-shrink: 0; gap: 10px; }
.ig-nav__logo img { height: 57px; width: auto; display: block; }
.ig-nav__taste {
  border-left: 1.5px solid var(--ig-border);
  padding-left: 10px;
  display: flex; flex-direction: column; justify-content: center;
}
.ig-nav__taste-word {
  font-family: var(--font-script);
  font-size: 34px; color: var(--ig-teal); line-height: 1; display: block;
}
.ig-nav__taste-sub {
  font-family: var(--font-accent);
  font-size: 11px; font-weight: normal; letter-spacing: 0.06em;
  color: var(--ig-black); margin-top: 4px; display: block;
}
.ig-nav__links {
  display: flex; gap: 24px;
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: #666; list-style: none;
}
.ig-nav__links a:hover, .ig-nav__links a.active { color: var(--ig-black); }
.ig-nav__cta {
  background: var(--ig-black); color: var(--ig-white);
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 3px; transition: background 0.15s;
}
.ig-nav__cta:hover { background: var(--ig-teal); }
.ig-nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.ig-nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--ig-black); border-radius: 1px; }

/* ── TICKER ── */
.ig-ticker { background: var(--ig-teal); padding: 10px 0; overflow: hidden; white-space: nowrap; }
.ig-ticker__inner { display: inline-flex; animation: ig-ticker 28s linear infinite; }
.ig-ticker__inner:hover { animation-play-state: paused; }
.ig-ticker__item { font-family: var(--font-display); font-size: 15px; letter-spacing: 0.14em; color: var(--ig-white); padding: 0 28px; }
.ig-ticker__dot { font-family: var(--font-display); font-size: 15px; color: rgba(255,255,255,0.35); }
@keyframes ig-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── COLLECTION BADGE ── */
.ig-collection-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.ig-collection-badge__dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ig-collection-badge__label { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

/* ── META PILLS ── */
.ig-hero__meta { display: flex; align-items: center; gap: 10px; margin: 18px 0; flex-wrap: wrap; }
.ig-pill { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 11px; border-radius: 2px; background: var(--ig-cream-mid); border: 1px solid var(--ig-border); color: #777; }
.ig-hero__lede { font-size: 16px; font-weight: 300; line-height: 1.75; color: #555; max-width: 500px; }
.ig-hero__lede strong { color: var(--ig-black); font-weight: 500; }

/* ── HOMEPAGE HERO ── */
.ig-hero {
  background: var(--ig-white); border-bottom: 2px solid var(--ig-black);
  padding: 48px 32px 44px; position: relative; overflow: hidden;
}
.ig-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: var(--ig-teal); opacity: 0.07; pointer-events: none; }
.ig-hero::after  { content: ''; position: absolute; bottom: -100px; right: 80px; width: 240px; height: 240px; border-radius: 50%; background: var(--ig-pink); opacity: 0.05; pointer-events: none; }
.ig-card--pink.ig-hero::before { background: var(--ig-pink); }
.ig-card--lime.ig-hero::before { background: var(--ig-lime); }
.ig-card--blue.ig-hero::before { background: var(--ig-blue); }
.ig-hero__medallion { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; opacity: 0.15; pointer-events: none; object-fit: contain; }
.ig-hero__inner { position: relative; z-index: 2; max-width: 600px; }
.ig-hero__title { font-family: var(--font-h1); font-size: 64px; font-weight: 300; line-height: 0.92; letter-spacing: 0.02em; color: var(--ig-black); margin-bottom: 4px; }
.ig-hero__script { font-family: var(--font-script); font-size: 70px; display: block; line-height: 1.05; letter-spacing: 0; }
.ig-hero__read-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-family: var(--font-ui); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1.5px solid; padding-bottom: 2px; transition: opacity 0.15s; }
.ig-hero__read-link:hover { opacity: 0.7; }

/* ── POST HERO ── */
.ig-post-hero { background: var(--ig-white); border-bottom: 2px solid var(--ig-black); padding: 0; position: relative; overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; }
.ig-post-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-post-hero__img--placeholder { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, #ccc8c0 0px, #ccc8c0 1px, #d8d4cc 1px, #d8d4cc 12px); }
.ig-post-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.05) 100%); }
.ig-post-hero__accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.ig-post-hero__inner { position: relative; z-index: 2; padding: 48px 40px 40px; max-width: 700px; }
.ig-post-hero__title { font-family: var(--font-h1); font-size: 58px; font-weight: 300; line-height: 0.92; letter-spacing: 0.02em; color: var(--ig-white); margin-bottom: 4px; }
.ig-post-hero__script { font-family: var(--font-script); font-size: 64px; color: var(--ig-pink); display: block; line-height: 1.05; letter-spacing: 0; }
.ig-card--teal .ig-post-hero__script { color: var(--ig-teal); }
.ig-card--lime .ig-post-hero__script { color: var(--ig-lime); }
.ig-card--blue .ig-post-hero__script { color: var(--ig-blue); }

/* ── POST LAYOUT (2-col) ── */
.ig-post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 0; background: var(--ig-white); align-items: start; }
.ig-post-body { padding: 32px 36px 48px; border-right: 1px solid var(--ig-border); min-width: 0; }

/* ── ARTICLE BODY TYPOGRAPHY ── */
.ig-article-body { font-size: 1.35rem; font-weight: 300; line-height: 1.85; color: #444; }
.ig-article-body p { margin-bottom: 20px; }
.ig-article-body strong { color: var(--ig-black); font-weight: 500; }
.ig-article-body h2 { font-family: var(--font-h2); font-size: 28px; font-weight: bold; letter-spacing: 0.06em; color: var(--ig-black); margin: 32px 0 12px; }
.ig-article-body h3 { font-family: var(--font-h3); font-size: 16px; font-weight: bold; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ig-black); margin: 24px 0 8px; }
.ig-article-body ul, .ig-article-body ol { margin: 0 0 20px 20px; }
.ig-article-body li { margin-bottom: 6px; }
.ig-article-body img { width: 100%; border-radius: var(--card-radius); margin: 24px 0; }
.ig-article-body figure { margin: 24px 0; }
.ig-article-body figcaption { font-family: var(--font-ui); font-size: 11px; color: #bbb; text-align: center; margin-top: 6px; letter-spacing: 0.06em; }
.ig-article-body hr { display: none; }

/* Pull quote */
.ig-pull { border-left: 4px solid var(--ig-pink); padding: 16px 22px; margin: 28px 0; background: var(--ig-cream); }
.ig-pull p { font-family: var(--font-script); font-size: 26px; line-height: 1.35; color: var(--ig-black); }
.ig-card--teal .ig-pull { border-color: var(--ig-teal); }
.ig-card--lime .ig-pull { border-color: var(--ig-lime); }
.ig-card--blue .ig-pull { border-color: var(--ig-blue); }

/* Rule divider */
.ig-rule { display: flex; align-items: center; gap: 14px; margin: 32px 0; }
.ig-rule__line { flex: 1; height: 1.5px; background: var(--ig-border); }
.ig-rule__icon { font-size: 18px; display: flex; align-items: center; justify-content: center; }

.ig-skull-icon {
  height: 1.6em;
  width: auto;
  vertical-align: middle;
  filter: contrast(1.2) brightness(0.95);
}

/* ── SKULL DIVIDER ── */
.ig-skull-divider {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  background: var(--ig-white);
}
.ig-skull-divider .ig-skull-icon {
  height: 36px;
  width: auto;
  opacity: 0.75;
  filter: none;
}

/* ── SHARE BAR ── */
.ig-share { display: flex; align-items: center; gap: 8px; padding: 10px 0; margin-bottom: 20px; border-bottom: 1px solid var(--ig-border); }
.ig-share__label { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #bbb; margin-right: 4px; }
.ig-share__btn { width: 28px; height: 28px; border-radius: 50%; background: var(--ig-cream-mid); border: 1px solid var(--ig-border); display: flex; align-items: center; justify-content: center; font-size: 12px; color: #777; transition: background 0.15s, color 0.15s; }
.ig-share__btn:hover { background: var(--ig-black); color: var(--ig-white); border-color: var(--ig-black); }

/* ── POST FOOTER ── */
.ig-post-footer { margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--ig-border); }
.ig-post-meta { font-family: var(--font-ui); font-size: 11px; color: #bbb; letter-spacing: 0.08em; margin-top: 10px; }

/* ── SIDEBAR ── */
.ig-sidebar { padding: 24px 20px; background: var(--ig-cream); position: sticky; top: calc(3px + 60px); max-height: calc(100vh - 80px); overflow-y: auto; }
.ig-sidebar__block { margin-bottom: 20px; }
.ig-sidebar__label { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #444; margin-bottom: 12px; }

/* Product callout */
.ig-product { background: var(--ig-black); border-radius: 4px; padding: 14px; margin-bottom: 12px; }
.ig-product__eyebrow { font-family: var(--font-ui); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #555; margin-bottom: 8px; }
.ig-product__inner { display: flex; gap: 10px; align-items: flex-start; }
.ig-product__bottle-placeholder { width: 38px; height: 52px; background: repeating-linear-gradient(135deg, #222 0, #222 1px, #1a1a1a 1px, #1a1a1a 6px); border-radius: 3px; flex-shrink: 0; }
.ig-product__name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.08em; margin-bottom: 3px; }
.ig-product__meta { font-size: 10px; font-weight: 300; color: #888; line-height: 1.5; margin-bottom: 8px; }
.ig-product__btn { display: inline-block; border: 1px solid; font-family: var(--font-ui); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; transition: background 0.15s, color 0.15s; }

/* Pairing module */
.ig-pairing { background: var(--ig-lime-bg); border: 1px solid var(--ig-lime); border-radius: 4px; padding: 12px; margin-bottom: 12px; }
.ig-pairing__label { font-family: var(--font-ui); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ig-lime-text); margin-bottom: 8px; }
.ig-pairing__list { display: flex; flex-direction: column; gap: 5px; }
.ig-pairing__list li { font-size: 11px; color: #555; display: flex; align-items: center; gap: 7px; }
.ig-pairing__list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ig-lime); flex-shrink: 0; }

/* TOC */
.ig-toc { border: 1px solid var(--ig-border); border-radius: 4px; overflow: hidden; margin-bottom: 16px; }
.ig-toc__hdr { background: var(--ig-cream-mid); padding: 10px 14px; font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #444; }
.ig-toc nav ul { margin: 0; padding: 0; list-style: none; }
.ig-toc nav ul li a { display: block; padding: 8px 14px; border-top: 1px solid var(--ig-border); font-family: var(--font-ui); font-size: 13px; color: #444; line-height: 1.4; transition: color 0.1s; }
.ig-toc nav ul li a:hover { color: var(--ig-teal-text); }

/* Related posts */
.ig-related { display: flex; flex-direction: column; gap: 14px; }
.ig-related__item { border-left: 4px solid; padding-left: 12px; }
.ig-related__tag { display: block; font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.ig-related__title { font-family: var(--font-ui); font-size: 13px; font-weight: 700; line-height: 1.35; color: var(--ig-black); }
.ig-related__title:hover { opacity: 0.75; }

/* ── HOME LEDE ── */
.ig-home-lede { background: var(--ig-white); padding: 28px 32px 24px; max-width: 780px; margin: 0 auto; }
.ig-home-lede__text { font-size: 16px; font-weight: 300; line-height: 1.85; color: #444; margin-bottom: 16px; }
.ig-home-lede__text p { margin-bottom: 12px; }
.ig-home-lede__text strong { color: var(--ig-black); font-weight: 500; }
.ig-home-lede__link { font-family: var(--font-button); font-size: 16px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ig-teal); border-bottom: 1.5px solid var(--ig-teal); padding-bottom: 2px; transition: opacity 0.15s; }
.ig-home-lede__link:hover { opacity: 0.7; }

/* ── CARDS SECTION ── */
.ig-cards-section { background: var(--ig-cream); padding: var(--section-pad) 32px 32px; }
.ig-cards-section__label { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ig-muted); margin-bottom: 14px; }
.ig-cards-section__footer { text-align: center; margin-top: 20px; }
.ig-cards-section__all { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border: 1.5px solid var(--ig-black); color: var(--ig-black); padding: 9px 22px; border-radius: 2px; display: inline-block; transition: background 0.15s, color 0.15s; }
.ig-cards-section__all:hover { background: var(--ig-black); color: var(--ig-white); }
.ig-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

/* ── FULL-BLEED CARD ── */
.ig-card--bleed { position: relative; border-radius: var(--card-radius); overflow: hidden; grid-column: span 2; height: 300px; display: block; cursor: pointer; }
.ig-card--bleed.ig-card--featured { height: 340px; }
.ig-card--bleed .ig-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-card--bleed .ig-card__img--placeholder { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, #ccc8c0 0px, #ccc8c0 1px, #d4d0c8 1px, #d4d0c8 12px); }
.ig-card--bleed:hover .ig-card__img { transform: scale(1.03); }
.ig-card--bleed .ig-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.05) 100%); }
.ig-card--bleed .ig-card__accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.ig-card--teal .ig-card__accent-bar { background: var(--ig-teal); }
.ig-card--pink .ig-card__accent-bar { background: var(--ig-pink); }
.ig-card--lime .ig-card__accent-bar { background: var(--ig-lime); }
.ig-card--blue .ig-card__accent-bar { background: var(--ig-blue); }
.ig-card--bleed .ig-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 24px 22px; }
.ig-card--bleed .ig-card__tag { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.ig-card--bleed .ig-card__tag::before { content: ''; width: 20px; height: 2px; background: currentColor; display: inline-block; }
.ig-card--teal .ig-card__tag { color: var(--ig-teal); }
.ig-card--pink .ig-card__tag { color: var(--ig-pink); }
.ig-card--lime .ig-card__tag { color: var(--ig-lime); }
.ig-card--blue .ig-card__tag { color: var(--ig-blue); }
.ig-card--bleed .ig-card__title { font-family: var(--font-ui); font-size: 22px; font-weight: 700; line-height: 1.2; color: var(--ig-white); margin-bottom: 10px; max-width: 560px; }
.ig-card--bleed .ig-card__title a { color: inherit; }
.ig-card--bleed .ig-card__footer { display: flex; align-items: center; justify-content: space-between; }
.ig-card--bleed .ig-card__read { font-family: var(--font-button); font-size: 16px; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; transition: opacity 0.15s; }
.ig-card--teal .ig-card__read { color: var(--ig-teal); }
.ig-card--pink .ig-card__read { color: var(--ig-pink); }
.ig-card--lime .ig-card__read { color: var(--ig-lime); }
.ig-card--blue .ig-card__read { color: var(--ig-blue); }
.ig-card--bleed .ig-card__read:hover { opacity: 0.7; }
.ig-card--bleed .ig-card__time { font-family: var(--font-ui); font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; }

/* ── STANDARD CARD ── */
.ig-card--std { background: var(--ig-white); border-radius: var(--card-radius); border: 1.5px solid var(--ig-border); border-top: 4px solid var(--ig-black); overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: transform 0.15s ease; }
.ig-card--std:hover { transform: translateY(-3px); }
.ig-card--std.ig-card--teal { border-top-color: var(--ig-teal); }
.ig-card--std.ig-card--pink { border-top-color: var(--ig-pink); }
.ig-card--std.ig-card--lime { border-top-color: var(--ig-lime); }
.ig-card--std.ig-card--blue { border-top-color: var(--ig-blue); }
.ig-card__img-wrap { width: 100%; height: 160px; overflow: hidden; flex-shrink: 0; display: block; }
.ig-card--std .ig-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-card--std .ig-card__img--placeholder { width: 100%; height: 100%; background: repeating-linear-gradient(45deg, #dedad4 0, #dedad4 1px, #e8e3db 1px, #e8e3db 10px); }
.ig-card--std:hover .ig-card__img { transform: scale(1.04); }
.ig-card--std .ig-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.ig-card--std .ig-card__tag { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #bbb; margin-bottom: 7px; }
.ig-card--std.ig-card--teal .ig-card__tag { color: var(--ig-teal-text); }
.ig-card--std.ig-card--pink .ig-card__tag { color: var(--ig-pink); }
.ig-card--std.ig-card--lime .ig-card__tag { color: var(--ig-lime-text); }
.ig-card--std.ig-card--blue .ig-card__tag { color: var(--ig-blue); }
.ig-card--std .ig-card__title { font-family: var(--font-ui); font-size: 18px; font-weight: 700; line-height: 1.25; color: var(--ig-black); margin-bottom: 7px; flex: 1; }
.ig-card--std .ig-card__title a { color: inherit; }
.ig-card--std .ig-card__excerpt { font-size: 14.5px; font-weight: 300; line-height: 1.65; color: #353535; }
.ig-card--std .ig-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.ig-card--std .ig-card__read { font-family: var(--font-button); font-size: 16px; font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase; color: #ccc; transition: opacity 0.15s; }
.ig-card--std.ig-card--teal .ig-card__read { color: var(--ig-teal); }
.ig-card--std.ig-card--pink .ig-card__read { color: var(--ig-pink); }
.ig-card--std.ig-card--lime .ig-card__read { color: var(--ig-lime); }
.ig-card--std.ig-card--blue .ig-card__read { color: var(--ig-blue); }
.ig-card--std .ig-card__read:hover { opacity: 0.7; }
.ig-card--std .ig-card__time { font-family: var(--font-ui); font-size: 10px; color: #ccc; letter-spacing: 0.06em; }

/* Mobile TOC (above article body) — hidden on desktop */
.ig-toc--mobile { display: none; margin-bottom: 24px; }

/* ── ARCHIVE HEADER ── */
.ig-archive-header { background: var(--ig-white); border-bottom: 2px solid var(--ig-black); padding: 36px 32px 28px; position: relative; overflow: hidden; }
.ig-archive-header--tag { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.ig-archive-header__eyebrow { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #bbb; margin-bottom: 6px; }
.ig-archive-header__title { font-family: var(--font-display); font-size: 52px; letter-spacing: 0.02em; color: var(--ig-black); line-height: 0.92; }
.ig-archive-header__script { font-family: var(--font-script); font-size: 58px; color: var(--ig-pink); display: block; line-height: 1.05; }
.ig-archive-header__count { font-family: var(--font-ui); font-size: 11px; color: var(--ig-muted); letter-spacing: 0.1em; margin-top: 8px; }

/* ── COLLECTION ARCHIVE HEADER ── */
.ig-collection-header { background: var(--ig-white); border-bottom: 4px solid; padding: 32px 32px 24px; }
.ig-collection-header__title { font-family: var(--font-display); font-size: 48px; letter-spacing: 0.02em; color: var(--ig-black); line-height: 0.92; }
.ig-collection-header__script { font-family: var(--font-script); font-size: 54px; display: block; line-height: 1.05; }
.ig-collection-header__count { font-family: var(--font-ui); font-size: 11px; color: var(--ig-muted); letter-spacing: 0.1em; margin-top: 8px; }

/* ── FILTER BAR ── */
.ig-filter-bar { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; padding: 12px 32px; background: var(--ig-cream); border-bottom: 1px solid var(--ig-border); }
.ig-filter { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; border: 1.5px solid var(--ig-border); color: #888; background: var(--ig-white); transition: all 0.1s; }
.ig-filter:hover { border-color: var(--ig-black); color: var(--ig-black); }
.ig-filter--active { background: var(--ig-black); color: var(--ig-white) !important; border-color: var(--ig-black) !important; }
.ig-filter--collection { border-color: var(--col, var(--ig-border)); color: var(--col, #888); background: color-mix(in srgb, var(--col, #eee) 8%, white); }
.ig-filter--collection:hover, .ig-filter--collection[aria-current="page"] { background: var(--col, var(--ig-black)); color: var(--ig-white); border-color: var(--col, var(--ig-black)); }
.ig-filter-bar__spacer { flex: 1; }
.ig-filter-bar__count { font-family: var(--font-ui); font-size: 10px; color: #bbb; letter-spacing: 0.06em; }

/* ── COLLECTION GROUP ── */
.ig-collection-group { padding: 0 32px 20px; }
.ig-collection-group__hdr { display: flex; align-items: center; gap: 12px; padding: 16px 0 12px; border-bottom: 1px solid var(--ig-border); margin-bottom: 14px; }
.ig-collection-group__swatch { width: 4px; height: 32px; border-radius: 2px; flex-shrink: 0; }
.ig-collection-group__name { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.06em; color: var(--ig-black); }
.ig-collection-group__sub { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ig-muted); }
.ig-collection-group__link { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-left: auto; }
.ig-cards--row { grid-template-columns: repeat(3, 1fr); }
.ig-cards--row .ig-card--bleed { grid-column: span 1; height: 200px; }

/* ── TAG CLOUD ── */
.ig-tag-cloud { display: flex; flex-wrap: wrap; gap: 5px; max-width: 340px; }
.ig-tag { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; background: var(--ig-white); border: 1px solid var(--ig-border); color: #888; transition: all 0.1s; }
.ig-tag:hover, .ig-tag--active { background: var(--ig-black); color: var(--ig-white); border-color: var(--ig-black); }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 6px; padding: 24px 0 8px; }
.pagination a, .pagination span { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 2px; border: 1.5px solid var(--ig-border); color: #888; background: var(--ig-white); }
.pagination .active, .pagination a:hover { background: var(--ig-black); color: var(--ig-white); border-color: var(--ig-black); }

/* ── CTA STRIP ── */
.ig-cta { background: var(--ig-black); padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ig-cta__eyebrow { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #878787; margin-bottom: 4px; }
.ig-cta__title { font-family: var(--font-display); font-size: 26px; letter-spacing: 0.06em; color: var(--ig-white); margin-bottom: 4px; }
.ig-cta__sub { font-size: 13px; font-weight: 300; color: #878787; }
.ig-cta__btn { background: transparent; border: 1.5px solid var(--ig-teal); color: var(--ig-teal); font-family: var(--font-button); font-size: 16px; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase; padding: 12px 22px; border-radius: 3px; cursor: pointer; white-space: nowrap; transition: background 0.15s, color 0.15s; display: inline-block; }
.ig-cta__btn:hover { background: var(--ig-teal); color: var(--ig-white); }

/* ── COLLECTIONS BAR ── */
.ig-collections { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ig-black); border-bottom: 2px solid var(--ig-black); background: var(--ig-white); }
.ig-col-block { padding: 20px 16px; text-align: center; border-right: 1.5px solid var(--ig-border); cursor: pointer; transition: background 0.15s; text-decoration: none; display: block; }
.ig-col-block:last-child { border-right: none; }
.ig-col-block:hover { background: var(--ig-cream); }
.ig-col-block__swatch { width: 32px; height: 5px; border-radius: 3px; margin: 0 auto 10px; }
.ig-col-block__name { font-family: var(--font-display); font-size: 17px; letter-spacing: 0.1em; color: var(--ig-black); margin-bottom: 3px; }
.ig-col-block__sub { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ig-muted); }

/* ── FOOTER ── */
.ig-footer { background: var(--ig-white); border-top: 1px solid var(--ig-border); padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ig-footer__logo { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.14em; color: #656363 ; }
.ig-footer__links { display: flex; gap: 18px; font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #bbb; }
.ig-footer__links a:hover { color: var(--ig-black); }
.ig-footer__copy { font-size: 11px; color: #7b7b7b; font-weight: 300; width: 100%; }

/* ── EVENTS VIDEO BUTTON ── */
.ig-events-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 8px;
  background: var(--ig-black); color: var(--ig-white);
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 16px; border-radius: 30px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background 0.15s, transform 0.15s;
}
.ig-events-btn:hover { background: var(--ig-teal); transform: translateY(-2px); }
.ig-events-btn__icon { font-size: 13px; }

/* ── EVENTS MODAL ── */
.ig-events-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; }
.ig-events-modal[hidden] { display: none; }
.ig-events-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
.ig-events-modal__box { position: relative; z-index: 1; width: 90vw; max-width: 900px; background: #000; border-radius: 6px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.ig-events-modal__close {
  position: absolute; top: 10px; right: 12px; z-index: 2;
  background: rgba(0,0,0,0.5); color: var(--ig-white); border: none; cursor: pointer;
  font-size: 22px; line-height: 1; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.ig-events-modal__close:hover { background: var(--ig-pink); }
.ig-events-modal__ratio { position: relative; width: 100%; padding-bottom: 56.25%; }
.ig-events-modal__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ═══════════════════════════
   RESPONSIVE
═══════════════════════════ */
@media (max-width: 960px) {
  .ig-post-layout { grid-template-columns: 1fr; }
  .ig-sidebar { position: static; max-height: none; border-top: 2px solid var(--ig-border); }
  .ig-sidebar .ig-toc { display: none; } /* TOC moves above article body on mobile */
  .ig-toc--mobile { display: block; }
  .ig-cards--row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ig-article-body { font-weight: 400; }
  .ig-hero { padding: 32px 20px 28px; }
  .ig-hero__title { font-size: 46px; }
  .ig-hero__script { font-size: 52px; }
  .ig-home-lede { padding: 20px 20px 16px; }
  .ig-collections { grid-template-columns: repeat(2, 1fr); }
  .ig-col-block:nth-child(2) { border-right: none; }
  .ig-col-block:nth-child(1), .ig-col-block:nth-child(2) { border-bottom: 1.5px solid var(--ig-border); }
  .ig-nav { padding: 12px 20px; }
  .ig-nav__logo img { height: 57px; }
  .ig-nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--ig-white); padding: 16px 20px; border-bottom: 2px solid var(--ig-black); z-index: 99; }
  .ig-nav__links--open { display: flex; }
  .ig-nav__hamburger { display: flex; }
  .ig-post-hero { min-height: 280px; }
  .ig-post-hero__inner { padding: 32px 20px 28px; }
  .ig-post-hero__title { font-size: 38px; }
  .ig-post-hero__script { font-size: 44px; }
  .ig-post-body { padding: 20px 20px 32px; }
  .ig-cards { grid-template-columns: 1fr; }
  .ig-card--bleed { grid-column: span 1; height: 240px; }
  .ig-card--bleed.ig-card--featured { height: 260px; }
  .ig-archive-header { padding: 24px 20px 20px; }
  .ig-archive-header--tag { flex-direction: column; }
  .ig-archive-header__title { font-size: 38px; }
  .ig-archive-header__script { font-size: 44px; }
  .ig-filter-bar { padding: 10px 20px; overflow-x: auto; flex-wrap: nowrap; }
  .ig-cards-section { padding: 20px 20px 24px; }
  .ig-cta { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .ig-footer { padding: 16px 20px; }
  .ig-collection-group { padding: 0 20px 16px; }
  .ig-cards--row { grid-template-columns: 1fr; }
}
