/* ============================================================
   KALE VINE — styles.css  (v5 creator editorial)
   @kalevine_  |  kalevine.com
   Direction: modern creator/lifestyle/wellness personal brand
   Type: Cormorant Garamond · Jost
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ---- TOKENS ---- */
:root {
  /* Palette */
  --canvas:    #FAF8F4;
  --linen:     #F4EDE3;
  --stone:     #EAE0D4;
  --mist:      #F1ECEB;
  --fog:       #E3D1CC;
  --mauve:     #B4908B;
  --rose:      #8A5754;
  --gold:      #C8A062;
  --gold-2:    #B88D4A;
  --gold-deep: #9A7234;
  --ink:       #1A0E08;
  --ink-2:     #4A2818;
  --ink-3:     #88604E;
  --ink-4:     #C4A090;
  --white:     #FEFDFB;

  /* Pink palette */
  --pink-pale:  #FAF0F2;
  --pink-soft:  #F2D8DC;
  --pink-mid:   #E4B8BF;
  --pink-warm:  #D4949E;
  --pink-deep:  #B8697A;

  /* Legacy mappings */
  --ivory:     var(--canvas);
  --ivory-2:   var(--linen);
  --ivory-3:   var(--stone);
  --blush:     var(--pink-pale);
  --blush-2:   var(--pink-soft);
  --blush-3:   var(--pink-mid);
  --pink:      var(--pink-mid);
  --brown:     var(--ink);
  --brown-2:   var(--ink-2);
  --brown-3:   var(--ink-3);
  --brown-4:   var(--ink-4);

  /* Type */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans:  'Jost', 'Arial', sans-serif;

  /* Layout */
  --max:    1160px;
  --gutter: clamp(24px, 5vw, 64px);
  --sec:    clamp(100px, 14vw, 160px);

  /* Radii */
  --r-xs:   4px;
  --r-s:    8px;
  --r-m:    16px;
  --r-l:    28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-s: 0 2px 20px rgba(26,14,8,.05);
  --sh-m: 0 8px 48px rgba(26,14,8,.09);
  --sh-l: 0 24px 80px rgba(26,14,8,.12);

  --ease: cubic-bezier(0.22,1,0.36,1);
}

/* ---- RESET ---- */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--sans);
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}
img  { max-width:100%; display:block; }
a    { color:inherit; text-decoration:none; }
ul   { list-style:none; }
button { cursor:pointer; font-family:var(--sans); }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3.4rem,8vw,7rem); }
h2 { font-size: clamp(2.6rem,5.5vw,4.8rem); }
h3 { font-size: clamp(1.8rem,3vw,2.8rem); }
h4 { font-size: clamp(1.15rem,1.8vw,1.5rem); font-weight:400; }

/* Paragraph — slightly larger, more generous */
p { font-size:1.05rem; line-height:1.95; color:var(--ink); font-weight:300; }

.italic { font-style:italic; }
.serif  { font-family:var(--serif); }

/* decorative lede */
.script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2em;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

/* eyebrow label — slightly larger */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}

/* Pull quote — large editorial */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem,3.5vw,2.8rem);
  line-height: 1.4;
  color: var(--ink);
}

/* thin editorial rule */
.rule {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  display: block;
  margin-bottom: 32px;
}

/* star divider */
.star-div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 8px;
  padding: 20px 0;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: var(--sec) 0; }

/* section backgrounds */
.s-canvas  { background: var(--canvas); }
.s-linen   { background: var(--linen); }
.s-stone   { background: var(--stone); }
.s-mist    { background: var(--mist); }
.s-ink     { background: var(--ink); }
.s-blush   { background: var(--mist); }
.s-ivory2  { background: var(--linen); }
.s-brown   { background: var(--ink); }
.s-brown p,
.s-brown h2,
.s-brown h3,
.s-ink p,
.s-ink h2,
.s-ink h3    { color: var(--canvas); }

.divider { width:100%; height:1px; background:rgba(26,14,8,.08); }

.tc  { text-align:center; }
.tl  { text-align:left; }
.flex { display:flex; }
.fc  { display:flex; align-items:center; justify-content:center; }

.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,80px); align-items:center; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,3vw,40px); }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(16px,2vw,28px); }

.mt-xs { margin-top:8px; }
.mt-s  { margin-top:16px; }
.mt-m  { margin-top:32px; }
.mt-l  { margin-top:60px; }
.mb-l  { margin-bottom:clamp(48px,6vw,80px); }

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(250,248,244,0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,14,8,.06);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  gap: 44px;
  align-items: center;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.35;
  transition: opacity 0.2s;
}
.nav__links a:hover,
.nav__links a.active { opacity: 1; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 26px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  transition: all 0.25s var(--ease);
}
.nav__cta:hover { background: var(--gold-2); transform: translateY(-1px); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s;
}
.mob-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--canvas);
  z-index: 299;
  padding: 16px var(--gutter) 36px;
  border-bottom: 1px solid rgba(26,14,8,.06);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  padding: 16px 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid rgba(26,14,8,.05);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 40px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s var(--ease);
}
.btn-gold   { background: var(--gold); color: var(--ink); }
.btn-gold:hover  { background: var(--gold-2); transform: translateY(-2px); box-shadow: var(--sh-m); }
.btn-line   { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-line:hover  { background: var(--ink); color: var(--canvas); transform: translateY(-2px); }
.btn-cream  { background: var(--white); color: var(--ink); }
.btn-cream:hover { background: var(--canvas); transform: translateY(-2px); box-shadow: var(--sh-m); }
.btn-ghost  { background: transparent; border: 1px solid rgba(250,248,244,0.45); color: var(--canvas); }
.btn-ghost:hover { border-color: var(--canvas); background: rgba(250,248,244,0.1); }
.btn-sm { padding: 11px 26px; font-size: 0.7rem; }

/* ---- CINEMATIC HERO ---- */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(52px,8vw,88px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__media img,
.hero__media .hero__img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media .hero__img-fill {
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-4);
  font-size: 1rem;
  opacity: 0.5;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(26,14,8,0.72) 0%,
    rgba(26,14,8,0.18) 55%,
    rgba(26,14,8,0) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero h1 { color: var(--canvas); }
.hero .eyebrow { color: rgba(250,248,244,0.52); }

/* Half-height editorial hero (for interior pages) */
.hero-half {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(44px,6vw,72px);
  overflow: hidden;
}
.hero-half__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-half__media .hero__img-fill {
  width: 100%;
  height: 100%;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-4);
}
.hero-half__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,14,8,0.6) 0%, rgba(26,14,8,0) 70%);
}
.hero-half__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-half h1 { color: var(--canvas); font-size: clamp(2.4rem,5vw,4.8rem); }
.hero-half .eyebrow { color: rgba(250,248,244,0.5); }

/* ---- PHOTO PLACEHOLDER ---- */
.ph {
  background: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--ink-3);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
  padding: 24px;
}
.ph span:first-child { font-size: 2.5rem; opacity: 0.2; font-family: var(--sans); }

/* ---- PRODUCT CARD — editorial, minimal ---- */
.pcard {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease);
}
.pcard:hover { transform: translateY(-4px); }
.pcard__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.pcard__img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease); }
.pcard:hover .pcard__img img { transform: scale(1.03); }
.pcard__placeholder {
  width:100%; height:100%;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}
.pcard__placeholder .pi { font-size:2rem; opacity:0.25; }
.pcard__placeholder .pt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.3;
}
.pcard__pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--canvas);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.pcard__body {
  padding: 22px 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid rgba(26,14,8,.08);
}
.pcard__cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 7px;
}
.pcard__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--ink);
}
.pcard__desc {
  font-size: 0.92rem;
  color: var(--ink-3);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pcard__price {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--ink);
}
.pcard__price s { opacity: 0.28; font-size: 0.9rem; margin-right: 2px; }
.pcard__btn {
  background: transparent;
  color: var(--ink);
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding: 0 0 2px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.pcard__btn:hover { opacity: 0.5; }

/* ---- QUOTE DISPLAY — editorial ---- */
.qcard {
  padding: 0;
  background: transparent;
}
.qcard__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem,1.8vw,1.4rem);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 18px;
  position: relative;
}
.qcard__text::before {
  content: '"';
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0.75;
  display: block;
  margin-bottom: 10px;
  opacity: 0.65;
}
.qcard__by {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---- EMAIL FORM ---- */
.email-bar {
  display: flex;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 1px solid rgba(26,14,8,.1);
}
.email-bar.center { margin: 0 auto; }
.email-bar input {
  flex: 1;
  padding: 17px 24px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}
.email-bar input::placeholder { color: var(--ink-4); }
.email-bar button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 17px 28px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}
.email-bar button:hover { background: var(--gold-2); }

/* ---- RESOURCE LIST ITEM ---- */
.rcard {
  background: transparent;
  padding: 30px 0;
  border-top: 1px solid rgba(26,14,8,.08);
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.rcard__icon { display: none; }
.rcard__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rcard__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
}
.rcard__body { font-size: 0.92rem; color: var(--ink-3); line-height: 1.7; }

/* ---- SOCIAL LINK ---- */
.spill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,14,8,.08);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.2s;
  width: 100%;
}
.spill:hover { opacity: 0.55; }
.spill .i { font-size: 1.15rem; opacity: 0.55; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.b-gold  { background: var(--gold); color: var(--ink); }
.b-blush { background: var(--fog); color: var(--ink); }
.b-line  { border: 1px solid var(--ink-4); color: var(--ink-2); }

/* ---- BUNDLE CARD ---- */
.bcard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px,4vw,60px);
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid rgba(26,14,8,.08);
}
.bcard:hover { background: transparent; }
.bcard__img {
  aspect-ratio: 4/3;
  border-radius: var(--r-m);
  background: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-2);
}
.bcard__img span:first-child { font-size: 2.5rem; opacity: 0.25; font-family: var(--sans); }
.b-includes { display:flex; flex-direction:column; gap:10px; margin:16px 0 24px; }
.b-includes li {
  font-size: 0.92rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
}
.b-includes li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%231A0E08' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.b-prices { display:flex; align-items:baseline; gap:14px; flex-wrap:wrap; }
.b-big  { font-family:var(--serif); font-size:2.2rem; font-weight:300; }
.b-was  { font-size:0.95rem; text-decoration:line-through; opacity:0.25; }
.b-save { background:var(--gold); color:var(--ink); font-size:0.65rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; padding:4px 12px; border-radius:var(--r-pill); }

/* ---- VALUE ITEM ---- */
.vcard {
  background: transparent;
  padding: 30px 0;
  border-top: 1px solid rgba(26,14,8,.08);
}
.vcard__icon { font-size: 1.4rem; margin-bottom: 14px; opacity: 0.55; }
.vcard h4   { font-style:italic; margin-bottom:10px; }
.vcard p    { font-size:0.92rem; opacity:0.6; line-height:1.75; }

/* ---- VIDEO GRID ---- */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.vid-card {
  overflow: hidden;
  background: var(--white);
  transition: transform 0.4s var(--ease);
}
.vid-card:hover { transform: translateY(-4px); }
.vid-card__thumb {
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
}
.vid-card__thumb img { width:100%; height:100%; object-fit:cover; }
.vid-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250,248,244,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(26,14,8,.2);
  transition: transform 0.25s var(--ease);
}
.vid-card:hover .vid-card__play { transform: translate(-50%,-50%) scale(1.1); }
.vid-card__play::after {
  content:'';
  display: block;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--ink);
  margin-left: 3px;
}
.vid-card__body { padding: 20px 0 4px; border-top: 1px solid rgba(26,14,8,.07); }
.vid-card__platform { font-size:0.65rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-3); margin-bottom:7px; }
.vid-card__title { font-family:var(--serif); font-weight:300; font-style:italic; font-size:1.05rem; color:var(--ink); line-height:1.4; }
.vid-card__views { font-size:0.8rem; opacity:0.38; margin-top:5px; }

/* ---- PRESS BAR ---- */
.press-bar { display:flex; align-items:center; justify-content:center; gap:clamp(28px,4vw,56px); flex-wrap:wrap; }
.press-item { opacity:0.28; transition:opacity 0.2s; text-align:center; }
.press-item:hover { opacity:0.6; }
.press-item__name { font-family:var(--serif); font-style:italic; font-weight:300; font-size:clamp(1.05rem,1.8vw,1.5rem); letter-spacing:0.02em; color:var(--ink); white-space:nowrap; display:block; }
.press-item__type { display:none; }
.press-divider { width:1px; height:28px; background:rgba(26,14,8,.12); flex-shrink:0; }

/* ---- PRESS ARTICLE CARD ---- */
.press-card {
  padding: 30px 0;
  border-top: 1px solid rgba(26,14,8,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.press-card:hover { opacity: 0.62; }
.press-card__pub { font-family:var(--serif); font-style:italic; font-size:1.05rem; color:var(--ink-3); }
.press-card__date { font-size:0.65rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-4); }
.press-card__headline { font-family:var(--serif); font-weight:300; font-style:italic; font-size:clamp(1.05rem,1.7vw,1.25rem); color:var(--ink); line-height:1.4; }
.press-card__read { font-size:0.78rem; font-weight:600; letter-spacing:0.08em; color:var(--ink-2); margin-top:4px; }

/* ---- PODCAST CARD ---- */
.pod-card {
  background: transparent;
  padding: clamp(28px,4vw,48px) 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  border-top: 1px solid rgba(26,14,8,.08);
}
.pod-card__art {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--r-s);
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.pod-card__eyebrow { font-size:0.65rem; font-weight:600; letter-spacing:0.22em; text-transform:uppercase; color:var(--ink-3); margin-bottom:8px; display:block; }
.pod-card__title { font-family:var(--serif); font-weight:300; font-style:italic; font-size:clamp(1.3rem,2.2vw,1.8rem); color:var(--ink); line-height:1.3; margin-bottom:10px; }
.pod-card__desc { font-size:0.95rem; opacity:0.62; line-height:1.85; margin-bottom:22px; }
.pod-coming { display:inline-flex; align-items:center; gap:8px; background:var(--fog); color:var(--ink-2); font-size:0.65rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; padding:5px 14px; border-radius:var(--r-pill); margin-bottom:18px; }
.pod-coming::before { content:''; width:6px; height:6px; background:var(--mauve); border-radius:50%; }

/* ---- STAT ---- */
.stat {
  background: transparent;
  padding: 22px 0;
  border-top: 1px solid rgba(26,14,8,.08);
  text-align: left;
  box-shadow: none;
}
.stat__n { font-family:var(--serif); font-size:2.4rem; font-weight:300; letter-spacing:-0.01em; color:var(--ink); }
.stat__n em { font-style:normal; color:var(--ink-3); }
.stat__l { font-size:0.75rem; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-3); margin-top:4px; }

/* ---- COLLECTION HEADER ---- */
.col-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(26,14,8,.08);
}
.col-head h3 { flex:1; }
.col-head span { font-style:italic; font-size:0.92rem; opacity:0.38; }

/* ---- FOOTER ---- */
.footer {
  background: var(--ink);
  padding: clamp(64px,8vw,108px) var(--gutter) 44px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px,4vw,64px);
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: clamp(44px,5vw,60px);
  border-bottom: 1px solid rgba(250,248,244,.09);
}
.footer__logo { font-family:var(--serif); font-size:1.7rem; font-style:italic; font-weight:300; color:var(--gold); margin-bottom:12px; }
.footer__tag  { font-size:0.9rem; line-height:1.8; color:var(--canvas); opacity:0.36; max-width:220px; }
.footer__h    { font-size:0.68rem; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.footer__col ul { display:flex; flex-direction:column; gap:13px; }
.footer__col ul a { font-size:0.9rem; color:var(--canvas); opacity:0.36; transition:opacity 0.2s; }
.footer__col ul a:hover { opacity:1; }
.footer__bot {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__copy  { font-size:0.75rem; color:var(--canvas); opacity:0.24; }
.footer__legal { font-size:0.72rem; color:var(--canvas); opacity:0.2; max-width:540px; text-align:right; line-height:1.6; }

/* ---- LIFESTYLE PHOTO COLLAGE ---- */
.life-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 0;
}
.life-grid__item {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--stone);
}
.life-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: saturate(0.9) contrast(1.02);
}
.life-grid__item:hover img { transform: scale(1.04); }
.life-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}

/* ---- JOURNAL / BLOG CARDS ---- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.jcard {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: transparent;
  transition: transform 0.4s var(--ease);
}
.jcard:hover { transform: translateY(-4px); }
.jcard__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--stone);
  position: relative;
  margin-bottom: 20px;
}
.jcard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: saturate(0.88) contrast(1.03);
}
.jcard:hover .jcard__img img { transform: scale(1.04); }
.jcard__cat {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.jcard__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 10px;
}
.jcard__lede {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--ink-3);
  flex: 1;
  margin-bottom: 16px;
}
.jcard__date {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ---- BRAND / WORKED WITH STRIP ---- */
.brand-strip {
  background: var(--canvas);
  padding: clamp(48px,6vw,72px) 0;
  border-top: 1px solid rgba(26,14,8,.07);
  border-bottom: 1px solid rgba(26,14,8,.07);
}
.brand-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.brand-strip__item {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--ink);
  opacity: 0.22;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.25s;
}
.brand-strip__item:hover { opacity: 0.55; }
.brand-strip__div { width:1px; height:20px; background:rgba(26,14,8,.1); flex-shrink:0; }

/* ---- CONTACT FORM ---- */
.cform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cform__full { grid-column: 1 / -1; }
.cform__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cform__field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cform__field input,
.cform__field textarea,
.cform__field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26,14,8,.2);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.cform__field input:focus,
.cform__field textarea:focus { border-color: var(--gold); }
.cform__field textarea { min-height: 140px; resize: vertical; }
.cform__field input::placeholder,
.cform__field textarea::placeholder { color: var(--ink-4); opacity: 0.5; }
.cform--dark .cform__field label { color: rgba(250,248,244,0.5); }
.cform--dark .cform__field input,
.cform--dark .cform__field textarea {
  border-bottom-color: rgba(250,248,244,0.18);
  color: var(--canvas);
}
.cform--dark .cform__field input::placeholder,
.cform--dark .cform__field textarea::placeholder { color: rgba(250,248,244,0.28); }
.cform--dark .cform__field input:focus,
.cform--dark .cform__field textarea:focus { border-bottom-color: var(--gold); }

/* ---- EPISODE / PODCAST CARD ---- */
.ep-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid rgba(26,14,8,.08);
}
.ep-card__thumb {
  width: 120px; height: 120px;
  border-radius: var(--r-s);
  background: var(--stone);
  overflow: hidden;
  flex-shrink: 0;
}
.ep-card__thumb img { width:100%; height:100%; object-fit:cover; }
.ep-card__num { font-size:0.62rem; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:var(--ink-3); margin-bottom:8px; }
.ep-card__title { font-family:var(--serif); font-style:italic; font-weight:300; font-size:clamp(1.1rem,2vw,1.35rem); line-height:1.3; color:var(--ink); margin-bottom:10px; }
.ep-card__desc { font-size:0.9rem; line-height:1.8; color:var(--ink-3); margin-bottom:16px; }
.ep-card__meta { font-size:0.65rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--ink-4); }

/* ---- LEGAL PAGE PROSE ---- */
.legal-body {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--sec) var(--gutter);
}
.legal-body h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 36px;
  border-top: 1px solid rgba(26,14,8,.08);
}
.legal-body h2:first-of-type { margin-top: 8px; border-top: none; padding-top: 0; }
.legal-body p { font-size:0.95rem; line-height:1.95; opacity:0.7; margin-bottom:16px; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.legal-body ul li { font-size:0.95rem; line-height:1.9; opacity:0.7; margin-bottom:6px; }
.legal-body a { color:var(--ink-2); text-decoration:underline; text-underline-offset:3px; }

/* ---- SOCIAL LINK LIST (editorial, no emoji) ---- */
.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(26,14,8,.08);
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-link:hover { opacity: 0.55; }
.social-link__left { display: flex; flex-direction: column; gap: 3px; }
.social-link__platform { font-size:0.65rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--ink-3); }
.social-link__handle { font-family:var(--serif); font-style:italic; font-size:1.05rem; color:var(--ink); }
.social-link__arrow { font-size:1.1rem; opacity:0.3; }

/* on dark backgrounds */
.social-link--light { border-bottom-color: rgba(250,248,244,.1); }
.social-link--light .social-link__platform { color: rgba(250,248,244,0.4); }
.social-link--light .social-link__handle { color: var(--canvas); }
.social-link--light .social-link__arrow { opacity: 0.25; color: var(--canvas); }

/* ---- PINK SECTION BACKGROUNDS ---- */
.s-pink-pale  { background: var(--pink-pale); }
.s-pink-soft  { background: var(--pink-soft); }

/* ---- SOCIAL PLATFORM HUB ---- */
.social-hub {
  background: var(--pink-pale);
  padding: clamp(80px,11vw,140px) 0;
}
.social-hub__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: clamp(48px,6vw,80px);
}
.soc-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--stone);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.soc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
  transition: transform 0.6s var(--ease);
}
.soc-card:hover img { transform: scale(1.06); }
.soc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,14,8,0.05) 0%,
    rgba(26,14,8,0.12) 40%,
    rgba(26,14,8,0.68) 100%
  );
  transition: background 0.4s;
}
.soc-card:hover .soc-card__overlay {
  background: linear-gradient(
    to bottom,
    rgba(184,105,122,0.15) 0%,
    rgba(26,14,8,0.15) 40%,
    rgba(26,14,8,0.75) 100%
  );
}
.soc-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px,3vw,32px);
}
.soc-card__platform {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.55);
  margin-bottom: 8px;
  display: block;
}
.soc-card__handle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem,2.2vw,1.8rem);
  font-weight: 300;
  color: var(--canvas);
  line-height: 1.15;
  margin-bottom: 8px;
  display: block;
}
.soc-card__count {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-soft);
  font-family: var(--sans);
  display: block;
  margin-bottom: 14px;
}
.soc-card__desc {
  font-size: 0.82rem;
  color: rgba(250,248,244,0.5);
  line-height: 1.5;
}
.soc-card__ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stone);
}

/* platform accent lines */
.soc-card--tiktok  .soc-card__count { color: #F9D4DA; }
.soc-card--instagram .soc-card__count { color: #F2C4CC; }
.soc-card--youtube  .soc-card__count { color: #EDB8C0; }
.soc-card--facebook .soc-card__count { color: #E4B0B8; }

@media(max-width:900px) {
  .social-hub__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
@media(max-width:540px) {
  .social-hub__grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .soc-card { aspect-ratio: 3/5; }
}

/* ---- AFFILIATE DISCLOSURE BAR ---- */
.affiliate-bar {
  background: var(--linen);
  border-top: 1px solid rgba(26,14,8,.07);
  padding: 14px var(--gutter);
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-3);
  opacity: 0.7;
  line-height: 1.6;
}

/* ---- IMAGE CAPTION ---- */
.img-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--ink-4);
  margin-top: 10px;
  text-align: center;
}

/* ---- LEGACY ---- */
.wave { display:none; }

/* ---- RESPONSIVE ---- */
@media (max-width:1024px) {
  .grid-4 { grid-template-columns:1fr 1fr; }
  .footer__top { grid-template-columns:1fr 1fr; }
  .vid-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:768px) {
  :root { --sec: clamp(80px,10vw,120px); }
  .nav__links,.nav__cta { display:none; }
  .nav__burger { display:flex; }
  .grid-2 { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:1fr 1fr; }
  .footer__top { grid-template-columns:1fr 1fr; gap:28px; }
  .footer__bot { flex-direction:column; text-align:center; }
  .footer__legal { text-align:center; }
  .bcard { grid-template-columns:1fr; }
  .vid-grid { grid-template-columns:repeat(3,1fr); }
  .pod-card { grid-template-columns:1fr; text-align:center; }
  .pod-card__art { margin:0 auto; }
  .press-divider { display:none; }
  .hero { min-height: 80vh; }
  .hero-half { min-height: 44vh; }
}
@media (max-width:540px) {
  .grid-3 { grid-template-columns:1fr; }
  .grid-4 { grid-template-columns:1fr; }
  .email-bar { flex-direction:column; border-radius:var(--r-m); }
  .email-bar button { border-radius:0 0 var(--r-m) var(--r-m); padding:16px; }
  .footer__top { grid-template-columns:1fr; }
  .vid-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:400px) {
  .vid-grid { grid-template-columns:1fr; }
}
