/* ============================================================
   KOVA CREATIVE — Site Styles
   White base · Black accents · Photography-led
   ============================================================ */

:root {
  --white: #ffffff;
  --black: #000000;
  --ink: #111111;
  --grey: #6b6b6b;
  --line: #e5e5e5;
  --serif: 'Charter', 'Bitstream Charter', 'Iowan Old Style', Georgia, serif;
  --body: Georgia, 'Times New Roman', serif;
  --sans: Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ---------- Navigation ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.nav {
  max-width: 1380px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img { height: 30px; width: auto; }
header .logo-img { height: 38px; filter: invert(1); } /* white logo -> black on white nav */

.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a { position: relative; padding: 4px 0; color: var(--ink); }

.nav-links a:not(.pill)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.3s ease;
}

.nav-links a:not(.pill):hover::after,
.nav-links a.active:not(.pill)::after { width: 100%; }

.pill,
.nav-links a.pill {
  border: 1.5px solid var(--black);
  border-radius: 999px;
  padding: 14px 36px;      /* generous room so the outline never touches the text */
  font-size: 12px;         /* same size as the other nav links */
  letter-spacing: 0.18em;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.pill:hover { background: var(--black); color: var(--white); }

.menu-btn { display: none; background: none; border: none; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; }

/* ---------- Full-bleed hero ---------- */

.hero-full { position: relative; }

.hero-full img {
  width: 100%;
  height: min(88vh, 820px);
  object-fit: cover;
}

.hero-cta {
  position: absolute;
  inset: 0;
  display: flex;
  gap: clamp(160px, 24vw, 340px); /* keeps the person in the middle uncovered */
  align-items: center;
  justify-content: center;
}

.ghost-btn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 9px 30px;
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(2px);
  transition: background 0.25s ease, color 0.25s ease;
}

.ghost-btn:hover { background: var(--white); color: var(--black); }

/* ---------- Client logo banner ---------- */

.logo-strip { padding: 38px 0; border-bottom: 1px solid var(--line); }

.logo-strip .row {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-wrap: nowrap;              /* one single line on desktop */
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo-strip img {
  height: 36px;             /* uniform visible height for every logo */
  width: auto;
  max-width: 170px;
  object-fit: contain;
  flex-shrink: 1;
  min-width: 0;
  filter: brightness(0); /* renders every logo black */
  opacity: 0.85;
}

.logo-strip img.raw { filter: none; }   /* logos already black & white */
.logo-strip img.tall { height: 46px; }  /* icon-style marks read small; give them a touch more */
.logo-strip img.sm { max-width: 145px; }
.logo-strip img.sm2 { max-width: 123px; }

/* ---------- Featured projects band ---------- */

.featured {
  position: relative;
  background-size: cover;
  background-position: center 40%;
  padding: 100px 0;
}

.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.55) 26%,
    rgba(255, 255, 255, 0.12) 55%,
    rgba(255, 255, 255, 0.3) 100%);
}

.featured .inner {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 50px;
  align-items: center;
}

.featured h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75), 0 0 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 22px;
}

.click-btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 16px;
  color: var(--white);
  border: 1.5px solid var(--white);
  border-radius: 12px;
  padding: 9px 40px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, color 0.25s ease;
}

.click-btn:hover { background: var(--white); color: var(--black); text-shadow: none; }

.reel-row {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.reel-card {
  position: relative;
  width: 200px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: #111;
}

.reel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.reel-card:hover img { transform: scale(1.04); }

.play-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-badge::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

/* ---------- Founder section ---------- */

.founder { padding: 100px 0; }

.founder .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 90px;
  align-items: center;
}

.founder .portrait { width: 100%; }

.founder-copy { text-align: center; }

.founder-copy h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 30px;
}

.founder-copy h2 .thin { font-weight: 400; display: block; }

.founder-copy p {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 2;
  text-transform: uppercase;
  color: #222;
}

.founder-copy .btn { margin-top: 36px; }

/* ---------- Generic bits ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  padding: 12px 38px;
  transition: background 0.25s ease, color 0.25s ease;
  background: none;
  cursor: pointer;
}

.btn:hover { background: var(--black); color: var(--white); }
.btn.solid { background: var(--black); color: var(--white); }
.btn.solid:hover { background: var(--white); color: var(--black); }

/* ---------- Page headers (interior pages) ---------- */

.page-head { padding: 80px 0 50px; border-bottom: 1px solid var(--line); }

.page-head h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-head p { margin-top: 20px; max-width: 620px; font-size: 18px; color: #333; }

/* photo variant — dark image behind the page title */
.page-head.photo {
  position: relative;
  background-size: cover;
  background-position: center 35%;
  border-bottom: none;
  padding: 120px 0 90px;
}

.page-head.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.page-head.photo .wrap { position: relative; }
.page-head.photo h1 { color: var(--white); }
.page-head.photo p { color: #e8e8e8; }
.page-head.photo .eyebrow { color: #d5d5d5; }

.page-body { padding: 60px 0 100px; }

/* ---------- Work page: brand cards ---------- */

.featured-card {
  aspect-ratio: 16 / 9;
  max-width: 560px;       /* ~2x the size of a regular grid card */
  margin: 0 auto 40px;
}

.featured-card .brand-name {
  flex-direction: column;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9), 0 0 34px rgba(0, 0, 0, 0.6);
}

.featured-card .brand-name small {
  display: block;
  margin-top: 10px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #e4e4e4;
  max-width: 420px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.brand-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: block;
  background: #111;
}

.brand-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.brand-card:hover img {
  filter: brightness(0.75);
  transform: scale(1.03);
}

.brand-name {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 16px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

/* ---------- Work page ---------- */

.work-section { margin-bottom: 120px; }

.work-section h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--black);
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.work-section h2 .count {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--grey);
  font-weight: 400;
}

.vid-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 30px;
}

/* ---------- Brand pages: video + description list ---------- */

.work-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px 90px;
  margin: 0 auto;
}

/* pages with 7+ videos: three columns, caption below the thumbnail */
.work-list.cols3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 44px;
}

.work-list.cols3 .work-item { grid-template-columns: 1fr; gap: 14px; }

.work-item {
  display: grid;
  grid-template-columns: 375px 1fr;
  gap: 26px;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.wi-thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5; /* crops the vertical reels; player still opens 9:16 */
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.work-item.landscape .wi-thumb { aspect-ratio: 16 / 9; }

.wi-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.work-item:hover .wi-thumb img { transform: scale(1.05); }

.wi-thumb .play-badge { width: 42px; height: 42px; }
.wi-thumb .play-badge::after { border-width: 8px 0 8px 13px; margin-left: 3px; }

.wi-num {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--grey);
  margin-bottom: 10px;
}

.wi-title {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}


@media (max-width: 1250px) {
  .work-list.cols3 { grid-template-columns: 1fr 1fr; }
  .work-item { grid-template-columns: 300px 1fr; }
}

@media (max-width: 1000px) {
  .work-list, .work-list.cols3 { grid-template-columns: 1fr; gap: 44px; }
  .work-item { grid-template-columns: 260px 1fr; }
  .work-list.cols3 .work-item { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .work-item { grid-template-columns: 140px 1fr; gap: 18px; }
  .wi-title { font-size: 17px; }
}

.vid-tile {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  padding: 0;
  background: #111;
}

.vid-tile.landscape { aspect-ratio: 16 / 9; grid-column: span 2; }

.vid-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.3s ease;
}

.vid-tile:hover img { transform: scale(1.04); }

/* ---------- Stills ---------- */

.stills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.stills-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.stills-grid img:hover { opacity: 0.88; }

/* ---------- Services ---------- */

.svc-list { border-top: 1px solid var(--black); }

.svc {
  display: grid;
  grid-template-columns: 90px 1fr 1.4fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.svc .num { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; color: var(--grey); padding-top: 8px; }
.svc h2 { font-family: var(--serif); font-weight: 700; font-size: 28px; line-height: 1.2; }
.svc ul { list-style: none; }
.svc li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 16px; color: #333; }
.svc li:last-child { border-bottom: none; }

/* ---------- About ---------- */

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-grid .portrait { position: sticky; top: 110px; }
.about-copy h2 { font-family: var(--serif); font-weight: 700; font-size: 30px; margin: 44px 0 16px; }
.about-copy h2:first-child { margin-top: 0; }
.about-copy p { margin-bottom: 18px; color: #222; }
.cred { padding: 22px 0; border-bottom: 1px solid var(--line); }
.cred .cred-title { font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; margin-bottom: 8px; }
.cred p { margin: 0; font-size: 16px; color: #333; }

/* ---------- Skills ---------- */

.skills-head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 70px;
}

.skills-head .rule {
  width: 130px;
  height: 1.5px;
  background: var(--black);
}

.skills-head h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.skills-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 6px;
  position: sticky;
  top: 120px;
}

.skill-group { margin-bottom: 56px; }
.skill-group:last-child { margin-bottom: 0; }

.skill-group h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 26px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tags span {
  font-family: var(--sans);
  font-size: 15px;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  padding: 10px 24px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .skills-grid { grid-template-columns: 1fr; gap: 50px; }
  .skills-photo { position: static; }
  .skills-head { margin-bottom: 46px; }
}

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.contact-grid h2 { font-family: var(--serif); font-weight: 700; font-size: 30px; margin-bottom: 20px; }
.contact-info .row { padding: 26px 0; border-bottom: 1px solid var(--line); }
.contact-info .row .eyebrow { margin-bottom: 8px; }
.contact-info .row a.big { font-family: var(--serif); font-size: 24px; font-weight: 700; }
.contact-info .row a.big:hover { text-decoration: underline; }

form label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; margin: 26px 0 8px; color: var(--grey); }
form input, form textarea { width: 100%; border: none; border-bottom: 1px solid var(--black); padding: 10px 0; font-family: var(--body); font-size: 17px; background: transparent; outline: none; }
form textarea { min-height: 120px; resize: vertical; }
form button { margin-top: 36px; }

/* ---------- Photo strips ---------- */

.photo-band { padding: 30px 0 0; }

.photo-band .eyebrow { text-align: center; margin-bottom: 28px; }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.photo-strip.wide img { aspect-ratio: 3 / 2; }

.band-img { width: 100%; height: 440px; object-fit: cover; display: block; }

/* ---------- Homepage contact section ---------- */

.home-contact {
  border-top: 1px solid var(--line);
  padding: 56px 0;
  text-align: center;
}

.home-contact h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.home-contact .sub {
  font-size: 16px;
  color: #444;
  max-width: 520px;
  margin: 0 auto 10px;
}

/* compact form + info inside the homepage contact section */
.home-contact .contact-grid { gap: 50px; margin-top: 28px !important; }
.home-contact form label { margin: 14px 0 4px; }
.home-contact form input { padding: 7px 0; }
.home-contact form textarea { min-height: 64px; padding: 7px 0; }
.home-contact form button { margin-top: 22px; padding: 10px 30px; }
.home-contact .contact-info .row { padding: 16px 0; }
.home-contact .contact-info .row a.big { font-size: 20px; }

.home-contact .lines { margin-bottom: 40px; }

.home-contact .lines a, .home-contact .lines p {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  padding: 6px 0;
}

.home-contact .lines a:hover { text-decoration: underline; }

.home-contact .lines .muted {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ---------- Video lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.93);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox video {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  outline: none;
  border-radius: 6px;
}

.lightbox iframe {
  height: min(84vh, 900px);
  max-width: 92vw;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: 6px;
  background: #000;
}

.lightbox .close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.lb-nav:hover { background: #fff; color: #000; }
.lb-nav.prev { left: 28px; }
.lb-nav.next { right: 28px; }

.lb-loading {
  display: none;
  position: absolute;
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lbspin 0.8s linear infinite;
  pointer-events: none;
}

@keyframes lbspin { to { transform: rotate(360deg); } }

@media (max-width: 560px) {
  .lb-nav { width: 42px; height: 42px; font-size: 24px; }
  .lb-nav.prev { left: 10px; }
  .lb-nav.next { right: 10px; }
}

/* ---------- Footer ---------- */

footer { background: var(--black); color: var(--white); margin-top: 40px; }

.foot {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.foot h4 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: #888; margin-bottom: 18px; }
.foot a, .foot p { display: block; color: #ddd; font-size: 15px; padding: 4px 0; }
.foot a:hover { color: var(--white); text-decoration: underline; }

.foot-bottom {
  border-top: 1px solid #222;
  padding: 24px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .vid-grid { grid-template-columns: repeat(4, 1fr); }
  .featured .inner { grid-template-columns: 1fr; }
  .reel-row { justify-content: flex-start; }
}

@media (max-width: 900px) {
  .wrap { padding: 0 22px; }
  .nav { padding: 16px 22px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 24px 22px;
    gap: 20px;
    align-items: flex-start;
  }
  .menu-btn { display: block; }
  header .logo-img { height: 28px; }
  .logo-strip .row { flex-wrap: wrap; justify-content: center; gap: 24px 36px; }
  .hero-full img { height: 64vh; }
  .founder .inner { grid-template-columns: 1fr; gap: 44px; }
  .vid-grid { grid-template-columns: repeat(3, 1fr); }
  .vid-tile.landscape { grid-column: span 2; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { max-width: 100%; }
  .stills-grid { grid-template-columns: 1fr 1fr; }
  .svc { grid-template-columns: 1fr; gap: 16px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid .portrait { position: static; }
  .foot { grid-template-columns: 1fr; gap: 36px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
  .vid-grid { grid-template-columns: repeat(2, 1fr); }
  .stills-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
  .reel-card { width: calc(50% - 11px); }
  /* on small screens, drop the buttons toward the bottom so the person stays uncovered */
  .hero-cta { gap: 40px; align-items: flex-end; padding-bottom: 42px; }
}
