/* ============================================================
   Besa Gordon Media — editorial local-media homepage
   Type:  Newsreader (display serif) · Hanken Grotesk (UI/body) · JetBrains Mono (meta)
   Color: warm cream + ink + one clay/vermillion signature accent
   ============================================================ */

:root {
  /* color */
  /* color — Besa palette: Charcoal · Cognac · Linen · Mahogany */
  --cream:      oklch(0.966 0.013 92);   /* Linen #f9f5ec — page bg */
  --paper:      oklch(0.990 0.007 92);   /* lifted card surface */
  --sand:       oklch(0.918 0.022 88);   /* placeholder tint */
  --ink:        oklch(0.235 0.004 60);   /* Charcoal #1b1b1b */
  --ink-soft:   oklch(0.355 0.010 62);
  --muted:      oklch(0.545 0.013 68);
  --line:       oklch(0.905 0.016 88);
  --line-soft:  oklch(0.935 0.012 90);
  --clay:       oklch(0.44 0.097 40);    /* Mahogany #7a3b2e — primary accent */
  --clay-deep:  oklch(0.37 0.085 39);
  --clay-tint:  oklch(0.90 0.025 48);
  --cognac:     oklch(0.64 0.093 68);    /* Cognac #b5834a — secondary accent */
  --cognac-deep:oklch(0.535 0.090 68);
  --cognac-tint:oklch(0.935 0.022 82);
  --moss:       oklch(0.64 0.093 68);    /* repurposed → cognac */

  /* type */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 9px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--clay); color: var(--paper); }

/* ---------- shared primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--clay);
  display: inline-block;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.04; margin: 0; }
.serif-italic { font-style: italic; }
.display {
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.h-sec {
  font-size: clamp(32px, 4.6vw, 58px);
  letter-spacing: -0.02em;
  line-height: 1.0;
}
p { text-wrap: pretty; }
.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-soft); line-height: 1.55; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 100px; border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--clay); color: var(--paper); }
.btn-primary:hover { background: var(--clay-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn-arrow svg { transition: transform .2s ease; }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

.link-arrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase;
  font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line); padding-bottom: 3px; transition: gap .2s, border-color .2s, color .2s;
}
.link-arrow:hover { gap: 13px; border-color: var(--clay); color: var(--clay-deep); }

/* striped image placeholder */
.ph {
  position: relative;
  background-color: var(--sand);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 11px,
    oklch(0.90 0.012 72) 11px 12px
  );
  border: 1px solid var(--line);
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden;
}
.ph > .ph-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--paper); border: 1px solid var(--line);
  padding: 5px 9px; border-radius: 6px; margin: 12px; line-height: 1;
}
.ph.center { align-items: center; justify-content: center; }
.ph.center > .ph-tag { margin: 0; }

/* section rhythm */
section { padding-block: clamp(64px, 9vw, 128px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head .h-sec { max-width: 16ch; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* reveal — visible by DEFAULT (safe fallback). Hidden pre-state is armed only
   once JS confirms it's running, via .reveals-armed on <html>. If JS or the
   transition misbehaves, content stays visible rather than blank. */
.reveal { opacity: 1; transform: none; }
.reveals-armed .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}
.reveals-armed .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveals-armed .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Top utility bar
   ============================================================ */
.utility {
  background: var(--ink); color: var(--cream);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em;
}
.utility .wrap { display: flex; align-items: center; justify-content: center; gap: 14px; padding-block: 9px; text-align: center; white-space: nowrap; }
.utility .msg { overflow: hidden; text-overflow: ellipsis; }
.utility .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clay); display: inline-block; }
.utility a { color: var(--cream); border-bottom: 1px solid oklch(0.6 0.02 70); padding-bottom: 1px; }
.utility a:hover { border-color: var(--clay); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: oklch(0.976 0.008 78 / 0.82);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav.scrolled { border-bottom-color: var(--line); background: oklch(0.976 0.008 78 / 0.94); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--clay); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; font-size: 20px; font-weight: 500;
  flex-shrink: 0;
}
.brand .word { display: flex; flex-direction: column; line-height: 1; }
.brand .word b { font-family: var(--serif); font-weight: 500; font-size: 19px; letter-spacing: -0.01em; white-space: nowrap; }
.brand .word span { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--clay); transition: width .22s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-social { display: flex; align-items: center; gap: 4px; }
.nav-social a { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--ink-soft); transition: all .2s ease; }
.nav-social a:hover { color: var(--clay); background: oklch(0.62 0.13 40 / 0.1); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 9px; width: 42px; height: 42px; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 1.6px; background: var(--ink); position: relative; display: block; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.6px; background: var(--ink); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(48px, 6vw, 88px); }
.hero-top { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; margin-bottom: clamp(28px, 3.5vw, 46px); }
.hero-head .eyebrow { margin-bottom: 22px; }
.hero .display { font-size: clamp(38px, 5vw, 74px); }
.hero h1 { margin-bottom: 0; }
.hero h1 .accent { color: var(--clay); }
.hero-lead { max-width: 46ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 32px; }
.hero-meta { display: flex; gap: 30px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-meta .stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .stat b { font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: -0.01em; line-height: 1; }
.hero-meta .stat span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

.hero-portrait { position: relative; }
.hero-portrait .ph { aspect-ratio: 4 / 5; border-radius: var(--radius); }

/* hero feature image (landscape) */
.hero-feature { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--sand); }
.hero-feature img { width: 100%; height: clamp(300px, 42vw, 520px); object-fit: cover; object-position: center 40%; display: block; }
.feat-badge {
  position: absolute; left: 18px; bottom: 18px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  padding: 10px 16px 10px 12px; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  box-shadow: 0 16px 32px -18px oklch(0.2 0.02 60 / 0.6);
}
.feat-badge .live { width: 9px; height: 9px; border-radius: 50%; background: var(--clay); animation: pulse 2s infinite; flex-shrink: 0; }
.feat-caption {
  position: absolute; right: 18px; bottom: 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--cream);
  background: oklch(0.2 0.02 60 / 0.5); backdrop-filter: blur(5px);
  padding: 8px 13px; border-radius: 8px;
}
.hero-portrait .badge {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  padding: 10px 16px 10px 12px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 30px -18px oklch(0.3 0.02 60 / 0.5);
}
.hero-portrait .badge .live { width: 9px; height: 9px; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 0 var(--clay); animation: pulse 2s infinite; }
.hero-portrait .badge span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 oklch(0.44 0.097 40 / .5); } 70% { box-shadow: 0 0 0 9px oklch(0.44 0.097 40 / 0); } 100% { box-shadow: 0 0 0 0 oklch(0.44 0.097 40 / 0); } }
.hero-portrait .tag-float {
  position: absolute; right: -14px; top: 30px; transform: rotate(3deg);
  background: var(--ink); color: var(--cream); border-radius: 10px; padding: 12px 15px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; max-width: 150px; line-height: 1.5;
  box-shadow: 0 16px 34px -20px oklch(0.2 0.02 60 / 0.7);
}
.hero-portrait .tag-float b { color: var(--clay-tint); }

/* marquee strip — "worked with" brand wall */
.marquee-band { border-block: 1px solid var(--line); background: var(--paper); overflow: hidden; padding-top: 28px; padding-bottom: 8px; }
.logos-label { text-align: center; margin-bottom: 8px; }
.logos-label .eyebrow { white-space: nowrap; }
.marquee { display: flex; width: max-content; gap: 0; white-space: nowrap; will-change: transform; animation: marquee 42s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .item {
  display: inline-flex; align-items: center; gap: 16px; padding: 18px 32px; flex-shrink: 0;
}
.marquee .item img { height: 34px; width: auto; display: block; }
.marquee .item img[alt="Seattle Mariners"] { height: 50px; }
.marquee .item img[alt="Seattle Seahawks"] { height: 40px; }
.marquee .item img[alt="Jack Daniel's"] { height: 46px; }
.marquee .item img[alt="City of Seattle"] { height: 44px; }
.marquee .item img[alt="iHeartMedia"] { height: 42px; }
.marquee .item img[alt="King County Metro"] { height: 38px; }
.marquee .item::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--cognac); margin-left: 14px; flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Featured story
   ============================================================ */
.featured { background: var(--paper); border-block: 1px solid var(--line); }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.featured-media { position: relative; }
.featured-media .ph { aspect-ratio: 16 / 11; border-radius: var(--radius); }
.featured-media .li-embed { aspect-ratio: auto; height: 540px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); }
.featured-media .li-embed iframe { background: #fff; }
.featured-media .yt-embed { aspect-ratio: 16 / 9; border-radius: var(--radius); }
.featured-media .play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.featured-media .play .disc {
  width: 78px; height: 78px; border-radius: 50%; background: var(--clay); color: var(--paper);
  display: grid; place-items: center; box-shadow: 0 18px 40px -16px oklch(0.44 0.097 40 / 0.75);
  transition: transform .22s ease; 
}
.featured-media:hover .play .disc { transform: scale(1.08); }
.featured-copy .kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-soft); background: var(--cream);
}
.tag.reel { color: var(--clay-deep); border-color: var(--clay); background: var(--clay-tint); }
.tag.tv { color: var(--cognac-deep); border-color: var(--cognac); background: var(--cognac-tint); }
.featured-copy h2 { font-size: clamp(30px, 3.6vw, 46px); margin-bottom: 18px; }
.featured-copy p { color: var(--ink-soft); max-width: 44ch; margin-bottom: 26px; }
.byline { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.byline .av { width: 30px; height: 30px; border-radius: 50%; background: var(--clay); color: var(--paper); display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 14px; }

/* ============================================================
   Stories grid + filter
   ============================================================ */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filters button {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 100px; border: 1px solid var(--line); background: transparent; color: var(--ink-soft);
  transition: all .18s ease;
}
.filters button:hover { border-color: var(--ink); color: var(--ink); }
.filters button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.story-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.card { grid-column: span 4; display: flex; flex-direction: column; transition: opacity .35s ease, transform .35s ease; }
.card.hide { display: none; }
.card-media { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px; }
.card-media .ph { border-radius: 0; border: 0; }
.card-media.reel-media .ph { aspect-ratio: 9 / 16; }
.fb-embed { position: relative; width: 100%; aspect-ratio: 9 / 16; background: var(--ink); overflow: hidden; }
.fb-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.fb-embed.ig-post { aspect-ratio: 4 / 5; }
/* Story grid: unify every embed to one portrait frame so rows align cleanly */
.story-grid .fb-embed,
.story-grid .fb-embed.ig-post { aspect-ratio: 9 / 16; }
.story-grid .card-media { background: var(--ink); }
.card-media.wide-media .ph { aspect-ratio: 4 / 3; }
.card-media .overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, oklch(0.2 0.02 60 / 0.55));
  opacity: 0; transition: opacity .25s ease; display: flex; align-items: flex-end; padding: 16px;
}
.card:hover .card-media .overlay { opacity: 1; }
.card:hover .card-media .ph { transform: scale(1.04); }
.card-media .ph { transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.card-media .corner-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
}
.card-media .play-mini {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; background: oklch(0.99 0.005 78 / 0.92); color: var(--ink);
  display: grid; place-items: center; transform: scale(.8); opacity: 0; transition: all .25s ease;
}
.card:hover .play-mini { transform: scale(1); opacity: 1; }
.card-media .duration {
  position: absolute; bottom: 14px; left: 14px; z-index: 2;
  font-family: var(--mono); font-size: 10.5px; color: var(--cream); background: oklch(0.2 0.02 60 / 0.7);
  padding: 4px 8px; border-radius: 6px; letter-spacing: 0.04em;
}
.card h3 { font-size: 23px; line-height: 1.12; margin-bottom: 10px; transition: color .2s; }
.card:hover h3 { color: var(--clay-deep); }
.card .meta { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; display: flex; gap: 10px; align-items: center; }
.card .meta .dotsep { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.card .excerpt { color: var(--ink-soft); font-size: 16px; line-height: 1.5; margin: 10px 0 0; }

/* ============================================================
   Proof (stats) + vibe gallery
   ============================================================ */
.proof { background: var(--paper); border-block: 1px solid var(--line); }
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(40px, 5vw, 72px); }
.stat-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 26px 26px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.stat-card::before { content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 3px; background: var(--cognac); }
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -32px oklch(0.3 0.02 60 / 0.5); border-color: var(--clay); }
.stat-card b { display: block; font-family: var(--serif); font-size: clamp(40px, 4.4vw, 56px); font-weight: 500; line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px; }
.stat-card .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); line-height: 1.45; }

.vibe { margin-top: 0; }
.vibe-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.vibe-note { font-family: var(--mono); font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; margin: 0; }
.vibe-marquee {
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-block: 26px;
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.vibe-track { display: flex; width: max-content; animation: vibescroll 42s linear infinite; }
.vibe-track:hover { animation-play-state: paused; }
.vibe-photo { height: clamp(190px, 22vw, 250px); width: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); display: block; flex-shrink: 0; margin-right: 18px; }
@keyframes vibescroll { to { transform: translateX(-50%); } }

/* ============================================================
   Local spotlight
   ============================================================ */
.spotlight { background: var(--ink); color: var(--cream); }
.spotlight .eyebrow { color: var(--clay-tint); }
.spotlight .eyebrow::before { background: var(--clay-tint); }
.spotlight .h-sec { color: var(--cream); }
.spotlight .lead { color: oklch(0.82 0.012 72); }
.spot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 12px; }
.spot {
  background: oklch(0.27 0.014 60); border: 1px solid oklch(0.34 0.014 60); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s ease, border-color .25s ease;
}
.spot:hover { transform: translateY(-4px); border-color: var(--clay); }
.spot .ph { aspect-ratio: 16 / 10; border: 0; border-radius: 0; background-color: oklch(0.33 0.012 60); background-image: repeating-linear-gradient(-45deg, transparent 0 11px, oklch(0.38 0.012 60) 11px 12px); }
.spot .ph .ph-tag { background: oklch(0.27 0.014 60); color: oklch(0.78 0.012 72); border-color: oklch(0.4 0.012 60); }
.spot .spot-body { padding: 22px; }
.spot .cat { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-tint); }
.spot h3 { color: var(--cream); font-size: 24px; margin: 10px 0 8px; }
.spot p { color: oklch(0.78 0.012 72); font-size: 15px; line-height: 1.5; margin: 0 0 16px; }
.spot .spot-foot { display: flex; align-items: center; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: oklch(0.7 0.012 72); }
.spot .spot-foot .pin { color: var(--clay-tint); }
.spot .spot-foot a { color: oklch(0.7 0.012 72); text-decoration: none; transition: color .2s ease; }
.spot:hover .spot-foot a { color: var(--clay-tint); }
.spot-reel { aspect-ratio: 9 / 16; background: var(--ink); }
.spot-reel iframe { background: #fff; }

/* ============================================================
   Events
   ============================================================ */
.events-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.cal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cal { display: flex; flex-direction: column; }
.cal-flyer { position: relative; display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-bottom: 16px; }
.cal-flyer .ph { aspect-ratio: 3 / 4; border: 0; border-radius: 0; transition: transform .5s cubic-bezier(.2,.6,.2,1); }
.cal:hover .cal-flyer .ph { transform: scale(1.04); }
.cal-date {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--paper); border: 1px solid var(--line); border-radius: 11px;
  padding: 8px 12px; display: flex; flex-direction: column; align-items: center; line-height: 1;
  box-shadow: 0 12px 24px -16px oklch(0.3 0.02 60 / 0.6);
}
.cal-date b { font-family: var(--serif); font-size: 25px; font-weight: 500; }
.cal-date span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay-deep); margin-top: 3px; }
.cal-tag { position: absolute; top: 14px; right: 12px; z-index: 2; }
.cal-body h3 { font-size: 22px; line-height: 1.14; margin-bottom: 8px; transition: color .2s ease; }
.cal:hover .cal-body h3 { color: var(--clay-deep); }
.cal-where { font-family: var(--mono); font-size: 11.5px; color: var(--muted); display: flex; gap: 7px; align-items: baseline; line-height: 1.4; }
.cal-where .pin { color: var(--clay-deep); }

/* ============================================================
   Meet Besa
   ============================================================ */
.about { background: var(--paper); border-block: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media .ph { aspect-ratio: 5 / 6; border-radius: var(--radius); }
.about-photo { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; object-position: center; border-radius: var(--radius); border: 1px solid var(--line); display: block; }
.about-media .ph.sm { position: absolute; width: 44%; aspect-ratio: 1; right: -16px; bottom: -26px; border: 4px solid var(--paper); border-radius: var(--radius-sm); box-shadow: 0 20px 40px -24px oklch(0.3 0.02 60 / 0.5); }
.about-copy h2 { font-size: clamp(30px, 4vw, 50px); margin: 22px 0 24px; }
.about-copy h2 em { color: var(--clay); }
.about-copy p { color: var(--ink-soft); max-width: 50ch; margin-bottom: 20px; }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--ink); margin-top: 8px; }
.about-credentials { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-credentials .cred { display: flex; flex-direction: column; gap: 3px; }
.about-credentials .cred b { font-family: var(--serif); font-size: 26px; font-weight: 500; }
.about-credentials .cred span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }

/* About — Variation C (founder card) */
.about-c .c-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 76px); align-items: stretch; }
.about-c .c-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--ink); }
.about-c .c-card img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; object-position: center top; display: block; }
.about-c .c-plate { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 24px 22px; background: linear-gradient(to top, oklch(0.18 0.01 60 / 0.92), transparent); color: var(--cream); }
.about-c .c-plate b { font-family: var(--serif); font-size: 26px; font-weight: 500; display: block; }
.about-c .c-plate span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay-tint); }
.about-c .c-plate .c-social { display: flex; gap: 8px; margin-top: 14px; }
.about-c .c-plate .c-social a { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--cream); border: 1px solid oklch(0.95 0.02 90 / 0.3); transition: all .2s ease; }
.about-c .c-plate .c-social a:hover { background: var(--clay); border-color: var(--clay); }
.about-c .c-body { align-self: center; }
.about-c .c-body .mission { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.16; color: var(--ink); font-size: clamp(26px, 2.8vw, 38px); margin: 18px 0 22px; max-width: 24ch; }
.about-c .c-body > p { color: var(--ink-soft); max-width: 50ch; margin-bottom: 30px; }
.about-c .c-readmore { margin-bottom: 8px; }
.about-c .wwd { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 32px; }
.about-c .wwd li { display: flex; gap: 14px; align-items: flex-start; }
.about-c .wwd .n { font-family: var(--mono); font-size: 12px; color: var(--clay); padding-top: 3px; }
.about-c .wwd b { display: block; font-size: 17px; color: var(--ink); margin-bottom: 3px; }
.about-c .wwd p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.about-c .press { margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-c .press-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; }
.about-c .press-row { display: flex; align-items: center; flex-wrap: wrap; gap: 22px 36px; }
.about-c .press-row img { height: 28px; width: auto; display: block; opacity: 0.8; transition: opacity .2s ease; filter: saturate(0.15); }
.about-c .press-row img:hover { opacity: 1; filter: none; }
.about-c .press-row img[alt="Seattle Mariners"] { height: 40px; }
.about-c .press-row img[alt="Seattle Seahawks"] { height: 32px; }
.about-c .press-row img[alt="iHeartMedia"] { height: 34px; }
.about-c .press-row img[alt="City of Seattle"] { height: 36px; }
.about-c .press-row img[alt="Jack Daniel's"] { height: 38px; }

/* ============================================================
   Work with me — services
   ============================================================ */
.work .section-head { margin-bottom: 56px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; background: var(--paper);
  display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -30px oklch(0.3 0.02 60 / 0.5); border-color: var(--clay); }
.svc .num { font-family: var(--mono); font-size: 12px; color: var(--clay-deep); letter-spacing: 0.1em; }
.svc h3 { font-size: 27px; margin: 16px 0 12px; }
.svc p { color: var(--ink-soft); font-size: 16px; line-height: 1.55; margin: 0 0 22px; flex-grow: 1; }
.svc ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 9px; }
.svc ul li { font-size: 14.5px; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.svc ul li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); margin-top: 8px; flex-shrink: 0; }
.svc .svc-foot { font-family: var(--mono); font-size: 12px; color: var(--muted); display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line-soft); }

.work-cta { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-top: 56px; padding: clamp(28px, 3.5vw, 40px); background: var(--ink); color: var(--cream); border-radius: var(--radius); }
.work-cta h3 { font-size: clamp(22px, 2.4vw, 28px); color: var(--cream); margin: 0 0 6px; }
.work-cta p { color: oklch(0.82 0.012 72); font-size: 15px; line-height: 1.5; margin: 0; max-width: 52ch; }
.work-cta .btn-primary { background: var(--clay); border-color: var(--clay); color: var(--paper); flex-shrink: 0; }
.work-cta .btn-primary:hover { background: var(--clay-deep); border-color: var(--clay-deep); }

.svc-more { margin-top: 56px; border-top: 1px solid var(--line); padding-top: 40px; }
.svc-more-title { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); margin: 0 0 28px; }
.svc-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 48px; }
.svc-list li { display: flex; gap: 18px; align-items: flex-start; }
.svc-list-num { font-family: var(--mono); font-size: 13px; color: var(--clay); padding-top: 3px; flex-shrink: 0; }
.svc-list b { display: block; font-size: 19px; color: var(--ink); margin-bottom: 5px; }
.svc-list p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

/* ============================================================
   Newsletter
   ============================================================ */
.cta { background: var(--clay); color: var(--paper); }
.cta-card { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.cta .eyebrow { color: oklch(0.96 0.02 60); }
.cta .eyebrow::before { background: oklch(0.96 0.02 60); }
.cta h2 { color: var(--paper); font-size: clamp(32px, 4.4vw, 56px); margin: 20px 0 18px; }
.cta p { color: oklch(0.935 0.035 74); max-width: 40ch; font-size: 18px; }
.signup { background: oklch(0.99 0.005 92); border-radius: var(--radius); padding: 30px; box-shadow: 0 30px 60px -30px oklch(0.3 0.08 40 / 0.6); }
.signup label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.signup .field { margin-bottom: 16px; }
.signup input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 16px; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.signup input:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px oklch(0.44 0.097 40 / 0.18); }
.signup input.invalid { border-color: oklch(0.55 0.2 25); box-shadow: 0 0 0 3px oklch(0.55 0.2 25 / 0.12); }
.signup .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.signup .btn-primary { width: 100%; justify-content: center; margin-top: 6px; padding-block: 15px; }
.signup .err { font-size: 12.5px; color: oklch(0.5 0.2 25); margin-top: 6px; min-height: 16px; font-family: var(--sans); }
.signup .fineprint { font-family: var(--mono); font-size: 10.5px; color: var(--muted); text-align: center; margin-top: 14px; letter-spacing: 0.02em; }
.signup.done { text-align: center; padding-block: 50px; }
.signup .success-mark { width: 60px; height: 60px; border-radius: 50%; background: var(--clay-tint); color: var(--clay-deep); display: grid; place-items: center; margin: 0 auto 18px; }
.signup.done h3 { font-size: 26px; margin-bottom: 10px; }
.signup.done p { color: var(--ink-soft); font-size: 15px; }

/* ============================================================
   Footer
   ============================================================ */
.foot { background: var(--ink); color: oklch(0.82 0.012 72); padding-block: 64px 30px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid oklch(0.34 0.014 60); }
.foot .brand .word b { color: var(--cream); }
.foot .brand .word span { color: oklch(0.6 0.012 72); }
.foot-blurb { color: oklch(0.72 0.012 72); font-size: 15px; max-width: 32ch; margin: 20px 0 22px; line-height: 1.55; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid oklch(0.34 0.014 60); display: grid; place-items: center; color: var(--cream); transition: all .2s ease; }
.foot-social a:hover { background: var(--clay); border-color: var(--clay); transform: translateY(-2px); }
.foot-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.62 0.012 72); margin: 0 0 18px; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col ul li a { color: oklch(0.82 0.012 72); font-size: 15px; transition: color .2s; }
.foot-col ul li a:hover { color: var(--clay-tint); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; font-family: var(--mono); font-size: 11.5px; color: oklch(0.58 0.012 72); flex-wrap: wrap; }
.foot-bottom .made { display: flex; align-items: center; gap: 8px; }
.foot-bottom .made .heart { color: var(--clay); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .hero-top { grid-template-columns: 1fr; gap: 30px; align-items: start; }
  .hero-feature img { height: clamp(260px, 56vw, 420px); }
  .hero-portrait { max-width: 460px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-media { order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-c .c-grid { grid-template-columns: 1fr; }
  .about-c .c-card img { min-height: 380px; max-height: 520px; }
  .about-c .wwd { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
  .cta-card { grid-template-columns: 1fr; }
  .spot-grid { grid-template-columns: 1fr 1fr; }
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .vibe-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-list { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .card { grid-column: span 6; }
}
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px;
  }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); width: 100%; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav-cta .btn-primary { display: none; }
  .nav-social { display: none; }
  .hero-meta { gap: 22px; }
  .spot-grid { grid-template-columns: 1fr; }
  .story-grid { gap: 36px 20px; }
  .card { grid-column: span 12; }
  .cal-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cal-body h3 { font-size: 18px; }
  .stats-band { gap: 14px; }
  .stat-card { padding: 24px 20px 20px; }
  .signup .row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 32px; }
  .section-head { margin-bottom: 36px; }
}


/* ============================================================
   Reels & TikToks — full-bleed horizontal scroller
   ============================================================ */
.reels { overflow: hidden; }
.reels .section-head { margin-bottom: 26px; }
.reel-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.reel-tabs button {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 100px; border: 1px solid var(--line); background: transparent; color: var(--ink-soft);
  transition: all .18s ease;
}
.reel-tabs button:hover { border-color: var(--ink); color: var(--ink); }
.reel-tabs button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.reel-scroller {
  width: 100vw; max-width: 100vw;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.reel-scroller::-webkit-scrollbar { display: none; }
.reel-scroller.dragging { cursor: grabbing; scroll-snap-type: none; }
.reel-track {
  display: flex; gap: 20px; width: max-content;
  padding: 6px max(var(--gutter), calc(50vw - var(--maxw) / 2 + var(--gutter)));
}
.reel-card { flex: 0 0 auto; width: clamp(258px, 74vw, 312px); scroll-snap-align: start; display: flex; flex-direction: column; }
.reel-card.reel-hide { display: none; }
.reel-frame { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); border: 1px solid var(--line); }
.reel-frame .fb-embed { aspect-ratio: 9 / 16; }
.reel-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px; color: var(--cream);
  background: oklch(0.2 0.02 60 / 0.62); backdrop-filter: blur(4px); border: 1px solid oklch(0.95 0.02 90 / 0.16);
}
.reel-meta { padding-top: 16px; }
.reel-cat { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay-deep); }
.reel-meta h3 { font-size: 21px; line-height: 1.14; margin: 8px 0 10px; }
.reel-link { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--muted); transition: color .2s ease; display: inline-flex; gap: 6px; }
.reel-card:hover .reel-link { color: var(--clay-deep); }
.reel-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 26px; }
.reel-hint { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
.reel-nav { display: flex; gap: 10px; }
.reel-arrow {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  font-size: 18px; display: grid; place-items: center; transition: all .2s ease;
}
.reel-arrow:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }

/* ============================================================
   Instagram photo strip
   ============================================================ */
.ig-strip { padding-top: clamp(34px, 5vw, 64px); }
.ig-head { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; margin-bottom: 28px; }
.ig-id { display: flex; align-items: center; gap: 15px; }
.ig-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); flex-shrink: 0; display: block; }
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-id-text { display: flex; flex-direction: column; gap: 4px; }
.ig-handle { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.ig-handle:hover { color: var(--clay-deep); }
.ig-sub { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.ig-photo-card .reel-frame { aspect-ratio: 9 / 16; }
.ig-photo-card .reel-frame image-slot { width: 100%; height: 100%; display: block; }

/* Instagram post embeds (photographs) — white IG cards, fixed-height frame */
.ig-post-card { width: clamp(300px, 82vw, 332px); }
.ig-post-card .reel-frame { background: #fff; }
.ig-post-card .reel-frame .ig-embed { aspect-ratio: auto; height: clamp(420px, 62vw, 510px); }
.ig-post-card .reel-frame .ig-embed iframe { background: #fff; }
.reel-sum { color: var(--ink-soft); font-size: 14px; line-height: 1.45; margin: 7px 0 11px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================================
   Local spotlight — YouTube landscape
   ============================================================ */
.spot-grid.yt { grid-template-columns: 1fr 1fr; gap: 28px; }
.spot-grid.yt .spot-yt { aspect-ratio: 16 / 9; background: var(--ink); }
.spot-grid.yt .spot-yt iframe { background: #000; }
.spot-grid.yt .spot h3 { font-size: 26px; }

@media (max-width: 760px) {
  .spot-grid.yt { grid-template-columns: 1fr; }
  .reel-meta h3 { font-size: 20px; }
}
