/* ============================================================
   MASON uPVC — WARM EDITORIAL PREMIUM
   Palette: Paper cream · Deep ink · Signature orange w/ fading apricot tint
   Type: Instrument Serif (display) · DM Sans (UI) · JetBrains Mono (labels)
   ============================================================ */
:root {
  /* Neutrals — warm whites and inks */
  --paper:        #FBF7F0;
  --paper-2:      #F4ECDD;
  --paper-3:      #ECE2CF;
  --ink:          #1A1411;
  --ink-2:        #2E2520;
  --muted:        #6B5B4E;
  --muted-2:      #9A8A7C;
  --line:         rgba(26, 20, 17, 0.10);
  --line-2:       rgba(26, 20, 17, 0.06);

  /* Signature orange w/ tint cascade */
  --orange:       #E66A1F;
  --orange-deep:  #C9551A;
  --orange-2:     #F08A45;
  --orange-3:     #F8B786;
  --orange-tint:  #FCDEBF;
  --orange-glow:  #FFF1E2;
  --orange-grad:  linear-gradient(135deg, #E66A1F 0%, #F08A45 45%, #FCDEBF 100%);
  --orange-fade:  linear-gradient(90deg, #E66A1F 0%, #F08A45 30%, #FCDEBF 65%, #FBF7F0 100%);

  /* UI */
  --radius:       4px;
  --radius-lg:    14px;
  --shadow-sm:    0 1px 2px rgba(26,20,17,0.05), 0 0 0 1px rgba(26,20,17,0.04);
  --shadow:       0 4px 18px -6px rgba(26,20,17,0.10), 0 1px 3px rgba(26,20,17,0.05);
  --shadow-lg:    0 20px 50px -20px rgba(26,20,17,0.18), 0 4px 12px rgba(26,20,17,0.06);
  --shadow-orange: 0 18px 40px -16px rgba(230,106,31,0.40);

  --max:          1400px;
  --pad:          80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain — warm orange dust */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(230,106,31,0.045) 0, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(230,106,31,0.035) 0, transparent 50%),
    radial-gradient(circle at 50% 60%, rgba(248,183,134,0.025) 0, transparent 55%);
}

.serif    { font-family: 'Instrument Serif', serif; font-weight: 400; letter-spacing: -0.01em; }
.italic   { font-style: italic; }
.mono     { font-family: 'JetBrains Mono', monospace; }

::selection { background: var(--orange-tint); color: var(--ink); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: var(--orange-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-2); }

/* ============================================================
   SHARED PRIMITIVES
   ============================================================ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 1; }
section { padding: 120px 0; position: relative; z-index: 1; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.kicker::before {
  content: ''; width: 28px; height: 1px;
  background: var(--orange-grad);
  background-size: 100% 100%;
}
.kicker .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

.eyebrow-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1.5px; color: var(--muted);
  text-transform: uppercase;
}

.h-display {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h-display .accent { color: var(--orange); font-style: italic; }
.h-display .light  { color: var(--muted); font-style: italic; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  cursor: pointer; text-decoration: none;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn .arr { transition: transform .3s ease; }
.btn:hover .arr { transform: translateX(4px); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(230,106,31,0.55), 0 1px 0 rgba(255,255,255,0.18) inset;
  position: relative; overflow: hidden;
}
.btn-orange::before {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left .8s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.btn-orange:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(230,106,31,0.65);
}
.btn-orange:hover::before { left: 120%; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--paper-2);
  border-color: var(--ink);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.btn-light:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
  color: var(--orange-deep);
}

/* fading orange rule */
.rule-fade {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-3) 40%, transparent 100%);
}
.rule-fade.short { width: 80px; height: 2px; border-radius: 2px; }

/* scroll-reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
nav.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  background: rgba(251,247,240,0.78);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease, background .35s ease, padding .35s ease;
}
nav.topbar.scrolled {
  padding: 10px var(--pad);
  background: rgba(251,247,240,0.94);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand .logo-mark {
  width: 56px; height: 56px;
  position: relative;
  flex-shrink: 0;
  isolation: isolate;
  overflow: visible;
}
.brand .logo-mark svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* ── STAMP — detailed seal w/ solar flares (original style, refined) ── */
svg.stamp-svg {
  filter: drop-shadow(0 0 12px rgba(204,32,16,0.42));
  transition: filter .4s ease;
  isolation: isolate;
  overflow: visible;
}
.brand:hover svg.stamp-svg { filter: drop-shadow(0 0 18px rgba(230,106,31,0.75)); }
.stamp-outer-dashes { transform-origin: 105px 105px; animation: stampSpin 22s linear infinite; }
.stamp-mid-ring     { transform-origin: 105px 105px; animation: stampSpin 14s linear infinite reverse; }
.brand:hover .stamp-outer-dashes { animation-duration: 5s; }
.brand:hover .stamp-mid-ring     { animation-duration: 3s; }

.solar-flare {
  animation: flarePulse 3.6s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: 105px 105px;
}
@keyframes flarePulse {
  0%   { opacity: 0.15; transform: scale(0.85); }
  40%  { opacity: 0.95; transform: scale(1.08); }
  70%  { opacity: 0.60; transform: scale(0.95); }
  100% { opacity: 0.95; transform: scale(1.1);  }
}
@keyframes stampSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Footer stamp variant — sit cleanly on dark bg */
.footer-brand svg.stamp-svg { filter: drop-shadow(0 0 14px rgba(230,106,31,0.55)); }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name .n { font-family: 'Instrument Serif', serif; font-size: 22px; letter-spacing: -0.01em; }
.brand-name .n em { font-style: italic; color: var(--orange); }
.brand-name .t {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

.nav-center { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-center a, .nav-center button {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .25s ease, color .25s ease;
}
.nav-center a:hover, .nav-center button:hover { background: var(--paper-2); color: var(--ink); }
.nav-center .chev { font-size: 10px; transition: transform .25s ease; opacity: 0.5; }

.nav-dd { position: relative; }
.nav-dd.open .chev { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-4px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 100;
}
.nav-dd.open .nav-dd-menu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dd-menu a {
  display: flex; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; color: var(--ink-2);
  text-decoration: none;
}
.nav-dd-menu a:hover { background: var(--orange-glow); color: var(--orange-deep); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-tel {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  text-decoration: none;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  transition: border-color .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.nav-tel:hover { border-color: var(--orange); background: var(--orange-glow); color: var(--orange-deep); }
.nav-tel i {
  color: var(--orange); font-size: 11px;
  display: grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--orange-glow);
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-tel:hover i { background: var(--orange); color: #fff; }

/* ── Hero stamp seal ── */
.hero-stamp {
  position: absolute;
  top: 104px; right: var(--pad);
  width: 116px; height: 116px;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 8px 20px rgba(204,32,16,0.22));
  animation: floatY 7s ease-in-out infinite;
}
.hero-stamp svg { width: 100%; height: 100%; overflow: visible; }
@media (max-width: 1100px) { .hero-stamp { display: none; } }

.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 60px 0 100px;
}

.hero-left { position: relative; z-index: 2; }
.hero-meta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px 8px 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-meta-pin {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  background: var(--paper);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--orange-deep);
}
.hero-meta-pin::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(230,106,31,0.18);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(230,106,31,0.18); }
  50%     { box-shadow: 0 0 0 6px rgba(230,106,31,0); }
}
.hero-meta-text {
  font-size: 13px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-meta-text strong { color: var(--orange-deep); font-weight: 600; }

.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-title .word-orange { color: var(--orange); font-style: italic; }
.hero-title .word-muted { color: var(--muted); }
.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 50%, var(--orange-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-trust {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; flex-direction: column; gap: 4px; }
.hero-trust-item .num {
  font-family: 'Instrument Serif', serif;
  font-size: 34px; line-height: 1;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.hero-trust-item .num .plus { color: var(--orange); }
.hero-trust-item .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--muted);
}
.hero-trust-divider { width: 1px; height: 36px; background: var(--line); }

/* Hero right (image stack) */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 600px;
}
.hero-stack {
  position: relative;
  width: 100%;
  height: 600px;
  perspective: 1200px;
}
.hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 88%; height: 100%;
  border-radius: 200px 200px 14px 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper-2);
}
.hero-img-main .slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s cubic-bezier(.2,.8,.2,1);
}
.hero-img-main .slide.active { opacity: 1; }
.hero-img-main .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-main .slide::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(251,247,240,0.55) 0%, rgba(251,247,240,0.18) 25%, transparent 55%),
    linear-gradient(to top, rgba(26,20,17,0.35) 0%, transparent 45%);
  pointer-events: none;
}
.hero-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 35%, rgba(230,106,31,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  top: 40px; left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 4px;
  z-index: 3;
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
.hero-badge-top { display: flex; align-items: center; gap: 10px; }
.hero-badge-top .stars { color: var(--orange); font-size: 14px; letter-spacing: 1px; }
.hero-badge-top .rating-num { font-family: 'Instrument Serif', serif; font-size: 22px; line-height: 1; }
.hero-badge-bot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}

.hero-card-projects {
  position: absolute;
  bottom: 32px; left: -10px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex; align-items: center; gap: 18px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  animation: floatY 7s ease-in-out 1s infinite;
}
.hero-card-projects .avs {
  display: flex;
}
.hero-card-projects .av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--orange-grad);
  display: grid; place-items: center;
  font-size: 11px; color: var(--paper);
  font-family: 'Instrument Serif', serif;
  margin-left: -10px;
}
.hero-card-projects .av:first-child { margin-left: 0; }
.hero-card-projects .av-1 { background: linear-gradient(135deg, #E66A1F, #C9551A); }
.hero-card-projects .av-2 { background: linear-gradient(135deg, #F08A45, #E66A1F); }
.hero-card-projects .av-3 { background: linear-gradient(135deg, #F8B786, #F08A45); }
.hero-card-projects .av-4 { background: var(--paper); color: var(--ink); border-color: var(--ink); font-size: 10px; font-family: 'JetBrains Mono', monospace; }
.hero-card-projects .meta { display: flex; flex-direction: column; }
.hero-card-projects .meta strong { font-family: 'Instrument Serif', serif; font-size: 20px; line-height: 1; }
.hero-card-projects .meta span { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }

/* Hero slide controls */
.hero-controls {
  position: absolute;
  bottom: -2px; right: 0;
  display: flex; align-items: center; gap: 10px;
  background: var(--paper);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  z-index: 4;
}
.hero-dots { display: flex; gap: 6px; }
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--paper-3); border: none; cursor: pointer;
  transition: width .35s ease, background .35s ease;
}
.hero-dot.active { width: 24px; border-radius: 999px; background: var(--orange); }
.hero-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: transparent; border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink); font-size: 11px;
  cursor: pointer; transition: background .25s ease, color .25s ease;
}
.hero-arrow:hover { background: var(--ink); color: var(--paper); }

/* Decorative orange fade arc — more vivid */
.hero-arc {
  position: absolute;
  top: -280px; right: -240px;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,106,31,0.32) 0%, rgba(240,138,69,0.22) 30%, rgba(252,222,191,0.18) 55%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  filter: blur(10px);
  animation: heroArcDrift 18s ease-in-out infinite alternate;
}
.hero-arc-2 {
  position: absolute;
  bottom: -250px; left: -260px;
  width: 720px; height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,183,134,0.30) 0%, rgba(252,222,191,0.16) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  filter: blur(14px);
  animation: heroArcDrift 22s ease-in-out infinite alternate-reverse;
}
@keyframes heroArcDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.08); }
}

/* ============================================================
   MARQUEE LOGO STRIP — with orange accent
   ============================================================ */
.brand-strip {
  border-top: 1px solid var(--orange-tint);
  border-bottom: 1px solid var(--orange-tint);
  padding: 24px 0;
  background:
    linear-gradient(90deg, rgba(252,222,191,0.45) 0%, rgba(252,222,191,0.18) 50%, rgba(252,222,191,0.45) 100%),
    var(--paper-2);
  position: relative; z-index: 1;
}
.brand-strip::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0;
  height: 2px; background: var(--orange-fade);
  opacity: 0.6;
}
.brand-strip-inner {
  display: flex; align-items: center; gap: 40px;
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
}
.brand-strip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-right: 1px solid var(--line);
  padding-right: 32px;
}
.marquee-wrap { overflow: hidden; position: relative; flex: 1; }
.marquee-wrap::before, .marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(to right, rgba(248,236,221,0.95), transparent); }
.marquee-wrap::after  { right: 0; background: linear-gradient(to left, rgba(248,236,221,0.95), transparent); }
.marquee {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-logo {
  height: 40px; max-width: 130px; object-fit: contain; flex-shrink: 0;
  filter: grayscale(100%) brightness(0.55);
  opacity: 0.85;
  transition: filter .3s ease, opacity .3s ease;
}
.client-logo:hover { filter: none; opacity: 1; }

/* ============================================================
   ABOUT
   ============================================================ */
#about { padding: 140px 0; position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute;
  top: -100px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,183,134,0.25), transparent 65%);
  filter: blur(40px); pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-img-col { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,20,17,0.25) 100%);
  pointer-events: none;
}
.about-img-tag {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(251,247,240,0.95);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.about-img-tag::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}
.about-img-quote {
  position: absolute;
  bottom: -36px; right: -24px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 14px;
  padding: 24px 28px;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}
.about-img-quote .q-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  color: var(--orange);
  line-height: 0.5;
  display: block;
  margin-bottom: 8px;
}
.about-img-quote p { font-size: 14px; line-height: 1.55; }
.about-img-quote small {
  display: block; margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted-2);
}

.about-text .kicker { margin-bottom: 20px; }
.about-text h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.about-text h2 em { color: var(--orange); font-style: italic; }
.about-text p {
  font-size: 16px; line-height: 1.75; color: var(--muted);
  margin-bottom: 16px;
}
.about-text p strong { color: var(--ink); font-weight: 500; }

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  gap: 24px;
}
.a-stat .num {
  font-family: 'Instrument Serif', serif;
  font-size: 44px; line-height: 1;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 6px;
}
.a-stat .num .plus { color: var(--orange); font-size: 32px; }
.a-stat .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ADVANTAGES
   ============================================================ */
#advantages { background: var(--paper-2); padding: 140px 0; position: relative; overflow: hidden; }
#advantages::before {
  content: ''; position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,183,134,0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.sec-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
  margin-bottom: 64px;
  position: relative;
}
.sec-head h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.sec-head h2 em { color: var(--orange); font-style: italic; }
.sec-head p {
  font-size: 16px; line-height: 1.7; color: var(--muted);
  max-width: 420px; justify-self: end; text-align: right;
}

.adv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.adv-card {
  background: var(--paper);
  padding: 40px 32px;
  position: relative;
  transition: background .3s ease;
  overflow: hidden;
}
.adv-card:hover { background: var(--paper-3); }
.adv-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.adv-card:hover::after { transform: scaleX(1); }
.adv-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px;
}
.adv-card-num::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.adv-icon {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--orange-glow);
  color: var(--orange-deep);
  font-size: 22px;
  margin-bottom: 24px;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.adv-card:hover .adv-icon { background: var(--orange); color: #fff; transform: rotate(-4deg); }
.adv-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px; line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.adv-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }

.adv-card.cta-card {
  background: var(--ink);
  color: var(--paper);
}
.adv-card.cta-card:hover { background: #28201C; }
.adv-card.cta-card .adv-card-num { color: var(--orange-3); }
.adv-card.cta-card .adv-card-num::after { background: rgba(252,222,191,0.18); }
.adv-card.cta-card .adv-icon { background: var(--orange); color: #fff; }
.adv-card.cta-card h3 { color: var(--paper); }
.adv-card.cta-card p { color: rgba(252,222,191,0.7); margin-bottom: 24px; }
.adv-card.cta-card .btn-orange { background: var(--orange); color: #fff; }
.adv-card.cta-card .btn-orange:hover { background: var(--orange-2); }

/* ============================================================
   PRODUCTS
   ============================================================ */
#products { padding: 140px 0; }
.prod-grid-top {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.prod-grid-bot {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.product-card {
  display: block; text-decoration: none; color: inherit;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
  transition: transform .4s ease, box-shadow .4s ease;
  border: 1px solid var(--line);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prod-grid-top .product-card { aspect-ratio: 4/5; }
.prod-grid-bot .product-card { aspect-ratio: 16/9; }
.product-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.product-card:hover img { transform: scale(1.04); }
.product-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(26,20,17,0.65) 100%);
  pointer-events: none;
}
.product-face {
  position: absolute; inset: 0;
  z-index: 2; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--paper);
}
.product-top { display: flex; justify-content: space-between; align-items: flex-start; }
.product-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(251,247,240,0.9);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--ink);
}
.product-tag::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.product-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1.2px;
  color: rgba(251,247,240,0.7);
}
.product-bot { display: flex; flex-direction: column; gap: 8px; }
.product-name {
  font-family: 'Instrument Serif', serif;
  font-size: 38px; line-height: 1;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.product-desc {
  font-size: 13.5px; line-height: 1.55;
  color: rgba(251,247,240,0.82);
  max-width: 90%;
}
.product-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 12px;
  font-size: 13px; font-weight: 500;
  color: var(--paper);
  align-self: flex-start;
  padding: 8px 14px 8px 16px;
  background: rgba(251,247,240,0.12);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.product-card:hover .product-cta { background: var(--orange); color: #fff; }
.product-cta .arr { transition: transform .3s ease; }
.product-card:hover .product-cta .arr { transform: translateX(3px); }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--paper-2); padding: 140px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.service-card {
  background: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 28px; }
.service-body h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  background: var(--paper-2);
  color: var(--ink-2);
  border: 1px solid var(--line);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.service-card:hover .chip { background: var(--orange-glow); color: var(--orange-deep); border-color: var(--orange-tint); }

/* ============================================================
   BLOGS
   ============================================================ */
#blogs { padding: 140px 0; }
.blogs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.blog-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img { aspect-ratio: 4/3; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 14px;
}
.blog-cat::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }
.blog-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px; line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  flex: 1;
}
.blog-read {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  align-self: flex-start;
}
.blog-read .arr { color: var(--orange); transition: transform .3s ease; }
.blog-card:hover .blog-read .arr { transform: translateX(4px); }

/* ============================================================
   PRICING
   ============================================================ */
#pricing { padding: 140px 0; background: var(--paper-2); position: relative; overflow: hidden; }
#pricing::before {
  content: ''; position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,183,134,0.35), transparent 70%);
  filter: blur(30px);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 56px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange-tint);
}
.price-card.featured {
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 18px 40px -16px rgba(230,106,31,0.55);
  position: relative;
  overflow: hidden;
}
.price-card.featured::after {
  content: ''; position: absolute;
  top: -40%; right: -40%;
  width: 80%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.22), transparent 65%);
  pointer-events: none;
}
.price-card.featured::before {
  content: 'POPULAR';
  position: absolute; top: 14px; right: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 1.5px;
  background: #fff;
  color: var(--orange-deep);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}
.price-card.featured > * { position: relative; z-index: 1; }
.price-card.featured .price-icon { background: rgba(255,255,255,0.22); color: #fff; }
.price-card.featured .price-type { color: #fff; opacity: 0.85; }
.price-card.featured .price-amount .unit { color: rgba(255,255,255,0.85); }
.price-card.featured .price-desc { color: rgba(255,255,255,0.92); }
.price-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--orange-glow);
  color: var(--orange-deep);
  font-size: 18px;
}
.price-card.featured .price-icon { background: rgba(255,255,255,0.22); color: #fff; }
.price-card.featured .price-type { color: #fff; opacity: 0.85; }
.price-card.featured .price-amount .unit { color: rgba(255,255,255,0.85); }
.price-card.featured .price-desc { color: rgba(255,255,255,0.92); }
.price-card.featured .price-amount { color: #fff; }
.price-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.price-card.featured .price-type { color: var(--orange-3); }
.price-amount {
  font-family: 'Instrument Serif', serif;
  font-size: 40px; line-height: 1;
  letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 4px;
}
.price-amount .unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 400;
  color: var(--muted);
}
.price-card.featured .price-amount .unit { color: var(--orange-3); }
.price-desc { font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.price-card.featured .price-desc { color: rgba(252,222,191,0.75); }
.pricing-note {
  margin-top: 28px;
  font-size: 13px; color: var(--muted);
  text-align: center;
}
.pricing-note a { color: var(--orange-deep); font-weight: 500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials-sec { padding: 140px 0; }
.rating-strip {
  display: flex; align-items: center; gap: 36px;
  padding: 28px 36px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.rating-strip::after {
  content: ''; position: absolute;
  top: 0; right: 0; bottom: 0; width: 50%;
  background: linear-gradient(90deg, transparent 0%, rgba(230,106,31,0.18) 100%);
  pointer-events: none;
}
.rating-strip .r-num {
  font-family: 'Instrument Serif', serif;
  font-size: 64px; line-height: 1;
  color: var(--orange);
  display: flex; align-items: flex-start; gap: 4px;
  position: relative; z-index: 1;
}
.rating-strip .r-num .star-sup { font-size: 28px; margin-top: 4px; color: var(--orange-3); }
.rating-strip .r-content { position: relative; z-index: 1; flex: 1; }
.rating-strip .stars { color: var(--orange); font-size: 22px; letter-spacing: 4px; margin-bottom: 6px; }
.rating-strip .review-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 1px;
  color: var(--orange-3);
}
.rating-strip .review-count a { color: inherit; border-bottom: 1px dashed rgba(252,222,191,0.4); text-decoration: none; }
.rating-strip .google-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(251,247,240,0.1);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  position: relative; z-index: 1;
}
.rating-strip .google-pill .g {
  font-family: 'Instrument Serif', serif;
  color: var(--orange);
  font-size: 18px;
  font-weight: 600;
}

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--orange-tint);
}
.testi-stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }
.testi-card p {
  font-family: 'Instrument Serif', serif;
  font-size: 19px; line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.testi-user { display: flex; align-items: center; gap: 12px; margin-top: auto; border-top: 1px solid var(--line); padding-top: 20px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 16px; color: var(--paper);
  font-style: italic;
}
.av1 { background: linear-gradient(135deg, #E66A1F, #C9551A); }
.av2 { background: linear-gradient(135deg, #F08A45, #E66A1F); }
.av3 { background: linear-gradient(135deg, #8B6F4A, #5C4B33); }
.av4 { background: linear-gradient(135deg, #F8B786, #F08A45); }
.av5 { background: linear-gradient(135deg, #2E2520, #1A1411); }
.testi-user h5 { font-size: 14px; font-weight: 600; }
.testi-user small { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }

#extra-testimonials { display: none; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 20px; }
#extra-testimonials.visible { display: grid; }
.show-more-wrap { text-align: center; margin-top: 40px; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { padding: 140px 0; background: var(--paper-2); }
.faq-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.faq-side { position: sticky; top: 120px; }
.faq-side h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.faq-side h2 em { color: var(--orange); font-style: italic; }
.faq-side p { font-size: 15.5px; line-height: 1.7; color: var(--muted); margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item.open { border-color: var(--orange-tint); background: var(--paper); }
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 20px; line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
  user-select: none;
  gap: 16px;
}
.faq-q-icon {
  width: 32px; height: 32px; border-radius: 50%;
  flex-shrink: 0;
  background: var(--paper-2);
  display: grid; place-items: center;
  color: var(--orange-deep);
  transition: transform .3s ease, background .3s ease;
  font-size: 12px;
}
.faq-item.open .faq-q-icon { transform: rotate(180deg); background: var(--orange); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.2,.8,.2,1); }
.faq-item.open .faq-a { max-height: 360px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 15px; line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 140px 0;
  background: var(--paper);
  position: relative; overflow: hidden;
}
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
  margin-top: 56px;
  box-shadow: var(--shadow-lg);
}
.contact-info {
  padding: 60px 56px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: ''; position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,106,31,0.32), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 34px; line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-info h3 em { color: var(--orange); font-style: italic; }
.contact-info > p {
  font-size: 14.5px; line-height: 1.65;
  color: rgba(252,222,191,0.7);
  margin-bottom: 36px;
}
.c-detail {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(252,222,191,0.12);
}
.c-detail:last-of-type { border-bottom: 1px solid rgba(252,222,191,0.12); margin-bottom: 36px; }
.c-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(230,106,31,0.18);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.c-icon.wa { background: rgba(37,211,102,0.2); color: #25D366; }
.c-detail-text { display: flex; flex-direction: column; gap: 2px; }
.c-detail-text strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange-3);
  font-weight: 500;
}
.c-detail-text a {
  color: var(--paper); text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: color .25s ease;
}
.c-detail-text a:hover { color: var(--orange-3); }

.contact-social { display: flex; gap: 10px; }
.contact-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(251,247,240,0.08);
  display: grid; place-items: center;
  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  transition: background .25s ease, color .25s ease;
}
.contact-social a:hover { background: var(--orange); color: #fff; }

.contact-form {
  padding: 60px 56px;
  background: var(--paper);
  color: var(--ink);
}
.contact-form h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-form .sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-group input, .form-group textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  resize: none;
  transition: border-color .3s ease;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-2); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form button[type=submit] {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 16px 28px;
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.wa-float, .call-float {
  position: fixed; right: 24px; z-index: 600;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-size: 20px; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float {
  bottom: 84px;
  background: #25D366;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.55);
  animation: ringPulse 2.5s ease-in-out infinite;
}
.call-float {
  bottom: 24px;
  background: var(--orange);
  box-shadow: 0 8px 24px -6px rgba(230,106,31,0.55);
}
.wa-float:hover, .call-float:hover { transform: scale(1.1); animation: none; }
@keyframes ringPulse {
  0%,100% { box-shadow: 0 8px 24px -6px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.5); }
  50%     { box-shadow: 0 8px 24px -6px rgba(37,211,102,0.55), 0 0 0 14px rgba(37,211,102,0); }
}
.go-top {
  position: fixed; left: 24px; bottom: 24px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  text-decoration: none;
  font-size: 13px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  pointer-events: none;
}
.go-top.visible { opacity: 1; transform: none; pointer-events: auto; }
.go-top:hover { background: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: ''; position: absolute;
  top: -200px; left: 30%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,106,31,0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.6fr; gap: 56px; position: relative; z-index: 1; }
.footer-brand .brand-name .n { color: var(--paper); }
.footer-brand .brand-name .n em { color: var(--orange-2); }
.footer-brand .brand-name .t { color: var(--orange-3); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(252,222,191,0.65); margin: 20px 0 24px; max-width: 360px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(251,247,240,0.08);
  display: grid; place-items: center;
  color: var(--paper);
  text-decoration: none;
  font-size: 12px;
  transition: background .25s ease, color .25s ease;
}
.f-social a:hover { background: var(--orange); color: #fff; }

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--orange-3);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(252,222,191,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color .25s ease, padding-left .25s ease;
}
.footer-links a:hover { color: var(--orange-3); padding-left: 6px; }

.loc-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.loc-tab {
  padding: 6px 14px;
  background: rgba(251,247,240,0.06);
  color: rgba(252,222,191,0.8);
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.loc-tab.active { background: var(--orange); color: #fff; }
.loc-panel { display: none; }
.loc-panel.active { display: block; }
.loc-map iframe {
  width: 100%; height: 140px;
  border: 0; border-radius: 10px;
  filter: none;
  display: block;
}
.loc-info { font-size: 12.5px; color: rgba(252,222,191,0.6); line-height: 1.6; margin-top: 12px; }
.loc-info a { color: var(--orange-3); text-decoration: none; }

.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(252,222,191,0.12);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: rgba(252,222,191,0.4);
  position: relative; z-index: 1;
}
.footer-bottom a { color: var(--orange-3); text-decoration: none; }
.footer-bottom .ft-rule { width: 100%; height: 1px; background: var(--orange-fade); position: absolute; top: 0; left: 0; opacity: 0.6; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,20,17,0.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  padding: 24px;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: var(--paper);
  border-radius: 20px;
  width: 100%; max-width: 540px;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  transform: translateY(24px);
  transition: transform .35s ease;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper-2);
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 12px;
  display: grid; place-items: center;
  transition: background .25s ease;
}
.modal-close:hover { background: var(--orange-glow); color: var(--orange-deep); }
.modal-box h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 34px; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal-box h3 em { color: var(--orange); font-style: italic; }
.modal-box > p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.success-state {
  display: none; text-align: center; padding: 24px 12px;
}
.success-state.show { display: block; }
.success-state .check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange-glow);
  color: var(--orange);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  font-size: 22px;
}
.success-state h3 { color: var(--orange-deep); }
.success-state p { color: var(--muted); margin-bottom: 24px; }

/* ============================================================
   SURPRISE ANIMATIONS — scroll bar, spotlight, tilt, magnetic CTA,
   custom cursor, window shutter, staggered reveal, embers,
   parallax floats, h2 underline draw, CTA burst
   ============================================================ */

/* Diagonal clip-path swipe transitions on hero slides */
.hero-img-main .slide {
  position: absolute; inset: 0;
  opacity: 1;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(.7,0,.2,1);
}
.hero-img-main .slide.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Sticky bottom CTA bar */
.bottom-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(140%);
  z-index: 700;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px 12px 22px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  box-shadow: 0 18px 40px -12px rgba(26,20,17,0.55);
  transition: transform .6s cubic-bezier(.2,.85,.2,1);
  max-width: calc(100vw - 32px);
}
.bottom-cta.visible {
  transform: translateX(-50%) translateY(0);
}
.bottom-cta-text {
  font-size: 14px; font-weight: 500;
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.bottom-cta-text .pulse-pin {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(230,106,31,0.6);
  animation: livePulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(230,106,31,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(230,106,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,106,31,0); }
}
.bottom-cta .btn {
  padding: 10px 22px;
  font-size: 13px;
  white-space: nowrap;
}
.bottom-cta-close {
  width: 32px; height: 32px;
  background: rgba(251,247,240,0.10);
  color: var(--paper);
  border: none; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  font-size: 11px;
  transition: background .25s ease;
  flex-shrink: 0;
}
.bottom-cta-close:hover { background: var(--orange); }
@media (max-width: 640px) {
  .bottom-cta { padding: 10px 12px 10px 16px; gap: 10px; }
  .bottom-cta-text { font-size: 12px; }
  .bottom-cta-text .extra { display: none; }
  .bottom-cta .btn { padding: 8px 16px; font-size: 12px; }
}

/* Section scroll indicator — right edge dots */
.scroll-nav {
  position: fixed;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex; flex-direction: column; gap: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.scroll-nav.visible { opacity: 1; }
.scroll-nav a {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(26,20,17,0.18);
  border: none;
  cursor: pointer;
  pointer-events: auto;
  text-decoration: none;
  transition: background .35s ease, transform .35s cubic-bezier(.2,.85,.2,1);
}
.scroll-nav a:hover { background: var(--orange-2); transform: scale(1.4); }
.scroll-nav a.active {
  background: var(--orange);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(230,106,31,0.15);
}
.scroll-nav a::after {
  content: attr(data-label);
  position: absolute;
  right: 18px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: var(--paper);
  padding: 4px 10px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.scroll-nav a:hover::after {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
@media (max-width: 1024px) { .scroll-nav { display: none; } }

/* Typewriter caret for hero subtitle */
.hero-sub .tw-caret {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--orange);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: caretBlink 0.8s steps(2) infinite;
}
@keyframes caretBlink { 50% { opacity: 0; } }

/* Cursor trail — 3 fading orange dots behind the custom cursor */
.cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(230,106,31,0.5);
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: left, top, opacity;
  transition: opacity .3s ease;
}
@media (hover: none), (pointer: coarse) { .cursor-trail { display: none; } }

/* Card ripple — expanding orange wave on click */
.ripple-pulse {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,106,31,0.55) 0%, rgba(230,106,31,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 4;
  animation: ripplePulse .9s cubic-bezier(.2,.85,.2,1) forwards;
}
@keyframes ripplePulse {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(8); opacity: 0; }
}
.product-card, .adv-card, .testi-card, .blog-card, .service-card, .price-card {
  position: relative;
  overflow: hidden;
}

/* Decorative animated window in advantages background */
.dec-window {
  position: absolute;
  top: 80px; right: -60px;
  width: 280px; height: 360px;
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
  transform: rotate(-8deg);
}
.dec-window svg { width: 100%; height: 100%; overflow: visible; }
.dec-window-frame {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: decFrameDraw 3s cubic-bezier(.45,0,.2,1) forwards 1.5s;
}
.dec-window-pane {
  fill: rgba(252,222,191,0.4);
  opacity: 0;
  animation: decPaneFill 1s ease-out forwards 4s;
}
.dec-window-sash-l, .dec-window-sash-r {
  fill: var(--orange);
  opacity: 0.5;
}
.dec-window-sash-l {
  transform-origin: right center;
  animation: decSashOpenL 2.5s cubic-bezier(.4,0,.2,1) infinite alternate 5.5s;
}
.dec-window-sash-r {
  transform-origin: left center;
  animation: decSashOpenR 2.5s cubic-bezier(.4,0,.2,1) infinite alternate 5.5s;
}
@keyframes decFrameDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes decPaneFill {
  to { opacity: 1; }
}
@keyframes decSashOpenL {
  0%, 30%  { transform: scaleX(1); }
  70%, 100% { transform: scaleX(0.05); }
}
@keyframes decSashOpenR {
  0%, 30%  { transform: scaleX(1); }
  70%, 100% { transform: scaleX(0.05); }
}
@media (max-width: 1024px) { .dec-window { display: none; } }

/* Just-installed status marquee band */
.status-band {
  border-top: 1px solid var(--orange-tint);
  border-bottom: 1px solid var(--orange-tint);
  padding: 12px 0;
  background: linear-gradient(90deg, rgba(252,222,191,0.35), rgba(248,236,221,0.5), rgba(252,222,191,0.35));
  overflow: hidden;
  position: relative; z-index: 1;
}
.status-band-wrap { overflow: hidden; position: relative; }
.status-band-wrap::before, .status-band-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 1; pointer-events: none;
}
.status-band-wrap::before { left: 0; background: linear-gradient(to right, var(--paper-2), transparent); }
.status-band-wrap::after  { right: 0; background: linear-gradient(to left, var(--paper-2), transparent); }
.status-marquee {
  display: flex; gap: 48px; align-items: center;
  width: max-content;
  animation: marqueeStatus 38s linear infinite;
}
.status-marquee:hover { animation-play-state: paused; }
@keyframes marqueeStatus { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.status-item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-2);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.status-item .pin {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
}
.status-item .city { color: var(--orange-deep); font-weight: 600; }
.status-item .sep { color: var(--muted-2); }

/* Hero embers — floating orange dust */
.embers {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.embers span {
  position: absolute;
  bottom: -10px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFC56A 0%, var(--orange) 60%, transparent 100%);
  box-shadow: 0 0 12px rgba(230,106,31,0.55);
  opacity: 0;
  animation: emberRise linear infinite;
  filter: blur(0.4px);
}
.embers span:nth-child(1)  { left:  6%; width: 5px; height: 5px; animation-duration: 16s; animation-delay: 0s; }
.embers span:nth-child(2)  { left: 17%; width: 3px; height: 3px; animation-duration: 22s; animation-delay: 3s; }
.embers span:nth-child(3)  { left: 31%; width: 6px; height: 6px; animation-duration: 18s; animation-delay: 7s; }
.embers span:nth-child(4)  { left: 44%; width: 4px; height: 4px; animation-duration: 14s; animation-delay: 1s; }
.embers span:nth-child(5)  { left: 58%; width: 3px; height: 3px; animation-duration: 24s; animation-delay: 5s; }
.embers span:nth-child(6)  { left: 71%; width: 5px; height: 5px; animation-duration: 17s; animation-delay: 9s; }
.embers span:nth-child(7)  { left: 83%; width: 4px; height: 4px; animation-duration: 20s; animation-delay: 2s; }
.embers span:nth-child(8)  { left: 92%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: 6s; }
.embers span:nth-child(9)  { left: 24%; width: 4px; height: 4px; animation-duration: 19s; animation-delay: 11s; }
.embers span:nth-child(10) { left: 65%; width: 5px; height: 5px; animation-duration: 21s; animation-delay: 4s; }
@keyframes emberRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.85; }
  35%  { transform: translateY(-40vh) translateX(18px); }
  60%  { transform: translateY(-72vh) translateX(-12px); opacity: 0.55; }
  95%  { opacity: 0; }
  100% { transform: translateY(-105vh) translateX(8px); opacity: 0; }
}

/* Mouse parallax on hero floating cards — replaces float animation */
.hero-badge {
  animation: none;
  transition: transform .55s cubic-bezier(.2,.85,.2,1);
  will-change: transform;
}
.hero-card-projects {
  animation: none;
  transition: transform .55s cubic-bezier(.2,.85,.2,1);
  will-change: transform;
}

/* H2 underline DRAW on scroll-in (for section heads) */
.sec-head h2,
.about-text h2,
.faq-side h2 {
  position: relative;
  padding-bottom: 18px;
}
.sec-head h2::after,
.about-text h2::after,
.faq-side h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 4px; width: 0;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 55%, transparent 100%);
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(.2,.85,.2,1) .3s;
}
.sec-head.reveal.in h2::after,
.about-text.reveal.in h2::after,
.faq-side.reveal.in h2::after { width: 120px; }

/* CTA burst — orange spark particles on click */
.cta-burst {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 0; height: 0;
}
.cta-burst span {
  position: absolute;
  top: 0; left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFC56A, var(--orange));
  box-shadow: 0 0 8px var(--orange-2);
  animation: burstFly .9s cubic-bezier(.18,.8,.32,1) forwards;
}
@keyframes burstFly {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--bx), var(--by)) scale(0.2); opacity: 0; }
}

/* Ken Burns zoom on hero slides */
.hero-img-main .slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity 1.4s cubic-bezier(.2,.8,.2,1);
}
.hero-img-main .slide.active img {
  animation: kenBurns 9s ease-out forwards;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0,0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}

/* Letter bounce on product name hover */
.product-name .ltr {
  display: inline-block;
  transition: transform .35s cubic-bezier(.34,1.6,.64,1);
}
.product-card:hover .product-name .ltr {
  animation: letterBounce .6s cubic-bezier(.34,1.6,.64,1) both;
}
.product-card:hover .product-name .ltr:nth-child(1)  { animation-delay: 0.00s; }
.product-card:hover .product-name .ltr:nth-child(2)  { animation-delay: 0.04s; }
.product-card:hover .product-name .ltr:nth-child(3)  { animation-delay: 0.08s; }
.product-card:hover .product-name .ltr:nth-child(4)  { animation-delay: 0.12s; }
.product-card:hover .product-name .ltr:nth-child(5)  { animation-delay: 0.16s; }
.product-card:hover .product-name .ltr:nth-child(6)  { animation-delay: 0.20s; }
.product-card:hover .product-name .ltr:nth-child(7)  { animation-delay: 0.24s; }
.product-card:hover .product-name .ltr:nth-child(8)  { animation-delay: 0.28s; }
.product-card:hover .product-name .ltr:nth-child(9)  { animation-delay: 0.32s; }
.product-card:hover .product-name .ltr:nth-child(10) { animation-delay: 0.36s; }
.product-card:hover .product-name .ltr:nth-child(11) { animation-delay: 0.40s; }
.product-card:hover .product-name .ltr:nth-child(12) { animation-delay: 0.44s; }
@keyframes letterBounce {
  0%   { transform: translateY(0); }
  35%  { transform: translateY(-12px); color: var(--orange-3); }
  60%  { transform: translateY(2px); }
  100% { transform: translateY(0); }
}

/* Live install ticker pill in brand strip */
.live-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--paper);
  border: 1px solid var(--orange-tint);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink-2);
  flex-shrink: 0;
  box-shadow: 0 2px 8px -2px rgba(230,106,31,0.18);
  white-space: nowrap;
}
.live-pill .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 0 0 rgba(52,199,89,0.6);
  animation: livePulse 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,199,89,0.6); }
  70%  { box-shadow: 0 0 0 6px rgba(52,199,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,199,89,0); }
}
.live-pill .live-num {
  font-weight: 600; color: var(--orange-deep);
  font-size: 13px; letter-spacing: 0.5px;
  text-transform: none;
  transition: transform .35s cubic-bezier(.34,1.6,.64,1), color .35s ease;
}
.live-pill .live-num.bump { transform: scale(1.18); color: var(--orange); }
.live-pill .live-label { opacity: 0.75; }

/* Custom cursor — only on fine pointers */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: left, top, width, height;
}
.cursor {
  width: 28px; height: 28px;
  border: 1.5px solid rgba(230,106,31,0.65);
  border-radius: 50%;
  background: transparent;
  transition: width .25s cubic-bezier(.2,.85,.2,1),
              height .25s cubic-bezier(.2,.85,.2,1),
              background .25s ease,
              border-color .25s ease,
              opacity .3s ease;
  opacity: 0;
}
.cursor.ready { opacity: 1; }
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(230,106,31,0.6);
  opacity: 0;
}
.cursor-dot.ready { opacity: 1; }
.cursor.hover {
  width: 56px; height: 56px;
  background: rgba(230,106,31,0.12);
  border-color: var(--orange);
}
.cursor.hover-cta {
  width: 78px; height: 78px;
  background: rgba(230,106,31,0.18);
  border-color: var(--orange);
  border-width: 2px;
}
body.cursor-active, body.cursor-active * { cursor: none !important; }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none !important; }
  body.cursor-active, body.cursor-active * { cursor: auto !important; }
}

/* Window-pane SHUTTER reveal on about image */
.about-img { position: relative; }
.shutter {
  position: absolute; top: 0; bottom: 0;
  width: 50.4%;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(252,222,191,0.92) 0%, rgba(248,183,134,0.96) 100%);
  box-shadow: inset 0 0 0 1px rgba(230,106,31,0.35);
  transition: transform 1.6s cubic-bezier(.55,0,.18,1) .15s;
}
.shutter-l { left: 0; border-right: 1.5px solid rgba(230,106,31,0.45); }
.shutter-r { right: 0; border-left: 1.5px solid rgba(230,106,31,0.45); }
.about-img.opened .shutter-l { transform: translateX(-101%); }
.about-img.opened .shutter-r { transform: translateX(101%); }
/* Shutter detail — handle bars */
.shutter::before {
  content: '';
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 4px; height: 36px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(230,106,31,0.6);
}
.shutter-l::before { right: 10px; }
.shutter-r::before { left: 10px; }
/* Faint vertical mullions */
.shutter::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 30%, rgba(230,106,31,0.18) 50%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

/* Staggered reveal for grids */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2,.85,.2,1), transform .7s cubic-bezier(.2,.85,.2,1);
}
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .04s; }
.stagger.in > *:nth-child(2) { transition-delay: .12s; }
.stagger.in > *:nth-child(3) { transition-delay: .20s; }
.stagger.in > *:nth-child(4) { transition-delay: .28s; }
.stagger.in > *:nth-child(5) { transition-delay: .36s; }
.stagger.in > *:nth-child(6) { transition-delay: .44s; }
.stagger.in > *:nth-child(7) { transition-delay: .52s; }
.stagger.in > *:nth-child(8) { transition-delay: .60s; }

/* Scroll progress bar at top */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 50%, var(--orange-3) 100%);
  z-index: 1500;
  box-shadow: 0 0 12px rgba(230,106,31,0.55);
  transition: width .15s ease-out;
  pointer-events: none;
}

/* Cursor spotlight — orange aura that follows cursor across the page */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,106,31,0.32) 0%, rgba(248,183,134,0.18) 30%, rgba(252,222,191,0.08) 55%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 50;
  opacity: 0;
  transition: opacity .4s ease;
  will-change: left, top;
}
.cursor-spotlight.ready { opacity: 1; }

/* 3D tilt setup on product cards */
.product-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}
.product-card .product-face,
.product-card .product-corner,
.product-card img {
  will-change: transform;
}

/* Magnetic CTA — sets a smoother base for JS-driven movement */
.btn-orange { will-change: transform; }
.magnetic { transition: transform .25s cubic-bezier(.2,.85,.2,1); }

/* Window-frame draw animation (decorative, for hero stats) */
.frame-draw {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease;
}
.frame-draw.in { opacity: 0.75; }
.frame-draw svg { width: 100%; height: 100%; overflow: visible; }
.frame-draw .frame-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.4;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawFrame 2.2s cubic-bezier(.5,0,.2,1) forwards;
  animation-delay: 1.6s;
}
@keyframes drawFrame {
  to { stroke-dashoffset: 0; }
}

/* ============================================================
   WARM MICRO-ANIMATIONS
   ============================================================ */

/* Hooky cycling word in hero headline */
.cycle {
  display: inline-grid;
  vertical-align: bottom;
  position: relative;
  isolation: isolate;
}
.cycle .cw {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(36%) scale(0.96);
  filter: blur(8px);
  transition: opacity .55s cubic-bezier(.2,.85,.25,1), transform .55s cubic-bezier(.2,.85,.25,1), filter .55s ease;
  white-space: nowrap;
  pointer-events: none;
}
.cycle .cw.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.cycle .cw.exit {
  opacity: 0;
  transform: translateY(-36%) scale(1.04);
  filter: blur(8px);
}
/* Caret + underline accent on the cycling word */
.cycle::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 50%, transparent 100%);
  border-radius: 3px;
  transform-origin: left center;
  animation: cycleUnderline 2.4s ease-in-out infinite;
  z-index: -1;
  opacity: 0.55;
}
@keyframes cycleUnderline {
  0%,5%   { transform: scaleX(0); transform-origin: left; opacity: 0; }
  25%     { transform: scaleX(1); opacity: 0.6; }
  80%     { transform: scaleX(1); transform-origin: left; opacity: 0.6; }
  95%,100% { transform: scaleX(0); transform-origin: right; opacity: 0; }
}

.hero-title .gradient-text {
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-2) 40%, var(--orange-3) 70%, var(--orange-2) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: gradientShimmer 8s ease-in-out infinite;
}
@keyframes gradientShimmer {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

.hero-img-main { animation: heroSubtleFloat 9s ease-in-out infinite; }
@keyframes heroSubtleFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}

.about-img img { transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.about-img-col:hover .about-img img { transform: scale(1.04); }

.kicker .dot { animation: kickerDot 2.4s ease-in-out infinite; }
@keyframes kickerDot {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(230,106,31,0.5); }
  50%     { transform: scale(1.4); box-shadow: 0 0 0 4px rgba(230,106,31,0); }
}

.product-card .product-name { transition: letter-spacing .5s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-name { letter-spacing: 0.01em; }

.testi-card:hover { background: linear-gradient(160deg, var(--paper) 0%, var(--orange-glow) 100%); }

.faq-item:hover:not(.open) { border-color: rgba(230,106,31,0.18); }

.wa-float, .call-float { transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.wa-float:hover, .call-float:hover { transform: scale(1.12) rotate(-6deg); }

.blog-card .blog-img { position: relative; overflow: hidden; }
.blog-card .blog-img::after {
  content: ''; position: absolute;
  bottom: -1px; left: 0; right: 0; height: 30%;
  background: linear-gradient(to top, rgba(252,222,191,0.55), transparent);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.blog-card:hover .blog-img::after { opacity: 1; }

.hero-trust-item { transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.hero-trust-item:hover { transform: translateY(-3px); }
.hero-trust-item:hover .lbl { color: var(--orange-deep); }
.hero-trust-item .lbl { transition: color .3s ease; }

.adv-card .adv-icon { transition: background .3s ease, color .3s ease, transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease; }
.adv-card:hover .adv-icon { box-shadow: 0 8px 20px -6px rgba(230,106,31,0.5); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad: 32px; }
  section { padding: 90px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 40px 0 80px; }
  .hero-right { min-height: auto; }
  .hero-stack { height: 480px; max-width: 560px; }
  .hero-img-main { width: 92%; }
  .nav-center { display: none; }
  .nav-tel { display: none; }
  .hamburger { display: flex; }
  .nav-mobile {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: var(--paper); padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 4px;
    z-index: 999;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { padding: 12px 0; font-size: 15px; color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--line-2); }
  .nav-mobile a:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-img-col { max-width: 480px; }
  .about-img-quote { right: 0; left: 24px; max-width: 280px; }
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
  .sec-head p { justify-self: start; text-align: left; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid-top { grid-template-columns: repeat(2, 1fr); }
  .prod-grid-bot { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid, #extra-testimonials.visible { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-side { position: static; }
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 44px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  :root { --pad: 20px; }
  section { padding: 72px 0; }
  .hero-title { font-size: clamp(40px, 12vw, 56px); }
  .hero-trust { gap: 18px; }
  .hero-trust-item .num { font-size: 26px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-stack { height: 420px; }
  .hero-img-main { border-radius: 140px 140px 14px 14px; }
  .hero-badge { padding: 14px 16px; }
  .hero-card-projects { padding: 16px 18px; gap: 12px; left: 0; }
  .adv-grid { grid-template-columns: 1fr; }
  .prod-grid-top { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blogs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid, #extra-testimonials.visible { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .brand-strip-inner { gap: 20px; }
  .brand-strip-label { padding-right: 16px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .rating-strip { flex-wrap: wrap; gap: 20px; padding: 22px; }
  .rating-strip .r-num { font-size: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .modal-box { padding: 32px 24px; }
}

/* ============================================================
   RAIN ON GLASS — droplets sliding + splash at section bottom
   ============================================================ */
.rain-glass { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.rain-glass-pane {
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.015) 30%, transparent 60%),
    radial-gradient(ellipse at 80% 10%, rgba(255,255,255,0.12), transparent 38%),
    radial-gradient(ellipse at 15% 85%, rgba(252,222,191,0.06), transparent 42%);
}
.droplet {
  position: absolute; top: -10%;
  width: 9px; height: 14px;
  background: radial-gradient(ellipse at 35% 65%, rgba(255,255,255,0.95) 0%, rgba(248,236,221,0.55) 50%, rgba(252,222,191,0.18) 90%);
  clip-path: polygon(50% 0%, 38% 14%, 22% 32%, 8% 56%, 6% 76%, 22% 94%, 50% 100%, 78% 94%, 94% 76%, 92% 56%, 78% 32%, 62% 14%);
  box-shadow: inset 0 -1px 2px rgba(255,255,255,0.85), 0 1px 3px rgba(26,20,17,0.15);
  filter: blur(0.25px);
  animation: dropletSlide linear infinite;
}
.droplet::before {
  content: '';
  position: absolute; left: 50%; top: -240px; transform: translateX(-50%);
  width: 1.4px; height: 240px;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 4px, rgba(252,222,191,0.28) 4px, rgba(252,222,191,0.28) 9px, transparent 9px, transparent 14px, rgba(252,222,191,0.18) 14px, rgba(252,222,191,0.18) 17px);
  pointer-events: none; opacity: 0.7;
}
.droplet:nth-child(2)  { left:  6%; width: 11px; height: 16px; animation-duration: 11s; animation-delay: 0s; }
.droplet:nth-child(3)  { left: 14%; width: 7px;  height: 11px; animation-duration: 14s; animation-delay: 2.2s; }
.droplet:nth-child(4)  { left: 22%; width: 9px;  height: 13px; animation-duration: 9s;  animation-delay: 4s; }
.droplet:nth-child(5)  { left: 32%; width: 6px;  height: 9px;  animation-duration: 16s; animation-delay: 1s; }
.droplet:nth-child(6)  { left: 41%; width: 10px; height: 14px; animation-duration: 12s; animation-delay: 5.4s; }
.droplet:nth-child(7)  { left: 52%; width: 8px;  height: 12px; animation-duration: 10s; animation-delay: 3s; }
.droplet:nth-child(8)  { left: 61%; width: 9px;  height: 13px; animation-duration: 15s; animation-delay: 6.2s; }
.droplet:nth-child(9)  { left: 69%; width: 12px; height: 17px; animation-duration: 8s;  animation-delay: 0.6s; }
.droplet:nth-child(10) { left: 78%; width: 7px;  height: 10px; animation-duration: 13s; animation-delay: 7s; }
.droplet:nth-child(11) { left: 86%; width: 10px; height: 15px; animation-duration: 11s; animation-delay: 2.5s; }
@keyframes dropletSlide {
  0%   { top: -8%;  opacity: 0; transform: scaleY(1); }
  6%   { opacity: 0.95; }
  18%  { top: 14%; }
  24%  { top: 14%; }
  40%  { top: 38%; }
  46%  { top: 38%; }
  64%  { top: 64%; }
  70%  { top: 64%; }
  92%  { top: 94%; opacity: 0.85; transform: scaleY(1); }
  96%  { top: 99%; opacity: 0; transform: scaleY(0.3); }
  100% { top: 100%; opacity: 0; }
}
.splash-zone { position: absolute; left: 0; right: 0; bottom: 0; height: 8px; pointer-events: none; z-index: 3; }
.splash {
  position: absolute; bottom: 0; width: 6px; height: 6px;
  border: 1.5px solid rgba(252,222,191,0.7); border-radius: 50%;
  opacity: 0; transform: translateX(-50%) scale(0); background: transparent;
  animation: splashRipple ease-out infinite;
  box-shadow: inset 0 0 4px rgba(255,255,255,0.4);
}
.splash::before {
  content: ''; position: absolute; top: -6px; left: -4px;
  width: 2px; height: 4px;
  background: radial-gradient(circle, rgba(255,255,255,0.85), transparent);
  border-radius: 50%; opacity: 0.7; transform: rotate(-15deg);
}
.splash::after {
  content: ''; position: absolute; top: -7px; right: -4px;
  width: 2px; height: 5px;
  background: radial-gradient(circle, rgba(255,255,255,0.8), transparent);
  border-radius: 50%; opacity: 0.65; transform: rotate(15deg);
}
.splash:nth-child(1)  { left:  9%; animation-duration: 3.0s; animation-delay: 0.3s; }
.splash:nth-child(2)  { left: 24%; animation-duration: 2.6s; animation-delay: 1.8s; }
.splash:nth-child(3)  { left: 41%; animation-duration: 3.4s; animation-delay: 3.2s; }
.splash:nth-child(4)  { left: 57%; animation-duration: 2.8s; animation-delay: 0.9s; }
.splash:nth-child(5)  { left: 74%; animation-duration: 3.2s; animation-delay: 2.4s; }
.splash:nth-child(6)  { left: 90%; animation-duration: 2.9s; animation-delay: 4.0s; }
@keyframes splashRipple {
  0%   { opacity: 0; transform: translateX(-50%) scale(0); border-width: 2px; }
  10%  { opacity: 0.95; transform: translateX(-50%) scale(0.7); border-width: 1.8px; }
  60%  { opacity: 0.55; }
  100% { opacity: 0; transform: translateX(-50%) scale(4.5); border-width: 0.4px; }
}
@media (prefers-reduced-motion: reduce) { .droplet, .splash { animation: none; opacity: 0; } }
