/* ============================================================
   Access All Areas — Event Production Dubai
   Blackout-stage aesthetic, lit by the logo's orange→amber wash
   ============================================================ */

:root {
  --bg:        #0E0F12;
  --bg-2:      #0B0C0F;
  --surface:   #171A1F;
  --surface-2: #1D2127;
  --text:      #F4F5F7;
  --muted:     #A2A8B4;
  --muted-2:   #71767F;
  --primary:   #FE7701;
  --secondary: #D85A07;
  --accent:    #FFB23E;
  --border:    #2A2E36;
  --border-2:  #20242B;
  --focus:     #FFB23E;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  --header-h: 78px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--primary); color: #0E0F12; }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent);
}
.eyebrow.center::before { display: none; }

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 150px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  min-height: 48px;
  transition: transform 0.45s var(--ease), background 0.3s var(--ease),
              box-shadow 0.45s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--primary) 55%, var(--secondary));
  color: #1a0c00;
  box-shadow: 0 10px 30px -10px rgba(254, 119, 1, 0.6);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -12px rgba(254, 119, 1, 0.75);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}
.btn-lg { padding: 18px 34px; font-size: 1.05rem; min-height: 56px; }

/* link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 0.9em; color: var(--primary); }
.link-arrow:hover svg { transform: translateX(2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 12, 15, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border-2);
}
.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 48px; width: auto; }
.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
}
.nav-desktop a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: color 0.25s;
}
.header-phone:hover { color: var(--accent); }
.header-phone svg { width: 16px; height: 16px; color: var(--accent); }

.menu-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s;
}
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8, 9, 11, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
body.menu-open .nav-mobile { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 9vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-2);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.25s;
}
.nav-mobile a:last-of-type { border-bottom: none; }
body.menu-open .nav-mobile a { transform: translateY(0); opacity: 1; }
body.menu-open .nav-mobile a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .nav-mobile a:nth-child(2) { transition-delay: 0.13s; }
body.menu-open .nav-mobile a:nth-child(3) { transition-delay: 0.18s; }
body.menu-open .nav-mobile a:nth-child(4) { transition-delay: 0.23s; }
body.menu-open .nav-mobile a:nth-child(5) { transition-delay: 0.28s; }
.nav-mobile a:active { color: var(--accent); }
.nav-mobile .btn { margin-top: 28px; align-self: flex-start; transform: translateY(14px); opacity: 0; transition: transform 0.5s var(--ease) 0.34s, opacity 0.5s 0.34s; }
body.menu-open .nav-mobile .btn { transform: translateY(0); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 15% 100%, rgba(254,119,1,0.18), transparent 55%),
    linear-gradient(180deg, rgba(14,15,18,0.72) 0%, rgba(14,15,18,0.25) 38%, rgba(14,15,18,0.55) 70%, rgba(14,15,18,0.97) 100%);
}
.hero-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: clamp(48px, 8vw, 96px);
  padding-top: calc(var(--header-h) + 40px);
}
.hero h1 {
  font-size: clamp(2.7rem, 8.5vw, 6.4rem);
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin-top: 22px;
}
.hero h1 .lit {
  background: linear-gradient(120deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--muted);
  max-width: 48ch;
  margin-top: 24px;
}
.hero p.lede strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted-2);
}
.scroll-cue .bar { width: 1px; height: 38px; background: linear-gradient(180deg, var(--accent), transparent); animation: cue 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   MARQUEE — selected work credits
   ============================================================ */
.marquee {
  border-block: 1px solid var(--border-2);
  background: var(--bg-2);
  padding-block: 26px;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 12%; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--bg-2), transparent); }
.marquee-label {
  position: absolute; left: var(--gutter); top: 50%; transform: translateY(-50%);
  z-index: 3; font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted-2); display: none;
}
.marquee-track { display: flex; width: max-content; animation: scroll-x 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  letter-spacing: -0.01em;
  color: var(--muted);
  padding-inline: clamp(24px, 4vw, 52px);
  display: inline-flex; align-items: center; gap: clamp(24px, 4vw, 52px);
  white-space: nowrap;
}
.marquee-track span::after { content: "✳"; color: var(--primary); font-size: 0.8em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  margin-top: 18px;
}
.sec-head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  margin-top: 18px;
  max-width: 60ch;
}
.sec-head.center p { margin-inline: auto; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 58px;
}
.svc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
  min-height: 290px;
  display: flex;
  flex-direction: column;
}
.svc-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 50% -10%, rgba(254,119,1,0.16), transparent 70%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(254,119,1,0.4); background: var(--surface-2); }
.svc-card:hover::before { opacity: 1; }
.svc-num {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--muted-2);
}
.svc-icon {
  width: 52px; height: 52px; margin-top: 18px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(140deg, rgba(255,178,62,0.16), rgba(254,119,1,0.08));
  border: 1px solid rgba(254,119,1,0.25);
  color: var(--accent);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.42rem; margin-top: 22px; }
.svc-card p { color: var(--muted); font-size: 0.98rem; margin-top: 12px; flex: 1; }
.svc-card .link-arrow { margin-top: 20px; }

/* ============================================================
   FEATURE BANDS (capability spotlights)
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.feature + .feature { margin-top: clamp(60px, 8vw, 110px); }
.feature.reverse .feature-media { order: 2; }
.feature-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--surface);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.feature-media:hover img { transform: scale(1.05); }
.feature-media .tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(11,12,15,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  padding: 7px 13px; border-radius: 999px;
}
.feature-body h3 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.feature-body p { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }
.feature-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.feature-list li svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.feature-body .btn { margin-top: 30px; }

/* ============================================================
   PORTFOLIO / SELECTED WORK
   ============================================================ */
.work { background: var(--bg-2); }
.work-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.filter-btn {
  font-family: var(--font-display); font-weight: 500; font-size: 0.88rem;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted);
  background: transparent; min-height: 40px;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}
.filter-btn:hover { color: var(--text); border-color: var(--muted-2); }
.filter-btn.active { background: var(--text); color: #0E0F12; border-color: var(--text); }

.gallery {
  margin-top: 34px;
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-2);
  background: var(--surface);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item img { width: 100%; height: auto; transition: transform 0.8s var(--ease), filter 0.5s; filter: saturate(0.92); }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,12,15,0.85));
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
  transform: translateY(8px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s;
}
.gallery-item:hover .gallery-cap { transform: translateY(0); opacity: 1; }
.gallery-cap .ttl { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.gallery-cap .sub { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }
.gallery-item.hide { display: none; }
.gallery-item .corner {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(11,12,15,0.6); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: var(--text);
  opacity: 0; transform: scale(0.8); transition: opacity 0.35s, transform 0.35s;
}
.gallery-item:hover .corner { opacity: 1; transform: scale(1); }
.gallery-item .corner svg { width: 16px; height: 16px; }
.work-note { margin-top: 28px; font-size: 0.85rem; color: var(--muted-2); max-width: 70ch; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,7,9,0.94);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: 1100px; width: 100%; }
.lightbox img {
  width: 100%; max-height: 78vh; object-fit: contain;
  border-radius: var(--r-md); transform: scale(0.96); transition: transform 0.4s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox figcaption {
  text-align: center; margin-top: 18px;
  font-family: var(--font-display); color: var(--text); font-weight: 600;
}
.lightbox figcaption span { display: block; font-family: var(--font-body); font-weight: 400; color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.lb-close, .lb-nav {
  position: absolute; z-index: 2;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.12); border-color: var(--accent); color: var(--accent); }
.lb-close { top: 22px; right: 22px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-nav.prev { left: 18px; }
.lb-nav.next { right: 18px; }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }
.lb-close svg, .lb-nav svg { width: 22px; height: 22px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.about-body h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); margin-top: 18px; }
.about-body p { color: var(--muted); margin-top: 20px; font-size: 1.07rem; }
.about-body p strong { color: var(--text); font-weight: 600; }
.about-quote {
  margin-top: 34px; padding: 26px 30px;
  border-left: 3px solid var(--primary);
  background: linear-gradient(100deg, rgba(254,119,1,0.07), transparent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.about-quote p { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--text); line-height: 1.4; margin: 0; letter-spacing: -0.01em; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border-2); border: 1px solid var(--border-2); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--surface); padding: 30px 26px; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.03em; background: linear-gradient(120deg, var(--accent), var(--primary)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .l { color: var(--muted); font-size: 0.92rem; margin-top: 10px; }

/* ============================================================
   CONTACT / QUOTE
   ============================================================ */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 5vw, 64px); margin-top: 54px; align-items: start; }

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 42px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.field:first-child { margin-top: 0; }
.field label { font-family: var(--font-display); font-size: 0.84rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; }
.field label .req { color: var(--primary); }
.field input, .field textarea, .field select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  color: var(--text);
  min-height: 50px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23A2A8B4' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 42px; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,178,62,0.16);
  background: var(--surface-2);
}
.field.error input, .field.error textarea, .field.error select { border-color: #ff5a4d; box-shadow: 0 0 0 3px rgba(255,90,77,0.16); }
.field .err-msg { font-size: 0.78rem; color: #ff7a70; display: none; }
.field.error .err-msg { display: block; }
.quote-card .btn { width: 100%; margin-top: 24px; }
.form-foot { font-size: 0.78rem; color: var(--muted-2); margin-top: 16px; text-align: center; }

.form-success {
  display: none;
  flex-direction: column; align-items: center; text-align: center;
  padding: 30px 10px;
}
.form-success.show { display: flex; }
.form-success .check {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(140deg, var(--accent), var(--primary));
  display: grid; place-items: center; color: #1a0c00; margin-bottom: 22px;
  animation: pop 0.5s var(--ease);
}
@keyframes pop { from { transform: scale(0); } 60% { transform: scale(1.12); } to { transform: scale(1); } }
.form-success .check svg { width: 36px; height: 36px; }
.form-success h3 { font-size: 1.6rem; }
.form-success p { color: var(--muted); margin-top: 12px; max-width: 38ch; }
.form-success button { margin-top: 22px; }

/* contact aside */
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-block {
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: var(--r-md); padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.info-block .ic {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--accent);
  background: rgba(254,119,1,0.1); border: 1px solid rgba(254,119,1,0.22);
}
.info-block .ic svg { width: 22px; height: 22px; }
.info-block h4 { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-block p, .info-block a { font-size: 1.02rem; color: var(--text); margin-top: 5px; display: block; }
.info-block a:hover { color: var(--accent); }
.info-block .sub { font-size: 0.85rem; color: var(--muted-2); margin-top: 2px; }

.map-placeholder {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px dashed var(--border);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0 14px, transparent 14px 28px),
    var(--surface);
  min-height: 180px;
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.map-placeholder .label { font-family: var(--font-display); font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.map-placeholder .sub { font-size: 0.8rem; color: var(--muted-2); margin-top: 6px; }
.map-placeholder svg { width: 28px; height: 28px; color: var(--muted-2); margin-bottom: 12px; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border-2);
}
.cta-band .glow {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 120% at 50% 130%, rgba(254,119,1,0.28), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { font-size: clamp(2.2rem, 6vw, 4.4rem); letter-spacing: -0.03em; }
.cta-inner p { color: var(--muted); font-size: 1.15rem; margin-top: 20px; max-width: 50ch; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 38px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border-2); padding-top: clamp(56px, 8vw, 84px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid var(--border-2); }
.footer-brand img { height: 56px; width: auto; }
.footer-brand p { color: var(--muted); margin-top: 20px; max-width: 32ch; font-size: 0.96rem; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid var(--border); display: grid; place-items: center;
  color: var(--muted); transition: color 0.25s, border-color 0.25s, transform 0.25s, background 0.25s;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); background: rgba(254,119,1,0.06); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h5 { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.footer-col ul { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.95rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  padding-block: 28px; color: var(--muted-2); font-size: 0.84rem;
}
.footer-bottom .disc { max-width: 64ch; }

/* ============================================================
   STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,12,15,0.92); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-2);
  transform: translateY(120%); transition: transform 0.4s var(--ease);
}
.mobile-bar.show { transform: translateY(0); }
.mobile-bar a { flex: 1; min-height: 50px; }
.mobile-bar .btn-ghost { flex: 0 0 auto; padding-inline: 18px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"] { transition-delay: 0.08s; }
  .reveal[data-d="2"] { transition-delay: 0.16s; }
  .reveal[data-d="3"] { transition-delay: 0.24s; }
  .reveal[data-d="4"] { transition-delay: 0.32s; }
  .reveal[data-d="5"] { transition-delay: 0.40s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-desktop, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .btn-primary { display: none; }
  .feature { grid-template-columns: 1fr; gap: 26px; }
  .feature.reverse .feature-media { order: 0; }
  .feature-media { aspect-ratio: 16 / 10; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 560px) {
  :root { --header-h: 66px; }
  .brand img { height: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 92svh; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-nav.prev { left: 8px; }
  .lb-nav.next { right: 8px; }
}

@media (max-width: 390px) {
  .footer-top { grid-template-columns: 1fr; }
}
