*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Theatre-dark palette — midnight blue backgrounds, saturated blue reserved
     strictly for interactive elements, warm orange for decorative accents. */
  --white: #0B1220;       /* primary background (was pure white) */
  --off: #101C30;         /* lifted panel/alternating-section tone (was off-white) */
  --light: #1B2740;       /* border/divider tone (was light grey) */
  --line: #26314A;        /* hairline borders (was mid grey) */
  --t3: #8A96AC;          /* caption/tertiary text (was dark grey) */
  --t2: #B7C0D1;          /* body text (was mid grey) */
  --t1: #F2F2F0;          /* headings/primary text (was near-black) */
  --black: #05070C;
  --dark: #0B1220;        /* deepest bands (Team/Process/Footer) */
  --dark2: #141F35;
  --dark3: #1E2C48;
  --blue: #2F6FED;              /* interactive-only saturated blue */
  --blue-h: #4C86FF;            /* interactive hover state */
  --blue-lt: rgba(47,111,237,.14);
  --blue-dark: #2F6FED;         /* converged — no separate light/dark-bg blue needed now */
  --orange: #E8641C;            /* decorative accent — labels, dividers, flourishes */
  --orange-h: #F0803D;
  --orange-lt: rgba(232,100,28,.14);
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-script: 'Qwitcher Grypen', cursive;
  --r: 18px;
  --r-sm: 12px;
  --r-lg: 24px;
  --shadow: 0 2px 16px rgba(0,0,0,.35), 0 1px 4px rgba(0,0,0,.25);
  --shadow-md: 0 8px 32px rgba(0,0,0,.45), 0 2px 8px rgba(0,0,0,.3);
  --max: 980px;
  --wide: 1200px;
}
html { scroll-behavior: smooth; overflow-y: scroll; }
body {
  background: var(--white);
  color: var(--t1);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.47059;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
::selection { background: rgba(47,111,237,.28); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
  background: rgba(11,18,32,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s, border-color .3s;
}
/* Nav is always the dark-glass treatment now — the whole site is one
   consistent dark theme, so the old scroll-based light/dark toggle
   (which assumed a full-viewport hero on every page) is retired. */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 22px;
  background: rgba(11,18,32,.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* UPDATED: larger logo with spacing between A L E K A M O I and Studios */
.nav-logo {
  font-family: var(--font-display);
  color: #f5f5f7; text-decoration: none; transition: color .2s;
  white-space: nowrap;
  display: flex; align-items: center;
}
.nav-logo-icon {
  height: 62px; width: auto; display: block;
  opacity: 0; animation: navLogoFade .8s ease .2s forwards;
}
@keyframes navLogoFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav-links {
  display: none; list-style: none; gap: 0;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 12px; font-weight: 400; color: rgba(245,245,247,.64);
  text-decoration: none; padding: 0 14px; transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #f5f5f7; }


/* ── BUTTONS ── */
.btn-b {
  display: inline-block; font-size: 17px; font-weight: 400;
  color: #fff; background: var(--blue);
  padding: 12px 24px; border-radius: 980px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s; letter-spacing: -.01em;
}
.btn-b:hover { background: var(--blue-h); }
.btn-bw {
  display: inline-block; font-size: 17px; font-weight: 400;
  color: #f5f5f7; background: transparent;
  padding: 11px 24px; border-radius: 980px;
  border: 1px solid rgba(245,245,247,.3);
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.btn-bw:hover { border-color: rgba(245,245,247,.55); background: rgba(245,245,247,.06); }
.btn-o {
  display: inline-block; font-size: 15px; font-weight: 400;
  color: var(--blue); border: 1px solid rgba(47,111,237,.35);
  background: transparent; padding: 9px 22px; border-radius: 980px;
  text-decoration: none; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-o:hover { background: var(--blue-lt); border-color: var(--blue); }
.btn-ow {
  display: inline-block; font-size: 15px; font-weight: 400;
  color: var(--blue); border: 1px solid rgba(47,111,237,.35);
  background: transparent; padding: 9px 22px; border-radius: 980px;
  text-decoration: none; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-ow:hover { background: rgba(47,111,237,.12); border-color: var(--blue); }
.lnk {
  font-size: 17px; color: var(--blue); text-decoration: none;
  display: inline-flex; align-items: center; gap: 2px; transition: color .2s;
}
.lnk::after { content: ' ›'; }
.lnk:hover { color: var(--blue-h); }
.lnk.w { color: var(--blue-dark); }
.lnk.w:hover { color: #8ba9d1; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 22px 80px;
  position: relative; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; opacity: .5;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 38%, rgba(0,0,0,.35) 62%, rgba(0,0,0,.82) 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 70% 55% at 50% 30%, rgba(232,100,28,.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

/* Primary hero identity — the studio, not the founder */
.hero-brand {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 5.4vw, 58px);
  color: #f5f5f7; letter-spacing: -0.01em; line-height: 1.05;
  opacity: 0; animation: fadeUp .8s ease .3s forwards;
}
.hero-brand-sub {
  font-size: clamp(14px, 1.8vw, 16px); font-weight: 400;
  color: rgba(245,245,247,.55); letter-spacing: .02em;
  margin: 12px 0 0;
  opacity: 0; animation: fadeUp .7s ease .55s forwards;
}
.hero-founder-line {
  margin-top: 22px;
  font-size: 13.5px; font-weight: 300; font-style: italic;
  color: rgba(245,245,247,.4);
  opacity: 0; animation: fadeUp .6s ease 1.6s forwards;
}

/* Signature — kept for reuse on Team/Studio bios; not used in the Home hero anymore */
.hero-eye {
  font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,245,247,.5);
  margin-bottom: 18px;
  opacity: 0; animation: fadeUp .7s ease .3s forwards;
}
.hero-signature {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
  display: inline-block;
  opacity: 0;
  animation: signatureReveal 1.7s cubic-bezier(.22,.61,.36,1) .55s forwards;
}
.hero-signature { font-size: clamp(42px, 6.2vw, 66px); }
.hero-signature .sig-emphasis {
  font-weight: 700;
  font-size: 1.35em;
  margin-left: .06em;
}
.hero-middle {
  font-family: var(--font-script); font-weight: 400;
  font-size: clamp(26px, 3.8vw, 36px);
  color: var(--orange); opacity: 0;
  margin: 0 0 22px;
  animation: fadeUp .6s ease 1.95s forwards;
}
@keyframes signatureReveal {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateY(4px); }
  10%  { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0 -3% 0 -3%); transform: translateY(0); }
}
/* Rotating professional-identity line — kept for reuse elsewhere; not used on Home anymore */
.hero-roles { height: 30px; display: flex; align-items: center; justify-content: center; margin: 0; opacity: 0; animation: fadeUp .7s ease 2.05s forwards; }
.hero-role-word {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(15px, 2vw, 19px); letter-spacing: .06em; text-transform: uppercase;
  color: rgba(245,245,247,.7);
  transition: opacity .55s ease, transform .55s ease, letter-spacing .55s ease;
  opacity: 1; transform: translateY(0);
}
.hero-role-word.role-out { opacity: 0; transform: translateY(6px); letter-spacing: .22em; }

.hero-tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 3.4vw, 32px);
  color: #f5f5f7; letter-spacing: -0.01em;
  margin: 26px 0 0; line-height: 1.25;
  opacity: 0; animation: fadeUp .8s ease .85s forwards;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(245,245,247,.5);
  max-width: 560px; margin: 16px auto 0;
  line-height: 1.6;
  opacity: 0; animation: fadeUp .8s ease 1.1s forwards;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0; animation: fadeUp .7s ease 1.35s forwards;
}
.hero-fn {
  margin-top: 24px;
  font-size: 13px; font-weight: 300; color: rgba(245,245,247,.25);
  opacity: 0; animation: fadeUp .6s ease 1.85s forwards;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ── MARQUEE ── */
.mq { background: var(--off); border-bottom: 1px solid var(--light); padding: 15px 0; overflow: hidden; }
.mq-t { display: inline-flex; white-space: nowrap; animation: runMq 32s linear infinite; }
.mq-t span { font-size: 13px; font-weight: 500; color: var(--t2); padding: 0 28px; }
.mq-t span b { color: var(--orange); font-weight: 500; }
@keyframes runMq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── LAYOUT ── */
section { padding: 96px 22px; }
.page-top { padding-top: 140px; }
.section-bridge {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: 56px 22px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(17px, 2vw, 20px); color: rgba(245,245,247,.55);
}
.wrap { max-width: var(--max); margin: 0 auto; }
.wrap-w { max-width: var(--wide); margin: 0 auto; }
.eye {
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  color: var(--orange); margin-bottom: 8px;
}
.eye.w { color: var(--orange); }
.display {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600; letter-spacing: -0.01em;
  line-height: 1.08; color: var(--t1);
}
.display.w { color: #f5f5f7; }
.lead {
  font-size: 21px; font-weight: 300; color: var(--t2);
  line-height: 1.38; margin-top: 10px; max-width: 580px;
}
.lead.w { color: rgba(245,245,247,.65); }

/* ── INTRO ── */
#intro { background: var(--white); }
/* Narrative photo-underlay pattern — cool-graded photo, heavy scrim, content on top */
.narrative-photo { position: relative; isolation: isolate; }
.narrative-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: var(--bg-photo); background-size: cover; background-position: center;
  filter: grayscale(.45) saturate(.7) brightness(.65) sepia(.1) hue-rotate(175deg) contrast(1.05);
  animation: kenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1.2%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .narrative-photo::before { animation: none; }
}
.narrative-photo::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: rgba(11,18,32,.72);
}
.narrative-photo > * { position: relative; z-index: 2; }
.intro-g { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.intro-l .display { font-size: clamp(34px, 4vw, 52px); }
.intro-r p {
  font-size: 19px; font-weight: 300; color: var(--t2);
  line-height: 1.6; margin-bottom: 20px;
}
.intro-r p strong { color: var(--t1); font-weight: 600; }

/* ── LEARN MORE toggle ── */
.learn-more-wrap { margin-top: 10px; }
.learn-more-btn {
  background: none; border: none; cursor: pointer;
  font-size: 15px; color: var(--blue); font-family: inherit;
  padding: 0; display: inline-flex; align-items: center; gap: 4px;
  transition: color .2s;
}
.learn-more-btn:hover { color: var(--blue-h); }
.learn-more-btn .lm-arrow { transition: transform .3s; display: inline-block; }
.learn-more-btn.open .lm-arrow { transform: rotate(90deg); }
.learn-more-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease;
  opacity: 0;
}
.learn-more-body.open {
  max-height: 400px; opacity: 1;
}
.learn-more-body p {
  font-size: 15px; font-weight: 300; color: var(--t2);
  line-height: 1.65; margin-top: 12px;
}

/* Dark version for team section */
.learn-more-btn.w { color: var(--blue-dark); }
.learn-more-btn.w:hover { color: #8ba9d1; }
.learn-more-body.dark p { color: rgba(245,245,247,.48); }

/* ── STUDIO ── */
#studio { background: var(--off); }
.cards-2x2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  margin-top: 52px; border-radius: var(--r-lg); overflow: hidden;
}
.sc {
  background: var(--white); padding: 44px 40px;
  transition: background .2s;
}
.sc:hover { background: var(--dark2); }
/* WHO WE WORK WITH — editorial numbered list */
.icw-list { border-top: 1px solid var(--line); margin-top: 40px; }
.icw-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 30px 8px; border-bottom: 1px solid var(--line);
  align-items: start; transition: background .2s;
}
.icw-item:hover { background: var(--dark2); }
.icw-num {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 28px; color: var(--orange); opacity: .45; line-height: 1.3;
}
.icw-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  color: var(--t1); margin-bottom: 6px; letter-spacing: -0.01em;
}
.icw-desc { font-size: 15px; font-weight: 300; color: var(--t2); line-height: 1.65; max-width: 560px; }
.sc-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 10px;
}
.sc-h {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--t1); margin-bottom: 12px; line-height: 1.15;
}
.sc-p { font-size: 15px; font-weight: 300; color: var(--t2); line-height: 1.6; }

/* VALUES — full-bleed deep-blue band, separated from the white layers around it */
.values-band {
  background: var(--dark2);
  width: 100vw;
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  margin-top: 64px;
  padding: 72px 22px;
}
.values-eye {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(245,245,247,.5); text-align: center; margin-bottom: 8px;
}
.values-title {
  font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 500; font-style: italic; letter-spacing: -0.01em;
  color: #f5f5f7; text-align: center; margin-bottom: 40px;
}
.vals-g {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  max-width: var(--wide); margin: 0 auto;
  background: rgba(255,255,255,.1); border-radius: var(--r-lg);
}
.vc { background: var(--orange); padding: 32px 36px; transition: background .25s; min-width: 0; }
.vc:nth-child(3), .vc:nth-child(6) { padding-right: 52px; }
.vc:nth-child(1) { border-top-left-radius: var(--r-lg); }
.vc:nth-child(3) { border-top-right-radius: var(--r-lg); }
.vc:nth-child(4) { border-bottom-left-radius: var(--r-lg); }
.vc:nth-child(6) { border-bottom-right-radius: var(--r-lg); }
.vc:hover { background: var(--orange-h); }
.vc-h { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: #f5f5f7; margin-bottom: 6px; overflow-wrap: break-word; }
.vc-p { font-size: 14px; font-weight: 300; color: rgba(245,245,247,.6); line-height: 1.6; }
.values-band .learn-more-body p { color: rgba(245,245,247,.6); overflow-wrap: break-word; }

/* ── TEAM ── */
#team { background: var(--dark); padding: 96px 22px; }
.team-g {
  display: flex; flex-direction: column; gap: 2px;
  margin-top: 52px; border-radius: var(--r-lg); overflow: hidden;
}
/* Founder — wide split card: portrait | info */
.founder-card {
  display: grid; grid-template-columns: 1fr 1.1fr;
  background: #101C30; min-height: 460px;
}
.founder-portrait {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #16233C 0%, #070B12 100%);
  display: flex; align-items: center; justify-content: center;
}
.founder-portrait img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.founder-portrait .tc-mono-ph {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(90px, 11vw, 140px); font-weight: 500;
  color: rgba(255,255,255,.07); letter-spacing: -0.02em;
}
.founder-info {
  padding: 56px 52px; display: flex; flex-direction: column; justify-content: center;
}
.founder-info .tc-role { font-size: 12px; }
.founder-info .tc-name { font-size: clamp(30px, 3vw, 40px); margin-bottom: 16px; }
.founder-info .tc-bio { font-size: 16px; max-width: 460px; }
/* Two leaders, side by side */
.team-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.tc {
  background: var(--dark2); padding: 36px 34px;
  transition: background .25s;
}
.tc:hover { background: var(--dark3); }
.tc-mono {
  font-family: var(--font-display); font-style: italic;
  font-size: 46px; font-weight: 600; letter-spacing: -0.02em;
  color: rgba(255,255,255,.07); line-height: 1; margin-bottom: 18px;
}
.tc-role {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 6px;
}
.tc-name {
  font-family: var(--font-display);
  font-size: 25px; font-weight: 600; letter-spacing: -0.01em;
  color: #f5f5f7; line-height: 1.15; margin-bottom: 12px;
}
.tc-bio { font-size: 14px; font-weight: 300; color: rgba(245,245,247,.48); line-height: 1.6; }
.tc-secondary-roles {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 15px; color: var(--orange); opacity: .85; margin: -6px 0 16px;
}
.tc-primary-resp {
  font-size: 13px; font-weight: 300; color: rgba(245,245,247,.4);
  line-height: 1.6; margin-top: 16px;
}
.tc-primary-resp span {
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  font-size: 11px; color: rgba(245,245,247,.55); margin-right: 6px;
}
.tc-creds { margin-top: 16px; display: flex; flex-direction: column; gap: 5px; }
.tc-cred {
  font-size: 12px; font-weight: 300; color: rgba(245,245,247,.34);
  line-height: 1.5; padding-left: 12px; position: relative;
}
.tc-cred::before { content: '·'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.tc-badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--orange); background: rgba(232,100,28,.14);
  padding: 2px 7px; border-radius: 5px; margin-left: 5px; vertical-align: middle;
}
.tc-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 18px; }
.tc-chip {
  font-size: 12px; font-weight: 400; color: rgba(245,245,247,.4);
  background: rgba(255,255,255,.06); border-radius: 980px; padding: 3px 12px;
}
.team-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
}
.team-foot p { font-size: 17px; font-weight: 300; color: rgba(245,245,247,.42); }
.team-foot p strong { color: #f5f5f7; font-weight: 600; }

/* Team — intro block */
.team-intro { max-width: 640px; margin: 28px auto 0; text-align: center; }
.team-intro p { font-size: 18px; font-weight: 300; color: rgba(245,245,247,.62); line-height: 1.6; }
.team-intro .btn-b { margin: 26px 0; }
.team-intro .team-intro-2 { margin-top: 6px; font-size: 15px; color: rgba(245,245,247,.42); }

/* Divider between team subsections */
.team-divider { height: 1px; background: rgba(255,255,255,.08); margin: 88px 0 64px; }
.team-sub-head { max-width: 640px; }
.team-sub-head .lead.w { margin-top: 10px; }
.team-sub-title {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px); color: #f5f5f7; margin-top: 10px;
}

/* Core creative team — filled profile cards */
.core-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 36px; }
.core-slot {
  background: var(--dark2); border-radius: var(--r-md);
  padding: 32px 28px; text-align: left; min-width: 0;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  transition: background .25s;
}
.core-slot:hover { background: var(--dark3); }
.core-slot .tc-mono { margin-bottom: 10px; }
.core-slot-photo {
  width: 84px; height: 112px; object-fit: cover;
  border-radius: var(--r-sm); margin-bottom: 14px;
  filter: grayscale(.15) contrast(1.03);
  border: 1px solid rgba(255,255,255,.1);
}
.core-slot-name { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--orange); }
.core-person-name {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: #f5f5f7; letter-spacing: -0.01em; margin-bottom: 10px; overflow-wrap: break-word;
}
.core-slot-desc { font-size: 13px; font-weight: 300; color: rgba(245,245,247,.5); line-height: 1.6; text-align: left; }
.core-slot-resp {
  font-size: 12.5px; font-weight: 300; color: rgba(245,245,247,.4);
  line-height: 1.6; margin-top: 14px; text-align: left;
}
.core-slot-resp span {
  font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  font-size: 10.5px; color: rgba(245,245,247,.55); margin-right: 6px;
}
@media (max-width: 560px) {
  .core-grid { grid-template-columns: 1fr; }
}

/* Creative network — disciplines */
.disc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.disc-chip {
  font-size: 13px; font-weight: 400; color: rgba(245,245,247,.55);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 980px; padding: 6px 16px;
}
.network-note { margin-top: 22px; font-size: 14px; font-style: italic; color: rgba(245,245,247,.32); }

/* Philosophy within team */
.team-philosophy p { font-size: 17px; font-weight: 300; color: rgba(245,245,247,.58); line-height: 1.7; margin-top: 16px; max-width: 680px; }

/* Join the team CTA */
.team-join { text-align: center; max-width: 560px; margin: 0 auto; }
.team-join p { font-size: 16px; font-weight: 300; color: rgba(245,245,247,.55); line-height: 1.6; margin-top: 14px; }
.team-join .btn-b { margin-top: 28px; }

/* ── PORTFOLIO ── */
#portfolio { background: var(--white); }
.port-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; }
/* UPDATED: larger "Our Work" heading, no numbering */
.port-hdr .display { font-size: clamp(44px, 6vw, 72px); }
.pills { display: flex; gap: 5px; flex-wrap: wrap; }
.pill {
  font-size: 13px; font-weight: 400; color: var(--t2);
  background: var(--off); border: none; border-radius: 980px;
  padding: 6px 16px; cursor: pointer; transition: background .2s, color .2s;
}
.pill.on, .pill:hover { background: var(--t1); color: #fff; }
.port-g {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: var(--r-lg); overflow: hidden;
}
.work-empty {
  grid-column: 1 / -1; text-align: center; padding: 60px 30px;
  background: var(--dark2); border-radius: var(--r-lg);
  font-size: 15px; font-weight: 300; color: rgba(245,245,247,.45);
  max-width: 560px; margin: 0 auto; line-height: 1.6;
}

/* ── Work case-study template ── */
.meta-bar {
  display: flex; flex-wrap: wrap; gap: 32px;
  padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--orange); }
.meta-value { font-size: 15px; font-weight: 400; color: rgba(245,245,247,.85); }
.deliverables-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.deliverables-list li {
  font-size: 15px; font-weight: 300; color: rgba(245,245,247,.7);
  padding-left: 20px; position: relative; line-height: 1.6;
}
.deliverables-list li::before { content: '·'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.pc { position: relative; overflow: hidden; cursor: pointer; background: var(--off); min-height: 320px; }
.pc.hidden { display: none; }
.pc-bg { position: absolute; inset: 0; transition: transform .6s ease; }
.pc:hover .pc-bg { transform: scale(1.04); }
.pc-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: opacity .35s;
}
.pc:hover .pc-ov { opacity: 1; }
.pc-foot {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
}
.pc-type {
  font-size: 11px; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 3px;
}
.pc-title { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: #fff; line-height: 1.2; }
.pc-ph {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 300;
  color: var(--line); padding: 20px; text-align: center;
}
.port-cta { text-align: center; margin-top: 44px; }

/* ── SERVICES ── */
#services { background: var(--off); }

/* ── Home: condensed service teaser cards ── */
#services-teaser { background: var(--off); }
.svc-teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.svc-teaser-card {
  display: block; background: var(--dark2); border-radius: var(--r-md);
  padding: 28px 26px; text-decoration: none; transition: background .25s, transform .25s;
}
.svc-teaser-card:hover { background: var(--dark3); transform: translateY(-2px); }
.svc-teaser-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: #f5f5f7; margin-bottom: 8px; }
.svc-teaser-line { font-size: 13.5px; font-weight: 300; color: rgba(245,245,247,.5); line-height: 1.55; margin-bottom: 14px; }
.svc-teaser-arrow { font-size: 13px; font-weight: 500; color: var(--blue); }
.svc-teaser-all { border: 1px solid rgba(232,100,28,.3); background: rgba(232,100,28,.06); }

/* ── Home: editorial case-study teaser (Selected Work) ── */
.case-teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.case-teaser-card {
  position: relative; display: block; aspect-ratio: 4/5; border-radius: var(--r-md);
  overflow: hidden; text-decoration: none;
}
.case-teaser-img { position: absolute; inset: 0; transition: transform .7s cubic-bezier(.22,.61,.36,1); }
.case-teaser-card:hover .case-teaser-img { transform: scale(1.04); }
.case-teaser-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,7,12,.85) 100%);
}
.case-teaser-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; }
.case-teaser-type { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.case-teaser-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; font-style: italic; color: rgba(245,245,247,.55); }
@media (max-width: 900px) { .case-teaser-grid { grid-template-columns: 1fr 1fr; } .case-teaser-card:nth-child(3) { grid-column: span 2; } }
@media (max-width: 560px) { .case-teaser-grid { grid-template-columns: 1fr; } .case-teaser-card:nth-child(3) { grid-column: span 1; } }
.svc-teaser-all:hover { background: rgba(232,100,28,.1); }
@media (max-width: 900px) { .svc-teaser-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-teaser-grid { grid-template-columns: 1fr; } }

/* ── Home: CTA band ── */
#cta-band { padding: 90px 22px; background: var(--white); }
/* UPDATED: larger "Services" heading, no numbering on items */
.svc-eye-large { font-size: clamp(44px, 6vw, 72px); }
.svc-list { margin-top: 52px; border-radius: var(--r-lg); overflow: hidden; }
.svc-i { background: var(--white); border-bottom: 1px solid var(--off); }
.svc-i:last-child { border-bottom: none; }
.svc-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 36px; cursor: pointer; transition: background .2s;
  gap: 20px;
}
.svc-hdr:hover { background: var(--dark2); }
.svc-l { display: flex; align-items: center; gap: 24px; }
/* REMOVED: svc-n numbering hidden */
.svc-name { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; color: var(--t1); }
.svc-chev {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--off); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .2s, transform .3s;
}
.svc-chev svg { width: 13px; height: 13px; stroke: var(--t2); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-i.open .svc-chev { background: var(--blue); transform: rotate(180deg); }
.svc-i.open .svc-chev svg { stroke: #fff; }
.svc-body { max-height: 0; overflow: hidden; transition: max-height .45s ease; }
.svc-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 44px;
  padding: 0 36px 36px 36px;
}
.scol-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 12px;
}
.scol ul { list-style: none; }
.scol ul li {
  font-size: 15px; font-weight: 300; color: var(--t2);
  padding: 6px 0; border-bottom: 1px solid var(--off); line-height: 1.4;
}
.scol ul li::before { content: '· '; color: var(--orange); font-weight: 600; }
.scol-lnk {
  display: inline-flex; align-items: center; gap: 2px;
  margin-top: 16px; font-size: 15px; color: var(--blue);
  text-decoration: none; transition: color .2s;
}
.scol-lnk::after { content: ' ›'; }
.scol-lnk:hover { color: var(--blue-h); }

/* Signature Collection — standalone premium cell within Services */
.svc-i.signature {
  background: linear-gradient(180deg, rgba(232,100,28,.07) 0%, rgba(232,100,28,.015) 100%);
  border: 1px solid rgba(232,100,28,.3);
  border-radius: var(--r-lg);
  margin-top: 10px;
}
.svc-i.signature .svc-hdr:hover { background: rgba(232,100,28,.06); }
.sig-feature {
  background: linear-gradient(180deg, rgba(232,100,28,.07) 0%, rgba(232,100,28,.015) 100%);
  border: 1px solid rgba(232,100,28,.3);
  border-radius: var(--r-lg);
  padding: 44px 40px;
}
.sig-lead { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--t1); line-height: 1.4; margin-bottom: 12px; max-width: 640px; }
.sig-intro { font-size: 15px; font-weight: 300; color: var(--t2); line-height: 1.65; max-width: 640px; margin-bottom: 28px; }
.sig-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 40px; }
.sig-item { border-top: 1px solid rgba(232,100,28,.2); padding-top: 18px; }
.sig-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--t1); margin-bottom: 8px; letter-spacing: -0.01em; }
.sig-hook { font-family: var(--font-display); font-size: 15px; font-style: italic; font-weight: 500; color: var(--t1); line-height: 1.4; margin-bottom: 10px; }
.sig-desc { font-size: 14px; font-weight: 300; color: var(--t2); line-height: 1.6; margin-bottom: 8px; }
.sig-tagline { font-size: 13px; font-style: italic; color: var(--orange); line-height: 1.5; }
@media (max-width: 900px) {
  .sig-grid { grid-template-columns: 1fr; }
}

/* ── PROCESS ── */
#process { background: var(--dark); padding: 96px 22px; }
.proc-g {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  margin-top: 52px; background: rgba(255,255,255,.06);
  border-radius: var(--r-lg); overflow: hidden;
}
.proc-s {
  background: var(--dark); padding: 36px 22px; transition: background .3s;
}
.proc-s:hover { background: var(--dark2); }
.proc-n {
  font-size: 48px; font-weight: 800; letter-spacing: -0.05em;
  color: rgba(255,255,255,.05); line-height: 1; margin-bottom: 18px;
  transition: color .3s;
}
.proc-s:hover .proc-n { color: rgba(232,100,28,.18); }
.proc-name {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.proc-desc { font-size: 13px; font-weight: 300; color: rgba(245,245,247,.42); line-height: 1.6; }

/* ── EXPERIENCE ── */
#experience { background: var(--off); }
.exp-g {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 52px; border-radius: var(--r-lg); overflow: hidden;
}
.exp-c { background: var(--white); padding: 40px 34px; transition: background .2s; min-width: 0; }
.exp-c:hover { background: var(--dark2); }
.exp-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange-lt); display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.exp-ico svg { width: 19px; height: 19px; stroke: var(--orange); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.exp-h { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--t1); margin-bottom: 8px; overflow-wrap: break-word; }
.exp-h-sm { font-size: 19px; }
.exp-c .exp-desc { font-size: 15px; font-weight: 300; color: var(--t2); line-height: 1.6; }

/* ── BOOK ── */
#book { background: var(--white); }
.book-g {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  max-width: var(--wide); margin: 0 auto; align-items: start;
}
.book-l .eye { margin-top: 0; }
.book-l p { font-size: 19px; font-weight: 300; color: var(--t2); line-height: 1.55; margin-top: 14px; }
.book-note {
  margin-top: 32px; padding: 22px 26px;
  background: var(--off); border-radius: var(--r-sm);
  border-left: 3px solid var(--orange);
}
.book-note p { font-size: 15px; font-weight: 300; color: var(--t2); line-height: 1.6; }
.book-note strong { color: var(--t1); font-weight: 600; }
.fg { margin-bottom: 18px; }
.fl { display: block; font-size: 12px; font-weight: 600; color: var(--t2); margin-bottom: 7px; }
.fi, .fsel, .fta {
  width: 100%; background: var(--off); border: 1px solid var(--light);
  border-radius: var(--r-sm); padding: 13px 16px;
  font-family: inherit; font-size: 17px; font-weight: 400;
  color: var(--t1); outline: none;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none;
}
.fi:focus, .fsel:focus, .fta:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,111,237,.18);
}
.fi::placeholder, .fta::placeholder { color: var(--t3); opacity: .7; }
.fsel {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A96AC' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px;
}
.fta { resize: none; height: 118px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fdiscl { font-size: 13px; font-weight: 300; color: var(--t3); line-height: 1.55; margin-bottom: 18px; }
.fdiscl a { color: var(--blue); text-decoration: none; }
.fsubmit {
  width: 100%; background: var(--blue); color: #fff;
  font-family: inherit; font-size: 17px; font-weight: 400;
  border: none; border-radius: 980px; padding: 15px;
  cursor: pointer; transition: background .2s; letter-spacing: -0.01em;
}
.fsubmit:hover { background: var(--blue-h); }
.form-success {
  display: none; text-align: center; padding: 28px 20px;
  background: rgba(47,111,237,.09); border-radius: var(--r-sm);
  border: 1px solid rgba(47,111,237,.25); margin-top: 12px;
}
.form-success p { color: var(--t1); font-size: 17px; font-weight: 500; }
.form-success span { display: block; font-size: 14px; color: var(--t2); margin-top: 6px; font-weight: 300; }

/* ── CONTACT ── */
#contact { background: var(--off); padding: 72px 22px; border-top: 1px solid var(--light); }
.cont-g {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  max-width: var(--wide); margin: 0 auto;
}
.cont-name { font-family: var(--font-display); font-size: 32px; font-weight: 600; letter-spacing: -0.01em; color: var(--t1); margin-bottom: 8px; }
.cont-sub { font-size: 15px; font-weight: 300; color: var(--t2); line-height: 1.7; margin-bottom: 12px; }
.cont-bio { font-size: 13px; font-weight: 300; color: var(--t3); line-height: 1.75; }
.cont-bio strong { color: var(--t2); font-weight: 500; }
.col-lbl { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--t2); margin-bottom: 14px; }
.col-links a {
  display: block; font-size: 15px; font-weight: 400; color: var(--blue);
  text-decoration: none; padding: 4px 0; transition: color .2s;
}
.col-links a:hover { color: var(--blue-h); text-decoration: underline; }

/* Quick Links — 3x3 grid, Book a Project standout */
.col-links.qlinks-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, auto);
  grid-auto-flow: column; gap: 6px;
  margin-top: 2px; max-width: 300px; margin-left: auto; margin-right: auto;
}
.col-links.qlinks-grid a {
  font-size: 12px; font-weight: 500; color: var(--t2);
  border: 1px solid var(--line); border-radius: 7px;
  padding: 7px 4px; text-align: center; line-height: 1.3;
  white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s;
}
.col-links.qlinks-grid a:hover {
  border-color: var(--blue); color: var(--blue); text-decoration: none;
}
.col-links.qlinks-grid a.qlink-cta {
  background: var(--blue); color: #fff; border-color: var(--blue); font-weight: 600;
  white-space: normal;
}
.col-links.qlinks-grid a.qlink-cta:hover { background: var(--blue-h); border-color: var(--blue-h); color: #fff; }

/* Center-align Direct Contact / Quick Links / Follow columns */
.cont-g .col-center { text-align: center; }
.cont-g .col-center .col-links:not(.qlinks-grid) { display: flex; flex-direction: column; align-items: center; }

/* Icon buttons — Direct Contact & Follow */
.icon-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); color: var(--blue);
  transition: background .2s, color .2s, border-color .2s;
}
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.icon-btn.wa-link:hover { background: #25D366; border-color: #25D366; }

/* WhatsApp link style */
.col-links a.wa-link { color: #25D366; }
.col-links a.wa-link:hover { color: #1da851; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 24px 22px; border-top: 1px solid rgba(255,255,255,.06); }
.foot-g {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--wide); margin: 0 auto;
}
.foot-c { font-size: 13px; font-weight: 500; color: rgba(245,245,247,.4); }
.foot-t { font-size: 13px; font-weight: 500; color: rgba(245,245,247,.4); font-style: italic; }
.foot-l { display: flex; gap: 18px; }
.foot-l a { font-size: 13px; font-weight: 500; color: rgba(245,245,247,.4); text-decoration: none; transition: color .2s; }
.foot-l a:hover { color: rgba(245,245,247,.75); }
.foot-sitemap {
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center;
  max-width: var(--wide); margin: 18px auto 0; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.foot-sitemap a { font-size: 12.5px; font-weight: 400; color: rgba(245,245,247,.32); text-decoration: none; transition: color .2s; }
.foot-sitemap a:hover { color: rgba(245,245,247,.65); }
@media (max-width: 700px) {
  .foot-sitemap { justify-content: flex-start; }
}

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.rv.on { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: .1s; } .rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; } .rv.d4 { transition-delay: .4s; } .rv.d5 { transition-delay: .5s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 18px; } .nav-links { display: none; } .nav-burger { display: flex; } section { padding: 72px 20px; }
  .intro-g, .cards-2x2, .book-g, .cont-g { grid-template-columns: 1fr; gap: 28px; }
  .vals-g { grid-template-columns: 1fr 1fr; }
  .vc:nth-child(3), .vc:nth-child(6) { padding-right: 36px; }
  .vc:nth-child(2), .vc:nth-child(4), .vc:nth-child(6) { padding-right: 52px; }
  .vc:nth-child(3), .vc:nth-child(4) { border-radius: 0; }
  .vc:nth-child(2) { border-top-left-radius: 0; border-top-right-radius: var(--r-lg); }
  .vc:nth-child(5) { border-bottom-left-radius: var(--r-lg); border-bottom-right-radius: 0; }
  .exp-g { grid-template-columns: 1fr 1fr; }
  .team-g { gap: 2px; } .founder-card { grid-template-columns: 1fr; } .founder-portrait { min-height: 240px; } .team-row-2 { grid-template-columns: 1fr; } .team-row-3 { grid-template-columns: 1fr; } .core-grid { grid-template-columns: 1fr 1fr; } .proc-g { grid-template-columns: repeat(2,1fr); }
  .port-g { grid-template-columns: 1fr; }
  .svc-inner:not(.sig-wrap) { grid-template-columns: 1fr; padding-left: 0; }
  .svc-inner.sig-wrap { padding: 0 22px 30px; }
  .port-hdr { flex-direction: column; gap: 18px; align-items: flex-start; }
  .foot-g { flex-direction: column; gap: 12px; text-align: center; }
  .team-foot { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 560px) {
  .vals-g { grid-template-columns: 1fr; }
  .vc { padding: 28px 26px; }
  .vc:nth-child(2), .vc:nth-child(3), .vc:nth-child(4), .vc:nth-child(6) { padding-right: 26px; }
  .vc:nth-child(1) { border-top-left-radius: var(--r-lg); border-top-right-radius: var(--r-lg); border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
  .vc:nth-child(2), .vc:nth-child(3), .vc:nth-child(4), .vc:nth-child(5) { border-radius: 0; }
  .vc:nth-child(6) { border-bottom-left-radius: var(--r-lg); border-bottom-right-radius: var(--r-lg); border-top-left-radius: 0; border-top-right-radius: 0; }
  .exp-g { grid-template-columns: 1fr; }
}
/* Legal modals — Privacy Policy & Terms of Service, embedded in-page */
.legal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.65);
  z-index: 1100; display: none; align-items: flex-start; justify-content: center;
  padding: 64px 20px; overflow-y: auto;
}
.legal-overlay.open { display: flex; }
.legal-modal { background: var(--white); width: 100%; max-width: 760px; border-radius: var(--r-lg); position: relative; box-shadow: var(--shadow-md); }
.legal-modal-body { padding: 0 48px 60px; }
.legal-modal-topbar {
  position: sticky; top: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); padding: 20px 24px; border-bottom: 1px solid var(--line);
  border-top-left-radius: var(--r-lg); border-top-right-radius: var(--r-lg);
}
.legal-back-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--blue);
  background: none; border: none; cursor: pointer; padding: 6px 4px;
  font-family: inherit; transition: color .2s;
}
.legal-back-btn:hover { color: var(--blue-h); }
.legal-modal-x {
  position: absolute; top: 18px; right: 18px; z-index: 20;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--t2); transition: border-color .2s, color .2s;
}
.legal-modal-x:hover { border-color: var(--blue); color: var(--blue); }
.legal-modal .legal-eye { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin: 32px 0 12px; }
.legal-eye-row { display: flex; align-items: center; justify-content: space-between; margin: 32px 0 12px; }
.legal-eye-row .legal-eye { margin: 0; }
.legal-x-inline {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--t2); transition: border-color .2s, color .2s;
}
.legal-x-inline:hover { border-color: var(--blue); color: var(--blue); }
.legal-modal .legal-title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 40px); font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; line-height: 1.1; color: var(--t1); }
.legal-modal .legal-dates { font-size: 13px; color: var(--t3); margin: 0 0 36px; font-style: italic; }
.legal-modal h3.legal-h {
  font-family: var(--font-display); font-size: 21px; font-weight: 600;
  color: var(--t1); margin: 34px 0 12px; letter-spacing: -0.01em;
}
.legal-modal h4.legal-sub {
  font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--t1); margin: 18px 0 8px;
}
.legal-modal p { font-size: 15px; color: var(--t2); line-height: 1.7; margin: 0 0 12px; }
.legal-modal p strong { color: var(--t1); font-weight: 600; }
.legal-modal ul { margin: 0 0 12px; padding-left: 20px; color: var(--t2); font-size: 15px; line-height: 1.7; }
.legal-modal li { margin-bottom: 5px; }
.legal-modal a { color: var(--blue); text-decoration: none; }
.legal-modal a:hover { text-decoration: underline; }
.legal-modal .legal-contact {
  margin-top: 14px; padding: 22px 26px; background: var(--off);
  border-radius: 14px; font-size: 14px; color: var(--t2);
}
.legal-modal .legal-contact strong { display: block; font-family: var(--font-display); font-size: 17px; margin-bottom: 8px; color: var(--t1); }
@media (max-width: 600px) {
  .legal-overlay { padding: 0; }
  .legal-modal { max-width: 100%; min-height: 100vh; border-radius: 0; }
  .legal-modal-body { padding: 0 22px 50px; }
  .legal-modal-topbar { padding: 16px 20px; }
}
/* Our Work — photo gallery grid + lightbox */
.pgrid {
  column-count: 3; column-gap: 12px; margin-top: 24px;
}
.pgrid-item {
  break-inside: avoid; margin-bottom: 12px; border-radius: 10px; overflow: hidden;
  cursor: pointer; position: relative;
}
.pgrid-item img { display: block; width: 100%; height: auto; transition: transform .35s ease; }
.pgrid-item:hover img { transform: scale(1.035); }
@media (max-width: 700px) {
  .pgrid { column-count: 2; column-gap: 8px; }
  .pgrid-item { margin-bottom: 8px; border-radius: 8px; }
}
.img-lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(10,10,12,.94);
  display: none; align-items: center; justify-content: center; padding: 30px 20px;
}
.img-lightbox.open { display: flex; }
.img-lightbox img { max-width: 100%; max-height: 90vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.img-lightbox-x {
  position: absolute; top: 20px; right: 24px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer;
}
/* Our Work — video embeds */
.video-embeds { margin-top: 26px; display: flex; flex-direction: column; gap: 22px; }
.video-embed-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: 12px; overflow: hidden; background: #000; }
.video-embed-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
/* Mobile hamburger + full-screen menu */
.nav-burger {
  display: flex; width: 26px; height: 18px;
  flex-direction: column; justify-content: space-between;
  background: none; border: none; cursor: pointer; padding: 0; z-index: 1100;
}
.nav-burger span { display: block; height: 1px; background: #f5f5f7; transition: transform .3s, opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; background: var(--black);
  z-index: 1050; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 30px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-x {
  position: absolute; top: 24px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.04);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #f5f5f7; transition: border-color .2s, background .2s;
}
.mobile-menu-x:hover { border-color: var(--blue-dark); background: rgba(255,255,255,.1); }
.mobile-menu a {
  font-family: var(--font-display); font-size: 28px; font-weight: 500;
  color: #f5f5f7; text-decoration: none; letter-spacing: -0.01em;
}
.mobile-menu a:hover { color: var(--blue-dark); }
