/* ============================================================
   Yehuda Tenenbaum — personal portfolio
   Dark, sleek, electric-blue glow. Sibling to y10taxtech.com.
   ============================================================ */

:root {
  --ink:        #05070d;   /* page base, near-black */
  --ink-2:      #0b0e17;   /* raised sections */
  --card:       #10131f;   /* card surface */
  --card-2:     #141826;   /* card hover / alt */
  --line:       rgba(255, 255, 255, 0.08);
  --line-2:     rgba(255, 255, 255, 0.14);

  --blue:       #3b5bff;   /* signature accent */
  --blue-lt:    #6b84ff;
  --blue-soft:  rgba(59, 91, 255, 0.14);

  --text:       #eef1f8;   /* primary text on dark */
  --muted:      #aeb6c9;   /* secondary text */
  --muted-2:    #7b8398;   /* tertiary / labels */

  --radius:     18px;
  --radius-sm:  12px;
  --wrap:       1120px;

  --font-head:  "Space Grotesk", system-ui, sans-serif;
  --font-body:  "Inter", system-ui, -apple-system, sans-serif;

  --shadow:     0 24px 60px -24px rgba(0, 0, 0, 0.8);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient background texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1000px 600px at 78% -10%, rgba(59, 91, 255, 0.18), transparent 60%),
    radial-gradient(900px 700px at -10% 10%, rgba(59, 91, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }

/* Accessibility */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible, .gallery:focus-visible {
  outline: 2px solid var(--blue-lt); outline-offset: 3px; border-radius: 6px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent;
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 rgba(59, 91, 255, 0.0), 0 10px 30px -12px rgba(59, 91, 255, 0.7);
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 0 26px -2px rgba(59, 91, 255, 0.6), 0 14px 34px -12px rgba(59, 91, 255, 0.8); }
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-2); box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--blue); box-shadow: none; }
.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 11px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.02em;
  color: #fff; background: linear-gradient(145deg, #3b5bff, #2440d9);
  box-shadow: 0 0 18px -2px rgba(59, 91, 255, 0.8), inset 0 1px 0 rgba(255,255,255,0.25);
  animation: pulse 3.6s ease-in-out infinite;
}
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 14px -3px rgba(59,91,255,0.7), inset 0 1px 0 rgba(255,255,255,0.25); }
  50%      { box-shadow: 0 0 26px 0 rgba(59,91,255,0.95), inset 0 1px 0 rgba(255,255,255,0.25); }
}

.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 15px; color: var(--muted); font-weight: 500;
  position: relative; transition: color 0.2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--blue); transition: width 0.25s var(--ease); border-radius: 2px;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::after, .nav a:hover::after { width: 100%; }

.nav-cta { margin-left: 4px; }

/* Mobile nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 8px 24px 20px;
  background: rgba(5, 7, 13, 0.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 4px; color: var(--muted); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child { border-bottom: 0; margin-top: 8px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 156px 0 52px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,91,255,0.28), transparent 62%);
  filter: blur(20px); z-index: -1; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-inner { max-width: 640px; }
.hero-portrait { position: relative; display: flex; justify-content: center; }
.hero-portrait::before {
  content: ""; position: absolute; inset: -14% -6%; z-index: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 91, 255, 0.38), transparent 62%); filter: blur(20px);
}
.hero-portrait-frame {
  position: relative; z-index: 1; width: 100%; max-width: 340px; aspect-ratio: 4 / 5;
  border-radius: 24px; overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: var(--shadow); background: linear-gradient(160deg, #141a33, #0a0d18);
}
.hero-portrait-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.eyebrow {
  font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-lt); margin-bottom: 22px;
}
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 26px; }
.grad {
  background: linear-gradient(120deg, #6b84ff, #3b5bff 60%, #8fa2ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--muted); max-width: 680px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.cred-strip {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  border-top: 1px solid var(--line); padding-top: 30px; max-width: 760px;
}
.cred-strip li { display: flex; flex-direction: column; gap: 4px; }
.cred-strip strong { font-family: var(--font-head); font-size: 1.35rem; color: var(--text); }
.cred-strip span { font-size: 0.9rem; color: var(--muted-2); line-height: 1.4; }

/* ===== Logo marquee / trust bar ===== */
.trustbar { padding: 14px 0 30px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.015); }
.trustbar-label {
  text-align: center; font-family: var(--font-head); font-weight: 600;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 22px;
}
.marquee {
  position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 22px; width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Each logo sits on a clean white chip so mixed-color logos read on the dark theme. */
.logo-item {
  display: inline-flex; align-items: center; justify-content: center;
  height: 64px; padding: 0 30px; min-width: 132px;
  background: #ffffff; border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 26px -14px rgba(0,0,0,0.7);
}
.logo-img {
  max-height: 30px; max-width: 158px; width: auto; object-fit: contain; display: block;
}
.logo-img-lg { max-height: 34px; max-width: 190px; }
.logo-word {
  font-family: var(--font-head); font-weight: 700; font-size: 1.12rem;
  color: #0b0e17; white-space: nowrap; letter-spacing: -0.01em;
}

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section-alt { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: 16px; }
.section-lead { color: var(--muted); font-size: 1.08rem; }

/* ===== Cards ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(59,91,255,0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s;
}
.card-link:hover {
  transform: translateY(-4px); background: var(--card-2);
  border-color: transparent; box-shadow: var(--shadow);
}
.card-link:hover::before { opacity: 1; }

/* Category label as an editorial text kicker (no pill) */
.card-tag {
  display: inline-block; font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-lt);
  margin-bottom: 14px;
}
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 22px; }
.card-cta {
  margin-top: auto; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--blue-lt); display: inline-flex; align-items: center; gap: 7px;
}
.card-cta span { transition: transform 0.25s var(--ease); }
.card-link:hover .card-cta span { transform: translateX(5px); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; }
.about-photo {
  position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid var(--line-2); box-shadow: var(--shadow);
  background: linear-gradient(160deg, #141a33, #0a0d18);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-copy h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 20px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.about-creds { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.about-creds li {
  position: relative; padding-left: 30px; color: var(--text); font-size: 0.98rem;
}
.about-creds li::before {
  content: ""; position: absolute; left: 6px; top: 0.6em; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); box-shadow: 0 0 10px 1px rgba(59,91,255,0.8);
}

/* ===== Awards / Recognition ===== */
.awards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.award-card {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(150deg, #10142a, #0b0e17 75%);
  border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 26px 28px; overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.award-card:hover { transform: translateY(-3px); border-color: rgba(59,91,255,0.5); box-shadow: var(--shadow); }
.award-icon {
  flex: 0 0 auto; width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 15px; color: #fff;
  background: linear-gradient(145deg, #3b5bff, #2440d9);
  box-shadow: 0 0 22px -2px rgba(59, 91, 255, 0.8), inset 0 1px 0 rgba(255,255,255,0.25);
}
.award-icon svg { width: 30px; height: 30px; display: block; }
.award-body h3 { font-size: 1.3rem; line-height: 1.15; margin-bottom: 6px; }
.award-meta { color: var(--muted-2); font-size: 0.9rem; font-family: var(--font-head); font-weight: 500; }

/* ===== Media grid + feature ===== */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.media-feature {
  grid-column: span 3; flex-direction: row; align-items: stretch; padding: 0; gap: 0;
}
.media-feature-photo {
  position: relative; flex: 0 0 42%; min-height: 260px; overflow: hidden;
  border-right: 1px solid var(--line); background: linear-gradient(160deg, #141a33, #0a0d18);
}
.media-feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-feature-body { padding: 34px 32px; display: flex; flex-direction: column; align-items: flex-start; }

/* ===== Photo placeholder (when image file not yet added) ===== */
[data-photo] { position: relative; }
[data-photo].is-empty::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center;
  padding: 24px; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--muted); letter-spacing: 0.01em;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(59,91,255,0.22), transparent 60%),
    linear-gradient(160deg, #141a33, #0a0d18);
}
[data-photo].is-empty::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 16px 16px;
}

/* ===== Gallery ===== */
.section-gallery { padding-bottom: 40px; }
.gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr);
  gap: 16px; overflow-x: auto; scroll-behavior: auto;
  padding: 8px 24px 28px; max-width: calc(var(--wrap) + 48px); margin: 0 auto;
  scrollbar-width: thin; scrollbar-color: var(--line-2) transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3.5%, #000 96.5%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3.5%, #000 96.5%, transparent);
}
.gallery::-webkit-scrollbar { height: 8px; }
.gallery::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
.gallery-item {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line); background: #0a0d18;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px 16px 14px; font-size: 0.86rem; font-weight: 500; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

/* ===== Speaking ===== */
.section-speak { padding-bottom: 110px; }
.speak-panel {
  position: relative; display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center;
  background: linear-gradient(150deg, #10142a, #0a0d18 70%);
  border: 1px solid var(--line-2); border-radius: 26px; padding: 54px 52px; overflow: hidden;
}
.speak-panel::after {
  content: ""; position: absolute; top: -80px; right: -60px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,91,255,0.35), transparent 65%); filter: blur(10px); pointer-events: none;
}
.speak-copy { position: relative; z-index: 1; }
.speak-copy h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.speak-copy p { color: var(--muted); margin-bottom: 28px; max-width: 46ch; }
.speak-contact { margin-bottom: 24px; }
.speak-contact-label { display: block; color: var(--muted); font-size: 0.98rem; margin-bottom: 8px; }
.email-text {
  display: inline-block; font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem); color: var(--blue-lt);
  border-bottom: 2px solid rgba(59, 91, 255, 0.45); padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s; word-break: break-word;
}
.email-text:hover { color: #fff; border-color: var(--blue); }
.speak-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.speak-topics { position: relative; z-index: 1; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.speak-topics li {
  font-family: var(--font-head); font-weight: 500; font-size: 0.98rem; color: var(--text);
  padding: 14px 18px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  position: relative; padding-left: 40px;
}
.speak-topics li::before {
  content: ""; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
  box-shadow: 0 0 10px 1px rgba(59,91,255,0.8);
}

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); background: var(--ink-2); padding: 52px 0 30px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-name { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; }
.footer-tag { color: var(--muted-2); font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-social-row { display: flex; align-items: center; gap: 18px; margin-top: 26px; flex-wrap: wrap; }
.footer-social-label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--muted-2); letter-spacing: 0.02em; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px;
  color: var(--muted); border: 1px solid var(--line); background: rgba(255,255,255,0.02);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.footer-social a:hover { color: #fff; border-color: var(--blue); background: var(--blue-soft); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; display: block; }
.footer-bottom { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer-bottom p { color: var(--muted-2); font-size: 0.85rem; }

/* ===== Press / Featured in ===== */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.press-item {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.press-item.card-link:hover { transform: translateY(-4px); background: var(--card-2); border-color: rgba(59,91,255,0.4); box-shadow: var(--shadow); }
.press-item-static { cursor: default; }
.press-pub { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--text); margin-bottom: 6px; }
.press-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

/* ===== Reveal animation (progressive enhancement) =====
   Content is visible by default; only hidden once JS marks <html class="js">. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .card-grid, .media-grid, .press-grid { grid-template-columns: repeat(2, 1fr); }
  .media-feature { grid-column: span 2; flex-direction: column; }
  .media-feature-photo { flex-basis: auto; width: 100%; border-right: 0; border-bottom: 1px solid var(--line); aspect-ratio: 16 / 9; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-portrait { order: -1; }
  .hero-portrait-frame { max-width: 232px; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-photo { max-width: 380px; }
  .speak-panel { grid-template-columns: 1fr; gap: 34px; padding: 40px 30px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero { padding: 132px 0 64px; }
  .section { padding: 68px 0; }
  .card-grid, .media-grid, .press-grid, .awards-grid, .cred-strip { grid-template-columns: 1fr; }
  .media-feature { grid-column: span 1; }
  .cred-strip { gap: 20px; }
  .hero-actions .btn, .speak-actions .btn { flex: 1 1 auto; }
  .marquee-track { gap: 44px; animation-duration: 32s; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card-link:hover, .logo-item:hover, .gallery-item:hover img { transform: none; }
  .marquee-track { animation: none !important; }
}
