/* ================================================================
   STORYINFRAMES STUDIO
   Theme : Aggressive Ultra-Premium Editorial White
   Palette: Pure white · Jet black · Rich gold · Stone warm
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Montserrat:wght@200;300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:       #ffffff;
  --bg-off:   #f8f6f2;
  --bg-warm:  #f2ede5;
  --bg-black: #0a0908;

  --ink:   #0a0908;
  --ink-2: #1e1c1a;
  --ink-3: #5a534b;
  --ink-4: #a89e94;
  --ink-5: #d8d2ca;

  --gold:     #b36020;
  --gold-2:   #d4893d;
  --gold-3:   #f2c27a;
  --gold-dim: rgba(179,96,32,0.09);
  --gold-brd: rgba(179,96,32,0.25);

  --brd:   rgba(10,9,8,0.10);
  --brd-2: rgba(10,9,8,0.16);

  --r:    6px;
  --r-lg: 12px;
  --r-xl: 20px;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --t:      0.38s var(--ease);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', sans-serif;
  --body:  'DM Sans', system-ui, sans-serif;
}

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

/* ── Layout ───────────────────────────────────────────────── */
.wrap    { max-width: 1400px; margin: 0 auto; padding: 0 3rem; }
.section { padding: 9rem 0; }

/* ── Noise ────────────────────────────────────────────────── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='0.016'/%3E%3C/svg%3E");
  opacity: 0.4; mix-blend-mode: multiply;
}
@media (max-width:768px) { .noise-overlay { display: none; } }

/* ── 3D Tilt base ─────────────────────────────────────────── */
.tilt-3d { transform-style: preserve-3d; will-change: transform; }
.tilt-3d.tilt-reset { transition: transform 0.65s var(--spring), box-shadow 0.55s var(--ease); }

/* ── Reveal ───────────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.9s var(--spring), transform 0.9s var(--spring); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ══ TYPOGRAPHY SYSTEM ══════════════════════════════════════ */

/* Eyebrow — ultra-condensed label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.30em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px;
  background: var(--gold); flex-shrink: 0;
}
.sh-center .eyebrow    { justify-content: center; }
.sh-center .eyebrow::before { display: none; }

/* Section H2 — dramatic editorial */
.sec-h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.04; letter-spacing: -0.02em;
}
.sec-h2 em     { font-style: italic; color: var(--gold); font-weight: 300; }
.sec-h2 strong { font-weight: 700; }
.sec-h2 .stroke-text {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent; font-weight: 700;
}

.section-head { margin-bottom: 5rem; }
.sh-split { display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; }
.sh-right p { font-size: 0.95rem; line-height: 1.85; color: var(--ink-3); margin-bottom: 1.6rem; max-width: 360px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  position: relative; padding-bottom: 3px; transition: var(--t);
}
.link-arrow::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0.3); transform-origin: left;
  transition: transform 0.45s var(--spring);
}
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow i { transition: transform 0.35s var(--spring); }
.link-arrow:hover i { transform: translateX(5px); }

/* ══ BUTTONS ════════════════════════════════════════════════ */

/* Primary — solid black, sharp geometry, 3D depth */
/* Primary — warm gold gradient, elegant 3D */
.btn-primary {
  display: inline-flex; align-items: center; gap: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 0.69rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 1.05rem 1.2rem 1.05rem 1.9rem;
  border-radius: 999px; /* pill */
  border: none;
  transition: transform 0.28s var(--spring), box-shadow 0.28s, filter 0.28s;
  box-shadow: 0 8px 28px rgba(179,96,32,0.32), 0 2px 6px rgba(179,96,32,0.20);
  transform: perspective(600px) translateZ(0);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 60%);
  border-radius: 999px;
  pointer-events: none;
}
.btn-primary .icon {
  width: 34px; height: 34px; border-radius: 999px;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s var(--spring);
  flex-shrink: 0;
}
.btn-primary:hover {
  filter: brightness(1.08) saturate(1.15);
  box-shadow: 0 16px 44px rgba(179,96,32,0.42), 0 4px 12px rgba(179,96,32,0.22);
  transform: perspective(600px) translateY(-3px) translateZ(8px);
}
.btn-primary:active {
  transform: perspective(600px) translateY(1px) translateZ(0);
  box-shadow: 0 4px 14px rgba(179,96,32,0.25);
}
.btn-primary:hover .icon { transform: translateX(4px); }

/* Outline — charcoal border, elegant fill reveal */
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent;
  border: 1.5px solid var(--ink-2);
  color: var(--ink-2); font-family: var(--sans); font-size: 0.69rem;
  font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 1.05rem 1.8rem;
  border-radius: 999px; /* pill */
  transition: transform 0.28s var(--spring), box-shadow 0.28s, background 0.32s, color 0.32s, border-color 0.32s;
  transform: perspective(600px) translateZ(0);
}
.btn-outline:hover {
  background: var(--ink-2); color: #fff; border-color: var(--ink-2);
  box-shadow: 0 12px 32px rgba(10,9,8,0.22);
  transform: perspective(600px) translateY(-3px) translateZ(8px);
}
.btn-outline:active {
  transform: perspective(600px) translateY(1px) translateZ(0);
  box-shadow: none;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.5rem 3rem;
  transition: padding 0.4s var(--ease), background 0.5s, box-shadow 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  padding: 0.85rem 3rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  box-shadow: 0 1px 0 var(--brd), 0 4px 40px rgba(10,9,8,0.08);
  border-color: var(--brd);
}
.nav-wrap {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 900;
  color: var(--ink); letter-spacing: 0.14em; text-transform: uppercase;
  transition: color var(--t);
}
.nav-brand:hover { color: var(--gold); }
.nav-logo-mark {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--ink); border-radius: 4px;
  transition: background var(--t);
}
.nav-logo-mark svg { display: block; }
.nav-brand:hover .nav-logo-mark { background: var(--gold); }

.nav-center { display: flex; gap: 0; }
.nl {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  color: var(--ink-3); padding: 0.5rem 1.1rem; border-radius: 4px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--t); position: relative;
}
.nl::after {
  content: ''; position: absolute; bottom: 2px; left: 1.1rem; right: 1.1rem;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--spring);
}
.nl:hover, .nl.active { color: var(--ink); }
.nl:hover::after, .nl.active::after { transform: scaleX(1); }

.nav-end { display: flex; align-items: center; gap: 1.4rem; }
.nav-avail {
  display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--sans); font-size: 0.65rem; font-weight: 600;
  color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase;
}
.avail-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
  animation: avail-pulse 2.2s ease-in-out infinite;
}
@keyframes avail-pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(22,163,74,0.05); }
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 999px; border: none;
  transition: transform 0.28s var(--spring), box-shadow 0.28s, filter 0.28s;
  box-shadow: 0 6px 20px rgba(179,96,32,0.32);
}
.nav-cta:hover { filter: brightness(1.08); box-shadow: 0 10px 28px rgba(179,96,32,0.42); transform: translateY(-2px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 0; transition: var(--t); }

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto;
  background: var(--bg); overflow: hidden;
}

/* bold geometric accent line — top */
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-3) 40%, var(--gold) 100%);
}

/* Large background number — editorial depth */
.hero-bg-num {
  position: absolute; z-index: 0; pointer-events: none;
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(280px, 40vw, 520px);
  color: rgba(10,9,8,0.024);
  line-height: 1; letter-spacing: -0.08em;
  right: -4%; bottom: 10%;
  user-select: none;
}

/* Very faint grid */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(10,9,8,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,9,8,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 30%, black 0%, transparent 75%);
}

.hero-orb-1, .hero-orb-2 {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; will-change: transform;
}
.hero-orb-1 {
  width: 700px; height: 700px; top: -200px; right: -100px;
  background: radial-gradient(circle at 40% 40%, rgba(179,96,32,0.09) 0%, transparent 65%);
  animation: orb-float 20s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 450px; height: 450px; bottom: 0; left: -80px;
  background: radial-gradient(circle, rgba(179,96,32,0.06) 0%, transparent 65%);
  animation: orb-float 26s ease-in-out 2s infinite alternate-reverse;
}
@keyframes orb-float {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(20px,-18px) scale(1.05); }
  100% { transform: translate(-14px,25px) scale(0.96); }
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding: 10rem 3rem 4rem;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 5rem; align-items: center;
}

/* ── Hero text ── */
.hero-label-row {
  display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3rem;
  opacity: 0; animation: slide-up 0.9s var(--spring) 0.1s forwards;
}
.hero-label {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.30em; text-transform: uppercase; color: var(--ink-4);
}
.hero-label em { color: var(--gold); font-style: normal; }
.hero-label-sep { width: 40px; height: 1px; background: var(--ink-5); }

.hero-headline {
  opacity: 0; animation: slide-up 1.1s var(--spring) 0.2s forwards;
}

/* Big serif word block */
.hh-line {
  display: flex; align-items: baseline; flex-wrap: wrap;
  line-height: 0.90;
}
.hh-bold {
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(4rem, 10vw, 10.5rem);
  color: var(--ink); letter-spacing: -0.04em; text-transform: uppercase;
  margin-right: 0.10em;
}
.hh-serif {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(5rem, 11.5vw, 12rem);
  color: var(--gold); letter-spacing: -0.03em;
  margin-right: 0.04em;
}
.hh-stroke {
  font-family: var(--sans); font-weight: 900;
  font-size: clamp(4rem, 10vw, 10.5rem);
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  letter-spacing: -0.04em; text-transform: uppercase;
}

.hero-sub-row {
  display: flex; align-items: flex-end; gap: 4rem; margin-top: 4rem;
  opacity: 0; animation: slide-up 0.95s var(--spring) 0.4s forwards;
}
.hero-sub {
  font-family: var(--body); font-size: 1rem; color: var(--ink-3);
  line-height: 1.80; max-width: 360px;
}
.hero-ctas { display: flex; flex-direction: column; gap: 0.7rem; flex-shrink: 0; }
.hero-ctas-row { display: flex; gap: 0.7rem; }

/* ── Hero right panel ── */
.hero-right {
  display: flex; flex-direction: column; gap: 1rem;
  opacity: 0; animation: slide-up 1.1s var(--spring) 0.5s forwards;
}

/* Stat card — gentle glass, warm shadow */
.hero-stat-card {
  background: #fff;
  border: 1px solid var(--brd);
  border-left: 3px solid var(--gold);   /* Gold left accent band */
  border-radius: var(--r-xl);
  padding: 1.6rem 2rem;
  display: flex; align-items: center; gap: 1.6rem;
  box-shadow: 0 8px 36px rgba(10,9,8,0.10), 0 2px 8px rgba(10,9,8,0.06);
  transform: perspective(900px) translateZ(0);
  transition: transform 0.12s linear, box-shadow 0.35s, border-left-color 0.35s;
  will-change: transform;
  position: relative; overflow: hidden;
}
/* Subtle warm shimmer strip */
.hero-stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 56px;
  background: linear-gradient(to right, rgba(179,96,32,0.05) 0%, transparent 100%);
  pointer-events: none;
}
.hero-stat-card:hover {
  box-shadow: 0 20px 56px rgba(179,96,32,0.20), 0 4px 16px rgba(179,96,32,0.10);
  border-left-color: var(--gold-2);
  transform: perspective(900px) translateY(-3px) translateZ(10px);
}
.hsc-icon {
  width: 54px; height: 54px; border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.15rem; flex-shrink: 0;
  box-shadow: 0 8px 22px rgba(179,96,32,0.36), inset 0 1px 0 rgba(255,255,255,0.25);
}
.hsc-num {
  font-family: var(--serif); font-size: 2.8rem;
  font-weight: 600; color: var(--ink); line-height: 1; letter-spacing: -0.02em;
}
.hsc-label {
  font-family: var(--sans); font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-4); margin-top: 0.25rem;
}

.hero-avail-badge {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.5rem;
  background: #fff;
  border: 1px solid var(--brd);
  border-left: 3px solid #16a34a;
  border-radius: var(--r-xl);
  box-shadow: 0 8px 36px rgba(10,9,8,0.10), 0 2px 8px rgba(10,9,8,0.06);
}
.badge-dot {
  width: 9px; height: 9px; border-radius: 50%; background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.22);
  animation: avail-pulse 2.2s ease-in-out infinite; flex-shrink: 0;
}
.hero-avail-badge span { font-family: var(--sans); font-size: 0.70rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0.04em; }
.hero-avail-badge strong { color: var(--gold); font-weight: 900; }

/* ── Filmstrip ── */
.hero-filmstrip {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1.5px solid var(--ink);
}
.hero-filmstrip::before, .hero-filmstrip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 200px; z-index: 2; pointer-events: none;
}
.hero-filmstrip::before { left:0;  background: linear-gradient(to right, var(--bg), transparent); }
.hero-filmstrip::after  { right:0; background: linear-gradient(to left,  var(--bg), transparent); }
.fs-track {
  display: flex; gap: 0.6rem; padding: 1.2rem 0;
  width: max-content; animation: filmscroll 40s linear infinite;
  transform-style: preserve-3d;
}
.hero-filmstrip:hover .fs-track { animation-play-state: paused; }
.fs-frame {
  height: 240px; width: 320px; flex-shrink: 0;
  border-radius: var(--r); overflow: hidden;
  border: 1.5px solid var(--ink);
  transition: transform 0.6s var(--spring), box-shadow 0.5s;
  box-shadow: 3px 3px 0 var(--ink-5);
}
.fs-frame.fs-wide { width: 480px; }
.fs-frame img {
  width:100%; height:100%; object-fit:cover;
  filter: grayscale(18%) brightness(0.97) contrast(1.04);
  transition: filter 0.7s, transform 0.7s var(--ease);
}
.fs-frame:hover { box-shadow: 6px 6px 0 var(--gold); transform: translateY(-6px); }
.fs-frame:hover img { filter: grayscale(0%) brightness(1.04) contrast(1.02); transform: scale(1.05); }
@keyframes filmscroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   HERO PHOTOGRAPHY ANIMATION LAYER
   All elements are pointer-events:none, placed in the right
   area so they don't overlap the headline text.
════════════════════════════════════════════════════════════ */
.hero-anim {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}

/* ── Aperture rings — top right, slow spin ── */
.ha-aperture {
  position: absolute;
  top: 8%; right: 3%;
  width: 260px; height: 260px;
}
.ha-ap-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(179,96,32,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.ha-ap-r1 { width: 260px; height: 260px; animation: ap-spin 30s linear infinite; }
.ha-ap-r2 { width: 180px; height: 180px; border-style: dashed; border-color: rgba(179,96,32,0.10); animation: ap-spin 20s linear infinite reverse; }
.ha-ap-r3 { width: 100px; height: 100px; border-color: rgba(179,96,32,0.18); animation: ap-spin 14s linear infinite; }
/* Aperture blades — 6 diagonal lines inside outer ring */
.ha-ap-r1::before, .ha-ap-r1::after {
  content: ''; position: absolute;
  width: 100%; height: 1px;
  background: rgba(179,96,32,0.08);
  top: 50%; left: 0; transform-origin: center;
}
.ha-ap-r1::before { transform: translateY(-50%) rotate(60deg); }
.ha-ap-r1::after  { transform: translateY(-50%) rotate(120deg); }

@keyframes ap-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* ── Camera body outline — floats gently, centre-right ── */
.ha-camera {
  position: absolute;
  top: 30%; right: 5%;
  animation: cam-float 9s ease-in-out infinite;
}
.ha-cam-body {
  width: 160px; height: 105px;
  border: 1.5px solid rgba(10,9,8,0.06);
  border-radius: 14px;
  position: relative;
  background: rgba(10,9,8,0.015);
}
/* Lens circle */
.ha-cam-lens {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%;
  border: 1.5px solid rgba(179,96,32,0.14);
  box-shadow: 0 0 0 10px rgba(179,96,32,0.04),
              inset 0 0 0 8px rgba(179,96,32,0.03);
  animation: lens-pulse 4s ease-in-out infinite;
}
.ha-cam-lens::after {
  content: ''; position: absolute; inset: 10px;
  border-radius: 50%; border: 1px solid rgba(179,96,32,0.10);
}
/* Viewfinder bump */
.ha-cam-finder {
  position: absolute; top: -14px; left: 12px;
  width: 40px; height: 14px;
  border: 1.5px solid rgba(10,9,8,0.06);
  border-bottom: none; border-radius: 6px 6px 0 0;
}
/* Mode dial */
.ha-cam-mode {
  position: absolute; bottom: 5px; right: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(179,96,32,0.12);
}

@keyframes cam-float {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(1deg); }
}
@keyframes lens-pulse {
  0%,100% { box-shadow: 0 0 0 10px rgba(179,96,32,0.04), inset 0 0 0 8px rgba(179,96,32,0.03); }
  50%      { box-shadow: 0 0 0 16px rgba(179,96,32,0.07), inset 0 0 0 8px rgba(179,96,32,0.06); }
}

/* ── Lens stack — left side ── */
.ha-lens-stack {
  position: absolute;
  top: 55%; left: 3%;
  width: 140px; height: 140px;
  animation: lens-float 12s ease-in-out infinite alternate;
}
.ha-lens-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}
.ha-lr-1 { width: 140px; height: 140px; border: 1.5px solid rgba(179,96,32,0.10); }
.ha-lr-2 { width: 100px; height: 100px; border: 1px solid rgba(179,96,32,0.08); animation: ap-spin 18s linear infinite reverse; }
.ha-lr-3 { width: 64px;  height: 64px;  border: 1px dashed rgba(179,96,32,0.10); animation: ap-spin 12s linear infinite; }
.ha-lens-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(179,96,32,0.10);
  animation: lens-pulse 3s ease-in-out infinite;
}
@keyframes lens-float {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(10px,-20px) scale(1.07); }
}

/* ── Light leak streaks ── */
.ha-streak {
  position: absolute; pointer-events: none;
  border-radius: 999px;
  filter: blur(8px);
}
.ha-sk-1 {
  width: 3px; height: 220px;
  background: linear-gradient(to bottom, transparent, rgba(179,96,32,0.20), transparent);
  top: 10%; right: 28%;
  transform: rotate(15deg);
  animation: streak-fade 6s ease-in-out infinite alternate;
}
.ha-sk-2 {
  width: 2px; height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(179,96,32,0.14), transparent);
  top: 20%; right: 35%;
  transform: rotate(-8deg);
  animation: streak-fade 8s ease-in-out 2s infinite alternate;
}
@keyframes streak-fade {
  0%,100% { opacity: 0.4; transform: rotate(15deg) scaleY(0.9); }
  50%      { opacity: 1;   transform: rotate(15deg) scaleY(1.1); }
}

/* ── Film strip ── */
.ha-film {
  position: absolute; bottom: 30%; right: 1%;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0.25;
  animation: film-scroll 5s ease-in-out infinite alternate;
}
.ha-film span {
  display: block; width: 20px; height: 14px;
  border: 1.5px solid rgba(10,9,8,0.18);
  border-radius: 2px;
}
@keyframes film-scroll {
  0%   { transform: translateY(0); opacity: 0.18; }
  100% { transform: translateY(-12px); opacity: 0.34; }
}

/* ── Bokeh dots ── */
.ha-bk {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(179,96,32,0.18);
  animation: bk-float linear infinite;
}
.ha-bk-1 { width:28px; height:28px; top:18%; left:18%; animation-duration:11s; animation-delay:0s; }
.ha-bk-2 { width:16px; height:16px; top:70%; left:8%;  animation-duration:14s; animation-delay:-3s; }
.ha-bk-3 { width:36px; height:36px; top:45%; left:55%; animation-duration:9s;  animation-delay:-5s; }
.ha-bk-4 { width:12px; height:12px; top:25%; left:72%; animation-duration:16s; animation-delay:-2s; }
.ha-bk-5 { width:22px; height:22px; top:80%; left:42%; animation-duration:12s; animation-delay:-7s; }
@keyframes bk-float {
  0%   { transform: translateY(0)   scale(1);    opacity: 0.3; }
  50%  { transform: translateY(-22px) scale(1.15); opacity: 0.7; }
  100% { transform: translateY(0)   scale(1);    opacity: 0.3; }
}

/* ── Camera settings readout ── */
.ha-readout {
  position: absolute; bottom: 28%; left: 46%;
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.60rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(179,96,32,0.30);
  animation: readout-blink 4s ease-in-out infinite;
}
.ha-readout .dot { color: rgba(179,96,32,0.18); font-size: 0.8rem; }
@keyframes readout-blink {
  0%,90%,100% { opacity: 0.7; }
  45%          { opacity: 1; }
}

/* ── Hide on small screens ── */
@media (max-width: 768px) { .hero-anim { display: none; } }



/* ════════════════════════════════════════════════════════════
   TICKER
════════════════════════════════════════════════════════════ */
.ticker-bar {
  background: var(--gold); overflow: hidden;
  padding: 0.8rem 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.ticker-track {
  display: flex; gap: 4rem; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-family: var(--sans); font-size: 0.60rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); white-space: nowrap;
}
.ticker-track span .sep { color: rgba(10,9,8,0.35); margin: 0 0.3em; }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   WORK — Portfolio
════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   WORK SECTION — Rich Boxy Editorial Grid
════════════════════════════════════════════════════════════ */
.work-section {
  background: var(--bg-off);
  border-top: 4px solid var(--ink);
  position: relative;
}
/* Subtle dot pattern behind the grid */
.work-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(10,9,8,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.work-section .wrap { position: relative; z-index: 1; }

/* ── Grid ── */
.work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 520px 360px;
  gap: 3px;                        /* Ultra-tight gap — creates thick-frame feel */
  background: var(--ink);          /* The gap colour is the ink — rigid boxy lines */
  border: 3px solid var(--ink);
  box-shadow: 0 32px 80px rgba(10,9,8,0.22), 0 8px 24px rgba(10,9,8,0.12);
}

/* ── Card base ── */
.wg-card {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: 0;
  background: var(--bg-black);
  transform: perspective(1400px) translateZ(0);
  transition: transform 0.14s linear, z-index 0s;
  will-change: transform;
}

/* Gold top accent strip on each card */
.wg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 10;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-3) 50%, var(--gold) 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--spring), opacity 0.3s;
}
.wg-card:hover::before { opacity: 1; transform: scaleX(1); }

/* Viewfinder corner brackets — CSS only */
.wg-card::after {
  content: '';
  position: absolute; inset: 16px; z-index: 10; pointer-events: none;
  background:
    /* top-left */
    linear-gradient(var(--gold), var(--gold)) top left   / 24px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) top left   / 1.5px 24px no-repeat,
    /* top-right */
    linear-gradient(var(--gold), var(--gold)) top right  / 24px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) top right  / 1.5px 24px no-repeat,
    /* bottom-left */
    linear-gradient(var(--gold), var(--gold)) bottom left  / 24px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom left  / 1.5px 24px no-repeat,
    /* bottom-right */
    linear-gradient(var(--gold), var(--gold)) bottom right / 24px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) bottom right / 1.5px 24px no-repeat;
  opacity: 0;
  transition: opacity 0.45s var(--spring);
}
.wg-card:hover::after { opacity: 1; }

/* Image */
.wg-card img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.1s var(--ease), filter 0.8s;
  filter: grayscale(18%) brightness(0.82) contrast(1.10) saturate(0.9);
}
.wg-card:hover img {
  transform: scale(1.01);
  filter: grayscale(0%) brightness(0.92) contrast(1.05) saturate(1.1);
}

/* Portfolio image crops — object-position per card */
.wg-large    img { object-position: center 30%; }  /* Product/handbag — show centre */
.wg-small    img { object-position: center 25%; }  /* Wedding — show couple faces */
.wg-medium-a img { object-position: center 15%; }  /* Portrait — show face top area */
.wg-medium-b img { object-position: center 40%; }  /* Travel/Coastal — show scenery */

.wg-large    { grid-column: 1; grid-row: 1; }
.wg-small    { grid-column: 2; grid-row: 1; }
.wg-medium-a { grid-column: 1; grid-row: 2; }
.wg-medium-b { grid-column: 2; grid-row: 2; }

/* Overlay — richer, deeper */
.wg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(3,2,1,0.97) 0%,
      rgba(3,2,1,0.62) 30%,
      rgba(3,2,1,0.18) 60%,
      transparent 100%),
    linear-gradient(to right, rgba(3,2,1,0.30) 0%, transparent 45%);
  transition: background 0.6s;
}
.wg-card:hover .wg-overlay {
  background:
    linear-gradient(to top,
      rgba(3,2,1,0.98) 0%,
      rgba(3,2,1,0.70) 35%,
      rgba(3,2,1,0.22) 65%,
      transparent 100%),
    linear-gradient(to right, rgba(3,2,1,0.40) 0%, transparent 50%);
}

/* Info block */
.wg-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2.2rem 2rem;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}

/* Category pill */
.wg-cat {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-family: var(--sans); font-size: 0.55rem; font-weight: 900;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-3);
  background: rgba(179,96,32,0.15);
  border: 1px solid rgba(179,96,32,0.30);
  padding: 0.2rem 0.65rem;
}
.wg-cat::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold-3); flex-shrink: 0;
}

/* Title */
.wg-title {
  display: block; font-family: var(--serif);
  font-size: 1.65rem; font-weight: 300; font-style: italic;
  color: #fff; line-height: 1.15; letter-spacing: 0.01em;
  transform: translateY(12px);
  transition: transform 0.55s var(--spring), text-shadow 0.4s;
}
.wg-card:hover .wg-title {
  transform: translateY(0);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Arrow CTA — slides in on hover */
.wg-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.6); font-size: 0.85rem; flex-shrink: 0;
  align-self: flex-end;
  opacity: 0; transform: translateY(8px) translateX(-4px);
  transition: opacity 0.45s var(--spring), transform 0.45s var(--spring),
              border-color 0.3s, background 0.3s, color 0.3s;
}
.wg-card:hover .wg-arrow {
  opacity: 1; transform: translateY(0) translateX(0);
  border-color: var(--gold); color: var(--gold);
  background: rgba(179,96,32,0.12);
}

/* Number watermark — large ghost */
.wg-num {
  position: absolute; bottom: 1.6rem; right: 1.8rem;
  font-family: var(--sans); font-weight: 900; font-size: 5.5rem;
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  color: transparent; line-height: 1; pointer-events: none;
  transition: -webkit-text-stroke-color 0.5s, transform 0.5s var(--spring);
}
.wg-card:hover .wg-num {
  -webkit-text-stroke-color: rgba(242,194,122,0.28);
  transform: scale(1.04) translateY(-4px);
}

/* ── View All — Dramatic Gold Bar ── */
.work-view-all {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 2.5rem; margin-top: 3px;
  background: var(--ink); color: rgba(255,255,255,0.75);
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: color 0.4s;
  border: 3px solid var(--ink);
}
/* Gold fill swipe — left to right */
.work-view-all::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-2) 60%, var(--gold-3) 100%);
  transform: translateX(-102%);
  transition: transform 0.55s var(--spring);
  z-index: 0;
}
.work-view-all:hover::before { transform: translateX(0); }
.work-view-all:hover { color: #fff; box-shadow: 0 8px 32px rgba(179,96,32,0.40); }
.work-view-all span, .work-view-all i { position: relative; z-index: 1; }
.work-view-all span {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 900;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.work-view-all i { font-size: 1.1rem; transition: transform 0.45s var(--spring); }
.work-view-all:hover i { transform: translateX(8px); }


/* ════════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════════ */
.services-section { background: var(--bg); border-top: 1.5px solid var(--ink); }

.services-list { border-top: 2px solid var(--ink); }
.srv { border-bottom: 1.5px solid var(--brd-2); }
.srv.open { background: var(--bg-off); }

.srv-top {
  display: grid; grid-template-columns: 6rem 1fr auto auto;
  gap: 2rem; align-items: center;
  padding: 2.5rem 0; cursor: pointer;
  transition: padding-left 0.4s var(--spring);
}
.srv:hover .srv-top { padding-left: 1rem; }

.srv-num {
  font-family: var(--sans); font-weight: 900; font-size: 2.2rem;
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent; letter-spacing: -0.04em;
  transition: color 0.35s, -webkit-text-stroke-color 0.35s;
}
.srv:hover .srv-num, .srv.open .srv-num {
  color: var(--gold); -webkit-text-stroke-color: var(--gold);
}
.srv-name {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--ink); margin-bottom: 0.15rem; transition: color 0.35s;
}
.srv:hover .srv-name, .srv.open .srv-name { color: var(--gold); font-style: italic; }
.srv-sub { font-family: var(--body); font-size: 0.82rem; color: var(--ink-3); }

.srv-tags { display:flex; gap:0.4rem; flex-wrap:wrap; justify-content:flex-end; }
.srv-tags span {
  font-family: var(--sans); font-size: 0.60rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid var(--brd-2);
  padding: 0.25rem 0.85rem; color: var(--ink-3);
  transition: var(--t);
}
.srv.open .srv-tags span, .srv:hover .srv-tags span {
  border-color: var(--gold); color: var(--gold); background: var(--gold-dim);
}

.srv-toggle {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1.5px solid var(--brd-2); color: var(--ink-3);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  background: #fff; transition: var(--t);
  border-radius: 4px;
}
.srv-toggle i { transition: transform 0.45s var(--spring); }
.srv.open .srv-toggle { border-color: var(--ink); background: var(--ink); color: var(--gold); }
.srv.open .srv-toggle i { transform: rotate(45deg); }

.srv-body { max-height: 0; overflow: hidden; transition: max-height 0.65s var(--spring); }
.srv.open .srv-body { max-height: 540px; }
.srv-body-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 0 0 3rem 8rem; }
.srv-body-left p { font-size: 0.93rem; color: var(--ink-3); line-height: 1.85; margin-bottom: 1.75rem; }
.srv-body-left ul { display:flex; flex-direction:column; gap:0.65rem; }
.srv-body-left ul li {
  display:flex; align-items:center; gap:0.8rem;
  font-family:var(--body); font-size:0.875rem; color:var(--ink-2);
}
.srv-body-left ul li i { color: var(--gold); font-size: 0.65rem; }
.srv-body-img { overflow:hidden; aspect-ratio:16/10; border: 1.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink-5); }
.srv-body-img img { width:100%; height:100%; object-fit:cover; filter: contrast(1.04); }

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
/* ═══ ABOUT — Warm Ivory Section ═══════════════════════════ */
.about-section {
  background: var(--bg-warm);
  border-top: 1.5px solid var(--brd);
  position: relative; overflow: hidden;
}
.about-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at -5% 50%, rgba(179,96,32,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 105% 50%, rgba(179,96,32,0.05) 0%, transparent 55%);
}

.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:8rem; align-items:center; position:relative; z-index:1; }

.about-img-wrap { position:relative; }
.about-img {
  width:100%; aspect-ratio:3/4; object-fit:cover;
  border-radius: var(--r-xl);
  box-shadow: 0 40px 80px rgba(10,9,8,0.18), 0 8px 24px rgba(10,9,8,0.10);
  filter: contrast(1.04);
}
/* Elegant gold offset frame */
.about-img-wrap::before {
  content: ''; position:absolute;
  inset: -1.4rem -1.4rem 1.4rem 1.4rem;
  border: 1.5px solid var(--gold-brd); border-radius: var(--r-xl); z-index: -1;
}
.about-img-wrap::after { display: none; }

.about-img-caption {
  position:absolute; bottom:2rem; left:2rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--brd);
  border-radius: var(--r-lg);
  padding: 0.9rem 1.3rem;
  box-shadow: 0 8px 32px rgba(10,9,8,0.12);
}
.aic-role { font-family:var(--sans); font-size:0.56rem; font-weight:800; letter-spacing:0.20em; text-transform:uppercase; color:var(--gold); margin-bottom:0.25rem; }
.aic-name { font-family:var(--serif); font-size:1.5rem; font-weight:600; color:var(--ink); }

.about-quote {
  margin: 2.8rem 0;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(10px);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: 0 4px 24px rgba(10,9,8,0.06);
  font-family:var(--serif); font-size:1.5rem; font-weight:300; font-style:italic;
  color: var(--ink-2); line-height:1.58;
}
.about-quote i { color:var(--gold); margin-right:0.4rem; font-size:0.95em; }
.about-quote cite {
  display:block; font-style:normal;
  font-family:var(--sans); font-size:0.64rem; font-weight:800;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); margin-top:1rem;
}

.about-stats-row {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:0.8rem; margin-top:3rem; padding-top:3rem;
  border-top: 1px solid rgba(179,96,32,0.18);
}
.as-item {
  padding: 1.5rem 1.4rem;
  background: rgba(255,255,255,0.80);
  border: 1px solid var(--brd);
  border-radius: var(--r-lg);
  display:flex; flex-direction:column; gap:0.3rem;
  box-shadow: 0 4px 18px rgba(10,9,8,0.07);
  backdrop-filter: blur(8px);
  transform: perspective(900px) translateZ(0);
  transition: transform 0.12s linear, box-shadow 0.3s, border-color 0.3s;
  will-change: transform;
}
.as-item:hover { box-shadow: 0 14px 40px rgba(179,96,32,0.16); border-color: var(--gold-brd); }
.as-item strong { font-family:var(--serif); font-size:3rem; font-weight:600; color:var(--gold); line-height:1; letter-spacing:-0.02em; }
.as-item span   { font-family:var(--sans); font-size:0.60rem; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--ink-3); }

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--bg); border-top: 1.5px solid var(--ink); }
.sh-center { text-align: center; }
.sh-center .eyebrow { justify-content:center; }
.sh-center .eyebrow::before { display:none; }

.testimonials-scroller { overflow-x:auto; scrollbar-width:none; cursor:grab; padding-bottom:2rem; }
.testimonials-scroller::-webkit-scrollbar { display:none; }
.testimonials-scroller.grabbing { cursor:grabbing; }
.ts-track { display:flex; gap:1rem; width:max-content; }

.ts-card {
  width: 420px; flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--brd);
  border-top: 3px solid transparent;     /* gold reveals on hover */
  padding: 2.8rem 2.6rem 2.4rem;
  display: flex; flex-direction: column; gap: 1.6rem;
  box-shadow: 0 4px 28px rgba(10,9,8,0.07), 0 1px 6px rgba(10,9,8,0.04);
  transform: perspective(1000px) translateZ(0);
  transition: transform 0.12s linear, box-shadow 0.4s, border-top-color 0.4s;
  will-change: transform;
  position: relative;
}
/* Big decorative quote mark */
.ts-card::before {
  content: '\201C';
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: var(--serif); font-size: 5rem; font-weight: 700;
  color: rgba(179,96,32,0.08); line-height: 1;
  pointer-events: none; user-select: none;
}
.ts-card:hover {
  box-shadow: 0 20px 56px rgba(179,96,32,0.16), 0 4px 16px rgba(179,96,32,0.08);
  border-top-color: var(--gold);
  transform: perspective(1000px) translateY(-4px) translateZ(10px);
}

/* Featured card — rich dark version */
.ts-card-featured {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-top: 3px solid var(--gold);
  box-shadow: 0 20px 56px rgba(10,9,8,0.30), 0 4px 16px rgba(10,9,8,0.20);
}
.ts-card-featured::before { color: rgba(179,96,32,0.15); }
.ts-card-featured:hover {
  box-shadow: 0 28px 72px rgba(10,9,8,0.40), 0 8px 24px rgba(179,96,32,0.18);
  border-top-color: var(--gold-3);
}
.ts-card-featured p { color: rgba(255,255,255,0.75); }
.ts-card-featured .ts-meta strong { color: #fff; }
.ts-card-featured .ts-meta span   { color: rgba(255,255,255,0.40); }

.ts-stars   { display: flex; gap: 0.25rem; }
.ts-stars i { color: var(--gold); font-size: 0.78rem; }
.ts-card-featured .ts-stars i { color: var(--gold-3); }

.ts-card p  {
  font-family: var(--serif); font-size: 1.05rem; font-style: italic;
  font-weight: 300; line-height: 1.88; color: var(--ink-2); flex: 1;
  letter-spacing: 0.01em;
}

.ts-author  { display: flex; align-items: center; gap: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--brd); }
.ts-card-featured .ts-author { border-top-color: rgba(255,255,255,0.08); }
.ts-avatar {
  width: 48px; height: 48px; border-radius: 50%;   /* Circular */
  background: linear-gradient(145deg, var(--gold) 0%, var(--gold-2) 100%);
  border: 2px solid rgba(179,96,32,0.20);
  color: #fff; font-family: var(--sans); font-size: 0.62rem; font-weight: 900;
  letter-spacing: 0.04em;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(179,96,32,0.30);
}
.ts-card-featured .ts-avatar {
  background: linear-gradient(145deg, var(--gold-3) 0%, var(--gold) 100%);
  border-color: rgba(242,194,122,0.40);
  color: var(--ink);
}
.ts-meta strong {
  display: block; font-family: var(--sans); font-size: 0.88rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.01em;
}
.ts-meta span { font-family: var(--body); font-size: 0.76rem; color: var(--ink-3); }

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-off); border-top: 1.5px solid var(--ink); position:relative; overflow:hidden; }

.contact-inner {
  display:grid; grid-template-columns:1fr 1.3fr;
  gap:8rem; align-items:start; position:relative; z-index:1;
}

.contact-h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.5vw, 5.5rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.04; margin-bottom: 3rem;
}
.contact-h2 em { font-style: italic; color: var(--gold); }
.contact-h2 .stroke { -webkit-text-stroke: 1.5px var(--ink); color: transparent; font-weight: 700; }

.contact-details { display:flex; flex-direction:column; gap:0.5rem; margin-bottom:2.5rem; }
.cd-item {
  display:flex; align-items:center; gap:1rem;
  font-family:var(--body); font-size:0.9rem; color:var(--ink-3);
  padding:0.8rem 1rem; border-left: 2px solid transparent;
  transition:var(--t);
}
.cd-item:hover { color:var(--gold); border-left-color:var(--gold); padding-left:1.4rem; background:var(--gold-dim); }
.cd-item i { color:var(--gold); width:18px; text-align:center; }

.contact-socials { display:flex; gap:0.5rem; }
.cs-link {
  width:44px; height:44px;
  border: 1.5px solid var(--brd-2); background:#fff;
  display:flex; align-items:center; justify-content:center;
  color:var(--ink-3); font-size:0.95rem;
  transition:var(--t); box-shadow: 2px 2px 0 var(--ink-5);
}
.cs-link:hover { border-color:var(--ink); color:#fff; background:var(--ink); box-shadow:3px 3px 0 var(--gold); transform:translate(-1px,-1px); }

/* Form card */
.cf-wrapper {
  background: #fff; border: 1.5px solid var(--ink);
  padding: 2.75rem 3rem;
  box-shadow: 8px 8px 0 var(--ink);
}

.cf { display:flex; flex-direction:column; gap:1rem; }
.cf-row { display:flex; flex-direction:column; gap:1rem; }
.cf-row-half { flex-direction:row; }
.cf-row-half .cf-field { flex:1; }
.cf-field { display:flex; flex-direction:column; gap:0.45rem; }
.cf-field label {
  font-family:var(--sans); font-size:0.62rem; font-weight:800;
  letter-spacing:0.18em; text-transform:uppercase; color:var(--ink);
}
.cf-field input, .cf-field textarea, .cf-field select {
  background: var(--bg-off);
  border: 1.5px solid var(--brd-2);
  border-top: none; border-left: none; border-right: none; /* Bottom border only */
  border-bottom: 2px solid var(--brd-2);
  color: var(--ink); font-family:var(--body); font-size:0.9rem;
  padding: 0.9rem 0.2rem; outline:none;
  border-radius: 0;
  background: transparent;
  transition: border-color 0.3s;
  -webkit-appearance:none; appearance:none;
}
.cf-field input::placeholder, .cf-field textarea::placeholder { color:var(--ink-4); }
.cf-field input:focus, .cf-field textarea:focus, .cf-field select:focus { border-bottom-color:var(--gold); }
.cf-field textarea { resize:vertical; min-height:100px; }
.cf-field select { cursor:pointer; }
.cf-field select option { background:#fff; color:var(--ink); }

.cf-submit {
  display:flex; align-items:center; justify-content:space-between;
  gap:0.75rem; width:100%; cursor:pointer;
  background: var(--ink); color:#fff;
  font-family:var(--sans); font-size:0.72rem; font-weight:800;
  letter-spacing:0.14em; text-transform:uppercase;
  padding: 1.2rem 1.2rem 1.2rem 2rem;
  border: 1.5px solid var(--ink);
  transition: transform 0.22s var(--spring), box-shadow 0.22s, background 0.32s;
  box-shadow: 4px 4px 0 var(--gold);
  margin-top: 0.8rem;
}
.cf-submit-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,0.10);
  display:flex; align-items:center; justify-content:center;
  border: 1px solid rgba(255,255,255,0.16);
}
.cf-submit:hover { background:var(--gold); box-shadow: 6px 6px 0 var(--ink); transform: translate(-2px,-2px); border-color:var(--gold); }
.cf-submit:active { transform: translate(2px,2px); box-shadow:0 0 0; }

.cf-success {
  display:none; align-items:center; gap:0.75rem;
  color:#16a34a; font-size:0.9rem; font-weight:600;
  padding:1rem 1.2rem;
  background: rgba(22,163,74,0.07); border-left: 3px solid #16a34a;
  margin-top:0.5rem;
}
.cf-success.show { display:flex; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-black);
  border-top: 4px solid var(--gold);
  position: relative; overflow: hidden;
}

/* Large watermark brand name */
.footer-watermark {
  position: absolute; bottom: -2rem; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-weight: 900; font-size: clamp(60px, 10vw, 160px);
  -webkit-text-stroke: 1px rgba(179,96,32,0.08); color: transparent;
  letter-spacing: -0.04em; text-transform: uppercase;
  white-space: nowrap; pointer-events: none; user-select: none;
}

.footer-top {
  display:grid; grid-template-columns:1.4fr 1fr 1fr;
  gap:5rem; padding:7rem 0 6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position:relative; z-index:1;
}

.footer-brand { display:flex; flex-direction:column; gap:1rem; }
.footer-logo-wrap { display:flex; align-items:center; gap:0.9rem; }
.footer-logo-mark {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; background:var(--gold); flex-shrink:0;
}
.footer-logo-mark svg { display:block; }
.footer-name { font-family:var(--sans); font-size:0.90rem; font-weight:900; color:#fff; letter-spacing:0.12em; text-transform:uppercase; }
.footer-tagline { font-family:var(--serif); font-size:1.25rem; font-style:italic; color:rgba(255,255,255,0.35); line-height:1.5; max-width:260px; }
.footer-desc { font-family:var(--body); font-size:0.875rem; color:rgba(255,255,255,0.32); line-height:1.82; max-width:280px; }
.footer-avail {
  display:inline-flex; align-items:center; gap:0.5rem;
  font-family:var(--sans); font-size:0.64rem; font-weight:800;
  letter-spacing:0.18em; text-transform:uppercase; color:#4ade80;
}
.footer-avail-dot { width:6px; height:6px; border-radius:50%; background:#4ade80; box-shadow:0 0 0 3px rgba(74,222,128,0.20); animation:avail-pulse 2.2s ease-in-out infinite; }

.footer-links-col h4, .footer-contact-col h4 {
  font-family:var(--sans); font-size:0.58rem; font-weight:900;
  letter-spacing:0.28em; text-transform:uppercase; color:var(--gold);
  margin-bottom:2rem; padding-bottom:0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links-col a {
  display:flex; align-items:center; gap:0.5rem;
  font-family:var(--sans); font-size:0.80rem; font-weight:500;
  color:rgba(255,255,255,0.38); margin-bottom:1rem;
  transition: color 0.35s, gap 0.35s;
}
.footer-links-col a i { font-size:0.55rem; color:var(--gold); opacity:0; transition:opacity 0.35s; }
.footer-links-col a:hover { color:rgba(255,255,255,0.85); gap:0.9rem; }
.footer-links-col a:hover i { opacity:1; }

.footer-contact-item {
  display:flex; align-items:center; gap:0.75rem;
  font-family:var(--body); font-size:0.84rem; color:rgba(255,255,255,0.38);
  margin-bottom:0.9rem; transition:color 0.35s;
}
.footer-contact-item i { color:var(--gold); width:16px; text-align:center; font-size:0.78rem; }
.footer-contact-item:hover { color:rgba(255,255,255,0.80); }

.footer-socials-row { display:flex; gap:0.5rem; margin-top:2rem; }
.footer-socials-row a {
  width:40px; height:40px;
  border: 1.5px solid rgba(255,255,255,0.10);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.38); font-size:0.9rem;
  transition: var(--t);
}
.footer-socials-row a:hover { border-color:var(--gold); color:var(--gold); background:rgba(179,96,32,0.10); transform:translateY(-3px) translate(-1px,-1px); box-shadow:3px 3px 0 var(--gold); }

.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding:2rem 0; gap:1rem; flex-wrap:wrap; position:relative; z-index:1;
}
.footer-copy { font-family:var(--sans); font-size:0.68rem; color:rgba(255,255,255,0.18); letter-spacing:0.06em; text-transform: uppercase; }
.footer-note { font-family:var(--sans); font-size:0.66rem; color:rgba(255,255,255,0.18); display:flex; align-items:center; gap:0.4rem; }
.footer-note i { color:var(--gold); }

/* ════════════════════════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════════════════════════ */
@keyframes slide-up {
  from { opacity:0; transform:translateY(42px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ════════════════════════════════════════════════════════════
   PERFORMANCE — reduce paint / layout for offscreen sections
════════════════════════════════════════════════════════════ */
.work-section,
.services-section,
.about-section,
.reviews-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ════════════════════════════════════════════════════════════
   CROSS-BROWSER — ensure transforms work everywhere
════════════════════════════════════════════════════════════ */
.wg-card, .ts-card, .hero-stat-card, .srv-item {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/* Scrollable tracks — smooth momentum on iOS */
.ts-outer, .hero-filmstrip {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  scrollbar-width: none;
}
.ts-outer::-webkit-scrollbar,
.hero-filmstrip::-webkit-scrollbar { display: none; }

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION — disable heavy animations for users who
   prefer it AND for all mobile browsers (performance)
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-orb-1, .hero-orb-2,
  .ha-aperture, .ha-ap-ring, .ha-camera,
  .ha-lens-stack, .ha-streak, .ha-film,
  .ha-bk, .ha-readout { display: none; }
}

/* ════════════════════════════════════════════════════════════
   BREAKPOINT — 1200px (large tablets / small laptops)
════════════════════════════════════════════════════════════ */
@media (max-width:1200px) {
  .wrap { padding:0 2rem; }
  .nav  { padding:1.2rem 2rem; }
  .nav.stuck { padding:0.75rem 2rem; }
  .hero-inner { grid-template-columns:1fr; padding:11rem 2rem 4rem; }
  .hero-right  { flex-direction:row; flex-wrap:wrap; }
  .hero-stat-card { flex:1; min-width:180px; }
  .work-grid { grid-template-columns:1fr 1fr; grid-template-rows:380px 270px; }
  .wg-large { grid-column:1/3; }
  .wg-small { grid-column:1; grid-row:2; }
  .wg-medium-a { grid-column:2; grid-row:2; }
  .wg-medium-b { display:none; }
  .about-grid { grid-template-columns:1fr; gap:4rem; }
  .about-img-wrap { max-width:480px; }
  .contact-inner { grid-template-columns:1fr; gap:4rem; }
  .footer-top { grid-template-columns:1fr 1fr; gap:3rem; padding:5rem 0 4rem; }
  .footer-contact-col { grid-column:1/-1; }
}

/* ════════════════════════════════════════════════════════════
   BREAKPOINT — 900px
════════════════════════════════════════════════════════════ */
@media (max-width:900px) {
  .sh-split { flex-direction:column; gap:1.5rem; }
  .sh-right p { max-width:100%; }
}

/* ════════════════════════════════════════════════════════════
   BREAKPOINT — 768px (tablets + large phones)
════════════════════════════════════════════════════════════ */
@media (max-width:768px) {

  /* ── Nav ── */
  .nav { padding:1rem 1.4rem; }
  .nav.stuck { padding:0.7rem 1.4rem; }
  .nav-center, .nav-avail { display:none; }
  .nav-burger { display:flex; }
  .nav-center.open {
    display:flex; flex-direction:column;
    position:fixed; inset:0; top:56px;
    background: rgba(255,255,255,0.99);
    -webkit-backdrop-filter:blur(20px);
    backdrop-filter:blur(20px);
    padding:2rem 1.5rem; gap:0; z-index:490;
    border-top:2px solid var(--ink);
    overflow-y:auto;
  }
  .nav-center.open .nl {
    font-family:var(--sans); font-size:1.4rem; font-weight:900;
    color:var(--ink); padding:1rem 0;
    letter-spacing:0.06em; text-transform:uppercase;
    border-bottom:1px solid var(--brd);
    min-height:48px; display:flex; align-items:center; /* touch target */
  }

  /* ── Sections ── */
  .section { padding:4.5rem 0; }
  .wrap { padding:0 1.4rem; }
  .eyebrow { font-size:0.56rem; }
  .sec-h2 { font-size:clamp(2.2rem,7vw,3.5rem); }

  /* ── Hero ── */
  .hero-inner { padding:8rem 1.4rem 3rem; gap:2.5rem; }
  .hero-right { flex-direction:column; gap:0.75rem; }
  .hero-stat-card { width:100%; padding:1.2rem 1.4rem; gap:1.2rem; }
  .hsc-num { font-size:2.2rem; }
  .hero-avail-badge { width:100%; }
  .hero-label-row { gap:1rem; margin-bottom:1.8rem; flex-wrap:wrap; }
  .hero-label { font-size:0.52rem; }
  .hero-label-sep { display:none; }
  .hero-filmstrip { margin-top:2rem; }

  /* Disable heavy hero animation on mobile — saves battery + CPU */
  .hero-anim, .hero-orb-1, .hero-orb-2, .hero-bg-num { display:none; }

  /* ── Work grid ── */
  .work-grid {
    grid-template-columns:1fr;
    grid-template-rows:260px 240px 240px;
    gap:2px;
  }
  .wg-large  { grid-column:1; grid-row:1; }
  .wg-small  { grid-column:1; grid-row:2; }
  .wg-medium-a { grid-column:1; grid-row:3; }
  .wg-medium-b { display:none; }
  .wg-title { font-size:1.3rem; }
  .wg-num   { font-size:3.5rem; bottom:1rem; right:1rem; }
  .work-view-all { padding:1.4rem 1.5rem; }
  .work-view-all span { font-size:0.65rem; letter-spacing:0.14em; }

  /* Disable card 3D tilt on mobile — pointless without mouse */
  .wg-card { transform:none !important; }
  /* Disable heavy blur + backdrop on mobile */
  .wg-overlay { -webkit-backdrop-filter:none; backdrop-filter:none; }

  /* ── Services ── */
  .srv-top { grid-template-columns:3.5rem 1fr auto; gap:0.75rem; }
  .srv-tags { display:none; }
  .srv-body-inner { grid-template-columns:1fr; gap:1.5rem; padding:0 0 2rem 4.5rem; }
  .srv-body-img { display:none; }
  .srv-num { font-size:0.65rem; width:38px; height:38px; }

  /* ── About ── */
  .about-stats-row { grid-template-columns:1fr 1fr; gap:1rem; }
  .about-stat-card { padding:1.5rem 1.2rem; }
  .about-stat-num  { font-size:2.2rem; }

  /* ── Reviews ── */
  .ts-track { padding: 0 1.4rem !important; }
  .ts-card  { width:86vw; max-width:340px; padding:2rem 1.6rem; }
  .ts-card p { font-size:0.95rem; line-height:1.75; }
  /* Disable card 3D tilt on mobile */
  .ts-card { transform:none !important; }
  /* Disable ts-card::before heavy pseudo on mobile */
  .ts-card::before { font-size:3rem; top:1rem; right:1.2rem; }

  /* ── Contact ── */
  .cf-wrapper { padding:1.8rem 1.4rem; box-shadow:none; border:1.5px solid var(--brd); }
  .cf-row-half { flex-direction:column; gap:0; }
  .cf-submit { width:100%; justify-content:center; }

  /* ── Footer ── */
  .footer-top { grid-template-columns:1fr; gap:2rem; padding:3rem 0 2.5rem; }
  .footer-desc { max-width:100%; font-size:0.85rem; }
  .footer-bottom { flex-direction:column; align-items:flex-start; gap:0.4rem; }
  .footer-watermark { display:none; }
  .footer-socials-row { gap:0.5rem; }
  .footer-socials-row a { width:36px; height:36px; font-size:0.8rem; }
}

/* ════════════════════════════════════════════════════════════
   BREAKPOINT — 480px (small phones)
════════════════════════════════════════════════════════════ */
@media (max-width:480px) {
  .wrap { padding:0 1rem; }
  .nav  { padding:0.85rem 1rem; }

  /* Hero text scale */
  .hero-inner  { padding:7rem 1rem 2.5rem; gap:2rem; }
  .hh-bold   { font-size:clamp(2.6rem,13.5vw,4.5rem); }
  .hh-serif  { font-size:clamp(3rem,14.5vw,5.5rem); }
  .hh-stroke { font-size:clamp(2.6rem,13.5vw,4.5rem); }
  .hero-sub  { font-size:0.82rem; }

  /* Buttons full-width */
  .hero-ctas-row { flex-direction:column; gap:0.75rem; }
  .btn-primary, .btn-outline { width:100%; justify-content:center; }

  /* Stat cards stack */
  .hero-stat-card { min-width:unset; }
  .hsc-num { font-size:2rem; }

  /* Work grid */
  .work-grid { grid-template-rows:220px 210px 210px; }
  .wg-info   { padding:1.5rem 1.2rem 1.2rem; }
  .wg-title  { font-size:1.15rem; }

  /* Reviews */
  .ts-card { width:88vw; max-width:320px; padding:1.8rem 1.4rem; }
  .ts-card p { font-size:0.9rem; }
  .ts-avatar { width:40px; height:40px; font-size:0.58rem; }

  /* Section headings */
  .sec-h2 { font-size:clamp(2rem,9vw,3rem); }
  .section { padding:3.5rem 0; }

  /* Contact */
  .cf-wrapper { padding:1.5rem 1rem; }

  /* Filmstrip */
  .fs-frame { height:160px; width:220px; }
  .fs-frame.fs-wide { width:320px; }
}

/* ════════════════════════════════════════════════════════════
   SAFE AREA — iPhone notch / home-bar / Android cutout
════════════════════════════════════════════════════════════ */
@supports (padding: env(safe-area-inset-left)) {
  .nav  { padding-left: max(1.4rem, env(safe-area-inset-left)); padding-right: max(1.4rem, env(safe-area-inset-right)); }
  .wrap { padding-left: max(1.4rem, env(safe-area-inset-left)); padding-right: max(1.4rem, env(safe-area-inset-right)); }
  .footer { padding-bottom: env(safe-area-inset-bottom); }
}

/* ════════════════════════════════════════════════════════════
   MOBILE PERFORMANCE — disable expensive effects on touch
════════════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  /* No hover states needed — remove box-shadow transitions */
  .wg-card, .ts-card, .hero-stat-card { transition: none; }
  /* Disable backdrop-filter entirely — major GPU drain on mobile */
  .noise-overlay,
  .hero-stat-card { -webkit-backdrop-filter: none; backdrop-filter: none; }
  /* Disable tilt animations */
  .tilt-3d { transform: none !important; }
  /* Free GPU layers — will-change uses a full GPU texture per element */
  *, *::before, *::after { will-change: auto !important; }
  /* Contain images so repaints don't cascade */
  img { contain: strict; }
}

