/* ============================================
   EMMA HINES — MODERN LAYER (2026)
   Gen-Z editorial refresh. Loads AFTER style.css
   and overrides it. Mobile-first throughout.
   ============================================ */

/* === TOKENS === */
:root {
  /* Display face swaps site-wide: instant modernisation
     of every page that already uses var(--font-display). */
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Instrument Serif', Georgia, serif;

  /* Warmed-up neutrals */
  --cream: #FDFBF7;
  --cream-dark: #F3EEE7;
  --blush: #FCEDE6;
  --charcoal: #1D1A26;
  --black: #100E17;
  --ink: #1D1A26;
  --ink-soft: #4C4560;

  /* Accents — brighter than the originals, same family */
  --gold: #E0A44F;
  --gold-light: #FFDD8A;
  --coral: #FF8A72;
  --coral-light: #FFCFC2;
  --sage: #7FC9A2;
  --sage-light: #C4EEDA;

  /* New palette */
  --lilac: #A98CF5;
  --lilac-soft: #EAE1FF;
  --butter: #FFD84D;
  --butter-soft: #FFF3C9;
  --peach: #FF9E7D;
  --peach-soft: #FFE3D7;
  --mint: #6FDCA9;
  --mint-soft: #D8F7E8;
  --sky: #8FB8FF;
  --sky-soft: #E1ECFF;
  --hot: #FF4D8D;

  --radius-blob: 28px;
  --ring: 0 0 0 3px rgba(169,140,245,.35);
}

/* === LINKS ===
   style.css never declares a base `a` colour, so any anchor it doesn't style
   by class falls through to browser blue. Set a floor here. */
a { color: inherit; text-decoration: none; }

.nav-desktop a { color: var(--ink); }
.bento__item a,
.post-card__more { color: var(--ink); }
.bento__item--ink a { color: #fff; }

/* Links inside running prose keep an underline so they still read as links */
.article-body a,
.tl__note a,
.safe-note a,
.form-hint a,
.sec-head p a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--lilac);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.article-body a:hover,
.tl__note a:hover,
.safe-note a:hover { text-decoration-color: var(--ink); }

/* === TYPE === */
.headline-xl, .headline-lg, .headline-md, .headline-sm,
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.headline-xl { font-size: clamp(2.9rem, 13vw, 8rem); font-weight: 800; }
.headline-lg { font-size: clamp(2.3rem, 9vw, 5rem); font-weight: 800; }
.headline-md { font-size: clamp(1.9rem, 6.5vw, 3.4rem); }
.headline-sm { font-size: clamp(1.35rem, 4.5vw, 2rem); }

.italic,
.serif-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Highlighter swipe behind a word */
.highlight {
  position: relative;
  display: inline-block;
  color: var(--ink);
}
.highlight::after {
  content: '';
  position: absolute;
  left: -.06em; right: -.06em; bottom: .06em;
  height: .34em;
  background: var(--butter);
  border-radius: .3em;
  z-index: -1;
  transform: rotate(-1.2deg);
}
.highlight--lilac::after { background: var(--lilac-soft); }
.highlight--mint::after  { background: var(--mint-soft); }
.highlight--peach::after { background: var(--peach-soft); }

/* === BUTTONS === */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  min-height: 48px;
  text-transform: none;
  font-size: .95rem;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
  box-shadow: 0 6px 0 0 var(--lilac);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 0 var(--lilac); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 3px 0 0 var(--lilac); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 0 6px 0 0 var(--butter);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 0 var(--butter); background: transparent; color: var(--ink); }
.btn-secondary:active { transform: translateY(2px); box-shadow: 0 3px 0 0 var(--butter); }

.btn-gold { background: var(--butter); color: var(--ink); border: 2px solid var(--ink); box-shadow: 0 6px 0 0 var(--ink); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 9px 0 0 var(--ink); }

.btn:focus-visible { outline: none; box-shadow: var(--ring), 0 6px 0 0 var(--lilac); }

/* === HEADER: floating glass pill === */
.header {
  background: transparent;
  border: 0;
  padding: var(--space-sm) 0;
}
.header .header-inner {
  background: rgba(253,251,247,.78);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border: 1.5px solid rgba(29,26,38,.10);
  border-radius: var(--radius-full);
  padding: .55rem .7rem .55rem 1.15rem;
  box-shadow: 0 10px 34px rgba(29,26,38,.07);
}
.header.scrolled .header-inner {
  background: rgba(253,251,247,.94);
  border-color: rgba(29,26,38,.16);
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: 1.4rem;
}
.logo span { color: var(--lilac); }

.nav-desktop ul { gap: .15rem; }
.nav-desktop a {
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
  padding: .5rem .68rem;
  border-radius: var(--radius-full);
  transition: background .2s ease, color .2s ease;
}
.nav-desktop a:hover { background: var(--lilac-soft); color: var(--ink); }
.nav-desktop a.is-active { background: var(--ink); color: #fff; }
.nav-desktop a::after { display: none; }

.menu-toggle span { background: var(--ink); height: 2.5px; border-radius: 2px; }

.nav-mobile { background: var(--cream); }
.nav-mobile a {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
}

/* === NAV DROPDOWN === */
.nav-desktop li.has-sub { position: relative; }
.nav-desktop .sub-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
  padding: .5rem .68rem;
  border-radius: var(--radius-full);
  transition: background .2s ease;
}
.nav-desktop .sub-toggle:hover,
.nav-desktop li.has-sub:focus-within .sub-toggle { background: var(--lilac-soft); }
.nav-desktop .sub-toggle.is-active { background: var(--ink); color: #fff; }
.caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .2s ease;
}
.nav-desktop li.has-sub:hover .caret,
.nav-desktop li.has-sub.is-open .caret { transform: rotate(180deg); }

.nav-desktop .sub {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: .45rem;
  min-width: 232px;
  display: block;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: .4rem;
  box-shadow: 5px 7px 0 0 var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav-desktop li.has-sub:hover .sub,
.nav-desktop li.has-sub:focus-within .sub,
.nav-desktop li.has-sub.is-open .sub {
  opacity: 1; visibility: visible; transform: none;
}
.nav-desktop .sub li { display: block; }
.nav-desktop .sub a {
  display: block;
  white-space: nowrap;
  padding: .55rem .75rem;
  border-radius: 13px;
  font-size: .87rem;
}

/* Mobile drawer: sub-items render as an indented block */
.nav-mobile .sub-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-soft);
  font-size: clamp(1.4rem, 3.4vw, 2rem);
}
.nav-mobile .sub { display: block; padding: .2rem 0 .4rem .9rem; }
.nav-mobile .sub li { margin: 0; }
.nav-mobile .sub a { font-size: clamp(1.15rem, 3vw, 1.6rem); color: var(--ink-soft); }

/* === AFFILIATE === */
.disclosure {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: var(--butter-soft);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: .85rem 1rem;
  font-size: .86rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
}
.disclosure b { color: var(--ink); }
.footer-disclosure {
  font-size: .8rem !important;
  line-height: 1.55;
  color: rgba(253,251,247,.55) !important;
  max-width: 62ch;
}

/* === PRODUCT CARDS === */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.prod {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s var(--ease-out-expo), box-shadow .25s ease;
}
.prod:hover { transform: translateY(-4px); box-shadow: 5px 7px 0 0 var(--ink); }
.prod__img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.prod__tag {
  position: absolute;
  top: .5rem; left: .5rem;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .2rem .5rem;
}
.prod__body { padding: .8rem .85rem 1rem; display: flex; flex-direction: column; flex: 1; }
.prod__name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.15; letter-spacing: -.02em; }
.prod__note { font-size: .8rem; color: var(--ink-soft); line-height: 1.5; margin: .35rem 0 .6rem; flex: 1; }
.prod__price { font-weight: 800; font-size: .88rem; margin-bottom: .6rem; }
.prod__btn {
  display: block;
  text-align: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-full);
  padding: .55rem .8rem;
  font-size: .82rem;
  font-weight: 800;
}
.prod:hover .prod__btn { background: var(--lilac); color: var(--ink); }

/* === PRICING / DIGITAL PRODUCTS === */
.price-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-blob);
  overflow: hidden;
}
.price-card__top {
  padding: var(--space-lg);
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.price-card__emoji { font-size: 2.8rem; display: block; margin-bottom: .5rem; }
.price-card__amt {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  display: block;
  margin-top: .4rem;
}
.price-card__body { padding: var(--space-lg); display: flex; flex-direction: column; flex: 1; }
.price-card__body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.price-card__body > p { color: var(--ink-soft); font-size: .93rem; line-height: 1.6; }
.price-card ul { list-style: none; padding: 0; margin: var(--space-md) 0; flex: 1; }
.price-card li {
  font-size: .89rem;
  color: var(--ink-soft);
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: .45rem;
  line-height: 1.5;
}
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--ink);
}
.buy-slot { margin-top: auto; }
.buy-soon {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--cream-dark);
  color: var(--ink-soft);
  border: 2px dashed var(--ink-soft);
  border-radius: var(--radius-full);
  padding: .85rem 1rem;
  font-size: .88rem;
  font-weight: 800;
}

@media (min-width: 640px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .prod-grid { grid-template-columns: repeat(4, 1fr); }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
}

/* === MESH BACKDROP === */
.mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.mesh i {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(58px);
  opacity: .62;
}
.mesh i:nth-child(1) { width: 46vw; height: 46vw; background: var(--lilac);  top: -12%; right: -14%; }
.mesh i:nth-child(2) { width: 40vw; height: 40vw; background: var(--peach);  bottom: -18%; left: -12%; }
.mesh i:nth-child(3) { width: 30vw; height: 30vw; background: var(--butter); top: 34%; left: 44%; opacity: .45; }
@media (prefers-reduced-motion: no-preference) {
  .mesh i { animation: drift 22s ease-in-out infinite alternate; }
  .mesh i:nth-child(2) { animation-duration: 28s; animation-delay: -6s; }
  .mesh i:nth-child(3) { animation-duration: 34s; animation-delay: -12s; }
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(3vw,4vh,0) scale(1.12); }
}

/* === HERO === */
.gz-hero {
  position: relative;
  padding: calc(84px + var(--space-2xl)) 0 var(--space-2xl);
  overflow: hidden;
  background: var(--cream);
}
.gz-hero > .container { position: relative; z-index: 1; }
.gz-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-full);
  padding: .4rem .85rem;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 0 var(--mint);
}
.gz-hero h1 { margin: var(--space-md) 0 var(--space-sm); }
.gz-hero__sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: var(--space-lg);
}
.gz-hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; }

/* Sticker — rotated badge you can drop anywhere */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--butter);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-full);
  padding: .45rem .9rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 3px 3px 0 0 var(--ink);
  transform: rotate(-3deg);
}
.sticker--lilac { background: var(--lilac); }
.sticker--mint  { background: var(--mint); }
.sticker--peach { background: var(--peach); }
.sticker--sky   { background: var(--sky); }
.sticker--r     { transform: rotate(3deg); }

/* Chip — quiet tag */
.chip {
  display: inline-block;
  background: var(--lilac-soft);
  color: var(--ink);
  border-radius: var(--radius-full);
  padding: .34rem .78rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.chip--mint  { background: var(--mint-soft); }
.chip--peach { background: var(--peach-soft); }
.chip--butter{ background: var(--butter-soft); }
.chip--sky   { background: var(--sky-soft); }
.chip-row { display: flex; flex-wrap: wrap; gap: .45rem; }

/* === TICKER === */
.ticker {
  background: var(--ink);
  color: var(--cream);
  padding: .85rem 0;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.ticker__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker span {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
}
.ticker span::after { content: '✦'; color: var(--butter); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* === CARDS / BENTO === */
.card {
  border-radius: var(--radius-blob);
  border: 1.5px solid rgba(29,26,38,.12);
  box-shadow: none;
  background: #fff;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.bento__item {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-blob);
  padding: var(--space-lg);
  overflow: hidden;
  transition: transform .3s var(--ease-out-expo), box-shadow .3s ease;
}
.bento__item:hover { transform: translateY(-4px); box-shadow: 6px 8px 0 0 var(--ink); }
.bento__item h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.bento__item p { color: var(--ink-soft); font-size: .96rem; line-height: 1.62; }
.bento__item--lilac { background: var(--lilac-soft); }
.bento__item--mint  { background: var(--mint-soft); }
.bento__item--peach { background: var(--peach-soft); }
.bento__item--butter{ background: var(--butter-soft); }
.bento__item--sky   { background: var(--sky-soft); }
.bento__item--ink   { background: var(--ink); color: var(--cream); }
.bento__item--ink h3 { color: #fff; }
.bento__item--ink p  { color: rgba(253,251,247,.8); }
.bento__emoji { font-size: 2.1rem; line-height: 1; display: block; margin-bottom: .7rem; }

/* Big display numeral for stat tiles */
.bento__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 11vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: .95;
  display: block;
}

/* === POST CARDS === */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-blob);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease-out-expo), box-shadow .3s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 7px 9px 0 0 var(--ink); }
.post-card__thumb {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  border-bottom: 2px solid var(--ink);
}
.post-card__body { padding: var(--space-md) var(--space-md) var(--space-lg); flex: 1; }
.post-card__meta {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: .6rem;
}
.post-card__date { font-size: .78rem; color: var(--ink-soft); font-weight: 600; }
.post-card__title {
  font-size: 1.28rem;
  line-height: 1.12;
  margin-bottom: .5rem;
}
.post-card__excerpt { font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }
.post-card__more {
  display: inline-block;
  margin-top: .85rem;
  font-weight: 800;
  font-size: .87rem;
  border-bottom: 2px solid var(--butter);
}

/* === TIMELINE === */
.tl { position: relative; padding-left: 2.1rem; }
.tl::before {
  content: '';
  position: absolute;
  left: .52rem; top: .4rem; bottom: .4rem;
  width: 2.5px;
  background: linear-gradient(var(--lilac), var(--peach), var(--butter));
  border-radius: 2px;
}
.tl__item { position: relative; padding-bottom: var(--space-xl); }
.tl__item:last-child { padding-bottom: 0; }
.tl__item::before {
  content: '';
  position: absolute;
  left: -1.85rem; top: .3rem;
  width: 14px; height: 14px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 50%;
}
.tl__when { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.tl__what { font-size: 1.18rem; margin: .28rem 0 .4rem; }
.tl__note { color: var(--ink-soft); font-size: .95rem; line-height: 1.62; }

/* === QUOTE === */
.quote-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-blob);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
}
.quote-card p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.35rem, 5.5vw, 2.1rem);
  line-height: 1.28;
  color: #fff;
}
.quote-card cite {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-style: normal;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--butter);
}

/* === SECTION HEADERS === */
.sec-head { margin-bottom: var(--space-xl); }
.sec-head .label { display: block; margin-bottom: .6rem; }
.sec-head p { color: var(--ink-soft); margin-top: .8rem; max-width: 56ch; line-height: 1.65; }

/* === FORMS === */
.form-modern .form-group { margin-bottom: var(--space-md); }
.form-modern label {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: .4rem;
  color: var(--ink);
}
.form-modern input,
.form-modern select,
.form-modern textarea {
  width: 100%;
  padding: .9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  transition: box-shadow .2s ease, border-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-modern select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%231D1A26' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.form-modern textarea { min-height: 150px; resize: vertical; }
.form-modern input:focus,
.form-modern select:focus,
.form-modern textarea:focus { outline: none; box-shadow: var(--ring); border-color: var(--lilac); }
.form-modern input:user-invalid,
.form-modern textarea:user-invalid { border-color: var(--hot); }
.form-hint { font-size: .82rem; color: var(--ink-soft); margin-top: .35rem; line-height: 1.5; }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  display: none;
  border-radius: 18px;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  font-size: .95rem;
  line-height: 1.6;
  border: 2px solid var(--ink);
}
.form-status.is-visible { display: block; }
.form-status--ok   { background: var(--mint-soft); }
.form-status--err  { background: var(--peach-soft); }
.form-status strong { display: block; font-size: 1.05rem; margin-bottom: .25rem; }

/* === NEWSLETTER === */
.newsletter-section { background: var(--lilac-soft); }
.newsletter-form input { border: 2px solid var(--ink); border-radius: var(--radius-full); }

/* === FOOTER === */
.footer { background: var(--ink); color: rgba(253,251,247,.72); }
.footer .logo { color: #fff; }
.footer h5 {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--butter);
}
.footer a { color: rgba(253,251,247,.72); }
.footer a:hover { color: #fff; }

/* === SAFETY / MISC === */
.safe-note {
  background: var(--butter-soft);
  border: 2px dashed var(--ink);
  border-radius: 18px;
  padding: var(--space-md);
  font-size: .9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* === RESPONSIVE === */
@media (min-width: 640px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .gz-hero__sub { font-size: 1.15rem; }
}

@media (min-width: 900px) {
  .gz-hero { padding: calc(96px + var(--space-3xl)) 0 var(--space-3xl); }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento__item--wide { grid-column: span 2; }
  .bento__item--tall { grid-row: span 2; }
  .bento__item--full { grid-column: 1 / -1; }
  .quote-card { padding: var(--space-3xl) var(--space-2xl); }
}

/* Touch: drop the desktop-only custom cursor + heavy hovers */
@media (hover: none) {
  .cursor, .cursor-dot { display: none !important; }
  .post-card:hover, .bento__item:hover { transform: none; box-shadow: none; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .post-card, .bento__item { transition: none; }
  .btn:hover, .post-card:hover, .bento__item:hover { transform: none; }
}

/* === SUBSCRIBE CONFIRMATION === */
.subscribe-msg {
  display: none;
  max-width: 34rem;
  margin: var(--space-md) auto 0;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: .85rem 1.1rem;
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
}
.subscribe-msg.is-visible { display: block; }
.subscribe-msg--ok  { background: var(--mint-soft); }
.subscribe-msg--err { background: var(--peach-soft); }
