/* =============================================================================
   Henry Weston — layout & design. All text lives in content.js.
   Colours are set once, right here:
   ============================================================================= */
:root {
  --black: #000000;
  --panel: #0b0b0d;
  --panel-2: #121216;
  --white: #ffffff;
  --soft: #e7ebf2;
  --muted: #a7adba;
  --line: #24262e;
  --accent: #78C8FF;
  --accent-ink: #04121f;
  --accent-tint: rgba(120, 200, 255, 0.11);
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  --wrap: 1080px;
  --radius: 14px;
  --header-h: 66px;
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---- Layout helpers ------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 720px; }

.section { padding: 72px 0; border-top: 1px solid var(--line); scroll-margin-top: 70px; }
.section--alt { background: var(--panel); }
.section__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 32px; padding-left: 16px;
  border-left: 5px solid var(--accent); line-height: 1.15;
}

/* =====================  STICKY HEADER  ===================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.6), transparent);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); transition: height 0.25s ease;
}
.site-header__brand {
  color: #fff; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.95rem;
}
.site-header__brand:hover { text-decoration: none; color: var(--accent); }
.site-nav { display: flex; gap: 26px; }
.site-nav a {
  color: rgba(255,255,255,0.82); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 0; border-bottom: 2px solid transparent; transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover { color: #fff; text-decoration: none; }
.site-nav a.is-active { color: var(--accent); border-color: var(--accent); }
.site-header.is-scrolled {
  background: rgba(8,9,12,0.9); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled .site-header__inner { height: 54px; }
.nav-toggle { display: none; }

/* =====================  HERO (action-led)  ===================== */
.hero {
  position: relative; min-height: 92vh; min-height: 92svh;
  display: flex; align-items: center; background: var(--black); overflow: hidden;
}
/* Full-bleed action photo */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
/* Scrim: darkens the left (for text) and the bottom, keeps the player visible on the right */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,8,0.94) 0%, rgba(5,6,8,0.8) 30%, rgba(5,6,8,0.34) 62%, rgba(5,6,8,0.12) 100%),
    linear-gradient(180deg, rgba(5,6,8,0.45) 0%, rgba(5,6,8,0.05) 26%, transparent 50%, rgba(5,6,8,0.7) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: calc(var(--header-h) + 24px) 22px 44px;
}
.hero__content { max-width: 38rem; }
.badge {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero__name {
  font-size: clamp(2.8rem, 8vw, 5.2rem); font-weight: 800; line-height: 0.94;
  letter-spacing: -0.015em; text-transform: uppercase; margin-top: 4px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero__club { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 1rem; }
.hero__club-badge { width: 26px; height: 26px; object-fit: contain; flex: none; }
.hero__club-name { font-weight: 700; color: var(--white); }
.hero__current { color: var(--soft); font-size: 0.95rem; line-height: 1.5; margin-top: 8px; max-width: 34rem; }
.hero__position {
  color: var(--accent); font-weight: 700; font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.05em; text-transform: uppercase; margin-top: 10px;
}
.hero__secondary {
  color: var(--muted); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.05em; text-transform: uppercase; margin-top: 5px;
}
.hero__tagline { color: var(--soft); margin-top: 14px; font-size: 1.05rem; max-width: 32rem; line-height: 1.55; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* =====================  PLAYER SNAPSHOT  ===================== */
.section--snapshot { border-top: none; padding: 48px 0 40px; }
.snapshot { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.snap {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.snap:hover { transform: translateY(-3px); border-color: rgba(120,200,255,0.35); box-shadow: var(--shadow); }
.snap--accent { border-color: rgba(120,200,255,0.4); background: var(--accent-tint); }
.snap--wide { grid-column: span 2; }
.snap__head { display: flex; align-items: center; gap: 9px; color: var(--muted); }
.snap__icon { width: 18px; height: 18px; color: var(--accent); flex: none; }
.snap__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
.snap__value { font-size: 1.15rem; font-weight: 800; line-height: 1.2; }
.snap--accent .snap__value { color: var(--accent); }
.snap__sub { color: var(--muted); font-size: 0.85rem; line-height: 1.35; }
.snap__flags { display: flex; flex-direction: column; gap: 8px; }
.snap__flag-row { display: flex; align-items: center; gap: 10px; }
.snap__flag-row .snap__value { font-size: 0.98rem; font-weight: 700; }
.flag-wrap { flex: none; line-height: 0; }
.flag { border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(255,255,255,0.14); }

/* =====================  MANAGER'S SUMMARY  ===================== */
.summary {
  display: grid; grid-template-columns: 250px 1fr; gap: clamp(24px, 4vw, 44px);
  align-items: center;
  background: linear-gradient(180deg, rgba(120,200,255,0.07), rgba(120,200,255,0.02));
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: clamp(24px, 4vw, 40px);
}
.summary__media { line-height: 0; }
.summary__media picture, .summary__media img {
  width: 100%; display: block; border-radius: 12px;
  aspect-ratio: 4 / 5; object-fit: cover; border: 1px solid var(--line);
}
.summary__eyebrow {
  color: var(--accent); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px;
}
.summary__title {
  font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 14px;
}
.summary__body { font-size: clamp(1.05rem, 1.9vw, 1.28rem); line-height: 1.62; color: var(--soft); font-weight: 500; }

/* =====================  VIDEO (scouting library)  ===================== */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card--featured { grid-column: 1 / -1; }   /* featured clip spans full width */
.video-card__title {
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 1rem; margin-bottom: 12px; color: var(--accent);
}
.video-embed {
  position: relative; aspect-ratio: 16 / 9; background: var(--panel-2);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade {
  position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; margin: 0;
  background: var(--panel-2); cursor: pointer; display: block;
}
.video-facade__thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.video-facade:hover .video-facade__thumb { transform: scale(1.04); }
.video-facade__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 50px; border-radius: 14px; background: rgba(0, 0, 0, 0.55);
  transition: background 0.15s ease, transform 0.1s ease;
}
.video-facade__play::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-40%, -50%);
  border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #fff;
}
.video-facade:hover .video-facade__play, .video-facade:focus-visible .video-facade__play {
  background: var(--accent); transform: translate(-50%, -50%) scale(1.05);
}
.video-facade:hover .video-facade__play::after, .video-facade:focus-visible .video-facade__play::after {
  border-left-color: var(--accent-ink);
}

/* =====================  SCOUTING PROFILE  ===================== */
.scouting { overflow: hidden; margin-bottom: 34px; }
.profile-portrait {
  float: right; width: 320px; max-width: 42%; display: block;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 0 0 18px 26px;
}
.profile-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.scouting__lead {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem); font-weight: 600; color: var(--white);
  margin-bottom: 14px; max-width: 58ch;
}
.scouting__line { color: var(--muted); max-width: 60ch; margin-bottom: 12px; }

.facts {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; margin-top: 34px;
}
.facts li { background: var(--panel-2); padding: 16px 18px; }
.facts .facts__label {
  display: block; color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 4px;
}
.facts .facts__value { font-weight: 800; font-size: 1.05rem; }
/* Career Highlights: compact executive-summary cards */
.highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.highlight {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}
.highlight:hover { transform: translateY(-2px); border-color: rgba(120,200,255,0.35); box-shadow: var(--shadow); }
.highlight__icon { color: var(--accent); flex: none; display: inline-flex; margin-top: 1px; }
.highlight__icon svg { width: 20px; height: 20px; }
.highlight__text { font-size: 0.95rem; font-weight: 600; line-height: 1.45; }

/* =====================  WHY HENRY?  ===================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.why-card:hover { border-color: rgba(120,200,255,0.45); transform: translateY(-3px); box-shadow: var(--shadow); }
.why-card__icon {
  display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--accent-tint); color: var(--accent); margin-bottom: 16px;
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card__title { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 7px; }
.why-card__text { color: var(--muted); font-size: 0.94rem; line-height: 1.5; }

/* =====================  CAREER  ===================== */
.career__subhead {
  font-size: 1.05rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--muted); margin: 34px 0 16px;
}
.career__subhead--first { margin-top: 0; }
.card {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 14px;
  transition: border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}
.card:last-child { margin-bottom: 0; }
.card--club { display: flex; gap: 16px; align-items: flex-start; }
.card--club:hover { border-color: rgba(120,200,255,0.3); transform: translateY(-2px); box-shadow: var(--shadow); }
.card__body { flex: 1; min-width: 0; }
.card__club { font-weight: 800; font-size: 1.05rem; }
.card__meta { color: var(--accent); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 3px; }
.card__lines { list-style: none; margin-top: 12px; }
.card__lines li { position: relative; padding-left: 18px; color: var(--muted); margin-bottom: 6px; }
.card__lines li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* Club badge slot — consistent size, contained, centred (real logo or crest) */
.crest { flex: none; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; color: var(--muted); }
.crest--logo { width: 52px; height: 52px; object-fit: contain; }
.crest svg { width: 46px; height: 50px; display: block; }         /* placeholder shield */
.crest__txt {
  position: absolute; width: 52px; text-align: center; font-size: 0.6rem;
  font-weight: 800; color: var(--white); transform: translateY(1px);
}
.card--compact { padding: 14px 16px; }
.card--compact .crest, .card--compact .crest--logo { width: 42px; height: 42px; }
.card--compact .crest svg { width: 38px; height: 42px; }

.academy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.academy-grid .card { margin-bottom: 0; }

/* UK Development Experience: portrait photo beside the club write-up */
.card--dev { display: flex; gap: 20px; align-items: flex-start; }
.card--dev:hover { border-color: rgba(120,200,255,0.3); transform: translateY(-2px); box-shadow: var(--shadow); }
.dev-photo { flex: none; width: 200px; display: block; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.dev-photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.card--dev .card__body { flex: 1; min-width: 0; }

/* =====================  GALLERY (masonry + lightbox)  ===================== */
.gallery-group { margin-bottom: 40px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group__label {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.gallery-group__label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.masonry { column-count: 3; column-gap: 16px; }
.masonry-item {
  break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 16px;
  display: block; position: relative; width: 100%; padding: 0; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: var(--panel-2); cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.masonry-item:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.55s ease; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff;
  font-size: 0.85rem; font-weight: 600; opacity: 0; transition: opacity 0.25s ease; pointer-events: none;
}
.masonry-item:hover .masonry-item__cap, .masonry-item:focus-visible .masonry-item__cap { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 40px; background: rgba(0,0,0,0.93); animation: lb-fade 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__fig { margin: 0; max-width: min(1100px, 92vw); display: flex; flex-direction: column; align-items: center; }
.lightbox__img {
  max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox__cap { color: #fff; margin-top: 14px; font-weight: 600; text-align: center; }
.lightbox__close {
  position: absolute; top: 16px; right: 22px; font-size: 2.2rem; line-height: 1;
  color: #fff; background: none; border: 0; cursor: pointer;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.9rem; line-height: 1;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.22); color: #fff; cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lightbox__nav:hover { background: var(--accent); color: var(--accent-ink); }
.lightbox__prev { left: 18px; } .lightbox__next { right: 18px; }
.lightbox__count { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; color: var(--muted); font-size: 0.85rem; }

/* =====================  PROSE / AVAILABILITY  ===================== */
.prose p { color: var(--muted); margin-bottom: 14px; max-width: 65ch; }
.prose p:first-child { color: var(--white); font-size: 1.1rem; font-weight: 600; }
.prose p:last-child { margin-bottom: 0; }
.avail-card { max-width: 620px; }
.avail-list { list-style: none; display: grid; gap: 14px; }
.avail-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--soft); font-weight: 500; font-size: 1rem; line-height: 1.45; }
.avail-list svg { color: var(--accent); width: 20px; height: 20px; flex: none; margin-top: 2px; }

/* =====================  BUTTONS  ===================== */
.btn {
  display: inline-block; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 0.9rem; padding: 14px 26px; border-radius: 999px; border: 2px solid var(--accent);
  cursor: pointer; transition: transform 0.12s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #96d5ff; }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(120,200,255,0.06); }

/* =====================  CONTACT (premium panel)  ===================== */
.contact-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-row {
  display: flex; align-items: center; gap: 14px; background: var(--panel-2);
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; color: var(--white);
  transition: transform 0.14s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.contact-row:hover { border-color: var(--accent); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-row__icon {
  width: 42px; height: 42px; flex: none; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--accent-tint); color: var(--accent);
}
.contact-row__icon svg { width: 22px; height: 22px; }
.contact-row__txt { display: flex; flex-direction: column; min-width: 0; }
.contact-row__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.contact-row__value { font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-row--cta { background: var(--accent); border-color: var(--accent); }
.contact-row--cta:hover { background: #96d5ff; }
.contact-row--cta .contact-row__icon { background: rgba(4,18,31,0.14); color: var(--accent-ink); }
.contact-row--cta .contact-row__label { color: rgba(4,18,31,0.65); }
.contact-row--cta .contact-row__value { color: var(--accent-ink); }

/* =====================  FOOTER  ===================== */
.footer { padding: 40px 0; border-top: 1px solid var(--line); text-align: center; }
.footer p:first-child { font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__small { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.footer__top { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.85rem; }

/* =====================  RESPONSIVE  ===================== */
@media (max-width: 960px) {
  .snapshot { grid-template-columns: repeat(3, 1fr); }
  .snap--wide { grid-column: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 2; }
}
@media (max-width: 760px) {
  .section { padding: 54px 0; }
  .video-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .academy-grid { grid-template-columns: 1fr; }
  .card--dev { flex-direction: column; gap: 14px; }
  .dev-photo { width: 150px; }
  .snapshot { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { grid-template-columns: 1fr; }
  /* Action-led hero on phones: content over the image, full-width CTAs */
  .hero { min-height: 86vh; min-height: 86svh; align-items: flex-end; }
  .hero__inner { padding: calc(var(--header-h) + 24px) 22px 40px; }
  .hero__content { max-width: none; }
  .hero__bg img { object-position: 68% center; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; text-align: center; }
  .section--snapshot { padding: 44px 0 40px; }
  .summary { grid-template-columns: 1fr; gap: 20px; }
  .summary__media { max-width: 240px; }
  .profile-portrait { float: none; width: 100%; max-width: 340px; margin: 0 0 20px 0; }

  /* Mobile nav: hamburger + dropdown panel */
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center;
    width: 42px; height: 42px; background: none; border: 0; cursor: pointer; z-index: 2;
  }
  .nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
  .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); }
  .site-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 6px 22px 14px;
    background: rgba(8,9,12,0.97); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .site-header.is-scrolled .site-nav { top: 54px; }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 13px 0; font-size: 0.92rem; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
