:root {
  --bg: #0b0b0c;
  --surface: #141416;
  --surface-light: #1d1d20;
  --accent: #c9a66b;
  --text-primary: #f5f3ef;
  --text-secondary: #a9a6a0;
  --divider: #2a2a2d;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .heading-font {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0;
}

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

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: transparent;
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, height 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.navbar.scrolled {
  height: 64px;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--divider);
}
.navbar .nav-links a { position: relative; padding-bottom: 4px; }
.navbar .nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}
.navbar .nav-links a:hover::after,
.navbar .nav-links a.active::after { width: 100%; }

.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), #e8cf9a);
  z-index: 400;
  transition: width 0.1s linear;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.navbar .logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  white-space: nowrap;
}

.navbar .nav-links {
  margin-left: auto;
  display: flex;
  gap: 32px;
}

.navbar .nav-links a {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-primary);
  transition: color 0.15s ease;
  cursor: pointer;
}
.navbar .nav-links a:hover,
.navbar .nav-links a.active { color: var(--accent); }

.navbar .menu-btn {
  margin-left: auto;
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .navbar .nav-links { display: none; }
  .navbar .menu-btn { display: block; }
}

.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 260px;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 200;
  padding: 40px 24px;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 14px 0;
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
}
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 190;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 10s ease-in-out infinite alternate;
}
.hero .hero-bg.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: none;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,12,0.85), rgba(11,11,12,0.45), rgba(11,11,12,0.85));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeSlideUp 1s ease-out both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 6px;
  text-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
.hero-content .subtitle {
  margin-top: 16px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  font-size: 1.05rem;
}
.btn-outline {
  margin-top: 40px;
  display: inline-block;
  padding: 18px 32px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  letter-spacing: 2px;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(201,166,107,0.4);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  text-align: center;
  z-index: 2;
  color: var(--text-secondary);
  font-size: 0.7rem;
  letter-spacing: 3px;
  animation: bounce 1.4s ease-in-out infinite alternate;
}
.scroll-indicator .chevron { color: var(--accent); font-size: 1.4rem; display: block; margin-top: 4px; }
@keyframes bounce { from { transform: translateY(0); } to { transform: translateY(8px); } }

.section-heading {
  text-align: center;
  letter-spacing: 3px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}
.section-underline {
  width: 60px; height: 2px;
  background: var(--accent);
  margin: 12px auto 0;
}

.gallery-section { background: var(--bg); padding: 90px 24px; }
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 36px 0;
}
.filter-pill {
  padding: 10px 20px;
  border: 1px solid rgba(169,166,160,0.4);
  color: var(--text-secondary);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  transition: all 0.25s ease;
}
.filter-pill.active, .filter-pill:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.masonry {
  column-count: 3;
  column-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) { .masonry { column-count: 2; } }
@media (max-width: 700px) { .masonry { column-count: 1; } }

.gallery-tile {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  background: var(--surface);
}
.gallery-tile img {
  width: 100%;

  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-tile:hover img { transform: scale(1.08); }
.gallery-tile .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 60%);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.gallery-tile:hover .overlay { opacity: 1; transform: translateY(0); }
.overlay .accent-line { width: 28px; height: 2px; background: var(--accent); margin-bottom: 8px; }
.overlay .tile-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.overlay .tile-cat { color: var(--accent); letter-spacing: 1px; font-size: 0.7rem; margin-top: 4px; }
.gallery-tile .expand-icon {
  position: absolute; top: 12px; right: 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 8px;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-tile:hover .expand-icon { opacity: 1; }

.empty-state {
  text-align: center;
  color: var(--text-secondary);
  padding: 60px 20px;
}

.media-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--accent);
  font-size: 0.65rem; letter-spacing: 1.5px;
  padding: 5px 9px;
  display: flex; align-items: center; gap: 5px;
  z-index: 1;
}
.play-icon-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.gallery-tile:hover .play-icon-overlay { opacity: 1; }
.play-icon-overlay .circle {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(11,11,12,0.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
  transform: scale(0.8);
  transition: transform 0.25s ease;
}
.gallery-tile:hover .play-icon-overlay .circle { transform: scale(1); }

.showreel-section { background: var(--surface); padding: 90px 24px; }
.reel-hero {
  position: relative;
  max-width: 1000px; margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--divider);
}
.reel-hero-media {
  height: 460px;
  background: linear-gradient(135deg, #1d1d20, #101012);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.5s ease;
}
.reel-hero:hover .reel-hero-media { transform: scale(1.03); }
.reel-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 55%);
}
@media (max-width: 700px) { .reel-hero-media { height: 280px; } }
.reel-play-btn {
  position: relative; z-index: 1;
  width: 84px; height: 84px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: rgba(11,11,12,0.5);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: transform 0.25s ease, background 0.25s ease;
}
.reel-hero:hover .reel-play-btn { transform: scale(1.1); background: var(--accent); color: var(--bg); }
.reel-play-btn.small { width: 52px; height: 52px; font-size: 1.05rem; }
.reel-hero-caption {
  position: relative; z-index: 1;
  margin-top: -70px;
  padding: 0 28px 24px;
}
.reel-hero-caption .accent-line { width: 28px; height: 2px; background: var(--accent); margin-bottom: 8px; }
.reel-hero-caption .tile-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #fff; }
.reel-hero-caption .tile-cat { color: var(--accent); letter-spacing: 1.5px; font-size: 0.75rem; margin-top: 4px; }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1000px; margin: 28px auto 0;
}
.reel-card {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #1d1d20, #101012);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid var(--divider);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.reel-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.reel-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
}
.reel-card-caption {
  position: absolute; left: 14px; bottom: 12px; right: 14px; z-index: 1;
}
.reel-card-caption .tile-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: #fff; }
.reel-card-caption .tile-cat { color: var(--accent); font-size: 0.65rem; letter-spacing: 1px; margin-top: 2px; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lbFade 0.25s ease;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox.open { display: flex; }
body.lb-locked { overflow: hidden; }
.lightbox .lb-media { display: flex; align-items: center; justify-content: center; max-width: 100%; }
.lightbox .lb-img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox .lb-img.loaded { opacity: 1; }

.lightbox .lb-loading {
  position: relative;
  display: none;
  overflow: hidden;
  border-radius: 2px;
  width: min(90vw, 900px);
  max-width: 90vw;
  max-height: 80vh;
}
.lightbox .lb-loading.active { display: block; }
.lightbox .lb-loading-bg {
  position: absolute;
  inset: 0;
  background-color: var(--surface);
  background-size: cover;
  background-position: center;

  filter: blur(20px);
  transform: scale(1.15);
}
.lightbox .lb-spinner {
  position: absolute;
  top: 50%; left: 50%;
  width: 42px; height: 42px;
  margin: -21px 0 0 -21px;
  border: 3px solid rgba(255,255,255,0.25);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: lb-spin 0.8s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }
.lightbox .lb-video-wrap {
  display: none;
  width: min(90vw, 1100px);
  aspect-ratio: 16 / 9;
}
.lightbox .lb-video-wrap iframe,
.lightbox .lb-video-wrap video {
  width: 100%; height: 100%;
  border: none;
  background: #000;
}
.lightbox .lb-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 2rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center; justify-content: center;
  display: none;
  z-index: 2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lightbox .lb-nav:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.lightbox .lb-prev { left: 20px; }
.lightbox .lb-next { right: 20px; }
@media (max-width: 700px) {
  .lightbox .lb-nav { width: 40px; height: 40px; font-size: 1.5rem; }
  .lightbox .lb-prev { left: 8px; }
  .lightbox .lb-next { right: 8px; }
}
.lightbox .lb-caption {
  position: absolute; left: 24px; bottom: 32px; right: 24px;
  text-align: center;
  pointer-events: none;
}
.lightbox .lb-caption .tile-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
.lightbox .lb-caption .tile-cat { color: var(--accent); letter-spacing: 1.5px; font-size: 0.75rem; margin-top: 4px; }

.testimonials-section { background: var(--bg); padding: 90px 24px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  padding: 28px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.testimonial-card .stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card .quote { color: var(--text-secondary); line-height: 1.7; font-style: italic; min-height: 72px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial-person img, .avatar-fallback {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
}
.avatar-fallback {
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700;
}
.testimonial-person .name { font-weight: 600; font-size: 0.95rem; }
.testimonial-person .role { color: var(--text-secondary); font-size: 0.8rem; margin-top: 2px; }

.about-section {
  background: var(--surface);
  padding: 90px 24px;
}
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: flex; gap: 60px; align-items: flex-start;
}
@media (max-width: 700px) { .about-grid { flex-direction: column; gap: 48px; } }

.portrait-wrap { position: relative; flex: 0 0 380px; }
@media (max-width: 700px) { .portrait-wrap { flex: none; width: 100%; } }
.portrait-frame {
  position: absolute; top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1.5px solid var(--accent);
  z-index: 0;
}
.portrait-wrap img {
  position: relative; z-index: 1;
  width: 100%; height: 480px; object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.45s ease, transform 0.3s ease;
}
@media (max-width: 700px) { .portrait-wrap img { height: 320px; } }
.portrait-wrap:hover img { filter: grayscale(0); }

.about-text .intro { color: var(--text-secondary); line-height: 1.7; margin: 24px 0 32px; font-size: 1.05rem; }
.stats { display: flex; flex-wrap: wrap; gap: 40px; margin-bottom: 40px; }
.stat .value { color: var(--accent); font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.stat .label { color: var(--text-secondary); font-size: 0.85rem; margin-top: 4px; }
.about-text h3 { letter-spacing: 2px; font-size: 1rem; font-weight: 600; font-family: 'Jost', sans-serif; margin-bottom: 16px; }
.edu-item { display: flex; gap: 12px; align-items: flex-start; }
.edu-item .degree { font-weight: 600; }
.edu-item .meta { color: var(--text-secondary); font-size: 0.85rem; margin-top: 2px; }

.contact-section { background: var(--bg); padding: 90px 24px; }
.contact-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-wrap .lead { color: var(--text-secondary); margin: 20px 0 40px; font-size: 1.05rem; }
.form-field { margin-bottom: 20px; text-align: left; }

.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; margin: 0; }
.form-field label { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 6px; letter-spacing: 0.5px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--divider);
  color: var(--text-primary);
  padding: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--accent); }
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8b6b2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-field select:invalid { color: var(--text-secondary); }
.form-field select option { background: var(--surface); color: var(--text-primary); }
.submit-btn {
  width: 100%; padding: 20px;
  background: var(--accent); color: var(--bg);
  border: none; letter-spacing: 2px; font-weight: 600;
  cursor: pointer; font-family: 'Jost', sans-serif;
  transition: opacity 0.2s ease;
}
.submit-btn:hover { opacity: 0.9; }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-msg { margin-top: 16px; color: var(--accent); }
.form-msg.error { color: #e07a6a; }

.footer { background: var(--surface); padding: 48px 24px; text-align: center; }
.footer .footer-divider { width: 40px; height: 2px; background: var(--accent); margin: 0 auto 32px; }
.social-row { display: flex; justify-content: center; gap: 18px; margin-bottom: 28px; }
.social-icon {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(169,166,160,0.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s ease;
  font-size: 1.1rem;
}
.social-icon:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); box-shadow: 0 0 16px rgba(201,166,107,0.35); }
.footer .copyright { color: var(--text-secondary); font-size: 0.85rem; letter-spacing: 0.5px; }
.footer .credit { color: var(--text-secondary); font-size: 0.75rem; letter-spacing: 0.5px; opacity: 0.7; margin-top: 6px; }
.back-to-top {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 20px; padding: 8px 14px;
  border: 1px solid rgba(169,166,160,0.4);
  color: var(--text-secondary); font-size: 0.7rem; letter-spacing: 1.5px;
  cursor: pointer; background: none;
}
.back-to-top:hover { border-color: var(--accent); color: var(--accent); }

.page-header {
  padding: 150px 24px 40px;
  text-align: center;
  background: var(--surface);
}
.page-header p { color: var(--text-secondary); margin-top: 12px; }

.loading-state { text-align: center; color: var(--text-secondary); padding: 60px 20px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.gallery-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-search {
    width: 100%;
    max-width: 420px;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: #1b1b1b;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: .25s;
}

.gallery-search::placeholder {
    color: #999;
}

.gallery-search:focus {
    border-color: #b8935f;
    box-shadow: 0 0 0 3px rgba(184,147,95,.15);
}

.media-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.media-toggle button {
  padding: 8px 22px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.media-toggle button.active,
.media-toggle button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.clients-section {
    padding: 100px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.client-card {
    display: flex;
    align-items: center;
    gap: 1rem;

    min-height: 80px;
    padding: 1rem 1.25rem;

    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    background: rgba(255,255,255,.06);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.client-card img {
    width: 55px;
    height: 55px;

    object-fit: contain;
    flex-shrink: 0;

    opacity: .9;
    transition:
        transform .35s ease,
        opacity .35s ease;
}

.client-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.client-name {
    font-family: "Jost", sans-serif;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;

    color: var(--text);
    line-height: 1.3;
}

@media (max-width: 700px) {

    .clients-section {
        padding: 70px 0;
    }

    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .client-card {
        min-height: 70px;
        padding: .9rem 1rem;
    }

    .client-card img {
        width: 45px;
        height: 45px;
    }

    .client-name {
        font-size: .85rem;
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    border: 0;
    pointer-events: none;
}
