/* =============================================
   DANOMEDIA — SHARED STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500&family=Inter:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --bg:        #FFFFFF;
  --bg-warm:   #F8F7F5;
  --bg-stone:  #F2F0EC;
  --text:      #141414;
  --text-2:    #737373;
  --text-3:    #B0B0B0;
  --border:    #E5E5E3;
  --border-2:  #D0D0CE;
  --gold:      #B89A6A;
  --gold-light: rgba(184,154,106,0.12);
  --black:     #141414;

  --font-display: 'Montserrat', -apple-system, sans-serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);

  --r:    8px;
  --r-lg: 16px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.t-heading {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.t-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.t-gold { color: var(--gold); }
.t-muted { color: var(--text-2); }

/* ── LAYOUT ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container,
  .container-narrow { padding: 0 24px; }
}

/* ── DIVIDER ── */
.rule {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.rule-short {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 28px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 22px;
  width: auto;
  display: block;
  transition: filter 0.3s;
}
.footer-logo-img {
  height: 20px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
/* Transparent nav over dark video hero */
nav.nav-over-video:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
nav.nav-over-video:not(.scrolled) .nav-logo-img { filter: invert(1); }
nav.nav-over-video:not(.scrolled) .nav-links a  { color: rgba(255,255,255,0.75); }
nav.nav-over-video:not(.scrolled) .nav-links a:hover,
nav.nav-over-video:not(.scrolled) .nav-links a.active { color: #fff; }
nav.nav-over-video:not(.scrolled) .nav-social a { color: rgba(255,255,255,0.75); }
nav.nav-over-video:not(.scrolled) .nav-social a:hover { color: #fff; }
nav.nav-over-video:not(.scrolled) .nav-hamburger span { background: #fff; }
nav.nav-over-video:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
nav.nav-over-video:not(.scrolled) .nav-cta:hover { background: #fff; color: #141414; border-color: #fff; }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
nav.scrolled { border-color: var(--border); }

.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.nav-logo span { font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-social a:hover { color: var(--text); }

.nav-cta {
  padding: 9px 20px;
  background: var(--black);
  color: #fff;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover {
  background: #333;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  /* Ensure social icons and hamburger align to the right */
  .nav-inner {
    justify-content: flex-start;
  }
  .nav-right {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .nav-inner {
    padding: 0 20px;
    gap: 16px;
  }
  .nav-right {
    gap: 12px;
  }
  .nav-social {
    gap: 8px;
  }
  .nav-social a {
    width: 28px;
    height: 28px;
  }
  .nav-logo-img {
    height: 18px;
  }
}

/* =============================================
   HERO — SHARED PATTERN
   ============================================= */
.hero {
  padding-top: 68px;
  background: var(--bg);
}
.hero-inner {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-label {
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 5.5vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 820px;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 44px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.btn svg { transition: transform 0.2s var(--ease-out); flex-shrink: 0; }

.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-1px);
}
.btn-dark:hover svg { transform: translateX(3px); }

.btn-outline {
  border: 1px solid var(--border-2);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn-text {
  padding: 0;
  color: var(--text);
  font-size: 14px;
  gap: 8px;
  border-bottom: 1px solid var(--border-2);
  border-radius: 0;
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-text:hover { border-color: var(--text); }
.btn-text:hover svg { transform: translateX(3px); }

.btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =============================================
   SECTION — SHARED PATTERNS
   ============================================= */
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 64px 0;
}
.section-lg {
  padding: 130px 0;
}
.section-warm {
  background: var(--bg-warm);
}
.section-stone {
  background: var(--bg-stone);
}

.section-header {
  margin-bottom: 60px;
}
.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.section-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.card-warm {
  background: var(--bg-warm);
  border-color: var(--border);
}
.card-pad { padding: 36px 32px; }
.card-pad-sm { padding: 24px; }

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  background: var(--bg);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.service-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  margin-bottom: 24px;
  transition: border-color 0.3s, color 0.3s;
}
.service-card:hover .service-card-icon {
  border-color: var(--gold);
  color: var(--gold);
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  font-weight: 300;
}

/* =============================================
   CLIENT STRIP / MARQUEE
   ============================================= */
.clients-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.clients-bar::before,
.clients-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.clients-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.clients-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.clients-track {
  display: flex;
  animation: clientScroll 24s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes clientScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-item {
  padding: 0 48px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--text-3);
  white-space: nowrap;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 48px;
}
.client-item:hover { color: var(--text-2); }
.client-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-2);
  flex-shrink: 0;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  padding: 96px 0;
  background: var(--black);
  color: #fff;
}
.cta-band .section-title { color: #fff; }
.cta-band .section-body { color: rgba(255,255,255,0.55); max-width: 480px; }
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: 40px; }
}
.cta-band .btn-light {
  background: #fff;
  color: var(--black);
  border-radius: var(--r);
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s;
}
.cta-band .btn-light:hover { background: #f0ede8; transform: translateY(-1px); }
.cta-band .btn-light:hover svg { transform: translateX(3px); }
.cta-band .btn-light svg { transition: transform 0.2s var(--ease-out); }

/* =============================================
   CONTACT FORM
   ============================================= */
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form input::placeholder,
.form textarea::placeholder { color: var(--text-3); }
.form input:focus,
.form textarea:focus,
.form select:focus { border-color: var(--text-2); }
.form textarea { resize: vertical; min-height: 120px; }
.form select { cursor: pointer; }
.form-submit {
  align-self: flex-start;
}

/* Dark form variant */
.form-dark input,
.form-dark textarea,
.form-dark select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.form-dark input::placeholder,
.form-dark textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-dark input:focus,
.form-dark textarea:focus,
.form-dark select:focus { border-color: rgba(255,255,255,0.35); }
.form-dark select option { background: #1a1a1a; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: block;
}
.footer-logo span { font-style: italic; }
.footer-tagline {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--border-2); color: var(--text); }

.footer-col-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--text); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--text-3); }
.footer-contact-item span,
.footer-contact-item a {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--text); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--text-2); }

/* =============================================
   HOMEPAGE SPECIFIC
   ============================================= */
.home-hero {
  position: relative;
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(1);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.2) 0%,
      rgba(0,0,0,0.1) 30%,
      rgba(0,0,0,0.55) 70%,
      rgba(0,0,0,0.85) 100%
    );
}
.home-hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.home-hero-inner {
  padding: 80px 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.home-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.home-hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.home-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.025em;
  line-height: 1.03;
  max-width: 100%;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #fff;
}
.hero-title-bold {
  font-weight: 700;
}
.hero-nowrap {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .hero-nowrap {
    white-space: normal;
  }
}
.home-hero-title em { font-style: italic; font-weight: 300; }
.home-hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
}
/* Hero trust line */
.hero-trust {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 44px;
  display: block;
}
.hero-trust a.hero-delivered {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-trust a.hero-delivered:hover { border-color: #fff; }
.hero-scroll-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: arrowBounce 2s ease-in-out infinite;
}
.hero-scroll-arrow svg { flex-shrink: 0; }
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}
/* Override btn styles on dark hero */
.home-hero .btn-dark {
  background: #fff;
  color: #141414;
}
.home-hero .btn-dark:hover { background: #e8e8e8; }
.home-hero .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.home-hero .btn-outline:hover {
  border-color: #fff;
  color: #fff;
}

/* Home services grid */
.home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .home-services { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .home-services { grid-template-columns: 1fr; }
}
.home-service-link {
  display: block;
}
.home-service-link .service-card { height: 100%; }

/* About preview */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-preview-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-preview-visual {
  aspect-ratio: 4/5;
  background: var(--bg-stone);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-placeholder-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}

/* =============================================
   VIDEO PRODUCTION PAGE
   ============================================= */
.vp-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.vp-phase-grid.two-cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 900px) {
  .vp-phase-grid,
  .vp-phase-grid.two-cols { grid-template-columns: 1fr; }
}
.vp-phase-card {
  background: var(--bg);
  padding: 52px 48px;
  transition: background 0.3s;
}
.vp-phase-card:hover { background: var(--bg-warm); }
.vp-phase-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.vp-phase-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.vp-phase-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
}
.vp-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.vp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.vp-item:last-child { border-bottom: none; }
.vp-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.vp-item-name {
  font-size: 14px;
  font-weight: 400;
}
.vp-item-desc {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
}

/* Post-production services */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* =============================================
   PHOTOGRAPHY PAGE
   ============================================= */
.photo-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .photo-services-grid { grid-template-columns: 1fr; }
}
.photo-service-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  cursor: default;
}
.photo-service-card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.photo-service-thumb {
  aspect-ratio: 1/1;
  background: var(--bg-stone);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.photo-service-thumb svg { opacity: 0.18; }
.photo-service-content {
  padding: 28px 28px;
}
.photo-service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.photo-service-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
}
.team-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.team-photo {
  aspect-ratio: 4/5;
  background: var(--bg-stone);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-photo-placeholder {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-transform: uppercase;
}
.team-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.team-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  font-weight: 300;
}

/* Values/approach grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value-item {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.3s;
}
.value-item:hover { background: var(--bg-warm); }
.value-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--border-2);
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.value-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   STORE PAGE
   ============================================= */
.store-section-header {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .store-grid { grid-template-columns: 1fr; }
}
.store-card {
  cursor: pointer;
}
.store-card-thumb {
  aspect-ratio: 1/1;
  background: var(--bg-stone);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s;
  position: relative;
}
.store-card:hover .store-card-thumb { border-color: var(--border-2); }
.store-card-thumb-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-3);
  text-transform: uppercase;
}
.store-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.store-card-sub {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
  margin-bottom: 10px;
}
.store-card-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.store-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-stone);
  border-radius: 4px;
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* =============================================
   SUCCESS STORIES PAGE
   ============================================= */
.case-studies-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.case-study {
  background: var(--bg);
  padding: 52px 48px;
  cursor: pointer;
  transition: background 0.3s;
}
.case-study:hover { background: var(--bg-warm); }
.case-study-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.case-study-client {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.case-study-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.case-study-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.case-tag {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  color: var(--text-2);
}
.case-study-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px) {
  .case-study-body { grid-template-columns: 1fr; gap: 24px; }
  .case-study { padding: 36px 28px; }
}
.case-section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.case-section-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  font-weight: 300;
}

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
}
#preloader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#preloader-logo {
  width: 200px;
  max-width: 60vw;
  animation: preload-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes preload-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   HOVER TEXT HIGHLIGHT
   ============================================= */
.hl {
  position: relative;
  display: inline-block;
  isolation: isolate;
  transition: color 0.35s ease;
  cursor: default;
}
.hl::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px;
  top: -1px; bottom: -1px;
  background: #141414;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 2px;
}
.hl:hover { color: #fff; }
.hl:hover::after { transform: scaleX(1); }
/* On dark backgrounds (e.g., video hero), invert highlight */
.hl-inv::after { background: #fff; }
.hl-inv:hover { color: #141414; }

/* =============================================
   SOCIAL FEED SECTION
   ============================================= */
.social-feed-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .social-feed-grid { grid-template-columns: 1fr; gap: 48px; }
}

.home-yt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .home-yt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-yt-grid { grid-template-columns: 1fr; }
}

.social-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.social-col-platform-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-col-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
}
.social-col-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: block;
  line-height: 1.2;
}
.social-col-handle {
  font-size: 11px;
  color: var(--text-3);
  display: block;
}
.social-follow-link {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.social-follow-link:hover { color: var(--text); border-color: var(--text); }

.social-posts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-post {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.social-post:hover {
  border-color: var(--border-2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.social-post-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  filter: grayscale(1) brightness(0.9);
  transition: filter 0.6s ease;
}
.social-post:hover .social-post-media {
  filter: grayscale(0) brightness(1);
}
.social-post-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-post-media-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* YouTube posts use 16:9 */
.social-post.yt .social-post-media { aspect-ratio: 16/9; }
.social-post-platform-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.social-post:hover .social-post-platform-badge { opacity: 1; }
.social-post-caption {
  padding: 14px 16px;
  background: var(--bg);
}
.social-post-caption p {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.social-post-caption .social-post-view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.social-post:hover .social-post-view { color: var(--text); }

/* Platform brand bg colors (shown in color state) */
.social-bg-ig-1 { background: linear-gradient(135deg, #405DE6 0%, #833AB4 25%, #C13584 50%, #E1306C 75%, #FD1D1D 100%); }
.social-bg-ig-2 { background: linear-gradient(45deg, #FCAF45 0%, #F77737 25%, #FD1D1D 50%, #E1306C 75%, #C13584 100%); }
.social-bg-li-1 { background: linear-gradient(135deg, #0A66C2 0%, #004fa3 100%); }
.social-bg-li-2 { background: linear-gradient(135deg, #004fa3 0%, #003380 100%); }
.social-bg-yt-1 { background: linear-gradient(135deg, #FF0000 0%, #cc0000 50%, #1a0000 100%); }
.social-bg-yt-2 { background: linear-gradient(135deg, #cc0000 0%, #990000 40%, #1a1a1a 100%); }

/* Placeholder icon inside post media */
.social-media-placeholder-icon {
  opacity: 0.15;
  color: #fff;
}

/* =============================================
   HERO TITLE on sub-pages (white background)
   ============================================= */
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 76px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title em { font-style: italic; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-lg { padding: 80px 0; }
  .hero-inner { padding: 64px 0; }
  .home-hero-inner { padding: 60px 0; }
}

/* =============================================
   VIDEO THUMBNAIL GRID
   ============================================= */
.vid-grid-section {
  background: var(--bg);
  padding: 80px 0 0;
}
.vid-grid-section .container {
  max-width: 1540px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .vid-grid-section .container {
    padding: 0 20px;
  }
}
.vid-grid-section .t-label { color: var(--text-2); }
.vid-grid-section .section-title { color: var(--text); }
.vid-grid-section .rule-short { background: var(--gold); }
.vid-grid-section .section-body { color: var(--text-2); }

/* 4-column portfolio layout */
.vid-portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.vid-col {
  border-left: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vid-col:first-child { border-left: none; }
.vid-col-header {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.vid-thumb {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: var(--r);
  display: block;
}
.vid-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), filter 0.55s;
  filter: grayscale(1) brightness(0.7);
}
.vid-thumb:hover .vid-thumb-img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(0.88);
}
.vid-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.78) 100%
  );
  opacity: 1;
  transition: opacity 0.55s;
  z-index: 1;
}
.vid-thumb:hover .vid-thumb-overlay { opacity: 0; }
.vid-thumb-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition: opacity 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.1);
  z-index: 3;
}
.vid-thumb-play svg { margin-left: 2px; }
.vid-thumb:hover .vid-thumb-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.vid-thumb-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  z-index: 2;
  transition: opacity 0.4s;
}
.vid-thumb:hover .vid-thumb-info { opacity: 0; }
.vid-thumb-yt {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  transition: opacity 0.4s;
}
.vid-thumb:hover .vid-thumb-yt { opacity: 0; }
.vid-thumb-title {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* Video modal — video embed version */
.vid-modal-embed {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.vid-modal-embed iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.vid-modal-embed-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 300;
}
.vid-modal-embed-placeholder svg { opacity: 0.3; }
.vid-modal-meta { display: flex; flex-direction: column; gap: 6px; }
.vid-modal-cat-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.vid-modal-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 8px;
}

/* Photo service card with real image thumb */
.photo-service-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .vid-portfolio { grid-template-columns: repeat(2, 1fr); }
  .vid-col { border-left: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .vid-col:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 560px) {
  .vid-portfolio { grid-template-columns: 1fr; }
  .vid-col { border-top: 1px solid rgba(255,255,255,0.06); }
  .vid-col:first-child { border-top: none; }
  .vid-grid-section { padding: 56px 0 0; }
}

/* =============================================
   ON-LOAD HIGHLIGHT (.hl-load)
   Sweeps on page load, not on hover
   ============================================= */
.hl-load {
  position: relative;
  display: inline-block;
  isolation: isolate;
  transition: color 0.35s;
}
.hl-load::after {
  content: '';
  position: absolute;
  left: -3px; right: -3px;
  top: -1px; bottom: -1px;
  background: #141414;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  border-radius: 2px;
}
.hl-load.active { color: #fff; }
.hl-load.active::after { transform: scaleX(1); }
/* Variant for dark bg (white sweep) */
.hl-load-inv::after { background: #fff; }
.hl-load-inv.active { color: #141414; }
/* Indent on new line for video page hero */
.hero-title-indent {
  display: block;
  padding-left: 2em;
  font-style: italic;
}

/* =============================================
   MAP ANIMATION BACKGROUND
   About-preview section on homepage
   ============================================= */
.about-map-section {
  position: relative;
  overflow: hidden;
}
.map-bg-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.map-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  animation: mapZoomOut 25s ease-in-out infinite alternate;
}
@keyframes mapZoomOut {
  0%   { background-size: 12px 12px; background-position: 0 0; opacity: 0.8; }
  100% { background-size: 36px 36px; background-position: 12px 10px; opacity: 0.4; }
}
.map-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-warm) 0%,
    rgba(248,247,245,0.6) 40%,
    rgba(248,247,245,0.6) 60%,
    var(--bg-warm) 100%
  );
}
.about-map-section > .container { position: relative; z-index: 1; }

/* =============================================
   VIDEO PORTFOLIO — CATEGORY GRID + MODAL
   ============================================= */
.vp-portfolio-section { padding: 96px 0; border-top: 1px solid var(--border); }
.vp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.vp-cat-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  user-select: none;
}
.vp-cat-card:hover {
  border-color: #141414;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  background: var(--bg-warm);
}
.vp-cat-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}
.vp-cat-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.vp-cat-count {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 300;
}
.vp-cat-arrow {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 18px;
  color: var(--text-3);
  transition: transform 0.2s, color 0.2s;
}
.vp-cat-card:hover .vp-cat-arrow { transform: translate(3px, -3px); color: var(--text); }

/* Modal */
.vp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,0.65);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(6px);
  padding: 24px;
}
.vp-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.vp-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.vp-modal-overlay.open .vp-modal { transform: translateY(0); }
.vp-modal-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: var(--text-2);
  font-size: 18px;
  line-height: 1;
}
.vp-modal-close:hover { background: var(--bg-warm); border-color: var(--border-2); }
.vp-modal-cat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.vp-modal-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--text);
}
.vp-modal-items { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.vp-modal-item {
  background: var(--bg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.vp-modal-item:hover { background: var(--bg-warm); }
.vp-modal-item-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--text);
}
.vp-modal-item-action {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.vp-modal-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
  font-weight: 300;
}

@media (max-width: 640px) {
  .vp-portfolio-grid { grid-template-columns: 1fr; }
  .vp-modal { padding: 32px 24px; }
}

/* =============================================
   CLIENT LOGO SLIDER — one at a time, fade
   ============================================= */
.client-logo-slider {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.client-logo-slide {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.client-logo-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.client-logo-slide img {
  max-height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.client-logo-slide:hover img { opacity: 1; }
/* Text fallback if no image */
.client-logo-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  text-align: center;
  transition: color 0.2s;
}
.client-logo-slide:hover .client-logo-text { color: rgba(255,255,255,0.85); }
.client-slider-fade-l,
.client-slider-fade-r {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.client-slider-fade-l { left: 0; background: linear-gradient(to right, #141414, transparent); }
.client-slider-fade-r { right: 0; background: linear-gradient(to left, #141414, transparent); }

/* =============================================
   PHOTO GALLERY — real images grid
   ============================================= */
.photo-gallery-section { padding: 96px 0; background: var(--bg); }
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.photo-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-stone);
  cursor: zoom-in;
}
.photo-gallery-item::before {
  content: '';
  display: block;
  padding-top: 120%; /* portrait ratio for headshots */
}
.photo-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), filter 0.55s;
  filter: grayscale(1) brightness(0.75);
}
.photo-gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(1);
}
.photo-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.42) 55%,
    rgba(0,0,0,0.72) 100%
  );
  opacity: 1;
  transition: opacity 0.55s;
  z-index: 1;
  pointer-events: none;
}
.photo-gallery-item:hover::after { opacity: 0; }
.photo-gallery-wide::before { padding-top: 66%; }
@media (max-width: 768px) {
  .photo-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .photo-gallery-grid { grid-template-columns: 1fr; }
}

/* ── HERO WORD LINKS ── */
.hero-word-link {
  color: inherit;
  text-decoration: none;
  display: inline;
}
.hero-word-link .hl { cursor: pointer; }

/* ── DEMO REEL MODAL ── */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 24px;
}
.demo-modal-overlay.open { opacity: 1; visibility: visible; }
.demo-modal {
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.demo-modal video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.demo-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  transition: background 0.2s;
}
.demo-modal-close:hover { background: rgba(255,255,255,0.22); }

/* -- PHOTOGRAPHY HORIZONTAL SLIDERS -- */
.photo-slider-portfolio {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.photo-slider-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.photo-slider-header {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-1);
}
.photo-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 24px;
  scroll-snap-type: x proximity; /* smooth free scrolling */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}
.photo-slider-track::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}
.photo-slider-track .photo-thumb {
  flex: 0 0 auto;
  height: 400px; /* Match heights across horizontal and vertical photos */
  width: auto;
  aspect-ratio: auto;
  scroll-snap-align: start;
}
.photo-slider-track .photo-thumb .vid-thumb-img {
  width: auto;
  height: 100%;
  object-fit: cover;
  position: relative;
}
@media (max-width: 900px) {
  .photo-slider-track .photo-thumb {
    height: 300px;
  }
}
@media (max-width: 600px) {
  .photo-slider-track .photo-thumb {
    height: 240px;
  }
}

