
:root {
  --black:       #080808;
  --black-2:     #111111;
  --black-3:     #1A1A1A;
  --gold:        #CC0000;
  --gold-light:  #E53333;
  --gold-pale:   #FFE5E5;
  --white:       #FFFFFF;
  --grey:        #888888;
  --border:      rgba(204,0,0,0.15);
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'Inter', sans-serif;
  --ease:        cubic-bezier(0.16,1,0.3,1);

  --bg-primary:    #080808;
  --bg-secondary:  #111111;
  --bg-tertiary:   #1A1A1A;
  --text-primary:  #FFFFFF;
  --text-secondary:#888888;
  --surface:       #111111;
  --surface-2:     #1A1A1A;
  --line:          rgba(204,0,0,0.15);
}

/* ── Theme-switch transition ─────────────────────────────
   The whole palette lives in the custom properties above, so swapping
   body.theme-navy / body.theme-daylight only ever changes those
   variables — nothing else needs to know a theme changed. Animating
   the properties that actually read those variables (background,
   text, borders, icon fills) turns that swap from an instant snap
   into a smooth cross-fade, whether it's an admin picking a theme in
   Settings or a page reconciling a stale cached theme against the
   server's on load (see theme.js). Respects reduced-motion, and
   deliberately skips transform/width/height so it never fights with
   existing hover, reveal, or layout animations elsewhere on the site. */
@media (prefers-reduced-motion: no-preference) {
  *, *::before, *::after {
    transition: background-color 0.35s ease, color 0.35s ease,
      border-color 0.35s ease, fill 0.35s ease, stroke 0.35s ease,
      box-shadow 0.35s ease;
  }
}


body.theme-daylight {
  --black:       #F5F5F5;
  --black-2:     #EBEBEB;
  --black-3:     #E0E0E0;
  --white:       #0A0A0A;
  --grey:        #555555;
  --border:      rgba(204,0,0,0.2);

  --bg-primary:    #F5F5F5;
  --bg-secondary:  #EBEBEB;
  --bg-tertiary:   #E0E0E0;
  --text-primary:  #0A0A0A;
  --text-secondary:#555555;
  --surface:       #EBEBEB;
  --surface-2:     #E0E0E0;
  --line:          rgba(204,0,0,0.2);
}

/* "Navy" theme — a distinct dark palette (deep navy + warm gold) rather
   than a light mode, so it only needs a variable swap: every component
   already reads its colors through these custom properties (confirmed
   before writing this), the same way the default "signature" theme
   does with zero extra rules of its own. */
body.theme-navy {
  --black:       #0A1628;
  --black-2:     #0F1E33;
  --black-3:     #16283F;
  --gold:        #C9962B;
  --gold-light:  #E0B24D;
  --gold-pale:   #FFF3D6;
  --white:       #FFFFFF;
  --grey:        #94A3B8;
  --border:      rgba(201,150,43,0.18);

  --bg-primary:    #0A1628;
  --bg-secondary:  #0F1E33;
  --bg-tertiary:   #16283F;
  --text-primary:  #FFFFFF;
  --text-secondary:#94A3B8;
  --surface:       #0F1E33;
  --surface-2:     #16283F;
  --line:          rgba(201,150,43,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── KEYBOARD FOCUS ─────────────────────────────────────
   Visible only for keyboard navigation (:focus-visible skips
   mouse/touch clicks), tied to the brand accent so tabbing through
   the site is legible without adding any visual noise for pointer
   users. */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

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

/* ── UTILITIES ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.gold      { color: var(--gold); }
.gold-line { width: 48px; height: 3px; background: var(--gold); margin-bottom: 20px; }

/* ── REVEAL ANIMATION ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── PAGE SECTION ORDER (per theme) ──────────────────────
   .page-sections wraps the homepage's 5 major sections in a column
   flex container so each theme can present them in a different
   sequence via `order` alone — no DOM changes, so scroll-reveal
   timing, in-page anchors, and everything else tied to these elements
   keeps working regardless of which theme is active. Hero always opens
   and CTA always closes; only the 3 middle sections reshuffle. */
.page-sections { display: flex; flex-direction: column; }
.page-sections .hero               { order: 1; }
.page-sections .services           { order: 2; }
.page-sections .why                { order: 3; }
.page-sections .testimonials-section { order: 4; }
.page-sections .cta-section        { order: 5; }

/* Navy: leads with credibility (Why Us, then Testimonials) before the
   services pitch — matches the theme's more corporate/trust-first feel. */
body.theme-navy .page-sections .why                 { order: 2; }
body.theme-navy .page-sections .testimonials-section { order: 3; }
body.theme-navy .page-sections .services             { order: 4; }

/* Daylight: leads with social proof first for a warmer, more
   welcoming opening. */
body.theme-daylight .page-sections .testimonials-section { order: 2; }
body.theme-daylight .page-sections .services             { order: 3; }
body.theme-daylight .page-sections .why                  { order: 4; }

/* ── PER-THEME STRUCTURAL LAYOUT ──────────────────────────
   Same HTML, same components, everywhere — only how they're arranged
   changes, via CSS Grid areas/columns. Nothing here duplicates markup
   or moves anything with JS, so there's exactly one copy of every
   section to ever debug or update, regardless of theme.

   The rule, consistently applied:
   - Signature: content leads, visual/proof supports (current default)
   - Navy:      visual/proof leads instead — sides swap, and grids
                feature their first item larger (bolder, trust-first)
   - Daylight:  everything stacks to one relaxed column (calmer,
                easier scanning, matches its lighter overall feel)
   CTA and the marquee are deliberately left constant across all 3 —
   the call-to-action benefits from always being in the same place. */

.hero-inner { grid-template-areas: "text stats"; }
.hero-content { grid-area: text; }
.hero-stats   { grid-area: stats; }

.why-inner { grid-template-areas: "list visual"; }
.why-text   { grid-area: list; }
.why-visual { grid-area: visual; }

/* Navy/Daylight's structural swaps only apply above the existing
   900px mobile breakpoint — below it, every theme already collapses
   to the same simple single-column stack (see the existing @media
   (max-width: 900px) rules further down), and layering a competing
   2-column area/column override on top of that would fight those
   rules on specificity rather than source order, risking a broken
   mobile layout for Navy specifically. Simplest correct fix: theme
   personality differences are a desktop-only concern. */
@media (min-width: 901px) {
  body.theme-navy .hero-inner { grid-template-areas: "stats text"; }
  body.theme-daylight .hero-inner { grid-template-columns: 1fr; grid-template-areas: "text" "stats"; }

  body.theme-navy .why-inner { grid-template-areas: "visual list"; }
  body.theme-daylight .why-inner { grid-template-columns: 1fr; grid-template-areas: "list" "visual"; }

  body.theme-navy .services-grid { grid-template-columns: repeat(2, 1fr); }
  body.theme-navy .services-grid .svc-card:first-child { grid-column: span 2; }
  body.theme-daylight .services-grid { grid-template-columns: 1fr; }

  body.theme-navy .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  body.theme-navy .testimonials-grid .testimonial-card:first-child { grid-column: span 2; }
  body.theme-daylight .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-diagonal {
  position: absolute; right: -100px; top: 0; bottom: 0;
  width: 55%; background: var(--black-2);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-diagonal::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(201,168,76,0.03) 20px, rgba(201,168,76,0.03) 21px
  );
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; padding: 80px 0; }
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 100px);
  line-height: 0.95; letter-spacing: 2px;
  color: var(--white); margin-bottom: 28px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.55);
  max-width: 440px; line-height: 1.8; margin-bottom: 48px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 2px; cursor: pointer; border: none;
  transition: all 0.3s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-stats { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.stat-box {
  background: var(--black-3); border: 1px solid var(--border);
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.stat-box:hover { border-color: rgba(201,168,76,0.4); }
.stat-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold);
  transition: height 0.5s var(--ease);
}
.stat-box:hover::before { height: 100%; }
.stat-num {
  font-family: var(--font-display);
  font-size: 56px; line-height: 1; color: var(--gold);
  letter-spacing: 1px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }

/* ── MARQUEE ────────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden;
  background: var(--black-2);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 32px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ───────────────────────────────────────── */
.services { padding: 120px 0; }
.section-head { margin-bottom: 64px; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1; letter-spacing: 1px; color: var(--white);
  margin-bottom: 16px;
}
.section-body { font-size: 15px; color: var(--grey); max-width: 480px; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc-card {
  background: var(--black-2); border: 1px solid var(--border);
  padding: 48px 36px; position: relative; overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease);
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 0; background: linear-gradient(0deg, rgba(201,168,76,0.08), transparent);
  transition: height 0.5s var(--ease);
}
.svc-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.svc-card:hover::before { height: 100%; }
.svc-num {
  font-family: var(--font-display);
  font-size: 80px; line-height: 1; color: rgba(201,168,76,0.08);
  position: absolute; top: 24px; right: 28px;
  transition: color 0.4s;
}
.svc-card:hover .svc-num { color: rgba(201,168,76,0.15); }
.svc-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; font-size: 22px;
  transition: border-color 0.3s, background 0.3s;
}
.svc-card:hover .svc-icon { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: 1px; color: var(--white);
  margin-bottom: 14px;
}
.svc-card p { font-size: 14px; color: var(--grey); line-height: 1.8; margin-bottom: 28px; font-weight: 300; }
.svc-link {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.svc-link:hover { gap: 14px; }

/* ── WHY KM FG ──────────────────────────────────────── */
.why { padding: 120px 0; background: var(--black-2); position: relative; overflow: hidden; }
.why::before {
  content: 'KMFG';
  font-family: var(--font-display);
  font-size: 280px; line-height: 1; letter-spacing: 10px;
  color: rgba(255,255,255,0.02);
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  pointer-events: none; white-space: nowrap;
}
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.why-list { display: flex; flex-direction: column; }
.why-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 24px; align-items: start;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.why-item:hover { border-color: rgba(201,168,76,0.3); }
.why-item:first-child { border-top: 1px solid var(--border); }
.why-idx {
  font-family: var(--font-display);
  font-size: 32px; color: var(--gold); line-height: 1; padding-top: 4px;
}
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-item p  { font-size: 13px; color: var(--grey); line-height: 1.7; font-weight: 300; }
.why-visual { position: relative; }
.why-box {
  background: var(--black-3); border: 1px solid var(--border);
  padding: 56px 48px; position: relative; overflow: hidden;
}
.why-box::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), transparent);
}
.why-big-num { font-family: var(--font-display); font-size: 96px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.why-big-label { font-size: 13px; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 40px; }
.why-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 1px;
  color: rgba(255,255,255,0.5); transition: all 0.3s;
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── CTA BANNER ─────────────────────────────────────── */
.cta-section {
  padding: 120px 0; position: relative; overflow: hidden;
  background: var(--black);
}
.cta-bg-text {
  font-family: var(--font-display);
  font-size: 200px; line-height: 1; letter-spacing: 8px;
  color: rgba(201,168,76,0.04);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px); letter-spacing: 2px;
  color: var(--white); margin-bottom: 16px; line-height: 1;
}
.cta-inner h2 span { color: var(--gold); }
.cta-inner p { font-size: 15px; color: var(--grey); margin-bottom: 48px; font-weight: 300; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer { background: var(--black-2); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; padding-bottom: 56px; }
.footer-brand .logo { font-size: 24px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 13px; color: var(--grey); max-width: 280px; line-height: 1.8; font-weight: 300; }
.footer-col h5 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--grey);
  margin-bottom: 10px; transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-credit { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-credit span { color: var(--gold); }

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  /* grid-template-columns alone isn't enough here: the base rules for
     .hero-inner / .why-inner (see "PER-THEME STRUCTURAL LAYOUT" above)
     set a 2-column grid-template-areas ("text stats" / "list visual").
     Dropping to grid-template-columns: 1fr without also collapsing
     grid-template-areas to a single column leaves the area definition
     asking for 2 columns while only 1 is defined — the browser adds an
     implicit second (near-zero-width) column to satisfy it, which
     pushes .hero-stats and .why-visual out past the viewport's right
     edge. Explicitly stacking the areas here fixes it for every theme,
     since these per-theme overrides only apply at min-width: 901px. */
  .hero-inner { grid-template-columns: 1fr; grid-template-areas: "text" "stats"; gap: 48px; }
  .hero-diagonal { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; grid-template-areas: "list" "visual"; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero-inner { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-btns { flex-direction: column; }
  .cta-btns  { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}
/* ── FOOTER LOGO ──────────────────────────────────────── */
.logo-img-footer { height: 80px; margin-bottom: 17px; }
/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero { padding: 160px 0 80px; border-bottom: 1px solid var(--border); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95; letter-spacing: 1px; color: var(--white);
  margin: 20px 0 24px;
}
.page-title em { color: var(--gold); font-style: normal; }
.page-sub { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.8; font-weight: 300; }

/* ── STORY SECTION ────────────────────────────────────── */
.story-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.body-text-lg { font-size: 16px; color: var(--grey); line-height: 1.9; font-weight: 300; max-width: 540px; }
.story-box { background: var(--black-2); border: 1px solid var(--border); padding: 48px 40px; }
.story-box-top { width: 100%; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 36px; }
.story-stat { padding: 8px 0; }
.story-num { font-family: var(--font-display); font-size: 64px; color: var(--gold); line-height: 1; }
.story-label { font-size: 12px; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }
.story-divider { height: 1px; background: var(--border); margin: 24px 0; }

/* ── VALUES GRID ───────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.value-card { background: var(--black-2); padding: 36px 28px; transition: background 0.25s; }
.value-card:hover { background: var(--black-3); }
.value-num { font-family: var(--font-display); font-size: 13px; color: var(--gold); letter-spacing: 2px; margin-bottom: 18px; }
.value-card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; color: var(--white); margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--grey); line-height: 1.8; font-weight: 300; }

/* ── OFFER LIST ────────────────────────────────────────── */
.offer-list { border-top: 1px solid var(--border); }
.offer-row {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 40px; padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.offer-row h4 { font-family: var(--font-display); font-size: 28px; letter-spacing: 1px; color: var(--gold); }
.offer-row p { font-size: 14px; color: var(--grey); line-height: 1.85; font-weight: 300; max-width: 600px; }

/* ── ABOUT PAGE MOBILE ───────────────────────────────────── */
@media (max-width: 900px) {
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .offer-row { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 640px) {
  .page-hero { padding: 130px 0 56px; }
  .values-grid { grid-template-columns: 1fr; }
}
/* ── SERVICES PAGE ───────────────────────────────────── */
.svc-jumpnav {
  position: sticky; top: 78px; z-index: 500;
  background: rgba(8,8,8,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.svc-jumpnav-inner {
  display: flex; gap: 8px; overflow-x: auto;
  padding-top: 14px; padding-bottom: 14px;
  scrollbar-width: none;
}
.svc-jumpnav-inner::-webkit-scrollbar { display: none; }
.svc-jumpnav-inner a {
  flex-shrink: 0; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 20px;
  transition: all 0.25s; white-space: nowrap;
}
.svc-jumpnav-inner a:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }
.svc-jumpnav-inner a.active { color: var(--black); background: var(--gold); border-color: var(--gold); }
.svc-full-row { padding: 64px 0; scroll-margin-top: 150px; }
.svc-full-head {
  display: flex; align-items: flex-start; gap: 28px;
  margin-bottom: 36px;
}
.svc-full-num {
  font-family: var(--font-display);
  font-size: 72px; line-height: 1; color: var(--gold);
  opacity: 0.25; flex-shrink: 0; padding-top: 4px;
}
.svc-full-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 1px; line-height: 1; color: var(--white);
  margin-bottom: 10px;
}
.svc-full-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
}
.svc-full-body { padding-left: 96px; }
.svc-full-desc {
  font-size: 15px; color: var(--grey); line-height: 1.9;
  font-weight: 300; max-width: 640px; margin-bottom: 32px;
}
.svc-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.svc-feature {
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  padding: 10px 16px; border: 1px solid var(--border);
  transition: all 0.25s;
}
.svc-feature:hover { border-color: var(--gold); color: var(--gold); }
.svc-divider { height: 1px; background: var(--border); }

@media (max-width: 900px) {
  .svc-full-body { padding-left: 0; }
  .svc-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .svc-features { grid-template-columns: 1fr; }
  .svc-full-num { font-size: 48px; }
}
/* ── GALLERY PAGE ────────────────────────────────────── */
.filter-section { padding: 40px 0 0; }
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}
.filter-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 10px 20px;
  background: transparent; color: var(--grey);
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.25s; font-family: var(--font-body);
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-card { transition: opacity 0.3s; }
.gallery-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  background: var(--black-2);
}
.gallery-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  transition: opacity 0.3s;
}
.placeholder-icon { font-size: 48px; }
.gallery-placeholder p {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.88);
  display: flex; align-items: flex-end;
  padding: 28px; opacity: 0;
  transition: opacity 0.35s;
}
.gallery-img:hover .gallery-overlay { opacity: 1; }
.gallery-img:hover .gallery-placeholder { opacity: 0.2; }
.overlay-cat {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.overlay-title { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; color: var(--white); margin-bottom: 4px; }
.overlay-loc { font-size: 12px; color: var(--grey); margin-bottom: 16px; }
.overlay-btn {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--gold);
  color: var(--black); border: none; padding: 10px 20px; cursor: pointer;
  transition: background 0.2s;
}
.overlay-btn:hover { background: var(--gold-light); }
.gallery-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: var(--black-2);
  border: 1px solid var(--border); border-top: none;
}
.card-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.card-status { font-size: 11px; color: var(--grey); letter-spacing: 0.06em; }

/* Skeleton shimmer */
.skeleton::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}
@keyframes shimmer { from { background-position: -200% 0; } to { background-position: 200% 0; } }

/* Empty state */
.gallery-empty { text-align: center; padding: 80px 0; }
.empty-icon { font-size: 48px; margin-bottom: 16px; }
.gallery-empty h3 { font-family: var(--font-display); font-size: 28px; color: var(--white); margin-bottom: 8px; }
.gallery-empty p { font-size: 14px; color: var(--grey); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
}
.lightbox-panel {
  position: relative; z-index: 1;
  background: var(--black-2); border: 1px solid var(--border);
  width: 90%; max-width: 680px;
  transform: translateY(24px);
  transition: transform 0.3s var(--ease);
}
.lightbox.open .lightbox-panel { transform: translateY(0); }
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--grey);
  font-size: 18px; cursor: pointer; transition: color 0.2s; z-index: 2;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-img-area {
  height: 280px; background: var(--black-3);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
}
.lightbox-placeholder { font-size: 80px; }
.lightbox-info { padding: 32px 36px; }
.lightbox-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.lightbox-title { font-family: var(--font-display); font-size: 32px; letter-spacing: 1px; color: var(--white); margin-bottom: 12px; }
.lightbox-desc { font-size: 14px; color: var(--grey); line-height: 1.8; font-weight: 300; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .filter-bar { gap: 6px; }
  .lightbox-info { padding: 24px 20px; }
}
/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.info-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.info-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.info-item:first-child { border-top: 1px solid var(--border); }
.info-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.info-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.info-value { font-size: 15px; color: var(--white); font-weight: 400; transition: color 0.2s; }
.info-value:hover { color: var(--gold); }
.response-box {
  margin-top: 32px; background: var(--black-2);
  border: 1px solid var(--border); padding: 32px 28px;
  position: relative; overflow: hidden;
}
.response-box-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), transparent);
}
.response-title { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.response-num { font-family: var(--font-display); font-size: 56px; color: var(--white); line-height: 1; margin-bottom: 8px; }
.response-sub { font-size: 13px; color: var(--grey); line-height: 1.7; font-weight: 300; }

/* Form */
.form-header { margin-bottom: 36px; }
.form-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 1px; color: var(--white); line-height: 1; margin-top: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grey); margin-bottom: 8px;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-2); border: 1px solid var(--border);
  color: var(--white); font-family: var(--font-body);
  font-size: 14px; font-weight: 300;
  padding: 14px 16px; outline: none;
  transition: border-color 0.25s;
  
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black-2); }
.form-group textarea { resize: vertical; min-height: 130px; }
.input-error { border-color: #CC3333 !important; }
.field-error { font-size: 11px; color: #CC3333; margin-top: 5px; min-height: 16px; }
.btn-submit { width: 100%; justify-content: center; padding: 18px; font-size: 13px; }

/* Success / Error states */
.form-success {
  text-align: center; padding: 48px 32px;
  border: 1px solid var(--border); background: var(--black-2);
  margin-bottom: 24px;
}
.success-badge { display: flex; justify-content: center; margin-bottom: 20px; }
.success-check { width: 72px; height: 72px; }
.success-check-ring {
  fill: none; stroke: var(--gold); stroke-width: 2;
  stroke-dasharray: 151; stroke-dashoffset: 151;
  animation: successRing 0.5s ease-out forwards;
}
.success-check-mark {
  stroke: var(--gold); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 36; stroke-dashoffset: 36;
  animation: successMark 0.35s 0.45s ease-out forwards;
}
@keyframes successRing { to { stroke-dashoffset: 0; } }
@keyframes successMark { to { stroke-dashoffset: 0; } }
.form-success h4 { font-family: var(--font-display); font-size: 32px; color: var(--gold); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--grey); line-height: 1.8; font-weight: 300; max-width: 420px; margin: 0 auto; }
.success-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.success-action { padding: 13px 22px; font-size: 12.5px; }
.success-reset {
  display: block; margin: 22px auto 0; background: none; border: none;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--grey); text-decoration: underline; cursor: pointer;
}
.success-reset:hover { color: var(--gold-light); }
.form-error {
  padding: 14px 16px; background: rgba(204,51,51,0.1);
  border: 1px solid rgba(204,51,51,0.3);
  font-size: 13px; color: #E57373; margin-bottom: 16px;
}

/* Multi-step progress */
.form-steps { display: flex; align-items: center; margin-bottom: 32px; }
.form-step-dot {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey); flex-shrink: 0;
}
.form-step-dot span {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--grey);
  font-family: var(--font-display); font-size: 14px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.form-step-dot.active span,
.form-step-dot.done span { border-color: var(--gold); color: var(--gold); }
.form-step-dot.done span { background: var(--gold); color: var(--black); }
.form-step-dot.active { color: var(--white); }
.form-step-line { flex: 1; height: 1px; background: var(--border); margin: 0 10px; margin-bottom: 22px; }

.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeStepIn 0.3s ease; }
@keyframes fadeStepIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.form-step-actions { display: flex; gap: 12px; margin-top: 8px; }
.form-step-actions .btn-submit { margin-top: 0; }
.btn-step-back { flex: 0 0 auto; padding: 18px 24px; }
.btn-step-next { width: 100%; justify-content: center; padding: 18px; font-size: 13px; }
.form-step-actions .btn-step-next { flex: 1; }

/* Conditional field + counters + optional tag */
.form-conditional { display: none; }
.form-conditional.visible { display: flex; }
.optional-tag { color: rgba(255,255,255,0.25); font-weight: 400; text-transform: none; letter-spacing: 0; margin-left: 4px; }
.field-footer { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.char-counter { font-size: 11px; color: var(--grey); margin-top: 5px; white-space: nowrap; }
.char-counter.near-limit { color: var(--gold-light); }

/* Photo upload */
.upload-dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 28px 16px; text-align: center; cursor: pointer;
  border: 1px dashed var(--border); background: var(--black-2);
  color: var(--grey); font-size: 12.5px; font-weight: 300;
  transition: border-color 0.25s, color 0.25s;
}
.upload-dropzone i { font-size: 22px; color: var(--gold); }
.upload-dropzone:hover, .upload-dropzone.drag-over { border-color: var(--gold); color: var(--white); }
.upload-previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.upload-preview { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.upload-preview img { width: 100%; height: 100%; object-fit: cover; border: 1px solid var(--border); }
.upload-preview .upload-remove {
  position: absolute; top: -7px; right: -7px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: var(--black); border: none; font-size: 11px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.upload-preview .upload-progress {
  position: absolute; inset: 0; background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 10px;
}
.upload-preview.upload-failed img { opacity: 0.35; }

/* Review panel (step 3) */
.form-review { border: 1px solid var(--border); background: var(--black-2); padding: 20px; margin-bottom: 24px; }
.form-review-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.form-review-row:last-child { border-bottom: none; }
.form-review-row .frr-label { color: var(--grey); font-weight: 300; flex-shrink: 0; }
.form-review-row .frr-value { color: var(--white); font-weight: 300; text-align: right; word-break: break-word; }
.form-review-edit { display: block; margin-top: 10px; font-size: 11px; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; background: none; border: none; padding: 0; }

/* Contact mobile */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .form-step-dot span { font-size: 12px; }
}
/* ── REAL IMAGE SUPPORT ──────────────────────────────── */
.g-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}
.g-card:hover .g-img { transform: scale(1.04); }

/* ── VIDEO CARDS ─────────────────────────────────────── */
.g-video-media { background: #0a0a0a; }
.g-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block; opacity: 0.5;
  transition: opacity 0.3s;
}
.g-card:hover .g-video { opacity: 0.7; }
.g-video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; cursor: pointer;
}
.g-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold); display: flex;
  align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
  flex-shrink: 0;
}
.g-card:hover .g-play-btn { transform: scale(1.1); }
.g-play-icon { font-size: 22px; color: var(--black); margin-left: 4px; }
.g-video-info { text-align: center; }

/* ── FILE NAMING GUIDE ───────────────────────────────── */
.g-naming-guide {
  margin-top: 48px; border: 1px dashed rgba(204,0,0,0.25);
  padding: 28px 32px; background: rgba(204,0,0,0.02);
}
.g-ng-header {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px;
}
.g-ng-header p { font-size: 13px; color: var(--grey); line-height: 1.7; }
.g-ng-header p strong { color: var(--white); }
.g-ng-header code { color: var(--gold); font-size: 12px; }
.g-ng-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.g-ng-col { display: flex; flex-direction: column; gap: 6px; }
.g-ng-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.g-ng-col code {
  font-size: 11px; color: var(--gold);
  background: rgba(204,0,0,0.06);
  padding: 4px 8px; display: block;
  border-left: 2px solid var(--gold);
}

/* ── LIGHTBOX VIDEO ──────────────────────────────────── */
.g-lb-video {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .g-ng-grid { grid-template-columns: 1fr 1fr; }
}
/* ── GALLERY HERO ─────────────────────────────────────── */
.g-hero { position: relative; padding: 160px 0 100px; overflow: hidden; border-bottom: 1px solid var(--border); background: var(--black); }
.g-hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.g-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.g-hero-inner { position: relative; z-index: 1; }
.g-hero-content { max-width: 720px; }
.g-hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.95; letter-spacing: 1px; color: var(--white);
  margin: 20px 0 24px;
}
.g-hero-title em { color: var(--gold); font-style: normal; }
.g-hero-sub { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 560px; line-height: 1.8; font-weight: 300; }
.g-hero-counts { display: flex; align-items: center; gap: 32px; margin-top: 64px; flex-wrap: wrap; }
.g-count-item { line-height: 1; }
.g-count-num { font-family: var(--font-display); font-size: 48px; color: var(--gold); line-height: 1; }
.g-count-suffix { font-family: var(--font-display); font-size: 32px; color: var(--gold); }
.g-count-label { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 10px; }
.g-count-divider { width: 1px; height: 40px; background: var(--border); }

/* ── GALLERY FILTER BAR ───────────────────────────────── */
.g-filter-wrap { padding: 40px 0 0; }
.g-filter { display: flex; flex-wrap: wrap; gap: 10px; border-bottom: 1px solid var(--border); padding-bottom: 28px; margin-bottom: 18px; }
.g-filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 10px 18px;
  background: transparent; color: var(--grey);
  border: 1px solid var(--border); border-radius: 2px; cursor: pointer;
  transition: all 0.25s var(--ease); font-family: var(--font-body);
}
.g-filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }
.g-filter-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.g-filter-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.5; flex-shrink: 0; }
.g-filter-btn.active .g-filter-dot { background: var(--black); opacity: 1; }
.g-count-display { font-size: 13px; color: var(--grey); padding-bottom: 8px; }
.g-count-display strong { color: var(--white); font-weight: 600; }

/* ── GALLERY GRID / CARDS ─────────────────────────────── */
.g-section { padding: 48px 0 120px; }
.g-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; grid-auto-flow: dense; }
.g-card { position: relative; cursor: pointer; }
.g-card-large { grid-column: span 2; grid-row: span 2; }
.g-card-inner { height: 100%; }
.g-card-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--black-2); }
.g-card-large .g-card-media { aspect-ratio: 8 / 7; }

.g-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: var(--black-2); overflow: hidden; }
.g-placeholder-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  background-size: 200% 100%; animation: shimmer 2s infinite;
}
.g-placeholder-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.g-ph-icon { font-size: 44px; opacity: 0.5; }
.g-ph-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.25); }

.g-card-hover {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.88);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; opacity: 0; transition: opacity 0.35s;
}
.g-card:hover .g-card-hover { opacity: 1; }
.g-hover-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.g-hover-title { font-family: var(--font-display); font-size: 24px; letter-spacing: 1px; color: var(--white); margin-bottom: 6px; }
.g-hover-loc { font-size: 12px; color: var(--grey); margin-bottom: 16px; }
.g-hover-btn {
  align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--gold); color: var(--black);
  border: none; padding: 10px 20px; cursor: pointer; transition: background 0.2s;
}
.g-hover-btn:hover { background: var(--gold-light); }

.g-card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--gold); color: var(--black); padding: 6px 12px;
}

.g-card-featured {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(8,8,8,0.75); border: 1px solid var(--gold); color: var(--gold);
  padding: 6px 12px; border-radius: 2px;
}

.g-card-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 16px 18px; background: var(--black-2);
  border: 1px solid var(--border); border-top: none;
}
.g-card-title { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.g-card-cat { font-size: 11px; color: var(--grey); letter-spacing: 0.06em; text-transform: uppercase; }
.g-card-arrow { font-size: 14px; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.g-card:hover .g-card-arrow { transform: translateX(4px); }

/* ── EMPTY STATE ───────────────────────────────────────── */
.g-empty { display: none; text-align: center; padding: 80px 0; }
.g-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.g-empty h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 1px; color: var(--white); margin-bottom: 8px; }
.g-empty p { font-size: 14px; color: var(--grey); }

/* ── LIGHTBOX ──────────────────────────────────────────── */
.g-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.g-lightbox.open { opacity: 1; pointer-events: all; }
.g-lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.g-lb-panel {
  position: relative; z-index: 1;
  background: var(--black-2); border: 1px solid var(--border);
  width: 92%; max-width: 720px; max-height: 88vh; overflow-y: auto;
  transform: translateY(24px); transition: transform 0.3s var(--ease);
}
.g-lightbox.open .g-lb-panel { transform: translateY(0); }
.g-lb-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--grey);
  font-size: 18px; cursor: pointer; transition: color 0.2s; z-index: 2;
}
.g-lb-close:hover { color: var(--white); }
.g-lb-media {
  position: relative; height: 340px; background: var(--black-3);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.g-lb-media-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100%);
  background-size: 200% 100%; animation: shimmer 2s infinite;
}
.g-lb-icon { position: relative; z-index: 1; font-size: 80px; opacity: 0.5; }
.g-lb-body { padding: 36px 40px; }
.g-lb-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.g-lb-title { font-family: var(--font-display); font-size: 32px; letter-spacing: 1px; color: var(--white); margin-bottom: 10px; }
.g-lb-loc { font-size: 13px; color: var(--grey); margin-bottom: 4px; }
.g-lb-divider { height: 1px; background: var(--border); margin: 20px 0; }
.g-lb-desc { font-size: 14px; color: var(--grey); line-height: 1.8; font-weight: 300; margin-bottom: 24px; }
.g-lb-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.g-lb-tags span {
  font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid var(--border); color: rgba(255,255,255,0.5);
}
.g-lb-body > .btn { width: 100%; justify-content: center; }
.g-lb-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border);
}
.g-lb-nav-btn {
  background: none; border: none; color: var(--grey);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: color 0.2s; font-family: var(--font-body);
}
.g-lb-nav-btn:hover { color: var(--gold); }
.g-lb-counter { font-size: 12px; color: var(--grey); }

/* ── GALLERY MOBILE ────────────────────────────────────── */
@media (max-width: 900px) {
  .g-grid { grid-template-columns: 1fr 1fr; }
  .g-card-large { grid-column: span 2; grid-row: span 1; }
  .g-card-large .g-card-media { aspect-ratio: 4 / 3; }
  .g-hero-counts { gap: 24px; }
}
@media (max-width: 640px) {
  .g-hero { padding: 130px 0 64px; }
  .g-grid { grid-template-columns: 1fr; }
  .g-card-large { grid-column: span 1; }
  .g-filter { gap: 6px; }
  .g-filter-btn { min-height: 44px; padding: 13px 16px; }
  .g-lb-body { padding: 28px 24px; }
  .g-lb-media { height: 240px; }
}
/* ── ZYPHERIX PROTECTION ─────────────────────────────── */
body { -webkit-user-select: none; user-select: none; }
img  { -webkit-user-drag: none; user-select: none; pointer-events: none; }
/* ── LIGHT MODE OVERRIDES ────────────────────────────── */
body.theme-daylight { background: #F5F5F5; color: #0A0A0A; }

/* Nav */
body.theme-daylight .nav.scrolled {
  background: rgba(245,245,245,0.97);
  border-bottom: 1px solid rgba(204,0,0,0.12);
}
body.theme-daylight .nav-links a { color: #555; }
body.theme-daylight .nav-links a:hover { color: #0A0A0A; }
body.theme-daylight .logo { color: #0A0A0A; }

/* Hero */
body.theme-daylight .hero {
  background: #F5F5F5;
}
/* Red-on-near-white has almost no luminance contrast (both are "light"),
   which is why this grid effectively disappeared in daylight even though
   the rule was firing correctly — see the diagnosis a few messages back.
   A dark neutral line reads clearly against the light background instead,
   the same fix already applied to .why::before below. */
body.theme-daylight .hero::after {
  background-image:
    linear-gradient(rgba(10,10,10,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.07) 1px, transparent 1px);
}
body.theme-daylight .hero-diagonal {
  background: #EBEBEB;
}
body.theme-daylight .hero-diagonal::before {
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 20px,
    rgba(10,10,10,0.04) 20px, rgba(10,10,10,0.04) 21px
  );
}
body.theme-daylight .hero h1 { color: #0A0A0A; }
body.theme-daylight .hero-sub { color: #555; }
body.theme-daylight .stat-box {
  background: #EBEBEB;
  border-color: rgba(204,0,0,0.12);
}
body.theme-daylight .stat-box:hover { border-color: rgba(204,0,0,0.35); }
body.theme-daylight .stat-label { color: #555; }

/* Marquee */
body.theme-daylight .marquee-section { background: #EBEBEB; }
body.theme-daylight .marquee-item { color: #777; }

/* Services */
body.theme-daylight .svc-jumpnav {
  background: rgba(245,245,245,0.97);
  border-bottom: 1px solid rgba(204,0,0,0.12);
}
body.theme-daylight .svc-jumpnav-inner a { color: #555; }
body.theme-daylight .svc-jumpnav-inner a:hover { color: #0A0A0A; border-color: rgba(0,0,0,0.2); }
body.theme-daylight .services { background: #F5F5F5; }
body.theme-daylight .svc-card {
  background: #EBEBEB;
  border-color: rgba(204,0,0,0.1);
}
body.theme-daylight .svc-card h3 { color: #0A0A0A; }
body.theme-daylight .svc-card p  { color: #555; }
body.theme-daylight .svc-icon { border-color: rgba(204,0,0,0.15); }
body.theme-daylight .svc-card:hover .svc-icon { background: rgba(204,0,0,0.08); }
/* .svc-num and .svc-card::before are hardcoded to a warm-gold rgba with
   no theme override anywhere else in the file — fine on the dark themes
   (gold-on-near-black reads as a soft glow), but at 8% opacity it's
   essentially invisible against this theme's light card background.
   Static decorative elements (the ghost number) get a neutral dark
   tone to match the grid fix above; the hover glow gets the theme's
   own red accent instead, so it reads as an intentional brand touch
   on interaction rather than another muted grey. */
body.theme-daylight .svc-num { color: rgba(10,10,10,0.07); }
body.theme-daylight .svc-card:hover .svc-num { color: rgba(10,10,10,0.14); }
body.theme-daylight .svc-card::before { background: linear-gradient(0deg, rgba(204,0,0,0.06), transparent); }
body.theme-daylight .svc-card:hover { border-color: rgba(204,0,0,0.35); }

/* Why */
body.theme-daylight .why { background: #EBEBEB; }
body.theme-daylight .why::before { color: rgba(0,0,0,0.03); }
body.theme-daylight .why-item { border-color: rgba(204,0,0,0.1); }
body.theme-daylight .why-item:hover { border-color: rgba(204,0,0,0.3); }
body.theme-daylight .why-item h4 { color: #0A0A0A; }
body.theme-daylight .why-item p  { color: #555; }
body.theme-daylight .why-box {
  background: #E0E0E0;
  border-color: rgba(204,0,0,0.1);
}
body.theme-daylight .why-big-label { color: #555; }
body.theme-daylight .tag {
  border-color: rgba(204,0,0,0.15);
  color: #555;
}

/* CTA */
body.theme-daylight .cta-section { background: #EBEBEB; }
body.theme-daylight .cta-inner h2 { color: #0A0A0A; }
body.theme-daylight .cta-inner p  { color: #555; }
body.theme-daylight .cta-bg-text  { color: rgba(204,0,0,0.04); }
body.theme-daylight .btn-ghost {
  border-color: rgba(0,0,0,0.15);
  color: #0A0A0A;
}
body.theme-daylight .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Section labels & titles */
body.theme-daylight .section-label { color: var(--gold); }
body.theme-daylight .section-title { color: #0A0A0A; }
body.theme-daylight .section-body  { color: #555; }
body.theme-daylight .gold-line     { background: var(--gold); }

/* Footer */
body.theme-daylight .footer { background: #EBEBEB; border-color: rgba(204,0,0,0.1); }
body.theme-daylight .footer-brand p { color: #555; }
body.theme-daylight .footer-col a   { color: #555; }
body.theme-daylight .footer-col a:hover { color: #0A0A0A; }
body.theme-daylight .footer-bottom p { color: #999; }
body.theme-daylight .footer-credit   { color: #999; }

/* About page */
body.theme-daylight .page-hero { background: #F5F5F5; }
body.theme-daylight .page-title { color: #0A0A0A; }
body.theme-daylight .page-sub   { color: #555; }
body.theme-daylight .story-box  { background: #EBEBEB; border-color: rgba(204,0,0,0.1); }
body.theme-daylight .story-label { color: #555; }
body.theme-daylight .story-divider { background: rgba(204,0,0,0.1); }
body.theme-daylight .values-grid .value-card { background: #EBEBEB; }
body.theme-daylight .value-card h3 { color: #0A0A0A; }
body.theme-daylight .value-card p  { color: #555; }
body.theme-daylight .offer-row h4  { color: var(--gold); }
body.theme-daylight .offer-row p   { color: #555; }
body.theme-daylight .offer-row { border-color: rgba(204,0,0,0.1); }
body.theme-daylight .body-text-lg { color: #444; }

/* Services page */
body.theme-daylight .svc-full-title { color: #0A0A0A; }
body.theme-daylight .svc-full-desc  { color: #555; }
body.theme-daylight .svc-feature {
  border-color: rgba(204,0,0,0.12);
  color: #555;
}
body.theme-daylight .svc-feature:hover { border-color: var(--gold); color: var(--gold); }
body.theme-daylight .svc-divider { background: rgba(204,0,0,0.1); }

/* Gallery page */
body.theme-daylight .g-hero { background: #F5F5F5; }
body.theme-daylight .g-hero-grid {
  background-image:
    linear-gradient(rgba(10,10,10,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.07) 1px, transparent 1px);
}
body.theme-daylight .g-filter-wrap { background: #EBEBEB; }
body.theme-daylight .g-filter-btn  { color: #777; }
body.theme-daylight .g-filter-btn:hover { color: #0A0A0A; }
body.theme-daylight .g-placeholder { background: #E0E0E0; }
body.theme-daylight .g-ph-label { color: rgba(0,0,0,0.3); }
body.theme-daylight .g-card-foot { background: #EBEBEB; border-color: rgba(204,0,0,0.1); }
body.theme-daylight .g-card:hover .g-card-foot { background: #E0E0E0; }
body.theme-daylight .g-card-title { color: #0A0A0A; }
body.theme-daylight .g-card-cat   { color: #555; }
body.theme-daylight .g-count-display { color: #555; }
body.theme-daylight .g-lb-panel { background: #EBEBEB; border-color: rgba(204,0,0,0.1); }
body.theme-daylight .g-lb-media { background: #E0E0E0; }
body.theme-daylight .g-lb-title { color: #0A0A0A; }
body.theme-daylight .g-lb-loc   { color: #555; }
body.theme-daylight .g-lb-desc  { color: #555; }
body.theme-daylight .g-lb-tag   { border-color: rgba(204,0,0,0.15); color: #555; }
body.theme-daylight .g-lb-nav-btn { border-color: rgba(204,0,0,0.15); color: #555; }
body.theme-daylight .g-lb-counter  { color: #555; }
body.theme-daylight .g-lb-close { background: #E0E0E0; border-color: rgba(204,0,0,0.1); color: #333; }
body.theme-daylight .g-naming-guide { border-color: rgba(204,0,0,0.2); background: rgba(204,0,0,0.02); }
body.theme-daylight .g-ng-header p { color: #555; }
body.theme-daylight .g-ng-col code { background: rgba(204,0,0,0.05); }
body.theme-daylight .g-coming-soon { border-color: rgba(204,0,0,0.2); }
body.theme-daylight .g-cs-text { color: #555; }

/* Contact page */
body.theme-daylight .info-value { color: #0A0A0A; }
body.theme-daylight .info-label { color: #777; }
body.theme-daylight .info-item  { border-color: rgba(204,0,0,0.1); }
body.theme-daylight .response-box { background: #EBEBEB; border-color: rgba(204,0,0,0.1); }
body.theme-daylight .response-num { color: #0A0A0A; }
body.theme-daylight .response-sub { color: #555; }
body.theme-daylight .form-title   { color: #0A0A0A; }
body.theme-daylight .form-group label { color: #555; }
body.theme-daylight .form-group input,
body.theme-daylight .form-group select,
body.theme-daylight .form-group textarea {
  background: #EBEBEB;
  border-color: rgba(204,0,0,0.15);
  color: #0A0A0A;
}
body.theme-daylight .form-group input::placeholder,
body.theme-daylight .form-group textarea::placeholder { color: rgba(0,0,0,0.25); }
body.theme-daylight .form-success { background: #EBEBEB; border-color: rgba(204,0,0,0.1); }
body.theme-daylight .form-success p { color: #555; }
body.theme-daylight .upload-dropzone { background: #EBEBEB; border-color: rgba(0,0,0,0.15); color: #777; }
body.theme-daylight .form-review { background: #EBEBEB; border-color: rgba(0,0,0,0.1); }
body.theme-daylight .form-review-row { border-color: rgba(0,0,0,0.08); }
body.theme-daylight .form-review-row .frr-value { color: #0A0A0A; }
body.theme-daylight .form-step-dot span { border-color: rgba(0,0,0,0.15); }
body.theme-daylight .form-step-line { background: rgba(0,0,0,0.1); }
body.theme-daylight .success-reset { color: #777; }

/* Smooth transition for everything */
body, body * {
  transition-property: background-color, border-color, color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
/* But don't override animation transitions */
.reveal, .reveal-left, .btn, .svc-card, .g-card, .stat-box::before,
.nav, .logo-img, .marquee-track {
  transition-property: opacity, transform, border-color, background, height, width, gap, padding;
}
/* ── FONT AWESOME ICONS ──────────────────────────────── */
.svc-icon i { font-size: 22px; color: var(--gold); }
.float-btn i { font-size: 20px; color: #fff; }
.info-icon i { font-size: 18px; }
.marquee-dot i { font-size: 6px; }

/* ── BREADCRUMBS ──────────────────────────────────────── */
.breadcrumb-nav {
  margin-bottom: 18px;
}
.breadcrumb-nav ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.breadcrumb-nav li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}
.breadcrumb-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb-nav a:hover {
  color: var(--gold);
}
.breadcrumb-nav li[aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}
.breadcrumb-nav li:not(:last-child)::after {
  content: "/";
  color: var(--gold);
  margin-left: 8px;
  opacity: 0.6;
}

/* ── STICKY MOBILE CONTACT BAR ───────────────────────── */
.mobile-contact-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.mobile-contact-bar .mcb-inner {
  display: flex;
  gap: 10px;
}
.mobile-contact-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.mobile-contact-bar .mcb-call {
  background: var(--gold);
  color: #fff;
}
.mobile-contact-bar .mcb-whatsapp {
  background: #25D366;
  color: #fff;
}
.mobile-contact-bar .mcb-quote {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
@media (max-width: 760px) {
  .mobile-contact-bar { display: block; }
  body { padding-bottom: 66px; }
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-primary);
  flex-grow: 1;
}
.testimonial-author { font-family: var(--font-body); font-size: 13px; color: var(--text-secondary); }
.testimonial-author strong { color: var(--text-primary); display: block; font-size: 14px; margin-bottom: 2px; }
