/* ==========================================================
   SAM KING MAGICIAN — Global Stylesheet
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

@font-face {
  font-family: 'Cherrydorry';
  src: url('Cherrydorry.otf') format('opentype'),
       url('Cherrydorry.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- VARIABLES ---- */
:root {
  --black:     #080808;
  --dark:      #111111;
  --card:      #1a1a1a;
  --border:    rgba(255,255,255,0.08);
  --red:       #b91c1c;
  --red-light: #ef4444;
  --red-dark:  #7f1d1d;
  --gold:      #c9a227;
  --white:     #ffffff;
  --off-white: #f0ece8;
  --grey:      #888888;
  --light:     #e0e0e0;

  --font-brand:   'Cherrydorry', cursive;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h:    72px;
  --max-w:    1200px;
  --radius:   4px;
  --ease:     0.3s ease;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
}

/* ---- UTILITIES ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 100px 0; }
.sr-only    { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: #e0b52e;
  border-color: #e0b52e;
  transform: translateY(-2px);
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-brand);
  font-size: 34px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
/* On the homepage the hero already shows the big "Sam King" signature, so
   hide the redundant header logo there. visibility (not display) keeps the
   nav links right-aligned. The logo still shows on bio/services/contact. */
.is-home .nav__logo {
  visibility: hidden;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
}
.nav__cta:hover { background: var(--red-light) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--ease);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(16px);
  padding: 28px 24px 32px;
  border-bottom: 1px solid var(--border);
  z-index: 199;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.nav__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:hover { color: var(--white); }
.nav__mobile .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  /* Keep Sam (left) clear; darken the open right side so headline text reads,
     plus a soft bottom vignette into the awards strip. */
  background:
    linear-gradient(90deg, rgba(8,8,8,0) 30%, rgba(8,8,8,0.32) 68%, rgba(8,8,8,0.62) 100%),
    linear-gradient(to top, rgba(8,8,8,0.55) 0%, rgba(8,8,8,0) 42%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  margin: 0;
  /* Start the text just to the right of Sam so it fills the centre, not the far edge */
  padding: var(--nav-h) clamp(24px, 4vw, 80px) 0 clamp(360px, 45%, 1000px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__name {
  font-family: var(--font-brand);
  font-size: clamp(76px, 9.5vw, 138px);
  line-height: 0.9;
  color: var(--white);
  margin: 6px 0 18px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.45);
}
.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 28px);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.hero__sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  margin-top: 4px;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================================
   AWARDS STRIP (marquee)
   ========================================================== */
.awards-strip {
  background: var(--red-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.awards-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.awards-strip:hover .awards-strip__track { animation-play-state: paused; }
.awards-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 44px;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.awards-strip__item .icon { color: var(--gold); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   SECTION LABELS / HEADINGS
   ========================================================== */
.section-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.85;
  max-width: 560px;
}
.divider {
  width: 44px;
  height: 2px;
  background: var(--red);
  margin: 22px 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.about { background: var(--dark); }
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  display: block;
}
.about__img-border {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 55%;
  height: 65%;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  z-index: -1;
  pointer-events: none;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.stat {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.stat__num {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}
.about__awards { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.award-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}
.award-badge__icon { font-size: 18px; flex-shrink: 0; }

/* ==========================================================
   SERVICES
   ========================================================== */
.services { background: var(--black); }
.services__header { margin-bottom: 56px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .service-card__img { transform: scale(1.07); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.08) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  transition: var(--ease);
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(127,29,29,0.9) 0%, rgba(0,0,0,0.1) 55%);
}
.service-card__lbl {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--white);
  margin-bottom: 10px;
}
.service-card__body {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.45s ease;
  margin-bottom: 0;
}
.service-card:hover .service-card__body { max-height: 80px; opacity: 1; margin-bottom: 14px; }
.service-card__arrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}
.service-card:hover .service-card__arrow { gap: 12px; }

/* ==========================================================
   FESTIVALS / APPEARANCES
   ========================================================== */
.festivals {
  background: var(--dark);
  padding: 72px 0;
  text-align: center;
}
.festivals__lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 36px;
}
.festivals__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.fest-badge {
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  transition: var(--ease);
}
.fest-badge:hover {
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

/* ==========================================================
   QUOTE / ATMOSPHERE SECTION
   ========================================================== */
.atmosphere {
  position: relative;
  overflow: hidden;
}
.atmosphere__bg {
  position: absolute;
  inset: 0;
  background-image: url('sam-red-smoke.jpg');
  background-size: cover;
  background-position: center 72%;
  opacity: 0.16;
}
.atmosphere__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 24px;
  max-width: 860px;
  margin: 0 auto;
}
.atmosphere__mark {
  font-family: var(--font-heading);
  font-size: 100px;
  color: var(--red);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}
.atmosphere__quote {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 28px;
}
.atmosphere__credit {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ==========================================================
   PRESS / REVIEWS
   ========================================================== */
.reviews { background: var(--black); padding: 100px 0; }
.reviews__header { text-align: center; margin-bottom: 56px; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.review-card__stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.review-card__stars .dim { color: rgba(255,255,255,0.16); }
.review-card__mark {
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 0.4;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.review-card__quote {
  font-family: var(--font-heading);
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
}
.review-card__meta { margin-top: auto; }
.review-card__pub {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
}
.review-card__show {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 5px;
}

/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-band {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 88px 0;
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-band__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-band__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================
   CONTACT SECTION
   ========================================================== */
.contact-section { background: var(--dark); }
.contact__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}
.contact__info-body {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 32px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.contact__detail-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 15px;
}
.social-row { display: flex; gap: 10px; margin-top: 28px; }
.social-row a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--ease);
}
.social-row a:hover { border-color: var(--red); background: rgba(185,28,28,0.18); }

/* ---- FORM ---- */
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--grey);
}
.field input,
.field textarea,
.field select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--red); }
.field input::placeholder,
.field textarea::placeholder { color: #444; }
.field textarea { resize: vertical; min-height: 120px; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23888' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field select option { background: var(--dark); color: var(--white); }
.form__status {
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.form__status.success { display: block; background: rgba(22,163,74,0.15); border: 1px solid rgba(22,163,74,0.3); color: #4ade80; }
.form__status.error   { display: block; background: rgba(185,28,28,0.15); border: 1px solid rgba(239,68,68,0.3); color: var(--red-light); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: #050505;
  padding: 64px 0 28px;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-logo {
  font-family: var(--font-brand);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.footer__tagline {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer__social { display: flex; gap: 9px; }
.footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 13px;
  color: var(--grey);
  transition: var(--ease);
}
.footer__social a:hover { border-color: var(--red-light); color: var(--red-light); }
.footer__col-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer__col-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__col-links a {
  font-size: 13px;
  color: var(--grey);
  transition: color var(--ease);
}
.footer__col-links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__seo {
  margin-top: 20px;
  font-size: 10px;
  color: #2a2a2a;
  line-height: 1.9;
}
.footer__seo a { color: #333; }
.footer__seo a:hover { color: #555; }

/* ==========================================================
   PAGE HERO (inner pages)
   ========================================================== */
.page-hero {
  position: relative;
  padding: 156px 0 88px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(8,8,8,0.9) 100%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__title {
  font-family: var(--font-brand);
  font-size: clamp(64px, 9vw, 120px);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.2vw, 24px);
  font-style: italic;
  color: var(--grey);
  max-width: 560px;
}

/* Bio page */
.bio-content { background: var(--dark); }
.bio-content__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 72px;
  align-items: start;
}
.bio-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 24px;
}
.bio-text p:last-child { margin-bottom: 0; }
.awards-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 96px;
}
.award-card {
  padding: 20px 20px 20px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}
.award-card__year {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.award-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.award-card__event {
  font-size: 12px;
  color: var(--grey);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16/10;
}
.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.highlight-card:hover img { transform: scale(1.05); }
.highlight-card__cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* Services page */
.services-intro { background: var(--dark); padding: 80px 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.service-row:nth-child(even) .service-row__img { order: 2; }
.service-row:nth-child(even) .service-row__content { order: 1; }
.service-row__img {
  overflow: hidden;
}
.service-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-row:hover .service-row__img img { transform: scale(1.04); }
.service-row__content {
  background: var(--card);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-row__num {
  font-family: var(--font-heading);
  font-size: 80px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: -20px;
  font-style: italic;
}
.service-row__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}
.service-row__body {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 28px;
}
.service-row__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag {
  padding: 5px 13px;
  background: rgba(185,28,28,0.15);
  border: 1px solid rgba(185,28,28,0.3);
  border-radius: 100px;
  font-size: 11px;
  color: var(--red-light);
  letter-spacing: 0.06em;
}

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .about__grid          { grid-template-columns: 1fr; gap: 52px; }
  .about__img-wrap      { max-width: 440px; }
  .contact__grid        { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .bio-content__grid    { grid-template-columns: 1fr; gap: 48px; }
  .awards-grid          { position: static; }
  .service-row          { grid-template-columns: 1fr; min-height: auto; }
  .service-row:nth-child(even) .service-row__img { order: 0; }
  .service-row:nth-child(even) .service-row__content { order: 0; }
  .service-row__img     { aspect-ratio: 16/9; }
  .reviews__grid        { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .section              { padding: 72px 0; }
  .nav__links           { display: none; }
  .nav__desktop-cta     { display: none; }
  .nav__burger          { display: flex; }
  .services__grid       { grid-template-columns: 1fr; }
  .services__grid .service-card { aspect-ratio: 16/9; }
  .about__stats         { grid-template-columns: repeat(2, 1fr); }
  .footer__grid         { grid-template-columns: 1fr; gap: 28px; }
  .form__row            { grid-template-columns: 1fr; }
  .hero                 { min-height: 88vh; align-items: flex-end; }
  .hero__img            { object-position: 38% 18%; }
  /* On phones the figure fills the frame, so anchor text to the bottom over a scrim */
  .hero__overlay        { background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.35) 38%, rgba(8,8,8,0) 62%); }
  .hero__content        { align-items: flex-start; text-align: left; justify-content: flex-end; padding: var(--nav-h) 24px 56px 24px; }
  .hero__ctas           { justify-content: flex-start; }
  .highlight-grid       { grid-template-columns: 1fr; }
  .service-row__content { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .hero__name           { font-size: 72px; }
  .cta-band__row        { flex-direction: column; align-items: center; }
}

/* ===================== FAQ (shared: contact + location pages) ===================== */
.faq { background: var(--black); padding: 80px 0; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.faq__item {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 2px solid var(--red);
}
.faq__q {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}
.faq__a { font-size: 14px; color: var(--grey); line-height: 1.75; }
@media (max-width: 768px) { .faq__grid { grid-template-columns: 1fr; } }
