/* ═══════════════════════════════════════════════════════════════
   OTTO , Professional Website
   2-Font System · Perfect Symmetry · Italian Design Philosophy
   ═══════════════════════════════════════════════════════════════ */

/* ─── 2-FONT SYSTEM ─── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

:root {
  /* Palette */
  --black:   #080808;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gold:    #D4AF37;
  --gold-lt: #e8cc6a;
  --gold-dk: #a8881e;
  --ivory:   #F6F1E8;
  --rule:    rgba(212,175,55,0.15);
  --muted:   rgba(246,241,232,0.50);

  /* Typography: exactly 2 fonts */
  --f1: 'Barlow Condensed', sans-serif;   /* Display / UI */
  --f2: 'Cormorant Garamond', serif;      /* Editorial / Body */

  /* Spacing rhythm: 8px base */
  --s1: 8px;   --s2: 16px;  --s3: 24px;
  --s4: 32px;  --s5: 48px;  --s6: 64px;
  --s7: 80px;  --s8: 120px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--ivory);
  font-family: var(--f2); font-weight: 400; font-size: 16px; line-height: 1.75;
  overflow-x: hidden; opacity: 0; transition: opacity .4s ease;
}
body.ready { opacity: 1; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

/* ─── GRAIN ─── */
.grain { position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 256px; }

/* ─── CURSOR ─── */
@media (pointer: fine) { body, a, button { cursor: none; } }
.cursor-dot { position: fixed; z-index: 9999; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); pointer-events: none; transform: translate(-50%,-50%); transition: opacity .25s; will-change: transform; }
.cursor-ring { position: fixed; z-index: 9998; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(212,175,55,.4); pointer-events: none; transform: translate(-50%,-50%); transition: width .35s var(--ease), height .35s var(--ease), border-color .3s, background .3s; will-change: transform; }
.cursor-ring.hover { width: 54px; height: 54px; border-color: rgba(212,175,55,.7); background: rgba(212,175,55,.06); }
.cursor-dot.hidden, .cursor-ring.hidden { opacity: 0; }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--s6); width: 100%; }

/* ═══════════════════════════════════
   HEADER
   ═══════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 70px; display: flex; align-items: center; gap: var(--s5);
  padding: 0 var(--s6); background: rgba(8,8,8,.92); border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: background .4s;
}
.header.scrolled { background: rgba(8,8,8,.98); }

.logo-link { display: flex; align-items: center; gap: 14px; margin-right: auto; }
.logo-mark { position: relative; width: 48px; height: 44px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 5px 8px; flex-shrink: 0; }
.logo-border-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.logo-rect { stroke-dasharray: 220; stroke-dashoffset: 220; animation: drawBorder 1.2s var(--ease) forwards .3s; }
@keyframes drawBorder { to { stroke-dashoffset: 0; } }
.logo-mark .logo-row { font-family: var(--f1); font-weight: 800; font-size: 12px; color: var(--gold); letter-spacing: -.02em; line-height: .9; z-index: 1; animation: fadeUp .6s var(--ease) forwards .8s; opacity: 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.logo-rule-anim { display: block; height: 1px; width: 0; background: var(--gold); opacity: .6; margin: 3px 0; z-index: 1; animation: ruleGrow .5s var(--ease) forwards 1.1s; }
@keyframes ruleGrow { to { width: 26px; opacity: .6; } }
.logo-link:hover .logo-rect { stroke-opacity: .9; filter: drop-shadow(0 0 5px rgba(212,175,55,.5)); transition: all .3s; }
.logo-link:hover .logo-rule-anim { animation: rulePulse 1.8s ease-in-out infinite; width: 26px; }
@keyframes rulePulse { 0%,100% { width: 26px; opacity: .6; } 50% { width: 32px; opacity: 1; } }
.logo-text strong { display: block; font-family: var(--f1); font-weight: 600; font-size: 13px; color: var(--gold); letter-spacing: .3em; text-transform: uppercase; animation: fadeUp .6s var(--ease) forwards .9s; opacity: 0; }
.logo-text small { display: block; font-family: var(--f1); font-size: 9px; color: rgba(246,241,232,.36); letter-spacing: .22em; text-transform: uppercase; margin-top: 2px; animation: fadeUp .6s var(--ease) forwards 1s; opacity: 0; }

.nav { display: flex; gap: var(--s3); font-family: var(--f1); font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(246,241,232,.46); }
.nav a { transition: color .2s; position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover, .nav a.active { color: var(--gold); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.header-right { display: flex; align-items: center; gap: var(--s2); }
.cta-btn { font-family: var(--f1); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(212,175,55,.42); padding: 10px 22px; transition: background .25s, color .25s; }
.cta-btn:hover { background: var(--gold); color: var(--black); }
.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: transform .35s var(--ease); transform-origin: center; }
.mobile-nav { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; z-index: 98; background: rgba(8,8,8,.98); backdrop-filter: blur(24px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 0 40px; gap: var(--s3); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.mobile-nav.open { opacity: 1; pointer-events: all; transform: none; }
.mobile-nav a { font-family: var(--f1); font-size: clamp(30px,9vw,52px); font-weight: 800; letter-spacing: -.02em; text-transform: uppercase; color: rgba(246,241,232,.62); transition: color .2s; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta { font-size: 14px; letter-spacing: .18em; color: var(--gold); border-top: 1px solid var(--rule); padding-top: var(--s3); width: 100%; margin-top: 4px; }

/* ═══════════════════════════════════
   TYPE SYSTEM: Consistent Hierarchy
   ═══════════════════════════════════ */
.eyebrow { font-family: var(--f1); font-size: 10px; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); opacity: .72; margin-bottom: var(--s3); }
.section-num { font-family: var(--f1); font-size: 10px; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); opacity: .58; margin-bottom: var(--s3); }
.label { font-family: var(--f1); font-size: 10px; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); opacity: .7; margin-bottom: 14px; }
.dark-label { color: var(--black); }
.section-title { font-family: var(--f1); font-weight: 800; text-transform: uppercase; color: #fff; line-height: .9; letter-spacing: -.025em; font-size: clamp(48px,6vw,84px); margin-bottom: var(--s4); }
.section-title em { font-family: var(--f2); font-style: italic; color: var(--gold); font-weight: 300; text-transform: none; letter-spacing: .01em; font-size: .96em; }

/* ─── BUTTONS ─── */
.btn-primary { font-family: var(--f1); font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 17px 36px; display: inline-flex; position: relative; overflow: hidden; }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.16); transform: translateX(-101%); transition: transform .4s var(--ease); }
.btn-primary:hover::after { transform: translateX(0); }
.btn-ghost { font-family: var(--f1); font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding: 17px 0; display: inline-flex; gap: 14px; transition: color .2s; }
.btn-ghost::after { content: '\2192'; font-size: 15px; transition: transform .3s var(--ease); }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(6px); }
.btn-dark { font-family: var(--f1); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 15px 28px; display: inline-flex; transition: background .25s; }
.btn-dark:hover { background: var(--gold-lt); }

/* ─── ANIMATIONS ─── */
.load-fade { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d,0s); }
body.ready .load-fade { opacity: 1; transform: none; }
.lw { display: block; overflow: hidden; }
.ll { display: block; transform: translateY(108%); transition: transform .9s var(--ease); font-family: var(--f1); font-weight: 800; text-transform: uppercase; font-size: clamp(68px,10vw,140px); line-height: .87; letter-spacing: -.03em; color: #fff; }
.ll.gold { color: var(--gold); }
body.ready .ll { transform: translateY(0); }
body.ready #heroTitle .lw:nth-child(1) .ll { transition-delay: .25s; }
body.ready #heroTitle .lw:nth-child(2) .ll { transition-delay: .38s; }
body.ready #heroTitle .lw:nth-child(3) .ll { transition-delay: .51s; }
body.ready #heroTitle .lw:nth-child(4) .ll { transition-delay: .64s; }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }

/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero { min-height: 100vh; padding: 136px 0 72px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; pointer-events: none; }
.hero-glow-1 { position: absolute; top: -20%; right: -15%; width: 55vw; height: 55vw; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.06) 0%, transparent 65%); pointer-events: none; animation: pulse 8s ease-in-out infinite; }
.hero-glow-2 { position: absolute; bottom: 0; left: -10%; width: 35vw; height: 35vw; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.03) 0%, transparent 70%); pointer-events: none; animation: pulse 12s ease-in-out infinite reverse; }
@keyframes pulse { 0%,100% { opacity: .7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }
.hero-inner { flex: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s6); align-items: center; position: relative; z-index: 1; }
.hero-lead { font-family: var(--f2); font-size: 18px; color: var(--muted); line-height: 1.8; max-width: 460px; margin-bottom: var(--s5); }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-emblem { display: flex; flex-direction: column; align-items: center; user-select: none; pointer-events: none; opacity: .05; animation: float 10s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.emblem-ot,.emblem-to { font-family: var(--f1); font-weight: 800; color: var(--gold); font-size: clamp(110px,13vw,190px); line-height: .86; letter-spacing: -.04em; }
.emblem-rule { display: block; width: 100%; height: 2px; background: var(--gold); margin: 10px 0; }
.hero-scroll { display: flex; align-items: center; gap: 18px; padding-top: var(--s3); position: relative; z-index: 1; font-family: var(--f1); font-size: 9px; font-weight: 600; letter-spacing: .45em; text-transform: uppercase; color: rgba(246,241,232,.28); }
.scroll-line { display: block; height: 1px; width: 0; background: rgba(212,175,55,.4); transition: width 1.2s var(--ease); }
body.ready .scroll-line { width: 64px; }

/* ═══════════════════════════════════
   MARQUEE
   ═══════════════════════════════════ */
.marquee-band { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--black-2); overflow: hidden; padding: var(--s2) 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-inner { display: flex; align-items: center; gap: var(--s3); padding-right: var(--s3); white-space: nowrap; flex-shrink: 0; }
.marquee-inner span { font-family: var(--f1); font-size: 11px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: rgba(246,241,232,.34); }
.marquee-inner em { color: var(--gold); opacity: .5; font-style: normal; font-size: 14px; }

/* ═══════════════════════════════════
   STATS
   ═══════════════════════════════════ */
.stats-band { border-bottom: 1px solid var(--rule); background: var(--black-2); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: var(--s5) 0; text-align: center; border-right: 1px solid var(--rule); }
.stat:last-child { border-right: none; }
.stat strong { display: block; font-family: var(--f1); font-weight: 800; font-size: 42px; color: var(--gold); letter-spacing: -.02em; line-height: 1; margin-bottom: var(--s1); }
.stat span { font-family: var(--f1); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,241,232,.34); line-height: 1.6; }

/* ═══════════════════════════════════
   OTTO = 8 BRAND STORY
   ═══════════════════════════════════ */
.section-brand { background: var(--black-2); padding: var(--s8) 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; }
.section-brand::before { content: ''; position: absolute; top: -30%; left: -10%; width: 60%; height: 160%; background: radial-gradient(ellipse at center, rgba(212,175,55,.04) 0%, transparent 60%); pointer-events: none; }
.brand-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: center; }
.brand-left { display: flex; justify-content: center; }
.otto-eight-wrap { position: relative; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; }
.otto-eight, .otto-inf { position: absolute; font-family: var(--f2); font-weight: 300; font-style: italic; color: var(--gold); line-height: 1; user-select: none; text-align: center; filter: drop-shadow(0 0 30px rgba(212,175,55,.25)); }
.otto-eight { font-size: 240px; animation: eightPulse 6s ease-in-out infinite; }
.otto-inf { font-size: 170px; animation: infPulse 6s ease-in-out infinite; }
@keyframes eightPulse { 0%,40% { opacity: 1; transform: rotate(0deg) scale(1); } 50% { opacity: 0; transform: rotate(90deg) scale(.85); } 60%,95% { opacity: 0; } 100% { opacity: 1; transform: rotate(0deg) scale(1); } }
@keyframes infPulse { 0%,40% { opacity: 0; transform: rotate(-90deg) scale(.85); } 50% { opacity: 1; transform: rotate(0deg) scale(1); } 60%,95% { opacity: 1; } 100% { opacity: 0; transform: rotate(-90deg) scale(.85); } }
.brand-title { font-size: clamp(44px,5vw,76px); }
.brand-body { font-family: var(--f2); font-size: 17px; color: var(--muted); line-height: 1.82; margin-bottom: var(--s3); }
.brand-body em { font-style: italic; color: var(--gold); }
.brand-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border-top: 1px solid var(--rule); margin-top: var(--s5); }
.brand-pillar { background: var(--black-2); padding: var(--s3); }
.bp-num, .bp-sym { display: block; font-family: var(--f2); font-weight: 300; font-style: italic; font-size: 48px; color: var(--gold); line-height: 1; margin-bottom: var(--s1); }
.bp-mark { display: block; font-family: var(--f1); font-weight: 800; font-size: 20px; color: var(--gold); line-height: .88; letter-spacing: -.02em; margin-bottom: var(--s1); }
.brand-pillar p { font-family: var(--f2); font-size: 14px; color: rgba(246,241,232,.42); line-height: 1.65; }

/* ═══════════════════════════════════
   ABOUT + FOUNDERS
   ═══════════════════════════════════ */
.section-about { padding: var(--s8) 0; border-bottom: 1px solid var(--rule); }
.about-header { text-align: left; margin-bottom: var(--s5); }
.about-header .section-title { margin-bottom: var(--s2); }
.manifesto-quote { font-family: var(--f2); font-size: 22px; font-style: italic; font-weight: 300; color: var(--ivory); line-height: 1.65; text-align: left; max-width: 720px; margin: 0 0 var(--s6); border-left: none; padding: 0 var(--s4); }
.about-intro { text-align: left; max-width: 640px; margin: 0 0 var(--s7); }
.about-intro p { font-family: var(--f2); font-size: 17px; color: var(--muted); line-height: 1.8; }

/* Founders: perfectly symmetrical 2-column */
.founders-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5);
  margin-bottom: var(--s7);
}
.founder-card { padding-top: var(--s5);
  background: var(--black-2); border: 1px solid var(--rule);
  padding: var(--s5) var(--s4); text-align: left;
  transition: border-color .35s, background .35s;
  display: flex; flex-direction: column; align-items: center;
}
.founder-card:hover { border-color: rgba(212,175,55,.35); background: rgba(212,175,55,.015); }

/* Circular photos: identical size, gold border */
.founder-role { font-family: var(--f1); font-size: 9px; font-weight: 600; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); opacity: .65; margin-bottom: var(--s1); }
.founder-name { font-family: var(--f1); font-size: 22px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; margin-bottom: var(--s2); }
.founder-bio { font-family: var(--f2); font-size: 15px; color: rgba(246,241,232,.48); line-height: 1.78; margin-bottom: var(--s3); text-align: left; }
.founder-links { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--rule); padding-top: var(--s2); width: 100%; }
.founder-links a { font-family: var(--f1); font-size: 11px; letter-spacing: .1em; color: rgba(246,241,232,.42); transition: color .2s; }
.founder-links a:hover { color: var(--gold); }

/* 3-column pillars */
.about-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.pillar { background: var(--black); padding: var(--s4); text-align: left; }
.pillar h3 { font-family: var(--f1); font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #fff; margin-bottom: var(--s1); }
.pillar p { font-family: var(--f2); font-size: 14px; color: rgba(246,241,232,.42); line-height: 1.7; }

/* ═══════════════════════════════════
   SERVICES: 3 equal pillars
   ═══════════════════════════════════ */
.section-services { background: var(--black-2); padding: var(--s8) 0; border-bottom: 1px solid var(--rule); }
.services-header { text-align: left; margin-bottom: var(--s7); }
.services-intro { font-family: var(--f2); font-size: 17px; color: var(--muted); line-height: 1.78; max-width: 560px; margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.service-col {
  background: var(--black-2); padding: var(--s5) var(--s4);
  position: relative; overflow: hidden; transition: background .4s;
  display: flex; flex-direction: column;
}
.service-col::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.service-col:hover::before { transform: scaleX(1); }
.service-col:hover { background: rgba(212,175,55,.02); }
.service-num { font-family: var(--f1); font-size: 10px; font-weight: 600; letter-spacing: .35em; color: var(--gold); opacity: .5; margin-bottom: var(--s3); }
.service-col h3 { font-family: var(--f1); font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.01em; line-height: 1.08; text-transform: uppercase; margin-bottom: var(--s2); }
.service-col > p { font-family: var(--f2); font-size: 14px; color: rgba(246,241,232,.46); line-height: 1.82; margin-bottom: var(--s3); flex-grow: 1; }
.service-col ul { border-top: 1px solid var(--rule); padding-top: var(--s3); margin-top: auto; }
.service-col li { font-family: var(--f1); font-size: 11px; letter-spacing: .08em; color: rgba(246,241,232,.38); margin-bottom: 10px; padding-left: var(--s2); position: relative; }
.service-col li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 1px; background: var(--gold); opacity: .5; }

/* ═══════════════════════════════════
   WORK: 2x2 photo grid
   ═══════════════════════════════════ */
.section-work { padding: 0; }
.work-header { text-align: left; margin-bottom: var(--s6); }
.work-intro { font-family: var(--f2); font-size: 17px; color: var(--muted); max-width: 520px; margin: 0; line-height: 1.75; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--black-3); }
.work-item { position: relative; overflow: hidden; min-height: 480px; display: flex; flex-direction: column; justify-content: flex-end; background-image: var(--bg); background-size: cover; background-position: center; }
.work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.96) 0%, rgba(8,8,8,.7) 50%, rgba(8,8,8,.35) 100%); transition: background .5s; }
.work-item:hover .work-overlay { background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,.6) 55%, rgba(8,8,8,.2) 100%); }
.work-body { position: relative; z-index: 1; padding: var(--s5); }
.work-cat { display: block; font-family: var(--f1); font-size: 10px; font-weight: 600; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); opacity: .65; margin-bottom: var(--s2); }
.work-item h3 { font-family: var(--f1); font-weight: 800; font-size: 36px; letter-spacing: -.025em; text-transform: uppercase; color: #fff; line-height: .92; margin-bottom: var(--s2); transition: color .3s; }
.work-item:hover h3 { color: var(--gold); }
.work-item p { font-family: var(--f2); font-size: 15px; color: rgba(246,241,232,.52); line-height: 1.8; margin-bottom: var(--s3); }
.work-footer { display: flex; align-items: center; justify-content: space-between; }
.work-tag { font-family: var(--f1); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,241,232,.28); }
.work-arrow { font-size: 18px; color: var(--gold); opacity: 0; transform: translateX(-10px); transition: opacity .3s, transform .3s var(--ease); }
.work-item:hover .work-arrow { opacity: 1; transform: translateX(0); }
.work-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease); }
.work-item:hover .work-line { transform: scaleX(1); }

/* ═══════════════════════════════════
   CINEMATIC STRIP
   ═══════════════════════════════════ */
.cinematic-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 240px; gap: 2px; background: var(--black-3); }
.strip-photo { background-size: cover; background-position: center; position: relative; filter: brightness(.5) saturate(.7); transition: filter .5s, transform .8s var(--ease); }
.strip-photo:hover { transform: scale(1.05); filter: brightness(.75) saturate(1); z-index: 1; }

/* ═══════════════════════════════════
   CLIENTS: Structured grid
   ═══════════════════════════════════ */
.section-clients { background: var(--black-2); padding: var(--s8) 0; border-bottom: 1px solid var(--rule); }
.clients-header { text-align: left; margin-bottom: var(--s6); }
.clients-sub { font-family: var(--f2); font-size: 17px; color: var(--muted); max-width: 520px; margin: 0; line-height: 1.75; }

/* 4-column uniform client name grid */
.clients-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
  margin-bottom: var(--s7);
}
.clients-grid span {
  background: var(--black-2); padding: 18px var(--s3);
  font-family: var(--f1); font-size: 12px; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(246,241,232,.4);
  text-align: center; transition: color .25s, background .25s;
  display: flex; align-items: center; justify-content: center;
}
.clients-grid span:hover { color: var(--gold); background: rgba(212,175,55,.025); }

/* 6-sector grid: 3x2 */
.sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.sector { background: var(--black-2); padding: var(--s4); text-align: left; transition: background .3s; }
.sector:hover { background: rgba(212,175,55,.02); }
.sector h4 { font-family: var(--f1); font-size: 14px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: var(--s1); transition: color .25s; }
.sector:hover h4 { color: var(--gold); }
.sector p { font-family: var(--f2); font-size: 14px; color: rgba(246,241,232,.4); line-height: 1.7; }

/* ═══════════════════════════════════
   PROFILE BAND
   ═══════════════════════════════════ */
.section-profile { background: var(--gold); padding: var(--s8) 0; }
.profile-inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); align-items: center; }
.profile-heading { font-family: var(--f1); font-weight: 800; font-size: clamp(36px,4.5vw,56px); text-transform: uppercase; color: var(--black); line-height: .92; letter-spacing: -.025em; margin: 18px 0 var(--s3); }
.profile-text > p { font-family: var(--f2); font-size: 16px; color: rgba(0,0,0,.55); line-height: 1.75; }
.profile-card { background: var(--black); padding: var(--s5); }
.card-label { font-family: var(--f1); font-size: 10px; font-weight: 600; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s2); }
.profile-card > p { font-family: var(--f2); font-size: 15px; color: rgba(246,241,232,.5); line-height: 1.75; margin-bottom: var(--s3); }

/* ═══════════════════════════════════
   CONTACT: Clean map + cards
   ═══════════════════════════════════ */
.section-contact { padding: var(--s8) 0; }
.contact-header { text-align: left; margin-bottom: var(--s6); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); align-items: start; }

/* Two equal contact cards */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.contact-card { background: var(--black-2); padding: var(--s4); text-align: left; transition: background .3s; }
.contact-card:hover { background: rgba(212,175,55,.02); }
.cc-role { font-family: var(--f1); font-size: 9px; font-weight: 600; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); opacity: .62; margin-bottom: var(--s1); }
.cc-name { font-family: var(--f1); font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #fff; margin-bottom: 14px; }
.cc-link { display: block; font-family: var(--f1); font-size: 12px; letter-spacing: .06em; color: rgba(246,241,232,.42); margin-bottom: 6px; transition: color .2s; }
.cc-link:hover { color: var(--gold); }
.cc-phone { color: rgba(246,241,232,.3); }

.contact-map { }
.map-label { display: flex; align-items: center; justify-content: flex-start; gap: 10px; font-family: var(--f1); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,241,232,.38); padding: 14px 20px; background: var(--black-2); border: 1px solid var(--rule); border-bottom: none; }
.map-frame { width: 100%; height: 340px; border: 1px solid var(--rule); overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
.footer { border-top: 1px solid var(--rule); padding: var(--s4) 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: var(--s2); }
.logo-mark-sm { display: flex; flex-direction: column; align-items: center; border: 1px solid rgba(212,175,55,.4); padding: 5px 8px; }
.logo-mark-sm .logo-row { font-family: var(--f1); font-weight: 800; font-size: 11px; color: var(--gold); letter-spacing: -.02em; line-height: .9; }
.logo-rule-sm { display: block; width: 24px; height: 1px; background: var(--gold); opacity: .5; margin: 3px 0; }
.footer-logo strong { display: block; font-family: var(--f1); font-weight: 600; font-size: 12px; color: var(--gold); letter-spacing: .3em; text-transform: uppercase; }
.footer-logo p { font-family: var(--f1); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; color: rgba(246,241,232,.28); margin-top: 4px; }
.footer-meta { text-align: right; }
.footer-meta p { font-family: var(--f1); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,241,232,.26); margin-bottom: 4px; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1100px) {
  .container { padding: 0 var(--s4); }
  .header { padding: 0 var(--s4); }
  .brand-inner { grid-template-columns: 1fr 1.5fr; gap: var(--s6); }
  .otto-eight { font-size: 180px; } .otto-inf { font-size: 130px; }
  .otto-eight-wrap { width: 180px; height: 180px; }
  .profile-inner { grid-template-columns: 1fr; gap: var(--s5); }
}
@media (max-width: 960px) {
  .nav, .cta-btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-emblem { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--rule); }
  .brand-inner { grid-template-columns: 1fr; gap: var(--s5); }
  .brand-left { order: -1; }
  .brand-pillars { grid-template-columns: 1fr; }
  .brand-pillar { border-right: none; }
  .founders-row { grid-template-columns: 1fr; gap: var(--s4); }
  .about-pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .cinematic-strip { grid-template-columns: repeat(2,1fr); height: 200px; }
  .clients-grid { grid-template-columns: repeat(3,1fr); }
  .sectors-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: var(--s3); }
  .footer-meta { text-align: left; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .header { padding: 0 20px; height: 62px; }
  .mobile-nav { top: 62px; padding: 0 24px; }
  .hero { padding: 110px 0 56px; }
  .ll { font-size: clamp(52px,14vw,88px); }
  .section-brand, .section-about, .section-services,
  .section-clients, .section-contact { padding: var(--s7) 0; }
  .section-work { padding: var(--s7) 0 0; }
  .section-profile { padding: var(--s7) 0; }
  .section-title { font-size: clamp(40px,11vw,64px); }
  .manifesto-quote { font-size: 18px; }
  .otto-eight-wrap { width: 130px; height: 130px; }
  .otto-eight { font-size: 130px; } .otto-inf { font-size: 90px; }
  .brand-title { font-size: clamp(36px,10vw,56px); }
  .work-item { min-height: 360px; }
  .work-body { padding: var(--s4); }
  .work-item h3 { font-size: 28px; }
  .cinematic-strip { height: 160px; }
  .clients-grid { grid-template-columns: repeat(2,1fr); }
  .sectors-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .map-frame { height: 280px; }
}
@media (max-width: 400px) {
  .ll { font-size: 48px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .stat:last-child { border-bottom: none; }
}
