/* ════════════════════════════════════════════════════════════
   CINE STILLS — STYLES
   ════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Backgrounds */
  --bg:           #FAF6F0;
  --bg-warm:      #F5EDE0;
  --bg-cream:     #FFF8EE;
  --bg-deep:      #EFE5D2;
  --surface:      #EDE5D8;
  --surface-lt:   #F2EBDF;

  /* Brand colours - La La Land warmth */
  --gold:         #E8A832;
  --gold-deep:    #D4922A;
  --gold-bright:  #F2C14E;
  --gold-muted:   #C9A45C;
  --gold-pale:    #E8C988;

  /* Teal accents */
  --teal:         #2A8A8A;
  --teal-light:   #3AA0A0;
  --teal-pale:    #B8DDD8;
  --teal-muted:   #6BBAB4;

  /* Supporting warm */
  --orange:       #D4834E;
  --amber:        #C49A6C;

  /* Text */
  --charcoal:     #2C2824;
  --dark:         #1A1714;
  --med-text:     #6B5E50;
  --dim-text:     #9A8E7E;
  --soft-text:    #B8AC9C;

  /* Film */
  --film-black:   #181410;
  --film-shadow:  rgba(24, 20, 16, 0.5);
  --shutter-dark: #0E0B08;
  --shutter-mid:  #1F1A14;
  --shutter-edge: #2C2520;

  /* Typography */
  --font-display:  'Limelight', 'Playfair Display', serif;
  --font-serif:    'EB Garamond', Georgia, serif;
  --font-elegant:  'Cormorant Garamond', 'EB Garamond', serif;
  --font-mono:     'Courier Prime', monospace;
  --font-ui:       'Special Elite', cursive;

  /* Spacing */
  --gutter:    48px;
  --max:       1280px;
  --max-text:  720px;

  /* Animation */
  --shutter-duration: 850ms;
  --shutter-ease: cubic-bezier(0.65, 0, 0.35, 1);
  --hover-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html {
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

::selection { background: rgba(232, 168, 50, 0.25); color: var(--dark); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-muted); }

/* ════════════════════════════════════════════════════════════
   BOOT LOADER (Film Reel)
   ════════════════════════════════════════════════════════════ */

.boot-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease 0.2s;
}
.boot-loader.done {
  opacity: 0; pointer-events: none;
}
.boot-reel {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.reel-svg {
  animation: reelSpin 1.1s linear infinite;
}
@keyframes reelSpin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
.boot-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 5px;
  color: var(--gold-muted);
  text-transform: uppercase;
  animation: bootFlicker 1.4s ease infinite;
}
@keyframes bootFlicker {
  0%, 100% { opacity: 1; }
  40%      { opacity: 0.65; }
  60%      { opacity: 0.9; }
}

/* ════════════════════════════════════════════════════════════
   SONY FOCAL-PLANE SHUTTER ANIMATION
   ────────────────────────────────────────────────────────────
   Two curtains of horizontal blades, sliding vertically.
   Mimics the mechanical shutter of a Sony α7 series.
   ════════════════════════════════════════════════════════════ */

.shutter-overlay {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}
.shutter-overlay.active {
  pointer-events: all;
}

.shutter-curtain {
  position: absolute;
  left: 0; right: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  will-change: transform;
}

/* First curtain — closes the shutter (top → bottom sweep) */
.shutter-curtain-1 {
  top: 0;
  z-index: 2;
}
.shutter-overlay.active .shutter-curtain-1 {
  animation: shutterClose var(--shutter-duration) var(--shutter-ease) forwards;
}
@keyframes shutterClose {
  0%   { transform: translateY(-100%); }
  45%  { transform: translateY(0%);    }
  55%  { transform: translateY(0%);    }
  100% { transform: translateY(100%);  }
}

/* Second curtain — for layering / depth */
.shutter-curtain-2 {
  top: 0;
  z-index: 1;
  opacity: 0.8;
}
.shutter-overlay.active .shutter-curtain-2 {
  animation: shutterCloseLag var(--shutter-duration) var(--shutter-ease) forwards;
}
@keyframes shutterCloseLag {
  0%   { transform: translateY(-100%); }
  50%  { transform: translateY(-20%);  }
  60%  { transform: translateY(-20%);  }
  100% { transform: translateY(100%);  }
}

/* Individual blades — metallic gradient, mechanical seams */
.blade {
  flex: 1;
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(255, 255, 255, 0.005) 8%,
      var(--shutter-mid) 12%,
      var(--shutter-dark) 70%,
      rgba(0, 0, 0, 0.92) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4);
}
.blade::before {
  /* Subtle horizontal highlight (machined metal feel) */
  content: '';
  position: absolute;
  top: 30%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 30%,
    rgba(232, 168, 50, 0.05) 50%,
    rgba(255, 255, 255, 0.04) 70%,
    transparent 100%);
}
.blade::after {
  /* Edge gloss line */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.5) 100%);
}

/* Brief shutter "flash" at the moment of full closure (exposure) */
.shutter-flash {
  position: absolute; inset: 0;
  background: rgba(232, 168, 50, 0);
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
}
.shutter-overlay.active .shutter-flash {
  animation: shutterFlash var(--shutter-duration) ease forwards;
}
@keyframes shutterFlash {
  0%, 44%       { background: rgba(232, 168, 50, 0); }
  48%           { background: rgba(255, 240, 200, 0.06); }
  52%           { background: rgba(232, 168, 50, 0); }
  100%          { background: rgba(232, 168, 50, 0); }
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(180deg,
    rgba(250, 246, 240, 0.96) 0%,
    rgba(250, 246, 240, 0.88) 75%,
    rgba(250, 246, 240, 0) 100%);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(44, 40, 36, 0.06), 0 6px 20px rgba(232, 168, 50, 0.05);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.nav-logo:hover { opacity: 0.85; }
.logo-mark {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  position: relative;
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--med-text);
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--hover-ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold-deep); }
.nav-link.active::after { width: 100%; background: var(--gold-deep); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--dim-text);
  padding: 4px 6px;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  transition: color 0.25s;
}
.lang-btn:hover { color: var(--charcoal); }
.lang-btn.active { color: var(--gold-deep); font-weight: 700; }
.lang-divider { color: var(--soft-text); user-select: none; }

.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid rgba(42, 138, 138, 0.32);
  border-radius: 3px;
  color: var(--teal);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  background: transparent;
}
.ig-btn:hover {
  border-color: var(--teal);
  background: rgba(42, 138, 138, 0.06);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-mobile-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  align-self: center;
}

/* ════════════════════════════════════════════════════════════
   COMMON UI / TYPOGRAPHY
   ════════════════════════════════════════════════════════════ */

.section { padding: 100px var(--gutter); position: relative; }
.section-tight { padding: 70px var(--gutter); }
.section-deep  { padding: 130px var(--gutter); }
.container { max-width: var(--max); margin: 0 auto; position: relative; }
.container-narrow { max-width: 960px; margin: 0 auto; position: relative; }
.container-text { max-width: var(--max-text); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow .perfs { display: flex; gap: 4px; }
.eyebrow .perfs span {
  width: 10px; height: 7px;
  border: 1px solid var(--gold-muted);
  border-radius: 1.5px;
  opacity: 0.45;
}

.title-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--charcoal);
  line-height: 1.1;
}
.title-elegant {
  font-family: var(--font-elegant);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  line-height: 1.15;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.15;
}
.section-intro {
  font-family: var(--font-elegant);
  font-size: clamp(17px, 1.7vw, 20px);
  font-style: italic;
  color: var(--med-text);
  max-width: 580px;
  line-height: 1.55;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 3px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.35s var(--hover-ease);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 168, 50, 0.28);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(232, 168, 50, 0.5);
  transform: translateY(-2px);
}
.btn-primary:active {
  animation: shutterClick 0.3s ease;
}
@keyframes shutterClick {
  0%   { transform: scale(1) translateY(-2px); }
  20%  { transform: scale(0.96) translateY(0); }
  100% { transform: scale(1) translateY(-2px); }
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(42, 138, 138, 0.4);
  color: var(--teal);
}
.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(42, 138, 138, 0.06);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding: 14px 32px;
  border: 1.5px solid var(--surface);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* Decorative film perforations */
.perf-strip {
  display: inline-flex;
  gap: 4px;
  opacity: 0.32;
}
.perf-strip span {
  width: 10px; height: 7px;
  border: 1px solid var(--gold-muted);
  border-radius: 1.5px;
}

/* Letterbox bars (cinematic) */
.letterbox-bars {
  position: absolute; left: 0; right: 0;
  height: 6px;
  background: var(--film-black);
  z-index: 2;
}
.letterbox-bars.top { top: 0; }
.letterbox-bars.bottom { bottom: 0; }

/* ════════════════════════════════════════════════════════════
   HERO (Rule of Thirds)
   ════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 45%, rgba(232, 168, 50, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 18% 70%, rgba(184, 221, 216, 0.16) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  /* top kodak strip */
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232, 168, 50, 0.5) 30%,
    rgba(242, 193, 78, 0.9) 50%,
    rgba(232, 168, 50, 0.5) 70%,
    transparent 100%);
  opacity: 0.6;
}

.hero-content {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-left: 16px;
  position: relative;
  z-index: 2;
  animation: heroSlideIn 1s ease 0.2s both;
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-frame-marker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 86px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 3px;
  text-shadow: 0 2px 40px rgba(232, 168, 50, 0.12);
}
.hero-title .hero-stills {
  display: block;
  font-size: 0.62em;
  color: var(--gold-deep);
  letter-spacing: 10px;
  margin-top: 6px;
}

.hero-divider {
  width: 50px;
  height: 2px;
  margin: 26px 0 24px;
  background: linear-gradient(90deg, var(--gold), rgba(42, 138, 138, 0.5));
  border-radius: 1px;
}

.hero-tagline {
  font-family: var(--font-elegant);
  font-size: clamp(18px, 1.9vw, 22px);
  font-style: italic;
  color: var(--med-text);
  max-width: 400px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-feature {
  grid-column: 2 / 4;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1.2s ease 0.45s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Viewfinder / featured image circle */
.hero-viewfinder {
  width: min(60vw, 660px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 168, 50, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-viewfinder-inner {
  width: 78%; height: 78%;
  border-radius: 50%;
  border: 1px solid rgba(42, 138, 138, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-viewfinder-inner::before,
.hero-viewfinder-inner::after {
  content: '';
  position: absolute;
  background: rgba(232, 168, 50, 0.1);
}
.hero-viewfinder-inner::before {
  width: 100%; height: 1px;
}
.hero-viewfinder-inner::after {
  width: 1px; height: 100%;
}
.hero-viewfinder-image {
  width: 85%; height: 85%;
  border-radius: 50%;
  background:
    linear-gradient(150deg,
      var(--surface) 0%,
      var(--bg-warm) 45%,
      rgba(184, 221, 216, 0.18) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 60px rgba(232, 168, 50, 0.05),
    0 0 80px rgba(232, 168, 50, 0.04);
  overflow: hidden;
}
.hero-viewfinder-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-viewfinder-placeholder {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--dim-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.8;
}

.hero-viewfinder-tick {
  position: absolute;
  background: var(--gold);
  opacity: 0.22;
}
.hero-viewfinder-tick.top    { top: 0;    left: 50%; width: 1px;  height: 14px; transform: translateX(-50%); }
.hero-viewfinder-tick.bottom { bottom: 0; left: 50%; width: 1px;  height: 14px; transform: translateX(-50%); }
.hero-viewfinder-tick.left   { left: 0;   top: 50%;  width: 14px; height: 1px;  transform: translateY(-50%); }
.hero-viewfinder-tick.right  { right: 0;  top: 50%;  width: 14px; height: 1px;  transform: translateY(-50%); }

.hero-caption {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--dim-text);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-scroll {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  padding-left: 16px;
  z-index: 2;
}
.hero-scroll-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.45; }
  50%      { opacity: 0.95; }
}
.hero-scroll-inner > div {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--dim-text));
}
.hero-scroll-inner > span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--dim-text);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   TRUST STRIP (sub-hero credibility band)
   ════════════════════════════════════════════════════════════ */

.trust-strip {
  padding: 28px var(--gutter);
  background: var(--bg-warm);
  border-top: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--dim-text);
  text-transform: uppercase;
  text-align: center;
}
.trust-perfs {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.5;
}
.trust-perfs > div {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-muted);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   STATS BAND
   ════════════════════════════════════════════════════════════ */

.stats {
  padding: 80px var(--gutter);
  background: var(--bg);
  position: relative;
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-cell {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--surface);
}
.stat-cell:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--med-text);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   SERVICES / PACKAGES
   ════════════════════════════════════════════════════════════ */

.services {
  padding: 110px var(--gutter);
  background: var(--bg-warm);
  position: relative;
}
.services-header {
  max-width: var(--max);
  margin: 0 auto 60px;
}
.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.service-card {
  padding: 36px 32px;
  background: var(--bg-cream);
  border: 1px solid var(--surface);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--hover-ease), box-shadow 0.4s ease, border-color 0.3s ease;
}
.service-card.featured {
  border-color: rgba(232, 168, 50, 0.4);
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  box-shadow: 0 4px 24px rgba(232, 168, 50, 0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(232, 168, 50, 0.12);
}
.service-card.featured:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(232, 168, 50, 0.18);
}

.service-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(232, 168, 50, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}
.service-accent {
  width: 38px;
  height: 2px;
  margin-bottom: 18px;
  border-radius: 1px;
  opacity: 0.85;
}
.service-card[data-key="events"]      .service-accent { background: var(--gold); }
.service-card[data-key="portrait"]    .service-accent { background: var(--teal); }
.service-card[data-key="realestate"]  .service-accent { background: var(--orange); }

.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.service-subtitle {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.service-desc {
  font-family: var(--font-serif);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--med-text);
  margin-bottom: 24px;
}
.service-features-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-features {
  list-style: none;
  margin-bottom: 24px;
}
.service-features li {
  font-family: var(--font-serif);
  font-size: 14.5px;
  color: var(--med-text);
  line-height: 1.55;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px dashed rgba(232, 168, 50, 0.18);
}
.service-features li:last-child { border-bottom: none; }
.service-features li::before {
  content: '●';
  position: absolute;
  left: 4px; top: 8px;
  color: var(--gold);
  font-size: 9px;
}
.service-card[data-key="portrait"]    .service-features li::before { color: var(--teal); }
.service-card[data-key="realestate"]  .service-features li::before { color: var(--orange); }

.service-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--surface);
}
.service-price-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 400;
}
.service-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}
.service-link {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: none;
  border: none;
  transition: gap 0.3s ease, color 0.3s;
}
.service-link:hover { gap: 14px; color: var(--gold); }
.service-card[data-key="portrait"]    .service-link { color: var(--teal); }
.service-card[data-key="realestate"]  .service-link { color: var(--orange); }

/* ════════════════════════════════════════════════════════════
   PROCESS TIMELINE
   ════════════════════════════════════════════════════════════ */

.process {
  padding: 110px var(--gutter);
  background: var(--bg);
}
.process-header {
  max-width: var(--max);
  margin: 0 auto 60px;
}
.process-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-muted) 15%,
    var(--gold-muted) 85%,
    transparent 100%);
  opacity: 0.4;
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1.5px solid var(--gold-muted);
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-deep);
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(232, 168, 50, 0.1);
  position: relative;
  background-clip: padding-box;
}
.process-number::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(232, 168, 50, 0.2);
}
.process-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.process-desc {
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--med-text);
  max-width: 240px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════
   FEATURED WORK (editorial)
   ════════════════════════════════════════════════════════════ */

.featured-work {
  padding: 110px var(--gutter);
  background: var(--bg-warm);
}
.featured-header {
  max-width: var(--max);
  margin: 0 auto 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.featured-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.featured-cell {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.5s var(--hover-ease);
}
.featured-cell:hover { transform: scale(1.012); }
.featured-cell:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.featured-cell:nth-child(2) { grid-column: 2; grid-row: 1; }
.featured-cell:nth-child(3) { grid-column: 2; grid-row: 2; }

.featured-cell-img {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, var(--surface) 0%, var(--bg-warm) 50%, rgba(184, 221, 216, 0.3) 100%);
  background-size: cover;
  background-position: center;
}
.featured-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24, 20, 16, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.featured-cell-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.featured-cell-title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */

.testimonials {
  padding: 110px var(--gutter);
  background: var(--bg);
}
.testimonials-header {
  max-width: var(--max);
  margin: 0 auto 50px;
}
.testimonials-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  padding: 36px 32px;
  background: var(--bg-cream);
  border: 1px solid var(--surface);
  border-radius: 4px;
  position: relative;
  transition: transform 0.4s var(--hover-ease), box-shadow 0.4s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(232, 168, 50, 0.08);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 90px;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-elegant);
  font-size: 17px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 24px 0 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold-deep);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════ */

.cta-section {
  padding: 130px var(--gutter);
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 168, 50, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.cta-title {
  font-family: var(--font-elegant);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-bottom: 24px;
}
.cta-subtitle {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--med-text);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-perfs {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  opacity: 0.4;
}

/* ════════════════════════════════════════════════════════════
   VIDEOGRAPHY TEASER
   ════════════════════════════════════════════════════════════ */

.video-teaser {
  padding: 70px var(--gutter);
  background: var(--bg);
  text-align: center;
}
.video-teaser-inner {
  max-width: 480px;
  margin: 0 auto;
}
.video-teaser-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  margin-bottom: 14px;
}
.video-teaser-eyebrow svg { width: 14px; height: 14px; }
.video-teaser-eyebrow span {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.video-teaser-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--charcoal);
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.video-teaser-desc {
  font-family: var(--font-elegant);
  font-size: 17px;
  font-style: italic;
  color: var(--dim-text);
}

/* ════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════ */

.page-gallery {
  padding-top: 130px;
  min-height: 100vh;
}
.gallery-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 36px;
}
.category-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.category-tab {
  padding: 11px 26px;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: 3px;
  color: var(--dim-text);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.category-tab:hover { color: var(--charcoal); }
.category-tab.active {
  background: var(--bg-cream);
  border-color: rgba(232, 168, 50, 0.4);
  color: var(--gold-deep);
}
.gallery-meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 42px);
  letter-spacing: 2px;
  color: var(--charcoal);
}
.gallery-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--dim-text);
  text-transform: uppercase;
}
.gallery-desc {
  font-family: var(--font-elegant);
  font-size: 18px;
  font-style: italic;
  color: var(--amber);
  max-width: 560px;
  line-height: 1.55;
}

.gallery-masonry {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 100px;
  column-count: 3;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  cursor: pointer;
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.45s var(--hover-ease), box-shadow 0.45s ease;
}
.masonry-item:hover {
  transform: scale(1.012);
  box-shadow: 0 14px 40px rgba(232, 168, 50, 0.15);
}
.masonry-img {
  width: 100%;
  display: block;
  background: linear-gradient(150deg, var(--surface) 0%, var(--bg-warm) 50%, rgba(184, 221, 216, 0.18) 100%);
}
.masonry-placeholder {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--dim-text);
  letter-spacing: 1.5px;
  padding: 16px;
  text-align: center;
  background: linear-gradient(150deg, var(--surface) 0%, var(--bg-warm) 50%, rgba(184, 221, 216, 0.2) 100%);
}
.masonry-frame-num {
  position: absolute;
  bottom: 8px; left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--gold-bright);
  letter-spacing: 2px;
  background: rgba(24, 20, 16, 0.5);
  padding: 3px 8px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.masonry-item:hover .masonry-frame-num { opacity: 1; }

.gallery-empty {
  max-width: var(--max);
  margin: 60px auto;
  padding: 80px var(--gutter);
  text-align: center;
  background: var(--bg-cream);
  border: 1px dashed var(--gold-muted);
  border-radius: 4px;
}
.gallery-empty-icon {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-muted);
  margin-bottom: 16px;
}
.gallery-empty p {
  font-family: var(--font-elegant);
  font-size: 18px;
  font-style: italic;
  color: var(--med-text);
}

/* ════════════════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════════════════ */

.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(24, 20, 16, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  animation: lbFade 0.3s ease;
}
.lightbox.active { display: flex; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

.lightbox-content {
  max-width: 86vw;
  max-height: 86vh;
  position: relative;
  animation: lbZoom 0.4s var(--hover-ease);
}
@keyframes lbZoom {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 3px;
}
.lightbox-img-placeholder {
  min-width: 320px;
  min-height: 320px;
  background: linear-gradient(150deg, #1f1a14 0%, #2a2520 50%, #1a1714 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  color: var(--gold-muted);
  letter-spacing: 1.5px;
  border-radius: 3px;
}
.lightbox-caption {
  margin-top: 14px;
  text-align: center;
}
.lightbox-caption-text {
  font-family: var(--font-elegant);
  font-size: 15px;
  font-style: italic;
  color: var(--gold-pale);
  margin-bottom: 6px;
}
.lightbox-caption-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold-muted);
}
.lightbox-btn {
  position: absolute;
  background: none;
  border: none;
  color: var(--bg-cream);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.lightbox-btn:hover { opacity: 1; transform: scale(1.1); }
.lightbox-close { top: 28px; right: 28px; }
.lightbox-prev  { top: 50%; left: 28px; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 28px; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */

.page-about {
  padding-top: 130px;
  min-height: 100vh;
  padding-bottom: 100px;
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.about-content {
  animation: aboutSlideIn 0.8s ease both;
}
@keyframes aboutSlideIn {
  from { opacity: 0; transform: translateX(-26px); }
  to   { opacity: 1; transform: translateX(0); }
}
.about-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 44px);
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.about-divider {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin-bottom: 28px;
  border-radius: 1px;
}
.about-bio p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.78;
  color: var(--med-text);
  margin-bottom: 18px;
}
.about-aside {
  animation: aboutFadeUp 0.8s ease 0.25s both;
}
@keyframes aboutFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.about-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(150deg, var(--surface) 0%, var(--bg-warm) 50%, rgba(184, 221, 216, 0.2) 100%);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 18px;
}
.about-perfs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.about-info-card {
  padding: 22px 24px;
  background: var(--bg-cream);
  border: 1px solid var(--surface);
  border-radius: 4px;
  margin-bottom: 14px;
}
.about-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.about-info-content {
  font-family: var(--font-serif);
  font-size: 15.5px;
  color: var(--med-text);
  line-height: 1.85;
}
.about-info-content strong {
  font-weight: 500;
  color: var(--charcoal);
}
.about-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
}
.about-info-row + .about-info-row {
  border-top: 1px dashed var(--surface);
}
.about-info-row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim-text);
  text-transform: uppercase;
}
.about-info-row-value {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--charcoal);
}
.about-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.about-langs span {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(232, 168, 50, 0.08);
  border: 1px solid rgba(232, 168, 50, 0.3);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--gold-deep);
}

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */

.page-contact {
  padding-top: 130px;
  min-height: 100vh;
  padding-bottom: 100px;
}
.contact-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.contact-header {
  margin-bottom: 56px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 44px);
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.contact-subtitle {
  font-family: var(--font-elegant);
  font-size: 19px;
  font-style: italic;
  color: var(--amber);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-form-wrap {}
.form-row {
  margin-bottom: 22px;
}
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-cream);
  border: 1.5px solid var(--surface);
  border-radius: 3px;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input:focus, .form-textarea:focus {
  border-color: rgba(232, 168, 50, 0.6);
  box-shadow: 0 0 0 3px rgba(232, 168, 50, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  padding: 16px 20px;
  background: rgba(42, 138, 138, 0.08);
  border: 1px solid rgba(42, 138, 138, 0.3);
  border-radius: 3px;
  color: var(--teal);
  font-family: var(--font-elegant);
  font-style: italic;
  margin-bottom: 16px;
  display: none;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }

.form-error {
  padding: 16px 20px;
  background: rgba(212, 131, 78, 0.08);
  border: 1px solid rgba(212, 131, 78, 0.4);
  border-radius: 3px;
  color: var(--orange);
  font-family: var(--font-elegant);
  font-style: italic;
  margin-bottom: 16px;
  display: none;
}
.form-error.show { display: block; animation: fadeIn 0.4s ease; }

.contact-info {
  padding-top: 8px;
}
.info-card {
  padding: 24px 26px;
  background: var(--bg-cream);
  border: 1px solid var(--surface);
  border-radius: 4px;
  margin-bottom: 18px;
}
.info-card-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(232, 168, 50, 0.18);
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--med-text);
}
.info-row:last-child { border-bottom: none; }
.info-row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim-text);
  text-transform: uppercase;
  flex-shrink: 0;
}
.info-row-value {
  text-align: right;
  color: var(--charcoal);
}
.info-row-value a { color: var(--teal); }
.info-row-value a:hover { color: var(--gold-deep); }
.info-row-value.muted { color: var(--teal); }

.info-ig {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-cream);
  border: 1.5px solid rgba(42, 138, 138, 0.25);
  border-radius: 4px;
  color: var(--teal);
  margin-bottom: 18px;
  transition: all 0.3s;
}
.info-ig:hover {
  border-color: var(--teal);
  background: rgba(42, 138, 138, 0.04);
  transform: translateY(-2px);
}
.info-ig-handle {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 2px;
}
.info-ig-sub {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--dim-text);
  margin-top: 2px;
}

.info-services {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--surface);
}
.info-services-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--dim-text);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.info-service-item {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--med-text);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-service-item::before {
  content: '●';
  font-size: 9px;
  color: var(--gold);
}
.info-service-item.teal::before { color: var(--teal); }
.info-service-item.orange::before { color: var(--orange); }
.info-service-coming {
  font-style: italic;
  color: var(--dim-text);
  margin-top: 8px;
  font-size: 14px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */

.footer {
  padding: 40px var(--gutter);
  background: var(--bg-warm);
  border-top: 1px solid var(--surface);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-mark {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold-muted);
}
.footer-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--dim-text);
  letter-spacing: 1px;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--dim-text);
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--gold-deep); }
.footer-ig {
  color: var(--dim-text);
  transition: color 0.3s;
}
.footer-ig:hover { color: var(--teal); }

/* ════════════════════════════════════════════════════════════
   ANIMATIONS UTILITIES
   ════════════════════════════════════════════════════════════ */

.fade-up {
  animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease both; }
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.stagger > * { opacity: 0; }
.stagger > *:nth-child(1) { animation: fadeUp 0.6s ease 0.05s forwards; }
.stagger > *:nth-child(2) { animation: fadeUp 0.6s ease 0.15s forwards; }
.stagger > *:nth-child(3) { animation: fadeUp 0.6s ease 0.25s forwards; }
.stagger > *:nth-child(4) { animation: fadeUp 0.6s ease 0.35s forwards; }
.stagger > *:nth-child(5) { animation: fadeUp 0.6s ease 0.45s forwards; }
.stagger > *:nth-child(6) { animation: fadeUp 0.6s ease 0.55s forwards; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: 11px; letter-spacing: 2px; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-cell { border-right: none; }
  .stat-cell:nth-child(odd) { border-right: 1px solid var(--surface); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: 280px 220px 220px; }
  .featured-cell:nth-child(1) { grid-column: 1; grid-row: 1; }
  .featured-cell:nth-child(2) { grid-column: 1; grid-row: 2; }
  .featured-cell:nth-child(3) { grid-column: 1; grid-row: 3; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-masonry { column-count: 2; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .nav-inner { padding: 14px var(--gutter); }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--bg-cream); flex-direction: column; padding: 28px;
    gap: 24px; box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--surface); }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: flex; }
  .nav-actions .ig-btn span { display: none; }
  .nav-actions .ig-btn { padding: 9px 11px; }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero-content { grid-column: 1; grid-row: 1; padding-top: 24px; padding-left: 0; }
  .hero-feature { grid-column: 1; grid-row: 2; padding: 24px 0; }
  .hero-viewfinder { width: min(85vw, 320px); }
  .hero-scroll { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none !important; }
  .stat-cell:nth-child(2) { border-right: none !important; }
  .gallery-masonry { column-count: 1; }
  .section { padding: 70px var(--gutter); }
  .services { padding: 80px var(--gutter); }
  .testimonials, .process, .featured-work { padding: 80px var(--gutter); }
  .cta-section { padding: 90px var(--gutter); }
}
