/* ============================================================
   STEEL GATE SOLUTION — Master Stylesheet v2
   Light Industrial · Warm White · Gold Accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Inconsolata:wght@400;500&display=swap');

/* ── Variables ── */
:root {
  /* Light backgrounds */
  --bg:        #F7F6F2;
  --bg-2:      #EEECE6;
  --bg-3:      #E4E1D9;
  --bg-card:   #FFFFFF;

  /* Dark sections (hero, footer, promo, page-hero only) */
  --dark:      #1C1A17;
  --dark-2:    #252320;
  --graphite:  #2E2B27;

  /* Text */
  --text:      #1C1A17;
  --text-2:    #3A3733;
  --text-muted:#6B6660;
  --text-faint:#9A9590;

  /* Borders */
  --border:    #D6D2C8;
  --border-dk: #BDB8AE;

  /* Gold accent */
  --gold:      #C8960A;
  --gold-dk:   #A67B08;
  --gold-lt:   #E8B824;
  --gold-bg:   rgba(200,150,10,.07);
  --gold-bdr:  rgba(200,150,10,.3);

  /* On-dark text */
  --od:        #F0EDE6;
  --od-muted:  rgba(240,237,230,.62);
  --od-faint:  rgba(240,237,230,.28);

  --ff-h:  'Oswald', sans-serif;
  --ff-b:  'Rajdhani', sans-serif;
  --ff-m:  'Inconsolata', monospace;

  --sh-sm:   0 1px 4px rgba(28,26,23,.08);
  --sh-md:   0 4px 20px rgba(28,26,23,.10);
  --sh-lg:   0 12px 40px rgba(28,26,23,.14);
  --sh-gold: 0 6px 28px rgba(200,150,10,.28);
  --sh-dark: 0 16px 48px rgba(0,0,0,.5);

  --ease:  cubic-bezier(.4,0,.2,1);
  --dur:   .3s;

  --header-h: 80px;
  --max-w:    1240px;
}

/* ── Reset ── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; cursor:none; }
body {
  font-family:var(--ff-b);
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
img { max-width:100%; height:auto; display:block; }
a   { color:inherit; text-decoration:none; }
ul  { list-style:none; }
button { font-family:inherit; cursor:none; border:none; background:none; }
input,textarea,select { font-family:inherit; cursor:none; }

/* ── Custom Cursor ── */
#cursor-dot,#cursor-ring { position:fixed; pointer-events:none; z-index:99999; border-radius:50%; }
#cursor-dot  { width:6px; height:6px; background:var(--gold); transform:translate(-50%,-50%); }
#cursor-ring {
  width:36px; height:36px; border:1.5px solid var(--gold);
  transform:translate(-50%,-50%);
  transition:width .2s var(--ease),height .2s var(--ease),border-color .2s;
}
.cursor-expand #cursor-ring { width:56px; height:56px; border-color:var(--gold-lt); }

/* ── Typography — default dark on light ── */
h1,h2,h3,h4,h5 {
  font-family:var(--ff-h); text-transform:uppercase;
  letter-spacing:.02em; line-height:1.05; color:var(--text);
}
h1 { font-size:clamp(2.8rem,7vw,6.5rem); font-weight:700; }
h2 { font-size:clamp(2rem,4vw,3.5rem);   font-weight:700; }
h3 { font-size:clamp(1.3rem,2.5vw,2rem); font-weight:600; }
p  { font-family:var(--ff-b); font-size:1rem; font-weight:400; }

/* ── Layout ── */
.container  { max-width:var(--max-w); margin:0 auto; padding:0 1.5rem; }
.section    { padding:100px 0; }
.section-sm { padding:60px 0; }

/* ── Label pill ── */
.label {
  font-family:var(--ff-m); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); border-left:3px solid var(--gold); padding-left:.7rem;
  margin-bottom:1.2rem; display:inline-block;
}
.section-title { margin-bottom:.6rem; }
.section-sub   { color:var(--text-muted); font-size:1.05rem; max-width:560px; margin-bottom:3.5rem; line-height:1.7; }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:.6rem;
  font-family:var(--ff-h); font-weight:600; font-size:1rem;
  letter-spacing:.08em; text-transform:uppercase;
  padding:.9rem 2.2rem; border:2px solid transparent;
  cursor:none; transition:all var(--dur) var(--ease);
  white-space:nowrap; position:relative; overflow:hidden;
}
.btn::before {
  content:''; position:absolute; inset:0;
  transform:translateX(-101%); transition:transform .3s var(--ease); z-index:0;
}
.btn>*,.btn span { position:relative; z-index:1; }

.btn-gold { background:var(--gold); color:#fff; border-color:var(--gold); }
.btn-gold::before { background:var(--gold-lt); }
.btn-gold:hover::before { transform:translateX(0); }
.btn-gold:hover { color:var(--text); }

.btn-dark { background:var(--dark); color:var(--od); border-color:var(--dark); }
.btn-dark::before { background:var(--graphite); }
.btn-dark:hover::before { transform:translateX(0); }
.btn-dark:hover { color:var(--od); }

.btn-outline { background:transparent; color:var(--text); border-color:var(--text); }
.btn-outline::before { background:var(--text); }
.btn-outline:hover::before { transform:translateX(0); }
.btn-outline:hover { color:#fff; }

.btn-outline-gold { background:transparent; color:var(--gold); border-color:var(--gold); }
.btn-outline-gold::before { background:var(--gold); }
.btn-outline-gold:hover::before { transform:translateX(0); }
.btn-outline-gold:hover { color:#fff; }

/* Light variant for dark-bg sections */
.btn-outline-light { background:transparent; color:var(--od); border-color:rgba(240,237,230,.45); }
.btn-outline-light::before { background:rgba(240,237,230,.12); }
.btn-outline-light:hover::before { transform:translateX(0); }
.btn-outline-light:hover { color:var(--od); border-color:var(--od); }

.btn-wa { background:#25D366; color:#fff; border-color:#25D366; }
.btn-wa::before { background:#1db954; }
.btn-wa:hover::before { transform:translateX(0); }
.btn-wa:hover { color:#fff; }

.btn-sm { padding:.6rem 1.5rem; font-size:.85rem; }
.btn-lg { padding:1.1rem 2.8rem; font-size:1.1rem; }

/* ── Topbar ── */
.topbar {
  background:var(--gold); color:#fff;
  font-family:var(--ff-m); font-size:.72rem; letter-spacing:.1em; padding:.4rem 0;
}
.topbar-inner { display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.topbar a { color:#fff; transition:opacity var(--dur); }
.topbar a:hover { opacity:.75; }
.topbar-links,.topbar-right { display:flex; gap:2rem; }

/* ── Header ── */
#header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--header-h);
  background:rgba(247,246,242,.55);
  backdrop-filter:blur(18px) saturate(180%);
  border-bottom:1px solid rgba(28,26,23,.07);
  transition:background var(--dur),border-color var(--dur),box-shadow var(--dur);
}
#header.scrolled {
  background:rgba(247,246,242,.97);
  border-color:var(--border);
  box-shadow:var(--sh-md);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; height:100%; }

/* Logo */
.logo { display:flex; align-items:center; gap:.75rem; z-index:10; }
.logo-mark {
  width:44px; height:44px; border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-h); font-size:1.4rem; font-weight:700; color:var(--gold);
  position:relative;
}
.logo-mark::before {
  content:''; position:absolute; top:3px; left:3px; right:-3px; bottom:-3px;
  border:1px solid var(--gold-bdr); z-index:-1;
}
.logo-text-wrap { display:flex; flex-direction:column; line-height:1; }
.logo-name { font-family:var(--ff-h); font-size:1.1rem; font-weight:700; color:var(--text); text-transform:uppercase; letter-spacing:.08em; }
.logo-sub  { font-family:var(--ff-m); font-size:.6rem; color:var(--gold); letter-spacing:.2em; text-transform:uppercase; }

/* Nav */
.nav { display:flex; align-items:center; gap:.2rem; }
.nav a {
  font-family:var(--ff-h); font-size:.85rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase; color:var(--text-2);
  padding:.55rem 1rem; border:1px solid transparent; transition:all var(--dur);
}
.nav a:hover,.nav a.active { color:var(--gold); border-color:var(--gold-bdr); background:var(--gold-bg); }
.nav-cta { margin-left:.75rem; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:6px; padding:8px; z-index:10; }
.hamburger span { width:28px; height:2px; background:var(--text); transition:all var(--dur); display:block; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity:0; width:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(6px,-6px); }

/* Mobile nav */
.mobile-nav {
  display:none; position:fixed; top:0; left:0; right:0; bottom:0;
  background:var(--bg-card); z-index:999;
  flex-direction:column; align-items:center; justify-content:center; gap:2rem;
  border-top:4px solid var(--gold);
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-family:var(--ff-h); font-size:2rem; font-weight:700; text-transform:uppercase;
  color:var(--text-2); transition:color var(--dur); letter-spacing:.08em;
}
.mobile-nav a:hover { color:var(--gold); }
.mobile-nav .btn { margin-top:1rem; }

/* ════ HERO SLIDER — dark section ════ */
.hero-slider {
  position:relative; width:100%; height:100vh; min-height:700px;
  overflow:hidden; background:var(--dark);
  padding-top:calc(var(--header-h) + 36px);
}
.slide { position:absolute; inset:0; opacity:0; transition:opacity 1.2s var(--ease); display:flex; align-items:center; }
.slide.active  { opacity:1; z-index:2; }
.slide.leaving { opacity:0; z-index:1; }

.slide-bg { position:absolute; inset:0; overflow:hidden; }
.slide-bg::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(28,26,23,.88) 0%,rgba(28,26,23,.5) 50%,rgba(28,26,23,.88) 100%);
  z-index:1;
}
.slide-1 .slide-bg {
  background:
    repeating-linear-gradient(0deg,transparent,transparent 60px,rgba(200,150,10,.04) 60px,rgba(200,150,10,.04) 61px),
    repeating-linear-gradient(90deg,transparent,transparent 60px,rgba(200,150,10,.04) 60px,rgba(200,150,10,.04) 61px),
    linear-gradient(160deg,#1c1a17 0%,#2a2210 40%,#1c1a17 100%);
}
.slide-2 .slide-bg {
  background:
    radial-gradient(ellipse 80% 80% at 80% 50%,rgba(200,150,10,.1) 0%,transparent 60%),
    linear-gradient(180deg,#1c1a17 0%,#252320 100%);
}
.slide-3 .slide-bg {
  background:
    repeating-linear-gradient(45deg,transparent,transparent 80px,rgba(255,255,255,.012) 80px,rgba(255,255,255,.012) 81px),
    linear-gradient(120deg,#1c1a17 0%,#1e1c19 100%);
}
.steel-lines {
  position:absolute; inset:0; z-index:1;
  background:repeating-linear-gradient(90deg,transparent,transparent 3px,rgba(255,255,255,.014) 3px,rgba(255,255,255,.014) 4px);
  pointer-events:none;
}

/* Slide text — on dark bg, always light */
.slide-content { position:relative; z-index:3; max-width:800px; }
.slide-eyebrow {
  font-family:var(--ff-m); font-size:.72rem; letter-spacing:.3em; text-transform:uppercase;
  color:var(--gold); display:flex; align-items:center; gap:.8rem; margin-bottom:1.8rem;
  opacity:0; transform:translateY(20px); transition:all .8s var(--ease) .2s;
}
.slide-eyebrow::before { content:''; width:40px; height:1px; background:var(--gold); }
.slide.active .slide-eyebrow { opacity:1; transform:translateY(0); }

.slide-title {
  color:var(--od); margin-bottom:1.2rem;
  opacity:0; transform:translateY(30px); transition:all .8s var(--ease) .4s;
}
.slide.active .slide-title { opacity:1; transform:translateY(0); }
.slide-title em { color:var(--gold); font-style:normal; display:block; }

.slide-body {
  color:var(--od-muted); font-size:1.05rem; max-width:520px; margin-bottom:2.5rem;
  opacity:0; transform:translateY(20px); transition:all .8s var(--ease) .6s;
}
.slide.active .slide-body { opacity:1; transform:translateY(0); }

.slide-actions {
  display:flex; gap:1rem; flex-wrap:wrap;
  opacity:0; transform:translateY(20px); transition:all .8s var(--ease) .8s;
}
.slide.active .slide-actions { opacity:1; transform:translateY(0); }

/* Deco rings */
.slide-deco {
  position:absolute; right:5%; top:50%; transform:translateY(-50%);
  width:380px; height:380px; z-index:3;
  opacity:0; transition:opacity 1s var(--ease) .6s;
  display:flex; align-items:center; justify-content:center;
}
.slide.active .slide-deco { opacity:1; }
.deco-ring { position:absolute; border-radius:50%; border:1px solid rgba(200,150,10,.18); animation:spin 20s linear infinite; }
.deco-ring:nth-child(1) { width:100%; height:100%; }
.deco-ring:nth-child(2) { width:75%; height:75%; border-color:rgba(200,150,10,.28); animation-direction:reverse; animation-duration:14s; }
.deco-ring:nth-child(3) { width:50%; height:50%; border-color:rgba(200,150,10,.45); }
.deco-center {
  width:120px; height:120px; border:2px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-h); font-size:1rem; font-weight:700; color:var(--gold);
  text-align:center; text-transform:uppercase; letter-spacing:.1em; line-height:1.3;
  position:relative; z-index:1;
}
.deco-center::before { content:''; position:absolute; inset:-8px; border:1px solid rgba(200,150,10,.22); }
@keyframes spin { to { transform:rotate(360deg); } }

/* Slider UI */
.slider-controls {
  position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%);
  display:flex; align-items:center; gap:1rem; z-index:10;
}
.slider-dot { width:28px; height:3px; background:rgba(240,237,230,.25); cursor:none; transition:all var(--dur); border:none; }
.slider-dot.active { background:var(--gold); width:56px; }
.slider-arrows { position:absolute; bottom:2rem; right:2rem; z-index:10; display:flex; gap:.5rem; }
.slider-arrow {
  width:44px; height:44px; border:1px solid rgba(240,237,230,.18);
  display:flex; align-items:center; justify-content:center;
  color:rgba(240,237,230,.65); cursor:none; font-size:1.1rem;
  transition:all var(--dur); background:rgba(28,26,23,.4);
}
.slider-arrow:hover { border-color:var(--gold); color:var(--gold); }
.slider-progress { position:absolute; bottom:0; left:0; height:3px; background:var(--gold); z-index:10; animation:progress 5s linear infinite; }
@keyframes progress { from{width:0} to{width:100%} }
.slide-counter {
  position:absolute; top:50%; right:2.5rem; transform:translateY(-50%);
  z-index:10; display:flex; flex-direction:column; align-items:center; gap:.5rem;
}
.counter-current { font-family:var(--ff-h); font-size:3rem; font-weight:700; color:var(--gold); line-height:1; }
.counter-sep     { width:1px; height:40px; background:rgba(240,237,230,.2); }
.counter-total   { font-family:var(--ff-m); font-size:.9rem; color:rgba(240,237,230,.4); }

/* ── Trust Strip ── */
.trust-strip { background:var(--bg-card); border-top:3px solid var(--gold); border-bottom:1px solid var(--border); padding:0; }
.trust-inner { display:flex; align-items:stretch; overflow:hidden; }
.trust-item {
  flex:1; display:flex; align-items:center; gap:1rem;
  padding:1.4rem 1.8rem; border-right:1px solid var(--border); transition:background var(--dur);
}
.trust-item:last-child { border-right:none; }
.trust-item:hover { background:var(--gold-bg); }
.trust-icon-wrap {
  width:48px; height:48px; border:1px solid var(--gold-bdr); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:1.4rem; background:var(--gold-bg);
}
.trust-text strong { display:block; font-family:var(--ff-h); font-size:.95rem; font-weight:600; text-transform:uppercase; letter-spacing:.06em; color:var(--text); }
.trust-text span   { font-family:var(--ff-m); font-size:.68rem; color:var(--text-muted); letter-spacing:.1em; }

/* ── Services ── */
.services-section { background:var(--bg); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); }
.service-card {
  background:var(--bg-card); padding:2.5rem 2rem; position:relative; overflow:hidden;
  transition:background var(--dur),box-shadow var(--dur); cursor:none;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  transform:scaleX(0); transition:transform .5s var(--ease);
}
.service-card::after {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at bottom left,var(--gold-bg) 0%,transparent 60%);
  opacity:0; transition:opacity var(--dur);
}
.service-card:hover { background:var(--bg-2); box-shadow:var(--sh-md); }
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover::after  { opacity:1; }
.service-num {
  font-family:var(--ff-h); font-size:4rem; font-weight:700; color:rgba(200,150,10,.1);
  line-height:1; position:absolute; top:1.5rem; right:1.5rem;
}
.service-icon-box {
  width:56px; height:56px; border:1px solid var(--gold-bdr); background:var(--gold-bg);
  display:flex; align-items:center; justify-content:center; font-size:1.5rem;
  margin-bottom:1.5rem; position:relative; z-index:1; transition:border-color var(--dur),background var(--dur);
}
.service-card:hover .service-icon-box { border-color:var(--gold); background:rgba(200,150,10,.14); }
.service-card h3 { font-size:1.15rem; margin-bottom:.75rem; position:relative; z-index:1; color:var(--text); }
.service-card p  { color:var(--text-muted); font-size:.9rem; line-height:1.65; position:relative; z-index:1; }
.service-arrow {
  display:inline-flex; align-items:center; gap:.4rem; margin-top:1.2rem;
  font-family:var(--ff-m); font-size:.72rem; letter-spacing:.15em; text-transform:uppercase;
  color:var(--gold); position:relative; z-index:1; transition:gap var(--dur);
}
.service-card:hover .service-arrow { gap:.7rem; }

/* ── About ── */
.about-section { background:var(--bg-2); overflow:hidden; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; min-height:600px; }
.about-visual { position:relative; background:var(--bg-3); overflow:hidden; }
.about-visual-inner {
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:1.5rem;
  background:
    repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(200,150,10,.04) 40px,rgba(200,150,10,.04) 41px),
    repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(200,150,10,.04) 40px,rgba(200,150,10,.04) 41px),
    var(--bg-3);
}
.about-stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--border); width:80%; max-width:380px; }
.about-stat { background:var(--bg-card); padding:2rem 1.5rem; text-align:center; transition:background var(--dur); }
.about-stat:hover { background:var(--gold-bg); }
.about-stat .big { font-family:var(--ff-h); font-size:3rem; font-weight:700; color:var(--gold); line-height:1; }
.about-stat .lbl { font-family:var(--ff-m); font-size:.68rem; color:var(--text-muted); letter-spacing:.15em; text-transform:uppercase; margin-top:.4rem; }
.about-text { padding:80px 60px; display:flex; flex-direction:column; justify-content:center; background:var(--bg-2); }
.about-list { display:flex; flex-direction:column; gap:.75rem; margin-bottom:2.5rem; }
.about-list-item {
  display:flex; align-items:flex-start; gap:.85rem; padding:.9rem 1rem;
  border:1px solid var(--border); background:var(--bg-card); transition:border-color var(--dur),background var(--dur);
}
.about-list-item:hover { border-color:var(--gold-bdr); background:var(--gold-bg); }
.ali-icon { color:var(--gold); font-size:1rem; margin-top:.1rem; flex-shrink:0; }
.ali-text strong { display:block; font-family:var(--ff-h); font-size:.9rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--text); }
.ali-text span   { font-size:.85rem; color:var(--text-muted); }

/* ── Process ── */
.process-section { background:var(--bg); }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); position:relative; }
.process-step {
  padding:2.5rem 2rem; border-right:1px solid var(--border);
  background:var(--bg-card); transition:background var(--dur);
}
.process-step:last-child { border-right:none; }
.process-step:hover { background:var(--gold-bg); }
.step-num-wrap { display:flex; align-items:center; gap:1rem; margin-bottom:1.5rem; }
.step-num  { font-family:var(--ff-h); font-size:1.8rem; font-weight:700; color:var(--gold); line-height:1; }
.step-line { flex:1; height:1px; background:var(--gold-bdr); }
.process-step:last-child .step-line { display:none; }
.step-icon { width:50px; height:50px; border:1px solid var(--gold-bdr); display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1rem; background:var(--gold-bg); }
.process-step h4 { font-size:1.05rem; margin-bottom:.6rem; text-transform:uppercase; letter-spacing:.06em; color:var(--text); }
.process-step p  { color:var(--text-muted); font-size:.86rem; line-height:1.6; }

/* ── Gallery ── */
.gallery-section { background:var(--bg-2); }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-template-rows:240px 240px; gap:2px; }
.gallery-item { position:relative; overflow:hidden; background:var(--bg-3); cursor:none; }
.gallery-item:nth-child(1) { grid-column:span 2; grid-row:span 2; }
.gallery-item:nth-child(4) { grid-column:span 2; }
.gallery-placeholder {
  width:100%; height:100%; min-height:200px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.5rem;
  background:linear-gradient(135deg,var(--bg-3),var(--bg-2));
  transition:transform .5s var(--ease);
}
.gallery-item:hover .gallery-placeholder { transform:scale(1.05); }
.g-icon  { font-size:2.5rem; opacity:.35; }
.g-label { font-family:var(--ff-m); font-size:.68rem; color:var(--text-muted); letter-spacing:.15em; text-transform:uppercase; }
.gallery-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(28,26,23,.85) 0%,transparent 55%);
  opacity:0; transition:opacity var(--dur);
  display:flex; align-items:flex-end; padding:1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay-text { font-family:var(--ff-h); font-size:.9rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--gold); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.gallery-item:hover img { transform:scale(1.05); }

/* ── Brands ── */
.brands-section { background:var(--bg-card); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.brands-track { display:flex; gap:2px; background:var(--border); overflow:hidden; }
.brand-item {
  flex:1; padding:1.8rem 1.5rem; background:var(--bg-card); text-align:center;
  font-family:var(--ff-h); font-size:1.1rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:var(--text-faint); border-right:1px solid var(--border);
  transition:all var(--dur); cursor:none;
}
.brand-item:last-child { border-right:none; }
.brand-item:hover { color:var(--gold); background:var(--gold-bg); }

/* ── Testimonials ── */
.testimonials-section { background:var(--bg); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testimonial {
  background:var(--bg-card); padding:2.5rem 2rem; position:relative; overflow:hidden;
  border:1px solid var(--border); transition:border-color var(--dur),box-shadow var(--dur);
}
.testimonial:hover { border-color:var(--gold-bdr); box-shadow:var(--sh-md); }
.testimonial::before {
  content:'"'; font-family:Georgia,serif; font-size:8rem; color:rgba(200,150,10,.07);
  position:absolute; top:-1rem; right:1.5rem; line-height:1;
}
.stars { color:var(--gold); font-size:.9rem; letter-spacing:3px; margin-bottom:1rem; }
.testimonial-text  { color:var(--text-2); font-size:.92rem; line-height:1.75; margin-bottom:1.8rem; }
.testimonial-author { display:flex; align-items:center; gap:.85rem; }
.author-initials {
  width:44px; height:44px; border:1px solid var(--gold); background:var(--gold-bg);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-h); font-size:1rem; font-weight:700; color:var(--gold); flex-shrink:0;
}
.author-name { font-family:var(--ff-h); font-size:.9rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--text); }
.author-loc  { font-family:var(--ff-m); font-size:.7rem; color:var(--text-muted); letter-spacing:.1em; }

/* ── Promo — stays dark ── */
.promo-section { background:var(--dark); padding:80px 0; position:relative; overflow:hidden; }
.promo-section::before { content:''; position:absolute; right:-10%; top:50%; transform:translateY(-50%); width:600px; height:600px; border-radius:50%; background:rgba(200,150,10,.05); }
.promo-section::after  { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--gold); }
.promo-inner { display:flex; align-items:center; justify-content:space-between; gap:3rem; position:relative; z-index:1; flex-wrap:wrap; }
.promo-text h2 { color:var(--od); font-size:clamp(1.8rem,3.5vw,3rem); }
.promo-text p  { color:var(--od-muted); margin-top:.5rem; }
.promo-actions { display:flex; flex-direction:column; gap:.85rem; min-width:280px; }

/* ── Pricing ── */
.pricing-section { background:var(--bg-2); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.pricing-card {
  background:var(--bg-card); padding:2.5rem 2rem; position:relative;
  border:1px solid var(--border); transition:border-color var(--dur),box-shadow var(--dur);
}
.pricing-card:hover { border-color:var(--gold-bdr); box-shadow:var(--sh-md); }
.pricing-card.featured { border-color:var(--gold); box-shadow:var(--sh-gold); border-top:3px solid var(--gold); }
.pricing-badge {
  position:absolute; top:1.5rem; right:1.5rem;
  font-family:var(--ff-m); font-size:.65rem; letter-spacing:.15em; text-transform:uppercase;
  color:#fff; background:var(--gold); padding:.25rem .75rem;
}
.pricing-tier  { font-family:var(--ff-m); font-size:.72rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold); margin-bottom:.75rem; }
.pricing-price { font-family:var(--ff-h); font-size:3.2rem; font-weight:700; color:var(--text); line-height:1; margin-bottom:.3rem; }
.pricing-price sup { font-size:1.4rem; vertical-align:super; }
.pricing-price sub { font-size:1rem; font-weight:400; color:var(--text-muted); }
.pricing-desc     { font-size:.85rem; color:var(--text-muted); margin-bottom:2rem; line-height:1.6; }
.pricing-features { display:flex; flex-direction:column; gap:.65rem; margin-bottom:2.2rem; }
.pf-item {
  display:flex; align-items:center; gap:.65rem; font-size:.88rem;
  padding:.55rem 0; border-bottom:1px solid var(--border); color:var(--text-2);
}
.pf-item:last-child { border-bottom:none; }
.pf-item::before  { content:'⟶'; color:var(--gold); font-size:.7rem; flex-shrink:0; }
.pf-item.no       { color:var(--text-faint); }
.pf-item.no::before { content:'✕'; color:var(--border-dk); }
.pricing-card .btn { width:100%; justify-content:center; }

/* ── FAQ ── */
.faq-section { background:var(--bg); }
.faq-layout  { display:grid; grid-template-columns:1fr 1.6fr; gap:5rem; align-items:start; }
.faq-list    { display:flex; flex-direction:column; gap:2px; }
.faq-item    { background:var(--bg-card); border:1px solid var(--border); transition:border-color var(--dur); }
.faq-item.open { border-color:var(--gold-bdr); box-shadow:var(--sh-sm); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:1.2rem 1.5rem; cursor:none;
  font-family:var(--ff-h); font-size:.95rem; font-weight:600;
  text-transform:uppercase; letter-spacing:.05em; color:var(--text); transition:color var(--dur);
}
.faq-item.open .faq-q { color:var(--gold); }
.faq-toggle {
  width:30px; height:30px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--text-muted); flex-shrink:0; transition:all var(--dur);
}
.faq-item.open .faq-toggle { border-color:var(--gold); color:var(--gold); transform:rotate(45deg); }
.faq-a {
  max-height:0; overflow:hidden; font-size:.9rem; color:var(--text-2);
  line-height:1.75; padding:0 1.5rem; transition:max-height .4s var(--ease),padding .3s;
}
.faq-item.open .faq-a { max-height:300px; padding:.2rem 1.5rem 1.3rem; }

/* FAQ sidebar box — dark for contrast */
.faq-contact-box {
  background:var(--dark); padding:3rem 2.5rem; border-top:3px solid var(--gold);
  position:sticky; top:calc(var(--header-h) + 2rem);
}
.faq-contact-box h3 { color:var(--od); margin-bottom:.75rem; font-size:1.6rem; }
.faq-contact-box p  { color:var(--od-muted); font-size:.9rem; margin-bottom:2rem; line-height:1.7; }
.contact-methods { display:flex; flex-direction:column; gap:.75rem; }
.c-method {
  display:flex; align-items:center; gap:1rem; padding:1.1rem 1.2rem;
  border:1px solid rgba(240,237,230,.1); transition:all var(--dur);
}
.c-method:hover { border-color:var(--gold-bdr); background:rgba(200,150,10,.07); transform:translateX(4px); }
.c-method-icon { width:42px; height:42px; border:1px solid var(--gold-bdr); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.c-method-text strong { display:block; font-family:var(--ff-h); font-size:.9rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--od); }
.c-method-text span   { font-size:.78rem; color:var(--od-muted); }

/* ── Contact ── */
.contact-section { background:var(--bg-2); }
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; }
.contact-info {
  padding:80px 60px; background:var(--bg-card); border-right:1px solid var(--border);
  display:flex; flex-direction:column; justify-content:center;
}
.contact-info-items { display:flex; flex-direction:column; gap:1rem; margin:2rem 0; }
.ci-item {
  display:flex; align-items:flex-start; gap:1rem; padding:1.1rem 1.2rem;
  border:1px solid var(--border); transition:border-color var(--dur),background var(--dur);
}
.ci-item:hover { border-color:var(--gold-bdr); background:var(--gold-bg); }
.ci-icon { width:40px; height:40px; border:1px solid var(--gold-bdr); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--gold); background:var(--gold-bg); }
.ci-text strong { display:block; font-family:var(--ff-h); font-size:.9rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--text); margin-bottom:.25rem; }
.ci-text span   { font-size:.85rem; color:var(--text-muted); }
.contact-form-wrap { padding:80px 60px; background:var(--bg-2); }
.contact-form-wrap h3 { color:var(--text); margin-bottom:2rem; font-size:1.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { margin-bottom:1.1rem; }
.form-group label { display:block; font-family:var(--ff-m); font-size:.7rem; letter-spacing:.15em; text-transform:uppercase; color:var(--text-muted); margin-bottom:.4rem; }
.form-group input,.form-group select,.form-group textarea {
  width:100%; padding:.9rem 1rem;
  background:var(--bg-card); border:1.5px solid var(--border);
  color:var(--text); font-family:var(--ff-b); font-size:.95rem; transition:border-color var(--dur),box-shadow var(--dur);
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus {
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px var(--gold-bg);
}
.form-group input::placeholder,.form-group textarea::placeholder { color:var(--text-faint); }
.form-group select option { background:var(--bg-card); color:var(--text); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-submit { display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap; margin-top:1.5rem; }
.form-note   { font-family:var(--ff-m); font-size:.7rem; color:var(--text-muted); letter-spacing:.08em; }

/* ── Map ── */
.map-wrap { height:420px; border:1px solid var(--border); overflow:hidden; }
.map-wrap iframe { width:100%; height:100%; border:none; filter:grayscale(25%) contrast(95%); }

/* ── Page Hero — dark section ── */
.page-hero { background:var(--dark); padding:130px 0 70px; position:relative; overflow:hidden; }
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:
    repeating-linear-gradient(0deg,transparent,transparent 80px,rgba(200,150,10,.025) 80px,rgba(200,150,10,.025) 81px),
    repeating-linear-gradient(90deg,transparent,transparent 80px,rgba(200,150,10,.025) 80px,rgba(200,150,10,.025) 81px);
}
.page-hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--gold); }
.page-hero-inner { position:relative; z-index:1; }
.breadcrumb { display:flex; align-items:center; gap:.5rem; font-family:var(--ff-m); font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:var(--od-muted); margin-bottom:1rem; }
.breadcrumb a { color:var(--od-muted); transition:color var(--dur); }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb span { color:var(--od-faint); }
.page-hero h1 { color:var(--od); margin-bottom:.75rem; }
.page-hero p  { color:var(--od-muted); font-size:1.05rem; max-width:580px; }

/* ── Footer — dark ── */
#footer { background:var(--dark); padding:80px 0 0; border-top:3px solid var(--gold); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:3rem; padding-bottom:3rem; border-bottom:1px solid rgba(240,237,230,.08); }
.footer-brand p { color:var(--od-muted); font-size:.88rem; line-height:1.75; max-width:280px; }
.footer-socials { display:flex; gap:.6rem; margin-top:1.5rem; }
.social-btn { width:36px; height:36px; border:1px solid rgba(240,237,230,.15); display:flex; align-items:center; justify-content:center; font-size:.85rem; color:var(--od-muted); transition:all var(--dur); cursor:none; }
.social-btn:hover { border-color:var(--gold); color:var(--gold); }
.footer-col h5 { font-family:var(--ff-m); font-size:.7rem; letter-spacing:.2em; text-transform:uppercase; color:rgba(240,237,230,.3); margin-bottom:1.5rem; }
.footer-col ul { display:flex; flex-direction:column; gap:.65rem; }
.footer-col a  { font-size:.88rem; color:var(--od-muted); transition:all var(--dur); }
.footer-col a:hover { color:var(--gold); padding-left:.3rem; }
.footer-contact-row { display:flex; gap:.75rem; margin-bottom:.85rem; align-items:flex-start; }
.footer-contact-row .icon { color:var(--gold); font-size:.85rem; margin-top:.15rem; flex-shrink:0; }
.footer-contact-row span { font-size:.84rem; color:var(--od-muted); line-height:1.5; }
.footer-contact-row a { color:var(--od-muted); transition:color var(--dur); }
.footer-contact-row a:hover { color:var(--gold); }
.footer-bottom { padding:1.5rem 0; display:flex; align-items:center; justify-content:space-between; gap:1rem; font-family:var(--ff-m); font-size:.7rem; letter-spacing:.1em; color:rgba(240,237,230,.25); flex-wrap:wrap; }
.footer-bottom a { color:rgba(240,237,230,.25); transition:color var(--dur); }
.footer-bottom a:hover { color:var(--gold); }
#footer .logo-name { color:var(--od); }

/* ── Floating CTAs ── */
.floating-cta { position:fixed; bottom:2rem; right:2rem; z-index:900; display:flex; flex-direction:column; gap:.65rem; }
.f-btn { width:52px; height:52px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; cursor:none; transition:all var(--dur); box-shadow:var(--sh-dark); }
.f-btn:hover { transform:scale(1.1); }
.f-btn.wa { background:#25D366; }
.f-btn.ph { background:var(--gold); }
#back-top {
  position:fixed; bottom:2rem; left:2rem; z-index:900;
  width:44px; height:44px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; color:var(--text-muted); background:var(--bg-card); cursor:none;
  transition:all var(--dur); opacity:0; pointer-events:none; box-shadow:var(--sh-sm);
}
#back-top.show { opacity:1; pointer-events:auto; }
#back-top:hover { border-color:var(--gold); color:var(--gold); }

/* ── Cookie ── */
#cookie {
  position:fixed; bottom:0; left:0; right:0; z-index:2000;
  background:var(--bg-card); border-top:2px solid var(--gold);
  padding:1.2rem 0; transform:translateY(100%); transition:transform .4s var(--ease);
  box-shadow:0 -4px 20px rgba(28,26,23,.1);
}
#cookie.show { transform:translateY(0); }
.cookie-inner { display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
.cookie-inner p { font-family:var(--ff-m); font-size:.75rem; color:var(--text-muted); letter-spacing:.06em; }
.cookie-inner a { color:var(--gold); }
.cookie-btns { display:flex; gap:.75rem; flex-shrink:0; }

/* ── AOS ── */
[data-aos] { transition:opacity .7s var(--ease),transform .7s var(--ease); }
[data-aos="fade-up"]    { opacity:0; transform:translateY(30px); }
[data-aos="fade-right"] { opacity:0; transform:translateX(-30px); }
[data-aos="fade-left"]  { opacity:0; transform:translateX(30px); }
[data-aos="zoom-in"]    { opacity:0; transform:scale(.94); }
[data-aos].aos-animate  { opacity:1; transform:none; }

/* ── Services page extras ── */
.service-detail { padding:80px 0; border-bottom:1px solid var(--border); }
.service-detail:last-child { border-bottom:none; }
.svc-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; }
.svc-grid.rev { direction:rtl; }
.svc-grid.rev>* { direction:ltr; }
.svc-visual { background:var(--bg-3); aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; flex-direction:column; gap:1rem; position:relative; overflow:hidden; border:1px solid var(--border); }
.svc-visual::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(0deg,transparent,transparent 40px,rgba(200,150,10,.04) 40px,rgba(200,150,10,.04) 41px),repeating-linear-gradient(90deg,transparent,transparent 40px,rgba(200,150,10,.04) 40px,rgba(200,150,10,.04) 41px); }
.svc-visual-emoji { font-size:5rem; opacity:.35; position:relative; z-index:1; }
.svc-visual-label { font-family:var(--ff-m); font-size:.72rem; letter-spacing:.2em; color:var(--text-muted); text-transform:uppercase; position:relative; z-index:1; }
.svc-tags { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.5rem; }
.svc-tag  { font-family:var(--ff-m); font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); border:1px solid var(--gold-bdr); padding:.25rem .75rem; background:var(--gold-bg); }

/* Pricing page table */
.price-table { width:100%; border-collapse:collapse; }
.price-table th { background:var(--bg-3); font-family:var(--ff-m); font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:var(--text-muted); padding:1rem 1.2rem; text-align:left; border-bottom:2px solid var(--gold); }
.price-table td { padding:.9rem 1.2rem; border-bottom:1px solid var(--border); font-size:.9rem; color:var(--text-2); background:var(--bg-card); }
.price-table tr:hover td { background:var(--gold-bg); }
.price-table tr:last-child td { border-bottom:none; }
.price-val { font-family:var(--ff-h); font-weight:700; color:var(--gold); font-size:1.05rem; }
.note-box  { background:var(--gold-bg); border-left:3px solid var(--gold); padding:1.2rem 1.5rem; font-family:var(--ff-m); font-size:.78rem; color:var(--text-muted); letter-spacing:.06em; margin-top:1.5rem; }

/* Gallery page */
.filter-bar { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:2.5rem; }
.filter-btn { font-family:var(--ff-m); font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; padding:.5rem 1.3rem; border:1px solid var(--border); color:var(--text-muted); cursor:none; transition:all var(--dur); background:var(--bg-card); }
.filter-btn.active,.filter-btn:hover { border-color:var(--gold); color:var(--gold); background:var(--gold-bg); }
.full-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.gal-cell { aspect-ratio:4/3; background:var(--bg-3); overflow:hidden; position:relative; cursor:none; border:1px solid var(--border); }
.gal-cell.tall { aspect-ratio:3/4; grid-row:span 2; }
.gal-cell.wide { grid-column:span 2; aspect-ratio:16/7; }
.gal-inner { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.65rem; transition:transform .5s var(--ease); background:linear-gradient(135deg,var(--bg-2),var(--bg-3)); }
.gal-cell:hover .gal-inner { transform:scale(1.04); }
.g-em  { font-size:2.8rem; opacity:.35; }
.g-lbl { font-family:var(--ff-m); font-size:.65rem; letter-spacing:.18em; color:var(--text-muted); text-transform:uppercase; }
.gal-ov { position:absolute; inset:0; background:linear-gradient(to top,rgba(28,26,23,.88) 0%,transparent 55%); opacity:0; transition:opacity var(--dur); display:flex; align-items:flex-end; padding:1.3rem; }
.gal-cell:hover .gal-ov { opacity:1; }
.gal-ov-text { font-family:var(--ff-h); font-size:.9rem; font-weight:600; text-transform:uppercase; letter-spacing:.06em; color:var(--gold); }
.gal-cell img { width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.gal-cell:hover img { transform:scale(1.05); }

/* Blog page */
.blog-layout { display:grid; grid-template-columns:2fr 1fr; gap:3.5rem; align-items:start; }
.blog-list { display:flex; flex-direction:column; gap:1.5rem; }
.blog-card { background:var(--bg-card); border:1px solid var(--border); transition:border-color var(--dur),box-shadow var(--dur); }
.blog-card:hover { border-color:var(--gold-bdr); box-shadow:var(--sh-md); }
.blog-img { height:220px; background:var(--bg-3); display:flex; align-items:center; justify-content:center; font-size:4rem; opacity:.45; transition:opacity var(--dur); }
.blog-card:hover .blog-img { opacity:.7; }
.blog-body { padding:1.8rem 2rem; }
.blog-meta { display:flex; gap:1rem; align-items:center; margin-bottom:.75rem; flex-wrap:wrap; }
.blog-cat  { font-family:var(--ff-m); font-size:.65rem; letter-spacing:.15em; text-transform:uppercase; color:#fff; background:var(--gold); padding:.2rem .7rem; }
.blog-date { font-family:var(--ff-m); font-size:.72rem; color:var(--text-muted); letter-spacing:.1em; }
.blog-card h3 { font-size:1.3rem; margin-bottom:.65rem; transition:color var(--dur); color:var(--text); }
.blog-card:hover h3 { color:var(--gold); }
.blog-card p   { color:var(--text-muted); font-size:.9rem; line-height:1.7; margin-bottom:1.2rem; }
.blog-read     { font-family:var(--ff-m); font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }
.sidebar       { position:sticky; top:calc(var(--header-h) + 2rem); }
.sb-box        { background:var(--bg-card); border:1px solid var(--border); padding:2rem; margin-bottom:1.5rem; }
.sb-box h4     { font-size:1.1rem; margin-bottom:1.2rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text); }
.sb-posts      { display:flex; flex-direction:column; gap:.9rem; }
.sb-post       { display:flex; gap:.85rem; align-items:flex-start; }
.sb-icon       { width:44px; height:44px; background:var(--bg-3); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; border:1px solid var(--border); }
.sb-post-title { font-size:.85rem; font-weight:600; line-height:1.4; color:var(--text); }
.sb-post-date  { font-family:var(--ff-m); font-size:.68rem; color:var(--text-muted); margin-top:.2rem; letter-spacing:.08em; }
.sb-cats       { display:flex; flex-direction:column; gap:2px; }
.sb-cat        { display:flex; justify-content:space-between; align-items:center; padding:.7rem 0; border-bottom:1px solid var(--border); font-size:.88rem; color:var(--text-2); transition:color var(--dur); }
.sb-cat:last-child { border-bottom:none; }
.sb-cat:hover  { color:var(--gold); }
.sb-count      { font-family:var(--ff-m); font-size:.7rem; color:var(--gold); background:var(--gold-bg); padding:.1rem .5rem; border:1px solid var(--gold-bdr); }

/* About extras */
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); margin-top:3rem; }
.value-card  { background:var(--bg-card); padding:2.5rem 2rem; transition:background var(--dur); }
.value-card:hover { background:var(--gold-bg); }
.v-icon      { font-size:2rem; margin-bottom:1.2rem; }
.value-card h4 { font-size:1.1rem; margin-bottom:.6rem; text-transform:uppercase; letter-spacing:.06em; color:var(--text); }
.value-card p  { color:var(--text-muted); font-size:.88rem; line-height:1.65; }

/* Policy pages */
.policy   { max-width:780px; margin:0 auto; }
.policy h3 { font-size:1.15rem; margin:2.2rem 0 .8rem; color:var(--gold); }
.policy p,.policy ul { color:var(--text-2); font-size:.9rem; line-height:1.85; margin-bottom:1rem; }
.policy ul { padding-left:1.5rem; list-style:disc; }
.policy li { margin-bottom:.4rem; }
.policy a  { color:var(--gold); }
.upd { font-family:var(--ff-m); font-size:.72rem; color:var(--text-muted); letter-spacing:.1em; margin-bottom:2rem; display:block; }

/* 404 */
.err { min-height:100vh; display:flex; align-items:center; justify-content:center; background:var(--bg); flex-direction:column; text-align:center; padding:2rem; position:relative; overflow:hidden; }
.err::before { content:'404'; font-family:var(--ff-h); font-size:40vw; font-weight:700; color:rgba(200,150,10,.07); position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); pointer-events:none; line-height:1; }
.err-icon { font-size:5rem; margin-bottom:1.5rem; opacity:.35; }
.err h1   { font-size:clamp(2rem,6vw,4rem); color:var(--text); margin-bottom:.75rem; }
.err p    { color:var(--text-muted); margin-bottom:3rem; font-size:1rem; }
.err-links { display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; }

/* Scrollbar */
::-webkit-scrollbar       { width:5px; }
::-webkit-scrollbar-track { background:var(--bg); }
::-webkit-scrollbar-thumb { background:var(--gold); }
::selection { background:var(--gold); color:#fff; }

/* ════════ RESPONSIVE ════════ */
@media(max-width:1100px) {
  .about-text { padding:60px 40px; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .gallery-grid { grid-template-columns:repeat(2,1fr); grid-template-rows:auto; }
  .gallery-item:nth-child(1) { grid-column:span 2; aspect-ratio:16/7; }
  .gallery-item:nth-child(4) { grid-column:span 1; }
  .faq-layout { grid-template-columns:1fr; }
  .faq-contact-box { position:static; }
  .contact-grid { grid-template-columns:1fr; }
  .contact-info,.contact-form-wrap { padding:60px 40px; }
  .contact-info { border-right:none; border-bottom:1px solid var(--border); }
  .slide-deco { display:none; }
  .svc-grid { gap:3rem; }
  .pricing-grid { gap:1rem; }
}
@media(max-width:768px) {
  :root { --header-h:64px; }
  .nav { display:none; }
  .hamburger { display:flex; }
  .hero-slider { height:100svh; min-height:600px; }
  .slide-content { padding:0 1.5rem; }
  .slider-arrows,.slide-counter { display:none; }
  .services-grid { grid-template-columns:1fr; }
  .about-grid { grid-template-columns:1fr; }
  .about-visual { min-height:320px; }
  .about-text { padding:60px 1.5rem; }
  .testimonials-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .trust-inner { flex-direction:column; }
  .trust-item { border-right:none; border-bottom:1px solid var(--border); }
  .trust-item:last-child { border-bottom:none; }
  .promo-inner { flex-direction:column; }
  .brands-track { flex-wrap:wrap; }
  .brand-item { flex:1 1 calc(50% - 2px); }
  .topbar-links { display:none; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .about-stat-grid { grid-template-columns:repeat(4,1fr); width:100%; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .svc-grid,.svc-grid.rev { grid-template-columns:1fr; direction:ltr; }
  html { cursor:auto; }
  #cursor-dot,#cursor-ring { display:none; }
  .values-grid { grid-template-columns:1fr 1fr; }
  .blog-layout { grid-template-columns:1fr; }
  .sidebar { position:static; }
  .full-gallery { grid-template-columns:1fr 1fr; }
  .gal-cell.tall { aspect-ratio:4/3; grid-row:span 1; }
  .gal-cell.wide { grid-column:span 2; }
}
@media(max-width:480px) {
  .gallery-grid { grid-template-columns:1fr; }
  .gallery-item:nth-child(1),.gallery-item:nth-child(4) { grid-column:span 1; aspect-ratio:16/9; }
  .about-stat-grid { grid-template-columns:1fr 1fr; }
  .process-grid { grid-template-columns:1fr; }
  .testimonials-grid { grid-template-columns:1fr; }
  .values-grid { grid-template-columns:1fr; }
  .full-gallery { grid-template-columns:1fr; }
  .gal-cell.wide { grid-column:span 1; }
}
