/* GIZELLE BRYANT, press kit - Bravo-glam celebrity redesign
   Palette: noir, lipstick magenta, hot pink, champagne gold, blush rose
   Type: Playfair Display + DM Sans
   Designer: distinct from the neutral-editorial template - this is TV-glam, lipstick energy
*/

:root {
  --noir:       #0D0811;
  --deep:       #18091A;
  --merlot:     #2A0A20;
  --magenta:    #C8175E;
  --pink:       #FF3B8E;
  --gold:       #E8C87A;
  --champagne:  #F5E9C8;
  --blush:      #F2C4D0;
  --cream:      #FAF4EE;
  --line:       rgba(232,200,122,0.18);
  --line-pink:  rgba(200,23,94,0.28);

  --serif: "Playfair Display", "Bodoni 72", "Didot", "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(22px, 4vw, 64px);
  --ease: cubic-bezier(.18,.72,.18,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--noir);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.58;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--cream); color: var(--noir); padding: .5rem 1rem; z-index: 99;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ==============================
   TYPE SCALE
============================== */
.h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--champagne);
}
.h2--light { color: var(--noir); }
.kicker {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}
.kicker--light { color: var(--magenta); }
.kicker--gold { color: var(--gold); margin-bottom: 1rem; }
.body {
  font-size: 1.05rem;
  color: rgba(245,233,200,0.82);
  max-width: 58ch;
  margin-top: 1rem;
  line-height: 1.68;
}

/* ==============================
   DIAGONAL STRIPE DIVIDER
============================== */
.stripe-divider {
  width: 100%;
  height: 56px;
  background: var(--magenta);
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  position: relative;
  z-index: 2;
}
.stripe-divider--up {
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
}
.stripe-divider--thin {
  height: 28px;
  clip-path: polygon(0 0, 100% 55%, 100% 100%, 0 100%);
}

/* ==============================
   NAV
============================== */
.nav {
  position: fixed; inset: 0 0 auto 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  z-index: 40;
  background: linear-gradient(180deg, rgba(13,8,17,0.92) 0%, rgba(13,8,17,0) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Monogram - now a lipstick-hot diamond badge */
.nav__mark {
  width: 46px; height: 46px;
  border: 2px solid var(--magenta);
  transform: rotate(45deg);
  display: grid; place-items: center;
  position: relative;
  transition: transform .5s var(--ease-bounce), border-color .4s;
  flex-shrink: 0;
}
.nav__mark-inner {
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-weight: 700;
  font-size: .92rem;
  color: var(--magenta);
  letter-spacing: .04em;
  transition: color .4s;
}
@media (hover: hover) {
  .nav__mark:hover { transform: rotate(90deg); border-color: var(--gold); }
  .nav__mark:hover .nav__mark-inner { color: var(--gold); }
}

.nav__links {
  display: flex; gap: clamp(.8rem, 2vw, 1.8rem);
  align-items: center;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500;
}
.nav__links a {
  position: relative; padding: .55rem .2rem;
  min-height: 44px; display: inline-flex; align-items: center;
  color: rgba(245,233,200,0.72);
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; right: 100%; bottom: 4px;
  height: 2px; background: var(--pink);
  transition: right .45s var(--ease);
  border-radius: 2px;
}
@media (hover: hover) {
  .nav__links a:hover { color: var(--cream); }
  .nav__links a:hover::after { right: 0; }
}
.nav__cta {
  background: var(--magenta); color: var(--cream);
  padding: .52rem 1.2rem; border-radius: 4px;
  letter-spacing: .2em; font-weight: 600;
  min-height: 44px;
  transition: background .35s var(--ease), transform .35s var(--ease-bounce);
}
@media (hover: hover) {
  .nav__cta:hover { background: var(--pink); transform: translateY(-2px); }
}
.nav__cta::after { display: none; }

@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
}

/* ==============================
   HERO
============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8rem var(--gutter) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--noir);
}

/* Abstract glamour background - diagonal bands + glow */
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  overflow: hidden;
}
.hero__bg-band {
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 140%;
  background: linear-gradient(160deg, rgba(200,23,94,.14) 0%, rgba(255,59,142,.06) 40%, transparent 70%);
  transform: skewX(-8deg);
  pointer-events: none;
}
.hero__bg-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,23,94,.22) 0%, transparent 65%);
  top: -15%; right: -8%;
  filter: blur(60px);
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero__bg-glow2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,200,122,.14) 0%, transparent 65%);
  bottom: 20%; left: 20%;
  filter: blur(40px);
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}
@keyframes pulse-glow {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.08); }
}

/* Scattered gold dots / sparkles */
.hero__sparkles {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__sparkles span {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: sparkle-pop 4s ease-in-out infinite;
}
.hero__sparkles span:nth-child(1) { width: 3px; height: 3px; top: 18%; left: 14%; animation-delay: 0s; }
.hero__sparkles span:nth-child(2) { width: 2px; height: 2px; top: 34%; left: 8%; animation-delay: .8s; }
.hero__sparkles span:nth-child(3) { width: 4px; height: 4px; top: 12%; left: 55%; animation-delay: 1.4s; }
.hero__sparkles span:nth-child(4) { width: 2px; height: 2px; top: 60%; right: 18%; animation-delay: 2s; background: var(--pink); }
.hero__sparkles span:nth-child(5) { width: 3px; height: 3px; top: 78%; left: 32%; animation-delay: .4s; }
.hero__sparkles span:nth-child(6) { width: 2px; height: 2px; top: 22%; right: 30%; animation-delay: 2.8s; background: var(--blush); }
@keyframes sparkle-pop {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%       { opacity: 1; transform: scale(1.8); }
}

.hero__inner {
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  padding-bottom: 2rem;
  position: relative; z-index: 2;
}
.hero__inner--split {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.hero__copy { min-width: 0; position: relative; z-index: 3; }

/* Portrait - diagonal clip frame, very different from the neutral editorial boxes */
.hero__portrait {
  position: relative; margin: 0;
  display: flex; flex-direction: column; align-items: flex-end; gap: .8rem;
  align-self: end;
}
.hero__portrait-frame {
  position: relative;
  width: 100%; max-width: 460px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  clip-path: polygon(0 0, 96% 0, 100% 4%, 100% 100%, 4% 100%, 0 96%);
  border: 0;
  box-shadow:
    8px 8px 0 0 var(--magenta),
    -3px -3px 0 0 var(--gold);
  transition: box-shadow .6s var(--ease), clip-path .6s var(--ease);
}
@media (hover: hover) {
  .hero__portrait:hover .hero__portrait-frame {
    box-shadow: 12px 12px 0 0 var(--pink), -4px -4px 0 0 var(--gold);
    clip-path: polygon(0 0, 98% 0, 100% 2%, 100% 100%, 2% 100%, 0 98%);
  }
}
.hero__portrait-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,8,17,.6) 100%);
  pointer-events: none;
}
.hero__portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

/* Offline / local fallback */
.is-local .hero__portrait-frame img { visibility: hidden; }
.is-local .hero__portrait-frame {
  background: linear-gradient(160deg, rgba(200,23,94,.6), rgba(13,8,17,.95));
}
.is-local .hero__portrait-frame::after {
  content: "GB";
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700;
  font-size: 5rem; color: var(--magenta);
  background: none;
}

.hero__portrait-cap {
  font-family: var(--serif);
  font-style: italic;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .06em;
}

/* Eyebrow - vertical bar accent */
.hero__eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-size: .68rem; letter-spacing: .46em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1.6rem; font-weight: 500;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--pink));
  flex-shrink: 0;
}

/* Giant serif name - the big departure */
.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--cream);
  margin-bottom: 1.8rem;
  position: relative;
}
.wordmark__first {
  display: block;
  font-size: clamp(3.4rem, 13vw, 9.8rem);
  color: var(--cream);
}
.wordmark__last {
  display: block;
  font-size: clamp(2.2rem, 8.5vw, 6.4rem);
  font-weight: 400;
  font-style: italic;
  /* Outlined gold text stroke */
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  text-stroke: 1.5px var(--gold);
  letter-spacing: -.01em;
}
/* Lipstick underline swipe */
.wordmark__swipe {
  display: block;
  height: 6px;
  margin-top: .5rem;
  background: linear-gradient(90deg, var(--magenta) 0%, var(--pink) 60%, transparent 100%);
  width: 70%;
  border-radius: 3px;
}

.hero__lede {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  color: rgba(245,233,200,0.84);
  max-width: 42ch;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.8rem;
  min-height: 44px;
  border-radius: 4px;
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 600;
  transition: transform .32s var(--ease-bounce), background .32s var(--ease), color .32s var(--ease), box-shadow .32s var(--ease);
  will-change: transform;
}
.btn--ink {
  background: var(--magenta); color: var(--cream);
  box-shadow: 0 4px 20px rgba(200,23,94,.4);
}
.btn--ghost {
  border: 1.5px solid rgba(232,200,122,0.5); color: var(--champagne);
}
@media (hover: hover) {
  .btn--ink:hover { background: var(--pink); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,59,142,.45); }
  .btn--ghost:hover { border-color: var(--gold); background: rgba(232,200,122,.06); transform: translateY(-3px); }
}

.hero__stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
  max-width: 680px;
}
.hero__stats > div { display: flex; flex-direction: column; gap: .25rem; }
.stat__n {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  color: var(--champagne);
  letter-spacing: -.01em;
}
.stat__l { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(200,23,94,.9); font-weight: 500; }

/* Marquee */
.hero__marquee {
  position: relative;
  max-width: var(--maxw); margin: 2.4rem auto 0; width: 100%;
  overflow: hidden; white-space: nowrap;
  background: var(--magenta);
  padding: .75rem 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 1.8rem;
  animation: marquee 32s linear infinite;
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream);
}
.marquee__track .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); display: inline-block; flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==============================
   SECTIONS - shared
============================== */
section { padding: clamp(4.5rem, 9vw, 8rem) var(--gutter); position: relative; }
section > .kicker, section > .h2 {
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.reveal { opacity: 0; transform: translateY(44px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ==============================
   ABOUT
============================== */
.about { background: var(--deep); }
.about__grid {
  max-width: var(--maxw); margin: 2.8rem auto 0;
  display: grid; grid-template-columns: 1.45fr .75fr; gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }
.about__card {
  background: var(--merlot);
  border-top: 3px solid var(--magenta);
  border-radius: 0 0 16px 16px;
  padding: 1.8rem 2rem;
  position: relative;
  overflow: hidden;
}
.about__card::after {
  content: "";
  position: absolute; bottom: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,23,94,.25), transparent 70%);
  pointer-events: none;
}
.card__row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: .9rem 0;
  border-bottom: 1px dashed rgba(232,200,122,.14);
}
.card__row--last { border-bottom: 0; }
.card__row span {
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--magenta); font-weight: 500;
}
.card__row b {
  font-family: var(--serif); font-weight: 700;
  color: var(--champagne); font-size: 1rem; text-align: right;
}

/* ==============================
   PILLARS
============================== */
.pillars {
  background: var(--noir);
  position: relative;
}
.pillars::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--magenta), var(--pink), var(--gold), transparent);
}
.pillars__list { list-style: none; max-width: var(--maxw); margin: 2.8rem auto 0; }
.pillar {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.6rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  cursor: pointer; position: relative;
  min-height: 44px;
  transition: padding .45s var(--ease);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(200,23,94,.07), transparent 60%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
@media (hover: hover) {
  .pillar:hover { padding-left: 1.2rem; }
  .pillar:hover::before { opacity: 1; }
}
.pillar:focus { padding-left: 1.2rem; outline: none; }
.pillar:focus::before { opacity: 1; }
.pillar__no {
  font-family: var(--sans); font-weight: 700;
  color: var(--magenta); font-size: 1.5rem; letter-spacing: -.02em;
}
.pillar h3 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  color: var(--champagne); margin-bottom: .45rem; line-height: 1.15;
}
.pillar p { color: rgba(245,233,200,.72); max-width: 60ch; font-size: .97rem; }

/* ==============================
   REACH - oversized counter section
============================== */
.reach {
  background: var(--merlot);
  position: relative; overflow: hidden;
}
.reach::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(200,23,94,.28) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 50%, rgba(232,200,122,.1) 0%, transparent 50%);
  pointer-events: none;
}
.reach__grid {
  max-width: var(--maxw); margin: 2.8rem auto 2rem;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  position: relative; z-index: 1;
}
@media (max-width: 1024px) { .reach__grid { grid-template-columns: repeat(2, 1fr); } }

.reach__cell {
  padding: 2.2rem 1.6rem;
  border-right: 1px solid var(--line-pink);
  border-bottom: 1px solid var(--line-pink);
  position: relative;
  transition: background .45s var(--ease);
}
.reach__cell:nth-child(4), .reach__cell:nth-child(8) { border-right: 0; }
@media (max-width: 1024px) {
  .reach__cell:nth-child(2), .reach__cell:nth-child(4) { border-right: 0; }
  .reach__cell:nth-child(3), .reach__cell:nth-child(4) { border-bottom: 0; }
}
@media (hover: hover) {
  .reach__cell:hover { background: rgba(200,23,94,.12); }
}

/* Outlined giant number */
.reach__num {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: -.03em; line-height: 1;
  margin-bottom: .6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--champagne);
  text-stroke: 1.5px var(--champagne);
  transition: -webkit-text-stroke-color .35s, color .35s;
}
.reach__cell:hover .reach__num {
  color: var(--champagne);
  -webkit-text-stroke-color: transparent;
}
.reach__sub { font-size: .84rem; color: rgba(245,233,200,.68); letter-spacing: .04em; line-height: 1.4; }
.reach__foot {
  max-width: var(--maxw); margin: 1.6rem auto 0; position: relative; z-index: 1;
  color: rgba(245,233,200,.68); font-size: .95rem;
}

/* ==============================
   PARTNERS
============================== */
.partners { background: var(--deep); }
.partners__grid {
  list-style: none;
  max-width: var(--maxw); margin: 2.8rem auto 1.2rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
@media (max-width: 820px) { .partners__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .partners__grid { grid-template-columns: 1fr; } }
.partner {
  padding: 1.6rem 1.8rem;
  background: var(--merlot);
  border-left: 3px solid var(--magenta);
  border-radius: 0 10px 10px 0;
  position: relative; overflow: hidden;
  min-height: 44px;
  transition: transform .4s var(--ease-bounce), border-left-color .35s, background .35s;
}
.partner::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s;
}
@media (hover: hover) {
  .partner:hover {
    transform: translateX(6px);
    border-left-color: var(--pink);
    background: rgba(200,23,94,.15);
  }
  .partner:hover::after { opacity: 1; }
}
.partner span {
  display: block; font-family: var(--serif); font-weight: 700;
  font-size: 1.2rem; color: var(--champagne); margin-bottom: .4rem;
}
.partner small { font-size: .8rem; color: rgba(232,200,122,.75); letter-spacing: .04em; }
.partners__note {
  max-width: var(--maxw); margin: .6rem auto 0;
  color: rgba(245,233,200,.45); font-size: .82rem; font-style: italic;
}

/* ==============================
   FEED - staggered tilt grid
============================== */
.feed { background: var(--noir); position: relative; }
.feed__grid {
  max-width: var(--maxw); margin: 2.8rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 820px) { .feed__grid { grid-template-columns: repeat(2, 1fr); } }
.tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--merlot);
  isolation: isolate;
  min-height: 44px;
  transition: transform .5s var(--ease-bounce), box-shadow .5s var(--ease);
}
/* Stagger tilt: odd tiles tilt one way */
.tile:nth-child(odd)  { transform: rotate(-.6deg); }
.tile:nth-child(even) { transform: rotate(.6deg); }
@media (hover: hover) {
  .tile:nth-child(odd):hover  { transform: rotate(0) scale(1.04); box-shadow: 6px 6px 0 var(--magenta); }
  .tile:nth-child(even):hover { transform: rotate(0) scale(1.04); box-shadow: -6px 6px 0 var(--pink); }
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}
@media (hover: hover) {
  .tile:hover img { transform: scale(1.08); filter: saturate(1.15); }
}
.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,8,17,.88) 100%);
  opacity: .6;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
@media (hover: hover) { .tile:hover::after { opacity: .9; } }
.tile__cap {
  position: absolute; left: .9rem; right: .9rem; bottom: .8rem;
  font-family: var(--serif); font-style: italic; font-size: .88rem;
  color: var(--champagne); letter-spacing: .02em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  z-index: 2; text-shadow: 0 1px 8px rgba(0,0,0,.7);
}
@media (hover: hover) {
  .tile:hover .tile__cap { opacity: 1; transform: translateY(0); }
}
.tile:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

.feed__embeds { display: none; }
.feed__placeholder {
  display: none;
  max-width: var(--maxw); margin: 2.8rem auto 0;
  grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.is-local .feed__grid { display: none; }
.is-local .feed__placeholder { display: grid; }
.ph {
  aspect-ratio: 1 / 1; border-radius: 6px;
  background: linear-gradient(135deg, rgba(200,23,94,.22), rgba(42,10,32,.6));
  border: 1px solid var(--line-pink);
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700;
  color: var(--magenta); font-size: 1.8rem;
  transition: transform .5s var(--ease-bounce);
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(232,200,122,.22), transparent 55%);
}
@media (hover: hover) {
  .ph:hover { transform: scale(1.03) rotate(-.5deg); }
}
@media (max-width: 820px) { .feed__placeholder { grid-template-columns: repeat(2, 1fr); } }

.feed__foot {
  max-width: var(--maxw); margin: 2.2rem auto 0;
  text-align: center;
}
.feed__foot a {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--magenta); font-weight: 600;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  min-height: 44px;
  border-bottom: 1.5px solid var(--magenta); padding-bottom: 2px;
  transition: color .35s, border-color .35s;
}
@media (hover: hover) {
  .feed__foot a:hover { color: var(--pink); border-color: var(--pink); }
}

/* ==============================
   CONTACT
============================== */
.contact {
  background: linear-gradient(160deg, var(--merlot) 0%, var(--noir) 60%);
  position: relative; overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200,23,94,.32) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(232,200,122,.1) 0%, transparent 40%);
  pointer-events: none;
}
.contact__inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.contact__lede {
  max-width: 52ch; margin: 1.2rem 0 2.4rem;
  color: rgba(245,233,200,.8); font-size: 1.05rem;
}
.contact__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 720px;
}
@media (max-width: 720px) { .contact__cards { grid-template-columns: 1fr; } }
.ccard {
  display: flex; flex-direction: column; gap: .45rem;
  background: rgba(42,10,32,.7);
  border: 1px solid var(--line-pink);
  border-top: 3px solid var(--magenta);
  padding: 1.6rem 1.8rem; border-radius: 0 0 10px 10px;
  min-height: 44px;
  transition: transform .4s var(--ease-bounce), background .4s, border-top-color .35s;
  will-change: transform;
}
@media (hover: hover) {
  .ccard:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(200,23,94,.2);
    border-top-color: var(--pink);
  }
}
.ccard__l { font-size: .68rem; letter-spacing: .32em; text-transform: uppercase; color: var(--magenta); font-weight: 600; }
.ccard__v { font-family: var(--serif); font-size: 1.1rem; color: var(--champagne); word-break: break-all; }

/* ==============================
   FOOTER
============================== */
.foot {
  background: var(--noir);
  padding: 2.4rem var(--gutter);
  border-top: 1px solid var(--line);
  color: rgba(245,233,200,.45);
  font-size: .8rem;
  text-align: center;
  display: flex; flex-direction: column; gap: .4rem;
}
.foot__small { color: rgba(245,233,200,.35); font-style: italic; }

/* ==============================
   MOBILE HERO - portrait behind text
============================== */
@media (max-width: 768px) {
  .hero {
    padding: 7rem var(--gutter) 0;
    min-height: auto;
  }
  .hero__inner { padding-bottom: 1.5rem; }
  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
  }
  .hero__copy {
    position: relative; z-index: 3;
    min-height: 80vh;
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .hero__portrait {
    position: absolute;
    inset: 0; z-index: 1;
    margin: 0;
    align-items: stretch;
    pointer-events: none; gap: 0;
  }
  .hero__portrait-frame {
    width: 100%; max-width: none;
    height: 80vh; aspect-ratio: auto;
    border: 0; border-radius: 0;
    box-shadow: none; clip-path: none;
    opacity: .38;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,.8) 40%, rgba(0,0,0,.3) 75%, rgba(0,0,0,0) 100%);
            mask-image: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,.8) 40%, rgba(0,0,0,.3) 75%, rgba(0,0,0,0) 100%);
  }
  .hero__portrait-frame::after {
    background: linear-gradient(180deg, rgba(13,8,17,.2) 0%, rgba(13,8,17,.7) 70%, rgba(13,8,17,.95) 100%);
  }
  .hero__portrait-frame img { object-position: center 20%; }
  .hero__portrait-cap { display: none; }

  .wordmark__first { font-size: clamp(3rem, 15vw, 5.2rem); }
  .wordmark__last  { font-size: clamp(2rem, 10vw, 3.5rem); }
  .wordmark { margin-bottom: 1.4rem; }
  .hero__eyebrow { font-size: .62rem; margin-bottom: 1.2rem; }
  .hero__lede { font-size: clamp(.96rem, 4vw, 1.1rem); max-width: 34ch; margin-bottom: 1.6rem; }
  .hero__ctas { gap: .75rem; margin-bottom: 2rem; }
  .btn { padding: .82rem 1.3rem; font-size: .73rem; letter-spacing: .2em; }
  .hero__stats {
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: .8rem; padding-top: 1.2rem;
  }
  .stat__n { font-size: 1.1rem; }
  .stat__l { font-size: .58rem; letter-spacing: .16em; }
  .marquee__track { animation-duration: 50s; font-size: .72rem; }
  .hero__marquee { margin-top: 1.4rem; }
}

@media (max-width: 420px) {
  .hero__stats { gap: .5rem; }
  .stat__n { font-size: .94rem; }
  .stat__l { font-size: .52rem; }
}

/* ==============================
   Reduced motion
============================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
