/* ─────────────────────────────────────────
   VITA MEDIA PRODUCTIONS — styles.css
   Drop in: /css/styles.css
───────────────────────────────────────── */

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

:root {
  --black: #080808;
  --white: #f8f6f2;
  --gray-100: #ebebeb;
  --gray-400: #888;
  --gray-600: #444;
  --accent: #c8a96e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* prevents horizontal scroll on mobile */
}

/* ── NAV ─────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.95);
  padding: 14px 48px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1002;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
  position: relative;
  z-index: 10;
  background: none;
  padding: 0;
  pointer-events: auto;
}
.nav-links li { list-style: none; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.6);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links .cta-link {
  color: var(--white);
  border: 0.5px solid rgba(255,255,255,0.35);
  padding: 7px 18px;
  transition: background 0.2s, color 0.2s;
}
.nav-links .cta-link:hover { background: var(--white); color: var(--black); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1002;
  padding: 8px;
  pointer-events: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ─────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%);
  border: none;
  opacity: 0.58;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.25) 0%,
    rgba(8,8,8,0.0) 35%,
    rgba(8,8,8,0.65) 75%,
    rgba(8,8,8,1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 72px;
  max-width: 960px;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(248,246,242,0.55);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

/* ── BUTTONS ─────────────────────────── */
.btn-primary {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 15px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent); color: var(--black); }

.btn-ghost {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { width: 16px; height: 16px; }

/* ── CLIENTS BAR ─────────────────────── */
.clients-bar {
  background: var(--black);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow-x: auto;
}
.clients-bar::-webkit-scrollbar { display: none; }
.clients-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  flex-shrink: 0;
}
.clients-names {
  display: flex;
  gap: 48px;
  flex-wrap: nowrap;
  align-items: center;
}
.clients-names span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: rgba(248,246,242,0.75);
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  cursor: default;
}
.clients-names span:hover { color: var(--white); }

/* ── SERVICES ────────────────────────── */
.services {
  background: var(--white);
  color: var(--black);
  padding: 96px 48px;
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--gray-100);
  max-width: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--gray-100);
}
.service-card {
  padding: 40px 36px 40px 0;
  border-bottom: 0.5px solid var(--gray-100);
  border-right: 0.5px solid var(--gray-100);
}
.service-card:nth-child(3n) { border-right: none; padding-right: 0; }
.service-card:nth-child(3n+2),
.service-card:nth-child(3n+3) { padding-left: 36px; }
.service-num {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--black);
}
.service-desc { font-size: 15px; color: var(--gray-600); line-height: 1.75; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 0.5px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.service-link:hover { color: var(--accent); border-color: var(--accent); }

/* ── PORTFOLIO STRIP ─────────────────── */
.portfolio {
  background: var(--black);
  padding: 96px 0 96px 48px;
}
.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-right: 48px;
  margin-bottom: 40px;
}
.portfolio-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
}
.portfolio-link {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.portfolio-link:hover { color: var(--white); }
.portfolio-scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-right: 48px;
}
.portfolio-scroll::-webkit-scrollbar { display: none; }
.portfolio-item {
  aspect-ratio: 3/4;
  background: #181818;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex: 0 0 240px;
}
.portfolio-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.3s;
  opacity: 0.82;
}
.portfolio-item:hover img { transform: scale(1.04); opacity: 1; }
.portfolio-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 18px 16px;
  background: linear-gradient(to top, rgba(8,8,8,0.85), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-item-label { opacity: 1; }
.portfolio-item-label span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,246,242,0.85);
}
.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: #141414;
}
.portfolio-placeholder span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.12);
}

/* ── VIDEO GRID (documentary page) ──── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: start;
}

/* ── VIDEO CARD ──────────────────────── */
.video-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #181818;
}
.video-grid .video-card {
  aspect-ratio: 16/9;
  width: 100%;
  min-height: 0;
}
.portfolio-item .video-card {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.3s;
  opacity: 0.82;
}
.video-card:hover img { transform: scale(1.04); opacity: 1; }

.video-grid .video-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}
.portfolio-item .video-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(8,8,8,0.85), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .video-card-overlay { opacity: 1; }

.video-play-btn {
  width: 52px; height: 52px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.video-card:hover .video-play-btn {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: scale(1.08);
}
.video-play-btn svg { width: 18px; height: 18px; margin-left: 3px; }

.portfolio-item .video-play-btn {
  position: absolute;
  top: 14px; left: 14px;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(8,8,8,0.4);
}
.portfolio-item .video-play-btn svg { width: 14px; height: 14px; }

.video-card-info { text-align: center; }
.video-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.video-card-desc {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(248,246,242,0.5);
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.portfolio-item .video-card-info { display: none; }

.gallery-item .video-card {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
}

.gallery-item .video-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .video-card-overlay { opacity: 1; }

.gallery-item .video-play-btn {
  width: 52px;
  height: 52px;
}


/* ── LIGHTBOX ────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8,8,8,0.97);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  width: min(90vw, 1100px);
}
.lightbox-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.lightbox-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.lightbox-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: rgba(248,246,242,0.5);
  margin-top: 16px;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 9001;
  font-family: var(--font-body);
}
.lightbox-close:hover { color: var(--white); }

/* ── ABOUT ───────────────────────────── */
.about {
  background: var(--white);
  color: var(--black);
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--gray-100);
  max-height: 600px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #e8e8e8;
}
.about-img-placeholder span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #bbb; }
.about-content .section-label { margin-bottom: 28px; }
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--black);
}
.about-text { font-size: 16px; color: var(--gray-600); line-height: 1.85; margin-bottom: 16px; }
.about-clients-text { margin-top: 28px; font-size: 14px; color: var(--gray-400); letter-spacing: 0.04em; line-height: 1.8; }
.about-clients-text strong { color: var(--black); font-weight: 500; }

/* ── CONTACT ─────────────────────────── */
.contact {
  background: var(--black);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-sub { font-size: 16px; color: rgba(248,246,242,0.45); line-height: 1.7; margin-bottom: 32px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-info a { font-size: 16px; color: rgba(248,246,242,0.5); text-decoration: none; transition: color 0.2s; }
.contact-info a:hover { color: var(--white); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(255,255,255,0.35); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: #111; }
.form-submit {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--accent); }
.form-note { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ── FOOTER ──────────────────────────── */
footer {
  background: var(--black);
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(248,246,242,0.3); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(248,246,242,0.25); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; }
.footer-links a:hover { color: rgba(248,246,242,0.6); }
.footer-copy { font-size: 13px; color: rgba(248,246,242,0.18); }

/* ── PAGE HERO (inner pages) ─────────── */
.page-hero {
  padding: 160px 48px 80px;
  background: var(--black);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.page-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  max-width: 800px;
}
.page-hero-title em { font-style: italic; color: var(--accent); }
.page-hero-sub {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(248,246,242,0.45);
  max-width: 600px;
  line-height: 1.7;
}

/* ── GALLERY GRID (inner pages) ─────── */
.gallery-section {
  background: var(--black);
  padding: 64px 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-grid.wide { grid-template-columns: repeat(2, 1fr); }
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #141414;
  cursor: pointer;
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s;
  opacity: 0.85;
}
.gallery-item:hover img { transform: scale(1.03); opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: #141414;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.gallery-placeholder span { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.1); }

/* ── INTRO TEXT SECTION ──────────────── */
.intro-section {
  background: var(--white);
  color: var(--black);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.intro-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding-top: 6px;
}
.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--black);
}
.intro-text p { font-size: 16px; color: var(--gray-600); line-height: 1.85; margin-bottom: 14px; }
.intro-text ul { margin: 16px 0 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.intro-text ul li { font-size: 15px; color: var(--gray-600); padding-left: 20px; position: relative; }
.intro-text ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* ── ANIMATIONS ──────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ───────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }

  /* Mobile nav — fullscreen overlay */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1001;
    padding: 0;
    pointer-events: none;
  }
  .nav-links.open {
    display: flex;
    pointer-events: auto;
  }
  .nav-links.open a {
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.12em;
  }
  .nav-links.open .cta-link {
    border: 0.5px solid rgba(255,255,255,0.35);
    padding: 10px 24px;
  }

  .hamburger {
    display: flex;
    pointer-events: auto;
    position: relative;
    z-index: 1002;
  }

  .hero-content { padding: 0 24px 56px; }
  .clients-bar { padding: 18px 24px; gap: 24px; }

  .services { padding: 64px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 0; border-right: none; }
  .service-card:nth-child(3n+2),
  .service-card:nth-child(3n+3) { padding-left: 0; }

  .portfolio { padding: 64px 0 64px 24px; }
  .portfolio-header { padding-right: 24px; }
  .portfolio-item { flex: 0 0 160px; }

  .about {
    grid-template-columns: 1fr;
    padding: 64px 24px;
    gap: 40px;
  }
  .about-img {
    max-height: 420px;
    aspect-ratio: 3/4;
    width: 70%;
    margin: 0 auto;
  }

  .contact { grid-template-columns: 1fr; padding: 64px 24px; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 20px; }

  .page-hero { padding: 120px 24px 60px; }
  .gallery-section { padding: 48px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.wide { grid-template-columns: 1fr; }
  .intro-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }

  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-close { top: 16px; right: 16px; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .portfolio-item { flex: 0 0 160px; }
  .video-grid { grid-template-columns: 1fr; }
  .about-img { width: 85%; }
}
