/* ════ RESET & TOKENS ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #0A0C12;   /* main dark bg */
  --dark2:   #0E1018;   /* slightly lighter dark */
  --surface: #161A22;
  --white:   #FFFFFF;
  --light:   #F5F0E8;
  --muted:   #8A8880;
  --accent:  #C4793A;
  --stroke:  rgba(255,255,255,0.08);
  --sans:    'Plus Jakarta Sans', sans-serif;
  --body:    'DM Sans', sans-serif;
  --serif:   'Instrument Serif', serif;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--light);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
em { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ════ GLOBAL REVEAL ════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--index, 0) * 0.12s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: 0.15s;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ════ SHARED SECTION ══════════════════════════════════════ */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 8vw; }

.section-header { margin-bottom: 64px; }
.section-label {
  font-family: var(--body); font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(30px, 4vw, 46px); line-height: 1.1; margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--muted); max-width: 480px; }
.section-header.dark .section-sub { color: var(--muted); }

/* ════ BUTTONS ══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: 999px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-primary:hover { background: #ae6530; transform: scale(1.04); box-shadow: 0 8px 32px rgba(196,121,58,.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--light);
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  padding: 13px 32px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.18);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.btn-outline:hover { border-color: rgba(196,121,58,.6); background: rgba(196,121,58,.08); transform: scale(1.04); }

/* ════ LOADING SCREEN ══════════════════════════════════════ */
#loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .7s ease, visibility .7s ease;
}
#loading-screen.done { opacity: 0; visibility: hidden; pointer-events: none; }

.ls-label {
  position: absolute; top: 36px; left: 8vw;
  font-family: var(--body); font-size: 11px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.ls-word-wrap { overflow: hidden; }
.ls-word {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: clamp(48px, 9vw, 110px);
  color: rgba(245,240,232,.75); animation: wordIn .4s var(--ease) both;
}
@keyframes wordIn  { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes wordOut { from { opacity:1; transform:translateY(0); }    to { opacity:0; transform:translateY(-20px); } }
.ls-word.out { animation: wordOut .3s ease forwards; }

.ls-counter {
  position: absolute; bottom: 64px; right: 8vw;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(72px, 11vw, 140px);
  color: var(--light); line-height: 1; user-select: none;
}
.ls-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--stroke); }
.ls-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--accent), #e8a06a);
  box-shadow: 0 0 12px rgba(196,121,58,.4);
}

/* ════ NAVBAR ═══════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: center;
  padding: 20px 24px; pointer-events: none;
  transform: translateY(-110%); transition: transform .5s var(--ease);
}
#navbar.visible { transform: translateY(0); }
#navbar.hide    { transform: translateY(-110%); }

.nav-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 8px; border-radius: 999px;
  background: #0D1120;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: all;
  transition: box-shadow .3s ease;
}
#navbar.scrolled .nav-pill { box-shadow: 0 8px 40px rgba(0,0,0,.5); }

/* Logo in navbar */
.nav-logo-link { display: flex; align-items: center; padding: 2px 6px; }
.nav-logo-img  { height: 28px; width: auto; display: block; }

.nav-divider { width: 1px; height: 22px; background: var(--stroke); margin: 0 6px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--body); font-weight: 400; font-size: 14px;
  color: var(--muted); padding: 7px 14px; border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--light); background: rgba(255,255,255,.07); }

.btn-nav {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--body); font-weight: 500; font-size: 14px;
  color: #fff; background: var(--accent);
  padding: 8px 18px; border-radius: 999px; margin-left: 4px;
  white-space: nowrap; transition: background .2s ease, transform .2s ease;
}
.btn-nav:hover { background: #ae6530; transform: scale(1.04); }
.btn-arrow { font-size: 13px; }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; margin-left: 4px;
}
.burger span {
  display: block; width: 20px; height: 2px; background: var(--light);
  border-radius: 2px; transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--dark);
  flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul   { display: flex; flex-direction: column; align-items: center; gap: 28px; margin-bottom: 48px; }
.mobile-menu a    { font-family: var(--sans); font-weight: 700; font-size: 32px; color: var(--light); transition: color .2s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-cta { font-size: 16px !important; font-weight: 600 !important; }

/* ════ §1 HERO ══════════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.hero-vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-vid-mobile { display: none; }

.scrub-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.scrub-vid-mobile { display: none; }
.hero-overlay-dark {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(8,10,14,.52);
  box-shadow: inset 0 0 180px rgba(8,10,14,.65);
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 260px; z-index: 2;
  background: linear-gradient(to top, var(--dark), transparent);
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 24px; max-width: 760px; width: 100%;
}
.hero-eyebrow {
  font-family: var(--body); font-weight: 500;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
#hero h1 {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.08; color: var(--light); margin-bottom: 18px;
}
.h1-line { display: block; }
.h1-accent {
  font-family: var(--serif); font-style: italic;
  color: var(--accent); font-size: clamp(44px, 6.4vw, 76px);
}
.hero-sub {
  font-family: var(--body); font-weight: 300;
  font-size: 18px; color: var(--muted); margin-bottom: 34px;
}
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

.hero-anim {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d) * .15s + .1s);
}
body.hero-ready .hero-anim { opacity: 1; transform: translateY(0); }

.hero-replay {
  position: absolute; z-index: 4; bottom: 80px; right: 6vw;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.55); border: 1px solid rgba(245,240,232,.2);
  color: var(--light); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease, background .2s ease, transform .2s ease;
  backdrop-filter: blur(8px);
}
.hero-replay.visible { opacity: 1; pointer-events: all; }
.hero-replay:hover { background: var(--accent); transform: scale(1.1); }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: .45; transition: opacity .5s ease;
}
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }
.scroll-label { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 48px; background: rgba(245,240,232,.15); position: relative; overflow: hidden; }
.scroll-dot {
  position: absolute; top: 0; left: 0; width: 100%; height: 40%;
  background: var(--light); animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown { from { transform: translateY(-100%); } to { transform: translateY(300%); } }

/* ════ §2 SOCIAL PROOF ══════════════════════════════════════ */
/* Less flashy: dark background with accent numbers */
.social-proof {
  background: var(--dark2);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 56px 8vw;
}
.sp-grid {
  display: flex; align-items: center; justify-content: center;
  max-width: 860px; margin: 0 auto;
}
.sp-block { flex: 1; text-align: center; padding: 0 40px; }
.sp-num {
  display: block; font-family: var(--sans); font-weight: 800;
  font-size: clamp(44px, 6vw, 66px);
  color: var(--accent); line-height: 1; margin-bottom: 8px;
  white-space: nowrap;
}
.sp-label {
  font-family: var(--body); font-weight: 500;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
}
.sp-sep { width: 1px; height: 80px; background: var(--stroke); flex-shrink: 0; }

/* ════ §3 SERVICES ══════════════════════════════════════════ */
.services { background: var(--dark); padding: 120px 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.service-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--stroke); background: transparent;
  transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(196,121,58,.35); box-shadow: 0 20px 60px rgba(0,0,0,.45); }

.card-img-wrap {
  width: 100%; position: relative; overflow: hidden;
  padding-bottom: 75%; /* 4:3 ratio — iOS Safari safe */
}
.card-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.service-card:hover .card-img-wrap img { transform: scale(1.04); }

.card-body { padding: 28px 32px 32px; }
.card-body h3 { font-family: var(--sans); font-weight: 700; font-size: 22px; color: var(--light); margin-bottom: 16px; }
.card-body ul { margin-bottom: 26px; }
.card-body li {
  font-size: 14px; color: rgba(245,240,232,.75);
  padding: 5px 0 5px 16px; position: relative;
}
.card-body li::before { content: '·'; position: absolute; left: 0; color: var(--accent); font-size: 18px; line-height: 1.55; }

.card-cta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff;
  font-family: var(--body); font-weight: 600; font-size: 14px;
  padding: 10px 22px; border-radius: 999px;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.card-cta-pill:hover { background: #ae6530; transform: scale(1.04); box-shadow: 0 8px 28px rgba(196,121,58,.32); }

/* ════ §4 PROJECTS — Bento Grid ════════════════════════════ */
.projects { background: #FFFFFF; padding: 120px 0; color: var(--dark); }
.projects .section-label { color: var(--accent); }
.projects h2 { color: var(--dark); }
.projects .section-sub { color: #666; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bento-7  { grid-column: span 7; }
.bento-5  { grid-column: span 5; }
.bento-12 { grid-column: span 12; }

.bento-item {
  position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
  background: #e8e8e8;
}
.bento-7, .bento-5 { padding-bottom: 75%; } /* 4:3 — iOS Safari safe */
.bento-12 { padding-bottom: 33%; }          /* ~21:7 */

.bento-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s ease;
}
.bento-item:hover img { transform: scale(1.05); }

.bento-hover {
  position: absolute; inset: 0;
  background: rgba(10,12,18,.68); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0; transition: opacity .3s ease;
}
.bento-item:hover .bento-hover { opacity: 1; }

.bento-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(196,121,58,.15); border: 1px solid rgba(196,121,58,.4);
  color: #fff; font-family: var(--body); font-size: 13px; font-weight: 500;
  padding: 7px 16px; border-radius: 999px; backdrop-filter: blur(6px);
}

.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(5,7,12,.96); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: none; border: none;
  color: var(--light); cursor: pointer; opacity: .65; transition: opacity .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { opacity: 1; }
.lb-close { top: 24px; right: 32px; font-size: 22px; }
.lb-prev  { left: 20px;  top: 50%; transform: translateY(-50%); font-size: 52px; }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); font-size: 52px; }

/* ════ §5 ADO DIFFERENCE ════════════════════════════════════ */
.ado-diff { background: var(--dark2); padding: 120px 0; }
.ado-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.ado-left h2 { font-family: var(--sans); font-weight: 800; font-size: clamp(26px, 3.5vw, 40px); line-height: 1.15; margin-bottom: 22px; }
.ado-para { font-size: 16px; color: rgba(245,240,232,.8); margin-bottom: 36px; line-height: 1.75; }
.ado-values { display: flex; flex-direction: column; gap: 22px; }
.ado-val { display: flex; align-items: flex-start; gap: 16px; }
.ado-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(196,121,58,.1); display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.ado-val strong { display: block; font-family: var(--sans); font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.ado-val p { font-size: 14px; color: var(--muted); }

.ado-right { position: relative; text-align: center; padding: 60px 32px; }
.ado-deco-num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(90px, 13vw, 160px);
  color: rgba(245,240,232,.04); line-height: 1;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  white-space: nowrap; user-select: none;
}
.ado-exp-label {
  font-family: var(--body); font-weight: 500; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px; position: relative;
}
.ado-quote {
  background: var(--surface); border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0; padding: 24px 28px; text-align: left;
}
.ado-quote p { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.65; color: var(--light); margin-bottom: 14px; }
.ado-quote footer { font-size: 14px; color: var(--muted); }
.ado-quote .stars { color: #f5b800; }

/* ════ §6 SCROLL SCRUB ══════════════════════════════════════ */
#scroll-scrub { height: 500vh; position: relative; }
.scrub-sticky { position: sticky; top: 0; height: 100vh; height: 100dvh; overflow: hidden; background: var(--dark2); }

/* iOS fallback — frame images swap via JS */
.scrub-ios-frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 1;
  transition: opacity .35s ease;
}
.scrub-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(5,7,12,.45); box-shadow: inset 0 0 120px rgba(5,7,12,.55);
}
.scrub-states { position: absolute; bottom: 10vh; left: 8vw; z-index: 2; max-width: 480px; }
.scrub-state { opacity: 0; transition: opacity .5s ease; position: absolute; bottom: 0; left: 0; }
.scrub-state.active { opacity: 1; position: relative; }
.scrub-title { font-family: var(--sans); font-weight: 800; font-size: clamp(28px, 4vw, 48px); color: var(--light); line-height: 1.1; margin-bottom: 10px; }
.scrub-sub { font-size: 16px; color: rgba(245,240,232,.7); }
.scrub-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.1); z-index: 3; }
.scrub-progress-fill { height: 100%; width: 0%; background: var(--accent); }

/* ════ §7 TESTIMONIALS ══════════════════════════════════════ */
.testimonials { background: #FFFFFF; padding: 100px 0; color: var(--dark); }
.testimonials .section-label { color: var(--accent); }
.testimonials h2 { color: var(--dark); }

.carousel-wrap { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 24px; transition: transform .5s var(--ease); }
.testi-card {
  flex: 0 0 calc(50% - 12px);
  background: #F8F8F8; border-radius: 12px;
  padding: 32px 36px; border-left: 3px solid var(--accent);
}
.stars-row { font-size: 16px; margin-bottom: 14px; }
.testi-card p { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.7; color: var(--dark); margin-bottom: 18px; }
.testi-card footer { font-size: 13px; color: #666; font-weight: 500; }
.testi-date { opacity: .6; font-weight: 400; margin-left: 8px; }

.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--accent); border: none; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%;
  color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease; z-index: 2;
}
.car-btn:hover { background: #ae6530; transform: translateY(-50%) scale(1.08); }
.car-prev { left: 0; }
.car-next { right: 0; }

.car-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(28,31,38,.2); border: none; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.dot.active { background: var(--accent); transform: scale(1.3); }

/* ════ §8 PROCESS ═══════════════════════════════════════════ */
.process { background: var(--dark); padding: 120px 0; }

.tl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.tl-step { position: relative; padding-top: 28px; }
.tl-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--stroke);
}
.tl-step::after {
  content: ''; position: absolute; top: -5px; left: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(196,121,58,.2);
}

.tl-num {
  font-family: var(--sans); font-weight: 800;
  font-size: 52px; line-height: 1;
  color: rgba(196,121,58,.55);   /* more visible now */
  margin-bottom: 14px;
}
.tl-step h3 { font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--light); margin-bottom: 8px; }
.tl-step p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ════ §9 CONTACT ═══════════════════════════════════════════ */
.contact { background: var(--dark2); padding: 120px 0; position: relative; overflow: hidden; }
.contact-noise {
  position: absolute; inset: 0; z-index: 0; opacity: .025;
  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='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.contact-inner { display: grid; grid-template-columns: 55fr 45fr; gap: 72px; position: relative; z-index: 1; align-items: start; }

.contact-left h2 { font-family: var(--sans); font-weight: 800; font-size: clamp(26px, 3.5vw, 40px); line-height: 1.15; margin-bottom: 18px; }
.contact-sub { font-size: 17px; font-weight: 300; color: var(--muted); margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(245,240,232,.8); transition: color .2s; }
a.contact-item:hover { color: var(--accent); }
.contact-item svg { color: var(--accent); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-field { position: relative; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 14px 0 10px;
  font-family: var(--body); font-size: 16px; color: var(--light);
  outline: none; transition: border-color .3s ease; appearance: none;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-field select option { background: var(--surface); color: var(--light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field label {
  position: absolute; top: 14px; left: 0;
  font-size: 15px; color: var(--muted); pointer-events: none;
  transition: top .2s ease, font-size .2s ease, color .2s ease;
}
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label { top: -4px; font-size: 12px; color: var(--accent); }
.select-label { top: -4px !important; font-size: 12px !important; color: var(--accent) !important; }

.btn-submit {
  width: 100%; padding: 17px; background: var(--accent); color: #fff;
  border: none; font-family: var(--sans); font-weight: 600; font-size: 16px;
  border-radius: 6px; cursor: pointer; transition: background .25s ease, transform .25s ease;
}
.btn-submit:hover { background: #ae6530; transform: scale(1.02); }
.form-success {
  display: none; text-align: center; padding: 14px;
  background: rgba(196,121,58,.1); border: 1px solid rgba(196,121,58,.3);
  border-radius: 6px; font-size: 14px; color: var(--accent);
}
.form-success.show { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ════ §10 FOOTER — Layered Card ════════════════════════════ */
footer#footer {
  background: var(--dark);
  padding: 80px 8vw 0;
}

.footer-card-wrap { max-width: 1200px; margin: 0 auto; }

.footer-shell {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 40px;
  overflow: hidden;
}

.footer-inner-box {
  background: var(--dark2);
  border-radius: 32px;
  margin: 8px;
  padding: 40px 44px 48px;
  border: 1px solid rgba(255,255,255,.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {}
.footer-logo { height: 34px; width: auto; display: block; margin-bottom: 18px; }
.footer-brand-desc {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  max-width: 240px; margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid var(--stroke); background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.footer-social-btn:hover {
  color: var(--accent); border-color: rgba(196,121,58,.35);
  background: rgba(196,121,58,.07);
}

.footer-nav-col h4 {
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(138,136,128,.55); margin-bottom: 20px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-nav-col li, .footer-nav-col a {
  font-size: 14px; font-weight: 400; color: rgba(245,240,232,.7); line-height: 1.55;
  transition: color .2s ease;
}
.footer-nav-col a:hover { color: var(--accent); }

.footer-legal {
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.footer-legal p { font-size: 13px; color: rgba(138,136,128,.55); font-weight: 400; }
.footer-legal-links { display: flex; align-items: center; gap: 14px; }
.footer-legal-links a { font-size: 13px; color: rgba(138,136,128,.55); transition: color .2s; }
.footer-legal-links a:hover { color: var(--light); }
.footer-legal-sep { width: 1px; height: 13px; background: rgba(255,255,255,.1); }

/* Glass brand text */
.footer-glass-wrap {
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; user-select: none;
  padding: 0 4vw; margin-top: -8px;
}
.footer-glass-svg { position: absolute; width: 0; height: 0; overflow: hidden; }
.footer-glass-text {
  font-family: var(--sans); font-weight: 800;
  font-size: min(22vw, 260px);
  color: rgba(255,255,255,.12);
  line-height: 0.85; letter-spacing: -0.02em;
  white-space: nowrap;
}

/* ════ MOBILE CALL BUTTON ════════════════════════════════════ */
.mobile-call-btn {
  display: none; position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 58px; height: 58px; border-radius: 50%; background: var(--accent);
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(196,121,58,.4);
  animation: slideUpBtn .5s 2s var(--ease) both;
}
@keyframes slideUpBtn { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

/* ════ RESPONSIVE ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .ado-inner     { grid-template-columns: 1fr; }
  .ado-right     { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner-box { padding: 32px 28px 36px; }
}

@media (max-width: 860px) and (min-width: 601px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bento-7, .bento-5 { grid-column: span 1; aspect-ratio: 4/3; }
  .bento-12 { grid-column: span 2; aspect-ratio: 16/7; }
}

@media (max-width: 860px) {
  .nav-links .nav-link { display: none; }
  .nav-divider { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .tl-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testi-card { flex: 0 0 100%; }
}

/* ════ MOBILE (≤ 600px) ─ PRIORITY ══════════════════════════ */
@media (max-width: 600px) {
  /* Hero */
  #hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-eyebrow { font-size: 9px; letter-spacing: .15em; }
  #hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .h1-accent { font-size: clamp(36px, 9.5vw, 52px); }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }

  /* Navbar */
  #navbar { padding: 12px 16px; }
  .btn-nav { display: none; }

  /* Social proof */
  .sp-grid { flex-direction: column; gap: 28px; }
  .sp-sep  { width: 60px; height: 1px; }
  .sp-block { padding: 0; }

  /* Services */
  .services { padding: 80px 0; }
  .card-body { padding: 20px 24px 24px; }
  .card-cta-pill .btn-arrow { display: none; }

  /* Projects — bento stacks to single column */
  .projects { padding: 80px 0; }
  .bento-grid { grid-template-columns: 1fr; gap: 12px; }
  .bento-7, .bento-5, .bento-12 { grid-column: span 1; aspect-ratio: 4/3; }

  /* Ado diff */
  .ado-diff { padding: 80px 0; }

  /* Scroll scrub — enabled on mobile with mobile video */
  #scroll-scrub { height: 300vh; }
  .scrub-states { left: 20px; right: 20px; max-width: 100%; bottom: max(10vh, calc(env(safe-area-inset-bottom) + 28px)); }
  .scrub-title { font-size: 22px; }

  /* Hero & scrub: show mobile video, hide desktop video */
  .hero-vid-desktop { display: none !important; }
  .hero-vid-mobile  { display: block !important; }
  .scrub-vid-desktop { display: none !important; }
  .scrub-vid-mobile  { display: block; }

  /* Process — stacked vertically */
  .process { padding: 80px 0; }
  .tl-steps { grid-template-columns: 1fr; gap: 0; }
  .tl-step { padding-top: 0; padding-left: 40px; padding-bottom: 32px; }
  .tl-step::before { top: 0; left: 14px; right: auto; width: 2px; height: 100%; }
  .tl-step::after  { top: 2px; left: 8px; }
  .tl-num { font-size: 36px; margin-bottom: 10px; }

  /* Testimonials */
  .testimonials { padding: 80px 0; }
  .car-prev { left: -4px; }
  .car-next { right: -4px; }

  /* Contact */
  .contact { padding: 80px 0; }
  .contact-inner { grid-template-columns: 1fr; }

  /* Footer */
  footer#footer { padding: 48px 16px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-inner-box { padding: 24px 20px 28px; border-radius: 24px; }
  .footer-shell { border-radius: 28px; }
  .footer-brand { grid-column: span 2; }
  .footer-brand-desc { max-width: 100%; }
  .footer-legal { flex-direction: column; text-align: center; gap: 8px; padding: 14px 16px; }
  .footer-legal-links { justify-content: center; }
  .footer-glass-text { font-size: min(28vw, 120px); }

  /* Mobile call btn */
  .mobile-call-btn { display: flex; }
}

/* Very small phones */
@media (max-width: 380px) {
  #hero h1 { font-size: 30px; }
  .h1-accent { font-size: 32px; }
  .hero-eyebrow { display: none; }
}
