/* =========================================================
   RAUMAUSSTATTUNG IBRAHIM — Cinematic Scroll Experience
   Design system + layout
   ========================================================= */

:root{
  /* Brand palette */
  --gold:        #C9A84C;
  --gold-light:  #E8D099;
  --gold-dark:   #8C6A1E;
  --bg:          #09080A;
  --bg-2:        #100D10;
  --bg-3:        #16121563;
  --text:        #B8B2A5;
  --light:       #F0EBE2;

  /* Lines & fills */
  --line:        rgba(201,168,76,.22);
  --line-soft:   rgba(240,235,226,.10);
  --fill-soft:   rgba(240,235,226,.04);
  --gold-glow:   rgba(201,168,76,.14);

  /* Type */
  --display: "Cormorant Garamond", Georgia, serif;
  --body:    "Jost", system-ui, sans-serif;

  /* Rhythm */
  --pad-x: clamp(22px, 6vw, 130px);
  --maxw: 1500px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ -webkit-text-size-adjust:100%; }
html.lenis, html.lenis body{ height:auto; }
.lenis.lenis-smooth{ scroll-behavior:auto !important; }
.lenis.lenis-stopped{ overflow:hidden; }

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--body);
  font-weight:300;
  line-height:1.62;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

/* Atmospheric grain overlay */
body::after{
  content:"";
  position:fixed; inset:0; z-index:9000; pointer-events:none;
  opacity:.05; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection{ background:var(--gold); color:var(--bg); }

img,video{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }

/* ---------- Typographic primitives ---------- */
.eyebrow{
  font-family:var(--body);
  font-weight:400;
  font-size:clamp(11px,.78vw,13px);
  letter-spacing:.42em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-flex; align-items:center; gap:.9em;
}
.eyebrow::before{
  content:""; width:34px; height:1px; background:var(--gold); opacity:.6;
}
.eyebrow.no-rule::before{ display:none; }

.display{
  font-family:var(--display);
  font-weight:300;
  line-height:.98;
  letter-spacing:-.01em;
  color:var(--light);
}
.italic{ font-style:italic; color:var(--gold-light); }

h1,h2,h3{ font-family:var(--display); font-weight:300; color:var(--light); }

.lede{
  font-size:clamp(16px,1.25vw,20px);
  color:var(--text);
  font-weight:300;
  max-width:46ch;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.7em;
  font-family:var(--body); font-weight:400;
  font-size:13px; letter-spacing:.16em; text-transform:uppercase;
  padding:1.15em 1.9em; border-radius:2px;
  border:1px solid var(--gold);
  color:var(--bg); background:var(--gold);
  transition:background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease), box-shadow .5s var(--ease);
  box-shadow:0 0 0 0 var(--gold-glow);
}
.btn:hover{ background:var(--gold-light); box-shadow:0 14px 40px -10px var(--gold-glow); transform:translateY(-2px); }
.btn svg{ width:16px; height:16px; }
.btn--ghost{
  background:transparent; color:var(--gold);
  border-color:var(--line);
}
.btn--ghost:hover{ background:transparent; border-color:var(--gold); color:var(--gold-light); box-shadow:none; }

/* ===========================================================
   PRELOADER
   =========================================================== */
#preloader{
  position:fixed; inset:0; z-index:10000;
  background:var(--bg);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:34px;
  transition:opacity 1s var(--ease), visibility 1s;
}
#preloader.done{ opacity:0; visibility:hidden; }
#preloader .pl-mark{ width:108px; height:auto; }
#preloader .pl-mark path,#preloader .pl-mark line{
  stroke:var(--gold); stroke-width:2; fill:none;
  stroke-dasharray:1; stroke-dashoffset:1;
  animation:draw 1.4s var(--ease) forwards;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }
.pl-bar{ width:140px; height:1px; background:var(--line-soft); position:relative; overflow:hidden; }
.pl-bar::after{ content:""; position:absolute; inset:0; width:40%; background:var(--gold); animation:load 1.4s var(--ease) infinite; }
@keyframes load{ 0%{ transform:translateX(-120%);} 100%{ transform:translateX(360%);} }

/* ===========================================================
   NAV
   =========================================================== */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px var(--pad-x);
  transition:background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(9,8,10,.72);
  backdrop-filter:blur(18px) saturate(1.2);
  -webkit-backdrop-filter:blur(18px) saturate(1.2);
  border-bottom:1px solid var(--line-soft);
  padding-top:16px; padding-bottom:16px;
}
.nav__brand{ display:flex; align-items:center; gap:13px; }
.nav__brand .mark{ width:40px; height:40px; object-fit:contain; }
.nav__brand .wordmark{ display:flex; flex-direction:column; line-height:1; }
.nav__brand .wordmark .w1{ font-family:var(--body); font-weight:300; font-size:11px; letter-spacing:.34em; text-transform:uppercase; color:var(--text); }
.nav__brand .wordmark .w2{ font-family:var(--display); font-style:italic; font-size:21px; color:var(--light); letter-spacing:.01em; margin-top:2px; }
.nav__links{ display:flex; align-items:center; gap:34px; }
.nav__links a{ font-size:12.5px; letter-spacing:.13em; text-transform:uppercase; color:var(--text); position:relative; transition:color .35s; }
.nav__links a::after{ content:""; position:absolute; left:0; bottom:-6px; height:1px; width:0; background:var(--gold); transition:width .4s var(--ease); }
.nav__links a:hover{ color:var(--light); }
.nav__links a:hover::after{ width:100%; }
.nav__phone{
  display:inline-flex; align-items:center; gap:.6em;
  font-size:12.5px; letter-spacing:.1em; color:var(--gold);
  padding:.7em 1.25em; border:1px solid var(--line); border-radius:2px;
  transition:border-color .4s, background .4s, color .4s;
}
.nav__phone:hover{ border-color:var(--gold); background:var(--gold); color:var(--bg); }
.nav__phone svg{ width:14px; height:14px; }
.nav__right{ display:flex; align-items:center; gap:14px; }

/* Burger */
.nav__burger{
  display:none; width:46px; height:46px; flex:none;
  align-items:center; justify-content:center; flex-direction:column; gap:6px;
  background:transparent; border:1px solid var(--line); border-radius:2px; cursor:pointer;
  transition:border-color .4s;
}
.nav__burger span{ display:block; width:20px; height:1.5px; background:var(--light); transition:transform .4s var(--ease), opacity .3s; }
.nav__burger.open{ border-color:var(--gold); }
.nav__burger.open span:nth-child(1){ transform:translateY(3.75px) rotate(45deg); }
.nav__burger.open span:nth-child(2){ transform:translateY(-3.75px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu{
  position:fixed; inset:0; z-index:999;
  background:rgba(9,8,10,.94); backdrop-filter:blur(22px) saturate(1.1);
  -webkit-backdrop-filter:blur(22px) saturate(1.1);
  display:flex; flex-direction:column; justify-content:center; gap:clamp(30px,7vh,64px);
  padding:14vh var(--pad-x) 8vh;
  opacity:0; visibility:hidden; transform:translateY(-12px);
  transition:opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.mobile-menu.open{ opacity:1; visibility:visible; transform:none; }
.mobile-menu__links{ display:flex; flex-direction:column; gap:clamp(14px,3.4vh,30px); }
.mobile-menu__links a{
  display:flex; align-items:baseline; gap:18px;
  font-family:var(--display); font-size:clamp(34px,11vw,56px); color:var(--light); line-height:1;
  border-bottom:1px solid var(--line-soft); padding-bottom:clamp(14px,3.4vh,30px);
}
.mobile-menu__links a:last-child{ border-bottom:0; }
.mobile-menu__links .mm-no{ font-family:var(--body); font-size:13px; letter-spacing:.2em; color:var(--gold); font-weight:400; }
.mobile-menu__phone{
  display:inline-flex; align-items:center; gap:.7em; align-self:flex-start;
  font-size:15px; letter-spacing:.08em; color:var(--gold);
  padding:.9em 1.6em; border:1px solid var(--gold); border-radius:2px;
}
.mobile-menu__phone svg{ width:16px; height:16px; }
html.menu-open{ overflow:hidden; }
html.menu-open body{ overflow:hidden; }

/* ===========================================================
   LAYOUT HELPERS
   =========================================================== */
section{ position:relative; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding-left:var(--pad-x); padding-right:var(--pad-x); }
.section-pad{ padding-top:clamp(90px,13vh,190px); padding-bottom:clamp(90px,13vh,190px); }

/* Reveal utility (driven by JS / ScrollTrigger) */
.reveal{ opacity:0; transform:translateY(34px); }
.reveal.in{ opacity:1; transform:none; transition:opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }

/* Masked line reveal for headlines */
.line-mask{ display:block; overflow:hidden; }
.line-mask > span{ display:block; transform:translateY(110%); }
.line-mask.in > span{ transform:none; transition:transform 1.05s var(--ease-out); }

/* ===========================================================
   HERO — normal autoplay video
   =========================================================== */
#hero{ height:100vh; height:100svh; position:relative; }
.hero__stage{
  position:relative; top:0; height:100vh; height:100svh; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.hero__video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0;
  transform:scale(1.06); will-change:transform;
}
.hero__veil{
  position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(120% 90% at 50% 30%, transparent 30%, rgba(9,8,10,.42) 78%, rgba(9,8,10,.92) 100%),
    linear-gradient(to bottom, rgba(9,8,10,.55) 0%, transparent 22%, transparent 55%, rgba(9,8,10,.8) 100%);
}
.hero__content{ position:relative; z-index:2; text-align:center; padding:0 var(--pad-x); width:100%; }
.hero__eyebrow{ margin-bottom:30px; opacity:1; }
#hero h1{
  font-size:clamp(44px,8.4vw,148px);
  line-height:.92;
  letter-spacing:-.015em;
}
#hero h1 .l{ display:block; overflow:hidden; }
#hero h1 .l > span{ display:block; transform:translateY(0); }
@keyframes heroFade{ from{ opacity:0; transform:translateY(12px); } to{ opacity:1; transform:none; } }
.hero__sub{
  margin:34px auto 0; max-width:52ch;
  font-size:clamp(15px,1.3vw,20px); color:var(--text); font-weight:300;
  opacity:1;
}
.hero__meta{
  position:absolute; left:var(--pad-x); right:var(--pad-x); bottom:34px; z-index:2;
  display:flex; align-items:flex-end; justify-content:space-between; gap:20px;
  opacity:1;
}
.hero__meta .loc{ font-size:12px; letter-spacing:.28em; text-transform:uppercase; color:var(--text); }
.scroll-hint{ display:flex; flex-direction:column; align-items:center; gap:10px; font-size:10.5px; letter-spacing:.32em; text-transform:uppercase; color:var(--gold); }
.scroll-hint .track{ width:1px; height:46px; background:var(--line-soft); position:relative; overflow:hidden; }
.scroll-hint .track::after{ content:""; position:absolute; top:0; left:0; width:100%; height:40%; background:var(--gold); animation:scrolldot 2.1s var(--ease) infinite; }
@keyframes scrolldot{ 0%{ transform:translateY(-110%);} 60%,100%{ transform:translateY(280%);} }

/* ===========================================================
   INTRO STATEMENT + STATS
   =========================================================== */
.intro{ background:var(--bg); }
.intro__statement{
  font-size:clamp(28px,4.6vw,76px);
  line-height:1.08; letter-spacing:-.01em;
  max-width:20ch;
}
.intro__statement .dim{ color:rgba(184,178,165,.42); }
.intro__grid{
  display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(40px,7vw,120px);
  align-items:end; margin-top:clamp(50px,7vw,96px);
}
.intro__copy p{ margin-bottom:1.3em; max-width:42ch; }
.intro__copy p:last-child{ margin-bottom:0; }

.stats{
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line-soft);
  margin-top:clamp(60px,8vw,120px);
}
.stat{ padding:38px 26px 0; border-right:1px solid var(--line-soft); }
.stat:last-child{ border-right:0; }
.stat .num{ font-family:var(--display); font-size:clamp(46px,5.6vw,86px); color:var(--gold); line-height:1; font-weight:300; }
.stat .lab{ margin-top:14px; font-size:12.5px; letter-spacing:.16em; text-transform:uppercase; color:var(--text); }

/* ===========================================================
   SECTION HEADERS
   =========================================================== */
.sec-head{ display:flex; flex-direction:column; gap:26px; max-width:var(--maxw); }
.sec-head h2{ font-size:clamp(34px,5.2vw,86px); line-height:1.0; }
.sec-head .lede{ font-size:clamp(15px,1.2vw,19px); }

/* ===========================================================
   SERVICES
   =========================================================== */
.svc-index{
  margin-top:clamp(50px,6vw,90px);
  border-top:1px solid var(--line-soft);
}
.svc{
  display:grid; grid-template-columns:1fr 1fr; min-height:88vh;
  border-bottom:1px solid var(--line-soft);
  position:relative;
}
.svc--rev .svc__media{ order:2; }
.svc__media{ position:relative; overflow:hidden; }
.svc__media img,.svc__media video{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  transform:scale(1.18); will-change:transform;
}
.svc__media .tint{ position:absolute; inset:0; background:linear-gradient(120deg, rgba(9,8,10,.5), rgba(9,8,10,.05)); z-index:1; }
.svc__body{
  display:flex; flex-direction:column; justify-content:center;
  padding:clamp(44px,6vw,96px) clamp(28px,5vw,90px);
  gap:26px;
}
.svc__no{ font-family:var(--display); font-style:italic; font-size:22px; color:var(--gold); }
.svc__title{ font-size:clamp(30px,3.3vw,54px); line-height:1.06; max-width:15ch; text-wrap:balance; }
.svc__desc{ max-width:44ch; }
.svc__list{ display:flex; flex-wrap:wrap; gap:10px 10px; margin-top:6px; }
.svc__list li{
  list-style:none; font-size:12.5px; letter-spacing:.05em; color:var(--text);
  border:1px solid var(--line-soft); border-radius:40px; padding:.55em 1.1em;
  transition:border-color .4s, color .4s;
}
.svc__list li:hover{ border-color:var(--gold); color:var(--light); }
.svc__cta{ margin-top:10px; }
.svc__cta a{ display:inline-flex; align-items:center; gap:.6em; font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); }
.svc__cta a .ar{ transition:transform .4s var(--ease); }
.svc__cta a:hover .ar{ transform:translateX(7px); }

/* ===========================================================
   BEFORE / AFTER
   =========================================================== */
.ba{ background:var(--bg-2); }
.ba__head{ display:flex; justify-content:space-between; align-items:flex-end; gap:30px; flex-wrap:wrap; margin-bottom:clamp(36px,5vw,64px); }
.ba__stage{
  position:relative; width:100%; aspect-ratio:16/10; max-height:78vh;
  overflow:hidden; border:1px solid var(--line-soft);
  user-select:none; cursor:ew-resize;
}
.ba__stage img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ba__after{ z-index:1; }
.ba__before{ z-index:2; clip-path:inset(0 50% 0 0); }
.ba__label{
  position:absolute; bottom:20px; z-index:4;
  font-size:11px; letter-spacing:.28em; text-transform:uppercase;
  padding:.6em 1.1em; background:rgba(9,8,10,.6); backdrop-filter:blur(6px); color:var(--light);
  border:1px solid var(--line-soft);
}
.ba__label.l{ left:20px; } .ba__label.r{ right:20px; color:var(--gold-light); }
.ba__handle{
  position:absolute; top:0; bottom:0; left:50%; z-index:3; width:2px;
  background:var(--gold); transform:translateX(-1px);
}
.ba__grip{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:54px; height:54px; border-radius:50%;
  background:rgba(9,8,10,.55); backdrop-filter:blur(8px);
  border:1px solid var(--gold);
  display:flex; align-items:center; justify-content:center; gap:5px;
  box-shadow:0 12px 40px -12px var(--gold-glow);
}
.ba__grip svg{ width:9px; height:14px; stroke:var(--gold); fill:none; }

/* ===========================================================
   PROCESS
   =========================================================== */
.proc{ position:relative; overflow:hidden; }
.proc__bg{ position:absolute; inset:0; z-index:0; }
.proc__bg video{ width:100%; height:100%; object-fit:cover; opacity:.22; transform:scale(1.08); }
.proc__bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(to right, var(--bg) 8%, rgba(9,8,10,.6) 60%, var(--bg) 100%); }
.proc__inner{ position:relative; z-index:1; }
.proc__steps{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  margin-top:clamp(48px,6vw,88px);
  border-top:1px solid var(--line);
}
.pstep{ padding:36px 28px 0; border-right:1px solid var(--line-soft); position:relative; }
.pstep:last-child{ border-right:0; }
.pstep .pno{ font-family:var(--display); font-style:italic; font-size:20px; color:var(--gold); }
.pstep h3{ font-size:clamp(22px,2vw,30px); margin:18px 0 14px; }
.pstep p{ font-size:14.5px; max-width:30ch; }
.pstep .dot{ position:absolute; top:-5px; left:0; width:9px; height:9px; border-radius:50%; background:var(--gold); }

/* ===========================================================
   ÜBER / COMPANY
   =========================================================== */
.about__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,100px); align-items:center; }
.about__media{ position:relative; aspect-ratio:4/5; overflow:hidden; border:1px solid var(--line-soft); }
.about__media img{ width:100%; height:100%; object-fit:cover; transform:scale(1.12); will-change:transform; }
.about__media .badge{
  position:absolute; left:22px; bottom:22px; z-index:2;
  display:flex; align-items:center; gap:12px;
  padding:.85em 1.2em; background:rgba(9,8,10,.62); backdrop-filter:blur(10px);
  border:1px solid var(--line); border-radius:2px;
}
.about__media .badge img{ width:34px; height:34px; object-fit:contain; }
.about__media .badge b{ font-family:var(--display); font-style:italic; font-weight:400; color:var(--light); font-size:18px; }
.about__media .badge span{ display:block; font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); }
.about h2{ font-size:clamp(30px,4vw,62px); line-height:1.02; margin-bottom:30px; }
.about p{ margin-bottom:1.3em; max-width:48ch; }
.about__quote{
  margin-top:38px; padding-left:28px; border-left:2px solid var(--gold);
  font-family:var(--display); font-style:italic; font-size:clamp(20px,2vw,28px);
  color:var(--gold-light); line-height:1.32; max-width:40ch;
}

/* ===========================================================
   ZIELGRUPPEN
   =========================================================== */
.aud__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:clamp(46px,5vw,80px); }
.aud{
  border:1px solid var(--line-soft); padding:clamp(30px,2.6vw,46px);
  min-height:300px; display:flex; flex-direction:column; justify-content:space-between; gap:30px;
  transition:border-color .5s, background .5s, transform .5s var(--ease);
  background:var(--fill-soft);
}
.aud:hover{ border-color:var(--line); background:var(--bg-2); transform:translateY(-6px); }
.aud .icn{ width:40px; height:40px; stroke:var(--gold); fill:none; stroke-width:1.2; }
.aud h3{ font-size:clamp(22px,2vw,30px); margin-bottom:12px; }
.aud p{ font-size:14.5px; max-width:34ch; }
.aud .idx{ font-family:var(--display); font-style:italic; color:var(--gold); font-size:18px; }

/* ===========================================================
   USPs marquee strip
   =========================================================== */
.usps{ border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); padding:30px 0; overflow:hidden; background:var(--bg-2); }
.usps__track{ display:flex; gap:64px; width:max-content; animation:marq 38s linear infinite; }
.usps:hover .usps__track{ animation-play-state:paused; }
@keyframes marq{ to{ transform:translateX(-50%); } }
.usp{ display:inline-flex; align-items:center; gap:16px; font-family:var(--display); font-style:italic; font-size:clamp(22px,2.4vw,34px); color:var(--light); white-space:nowrap; }
.usp svg{ width:22px; height:22px; stroke:var(--gold); fill:none; flex:none; }

/* ===========================================================
   KONTAKT
   =========================================================== */
.contact__grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,100px); }
.contact__info .ci{ padding:26px 0; border-bottom:1px solid var(--line-soft); display:flex; gap:22px; align-items:flex-start; }
.contact__info .ci:first-of-type{ border-top:1px solid var(--line-soft); }
.contact__info .ci .icn{ width:22px; height:22px; stroke:var(--gold); fill:none; stroke-width:1.3; margin-top:4px; flex:none; }
.contact__info .ci .k{ font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.contact__info .ci .v{ font-family:var(--display); font-size:clamp(21px,1.7vw,27px); color:var(--light); line-height:1.15; }
.contact__info .ci .v a{ transition:color .35s; }
.contact__info .ci .v a:hover{ color:var(--gold); }
.contact__info .ci small{ display:block; font-family:var(--body); font-size:13px; color:var(--text); margin-top:6px; letter-spacing:.02em; }

.form{ display:grid; gap:22px; }
.form .row{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.field{ display:flex; flex-direction:column; gap:9px; }
.field label{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--text); }
.field input,.field select,.field textarea{
  background:transparent; border:0; border-bottom:1px solid var(--line-soft);
  color:var(--light); font-family:var(--body); font-size:16px; font-weight:300;
  padding:12px 2px; transition:border-color .4s;
}
.field textarea{ resize:vertical; min-height:96px; }
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--gold); }
.field select{ -webkit-appearance:none; appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23C9A84C'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 4px center; }
.field select option{ background:var(--bg-2); color:var(--light); }
.form .submit-row{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.form .note{ font-size:12.5px; color:rgba(184,178,165,.6); max-width:34ch; }
.form .ok{ font-size:14px; color:var(--gold); display:none; }
.form.sent .ok{ display:block; }

.map{
  margin-top:clamp(60px,8vw,110px); position:relative; height:clamp(280px,42vh,460px);
  border:1px solid var(--line-soft); overflow:hidden; background:var(--bg);
}
.map iframe{ position:absolute; inset:0; z-index:2; width:100%; height:100%; border:0; filter:grayscale(1) invert(.9) hue-rotate(180deg) contrast(.9) brightness(.85); }
.map__fallback{ position:absolute; inset:0; z-index:1; background:
  radial-gradient(120% 120% at 50% 50%, rgba(201,168,76,.06), transparent 60%), var(--bg-2); }
.map__grid{ position:absolute; inset:0; opacity:.5;
  background-image:linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size:48px 48px; mask-image:radial-gradient(80% 80% at 50% 50%, #000 40%, transparent 100%); }
.map__roads{ position:absolute; inset:0; opacity:.35;
  background-image:
    linear-gradient(28deg, transparent 48%, var(--line) 48.4%, var(--line) 49%, transparent 49.4%),
    linear-gradient(-52deg, transparent 64%, var(--line) 64.3%, var(--line) 64.8%, transparent 65.1%),
    linear-gradient(82deg, transparent 30%, var(--line) 30.3%, var(--line) 30.7%, transparent 31%); }
.map__pin{ position:absolute; top:50%; left:50%; transform:translate(-50%,-100%); z-index:2; }
.map__pin svg{ width:36px; height:36px; position:relative; z-index:2; filter:drop-shadow(0 6px 14px rgba(0,0,0,.6)); }
.map__pin .pulse{ position:absolute; left:50%; bottom:2px; width:16px; height:16px; border-radius:50%; transform:translate(-50%,50%);
  background:var(--gold); opacity:.35; animation:pinpulse 2.4s ease-out infinite; }
@keyframes pinpulse{ 0%{ transform:translate(-50%,50%) scale(.4); opacity:.5; } 100%{ transform:translate(-50%,50%) scale(3.4); opacity:0; } }
.map__tag{
  position:absolute; left:24px; top:24px; z-index:3; pointer-events:none;
  padding:.8em 1.2em; background:rgba(9,8,10,.7); backdrop-filter:blur(8px);
  border:1px solid var(--line); font-size:12px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold);
}
.map__link{
  position:absolute; right:24px; bottom:24px; z-index:3;
  padding:.7em 1.15em; background:rgba(9,8,10,.7); backdrop-filter:blur(8px);
  border:1px solid var(--line); border-radius:2px;
  font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--gold);
  transition:background .4s, color .4s;
}
.map__link:hover{ background:var(--gold); color:var(--bg); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer{ border-top:1px solid var(--line-soft); padding:clamp(60px,8vw,110px) 0 40px; }
.footer__top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; align-items:flex-start; }
.footer__brand .footer__logo{ width:clamp(180px,16vw,230px); height:auto; margin-bottom:6px; }
.footer__brand .w2{ font-family:var(--display); font-style:italic; font-size:30px; color:var(--light); }
.footer__brand .w1{ font-size:11px; letter-spacing:.32em; text-transform:uppercase; color:var(--text); }
.footer__brand p{ margin-top:18px; max-width:34ch; font-size:14px; }
.footer__cols{ display:flex; gap:clamp(40px,6vw,100px); flex-wrap:wrap; }
.footer__col{ min-width:168px; }
.footer__col h4{ font-family:var(--body); font-weight:400; font-size:11px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.footer__col a,.footer__col span{ display:block; font-size:14px; color:var(--text); margin-bottom:11px; transition:color .35s; }
.footer__col a:hover{ color:var(--light); }
.footer__bottom{ margin-top:clamp(50px,7vw,90px); padding-top:26px; border-top:1px solid var(--line-soft);
  display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; font-size:12px; letter-spacing:.06em; color:rgba(184,178,165,.55); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */

/* ---------- TABLET & below (≤1080) ---------- */
@media (max-width:1080px){
  /* Tighter horizontal rhythm so content isn't squeezed by huge gutters */
  :root{ --pad-x:clamp(24px,5vw,72px); }
  .sec-head .lede,.lede{ max-width:54ch; }
}

/* ---------- TABLET (≤980) ---------- */
@media (max-width:980px){
  .nav{ padding:18px var(--pad-x); }
  .nav.scrolled{ padding-top:14px; padding-bottom:14px; }
  .nav__links{ display:none; }
  .nav__burger{ display:flex; }

  .section-pad{ padding-top:clamp(72px,9vh,120px); padding-bottom:clamp(72px,9vh,120px); }

  .intro__grid{ grid-template-columns:1fr; gap:38px; align-items:start; }
  .intro__cta{ margin-top:4px; }

  /* Stats: 2×2 reads far cleaner than a cramped 4-up on tablet */
  .stats{ grid-template-columns:1fr 1fr; }
  .stat{ padding:32px 22px; border-bottom:1px solid var(--line-soft); }
  .stat:nth-child(odd){ border-right:1px solid var(--line-soft); }
  .stat:nth-child(even){ border-right:0; }
  .stat:nth-last-child(-n+2){ border-bottom:0; }

  /* Services stack: media on top, copy below — consistent reading order */
  .svc{ grid-template-columns:1fr; min-height:auto; }
  .svc--rev .svc__media{ order:0; }
  .svc__media{ aspect-ratio:16/10; }
  .svc__media img,.svc__media video{ position:absolute; }
  .svc__body{ padding:clamp(38px,5vw,64px) clamp(26px,4vw,56px); gap:22px; }
  .svc__no{ font-size:18px; }

  .proc__steps{ grid-template-columns:1fr 1fr; }
  .pstep{ border-bottom:1px solid var(--line-soft); padding:32px 26px; }
  .pstep:nth-child(odd){ border-right:1px solid var(--line-soft); }
  .pstep:nth-child(even){ border-right:0; }
  .pstep:nth-last-child(-n+2){ border-bottom:0; }
  .pstep .dot{ top:-5px; }

  .about__grid{ grid-template-columns:1fr; gap:40px; }
  .about__media{ aspect-ratio:16/11; max-height:62vh; }

  .aud__grid{ grid-template-columns:1fr; gap:16px; }
  .aud{ min-height:auto; flex-direction:row; align-items:flex-start; justify-content:flex-start; gap:24px; padding:30px 28px; }
  .aud > div:first-child{ flex:none; }
  .aud > div:last-child{ flex:1; }

  .contact__grid{ grid-template-columns:1fr; gap:48px; }
  .ba__stage{ aspect-ratio:4/3; }

  .footer__top{ flex-direction:column; gap:48px; }
}

/* ---------- LARGE PHONE / SMALL TABLET (≤680) ---------- */
@media (max-width:680px){
  .proc__steps{ grid-template-columns:1fr; }
  .pstep{ border-right:0 !important; }
  .pstep:last-child{ border-bottom:0; }
  .footer__cols{ gap:36px 48px; }
  .footer__col{ min-width:140px; }
}

/* ---------- PHONE (≤620) ---------- */
@media (max-width:620px){
  /* Calmer vertical rhythm — luxury feel without endless scrolling */
  .section-pad{ padding-top:clamp(58px,8vh,84px); padding-bottom:clamp(58px,8vh,84px); }

  /* Nav: keep brand + actions comfortable, drop the phone label */
  .nav__phone{ padding:.6em; }
  .nav__phone span{ display:none; }
  .nav__brand{ gap:11px; }
  .nav__brand .mark{ width:34px; height:34px; }
  .nav__brand .wordmark .w1{ font-size:9.5px; letter-spacing:.26em; }
  .nav__brand .wordmark .w2{ font-size:17px; }
  .nav__right{ gap:9px; }

  /* Hero */
  #hero h1{ font-size:clamp(40px,12vw,58px); line-height:.96; }
  .hero__eyebrow{ margin-bottom:22px; font-size:11px; letter-spacing:.32em; text-align:center; }
  .hero__sub{ font-size:15px; margin-top:24px; max-width:34ch; }
  .hero__meta{ bottom:24px; }
  .hero__meta .loc{ display:none; }

  /* Statement / section heads scale down a touch */
  .intro__statement{ font-size:clamp(27px,8vw,40px); }
  .sec-head{ gap:20px; }
  .sec-head h2{ font-size:clamp(33px,9vw,48px); }

  /* Stats 2×2, tighter */
  .stats{ grid-template-columns:1fr 1fr; margin-top:44px; }
  .stat{ padding:26px 14px; }
  .stat .num{ font-size:clamp(42px,13vw,58px); }
  .stat .lab{ font-size:11px; letter-spacing:.12em; margin-top:10px; }

  /* Services */
  .svc__media{ aspect-ratio:4/3; }
  .svc__body{ padding:34px 24px 40px; gap:18px; }
  .svc__title{ font-size:clamp(28px,8vw,38px); }
  .svc__no{ font-size:17px; }
  .svc__list li{ font-size:12px; padding:.5em 1em; }

  /* Process */
  .pstep{ padding:28px 22px; }
  .pstep h3{ font-size:24px; margin:14px 0 12px; }

  /* About */
  .about__media{ aspect-ratio:4/3; }
  .about__media .badge{ left:16px; bottom:16px; padding:.7em 1em; gap:10px; }
  .about__media .badge b{ font-size:16px; }
  .about__quote{ margin-top:30px; padding-left:22px; }

  /* Audience cards: icon back on top for narrow screens */
  .aud{ flex-direction:column; gap:22px; padding:30px 26px; }

  /* Contact */
  .form .row{ grid-template-columns:1fr; }
  .contact__info .ci{ padding:22px 0; gap:18px; }
  .map{ height:clamp(260px,40vh,360px); }
  .map__tag{ left:16px; top:16px; font-size:11px; }
  .map__link{ right:16px; bottom:16px; }

  /* Before/After */
  .ba__head{ gap:16px; }
  .ba__label{ bottom:14px; font-size:10px; padding:.5em .9em; }
  .ba__label.l{ left:14px; } .ba__label.r{ right:14px; }
  .ba__grip{ width:48px; height:48px; }

  /* USP strip a touch smaller */
  .usps{ padding:24px 0; }
  .usps__track{ gap:44px; }
  .usp{ font-size:22px; gap:12px; }

  /* Footer */
  .footer__cols{ gap:32px 40px; }
  .footer__bottom{ gap:10px; }
}

/* ---------- SMALL PHONE (≤400) ---------- */
@media (max-width:400px){
  :root{ --pad-x:18px; }
  .nav__brand .wordmark .w1{ font-size:9px; letter-spacing:.22em; }
  .nav__brand .wordmark .w2{ font-size:16px; }
  .nav__right{ gap:7px; }
  .theme-toggle,.nav__burger{ width:42px; height:42px; }
  .nav__phone{ padding:.55em; }
  #hero h1{ font-size:clamp(36px,12.5vw,50px); }
  .hero__sub{ font-size:14.5px; }
  .stat .num{ font-size:clamp(38px,14vw,52px); }
}

@media (prefers-reduced-motion:reduce){
  .reveal,.line-mask>span{ opacity:1 !important; transform:none !important; }
  .usps__track{ animation:none; }
  #hero h1 .l > span,.hero__eyebrow,.hero__sub,.hero__meta{ animation:none !important; opacity:1 !important; transform:none !important; }
}

/* ===========================================================
   THEME TOGGLE BUTTON
   =========================================================== */
.theme-toggle{
  width:46px; height:46px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:transparent; border:1px solid var(--line); border-radius:2px;
  color:var(--gold); cursor:pointer;
  transition:border-color .4s, color .4s, background .4s;
}
.theme-toggle:hover{ border-color:var(--gold); color:var(--gold-light); }
.theme-toggle svg{ width:18px; height:18px; }
.theme-toggle .ic-sun{ display:none; }
.theme-toggle .ic-moon{ display:block; }

/* ===========================================================
   LIGHT MODE  —  warm-paper palette
   =========================================================== */
:root[data-theme="light"]{
  --gold:        #9A7A22;
  --gold-light:  #B0892A;
  --gold-dark:   #6E5418;
  --bg:          #F4F0E7;
  --bg-2:        #EAE3D5;
  --bg-3:        rgba(20,18,21,.04);
  --text:        #5C564A;
  --light:       #211C15;

  --line:        rgba(154,122,34,.30);
  --line-soft:   rgba(33,28,21,.12);
  --fill-soft:   rgba(33,28,21,.035);
  --gold-glow:   rgba(154,122,34,.18);
}

/* Toggle icon swap */
:root[data-theme="light"] .theme-toggle .ic-sun{ display:block; }
:root[data-theme="light"] .theme-toggle .ic-moon{ display:none; }

/* Softer paper grain instead of overlay-on-dark */
:root[data-theme="light"] body::after{ opacity:.035; mix-blend-mode:multiply; }

/* Keep selection / button ink dark on gold */
:root[data-theme="light"] ::selection{ color:#F4F0E7; background:var(--gold); }
:root[data-theme="light"] .btn{ color:#F4F0E7; }
:root[data-theme="light"] .nav__phone:hover{ color:#231F18; }
:root[data-theme="light"] .map__link:hover{ color:#F4F0E7; }

/* ---- Always-dark zones (text/badges sit over video or dark scrims) ---- */
:root[data-theme="light"] #hero,
:root[data-theme="light"] .proc,
:root[data-theme="light"] .ba__label,
:root[data-theme="light"] .ba__grip,
:root[data-theme="light"] .about__media .badge,
:root[data-theme="light"] #preloader{
  --bg:#09080A; --bg-2:#100D10; --text:#B8B2A5; --light:#F0EBE2;
  --gold:#C9A84C; --gold-light:#E8D099;
  --line:rgba(201,168,76,.22); --line-soft:rgba(240,235,226,.10); --gold-glow:rgba(201,168,76,.14);
}
:root[data-theme="light"] #preloader{ background:#09080A; }
:root[data-theme="light"] .proc{ background:#0b090b; }

/* ---- Nav: light text over hero at top, dark ink once scrolled ---- */
:root[data-theme="light"] .nav{
  --text:#DAD4C7; --light:#F4EFE6; --gold:#CDA94E;
  --line:rgba(201,168,76,.32); --line-soft:rgba(240,235,226,.16);
}
:root[data-theme="light"] .nav.scrolled{
  --text:#6A6457; --light:#231E17; --gold:#9A7A22;
  --line:rgba(154,122,34,.32); --line-soft:rgba(33,28,21,.12);
  background:rgba(245,241,233,.82); border-bottom-color:rgba(33,28,21,.10);
}

/* Logo darkening on light surfaces (CSS-only, no new asset) */
.nav__brand .mark{ transition:filter .4s var(--ease); }
:root[data-theme="light"] .nav.scrolled .nav__brand .mark{ filter:brightness(.12); }
:root[data-theme="light"] .footer__brand .footer__logo{ filter:brightness(.12); }

/* Mobile menu overlay → light glass */
:root[data-theme="light"] .mobile-menu{ background:rgba(244,240,231,.95); }

/* Map: show it bright in light mode */
:root[data-theme="light"] .map iframe{ filter:grayscale(.25) contrast(.96) brightness(1.02); }

/* Hardcoded dim greys → warm ink equivalents */
:root[data-theme="light"] .intro__statement .dim{ color:rgba(60,54,44,.40); }
:root[data-theme="light"] .form .note{ color:rgba(60,54,44,.62); }
:root[data-theme="light"] .footer__bottom{ color:rgba(60,54,44,.55); }

/* Smooth cross-fade only while toggling */
html.theme-transition,
html.theme-transition *{
  transition:background-color .45s ease, color .45s ease, border-color .45s ease,
             fill .45s ease, stroke .45s ease, filter .45s ease !important;
}
