﻿/* =============================================
   Summit CONSTRUCTION — Premium Stylesheet v4
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1c1c1c; background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, button, select { font-family: inherit; font-size: inherit; border: none; outline: none; }

/* ── VARIABLES ───────────────────────────── */
:root {
  --dark:    #07090f;
  --dark2:   #0e1628;
  --gold:    #c9a55a;
  --gold-dk: #a07c35;
  --gold-lt: #e5c98a;
  --white:   #ffffff;
  --off:     #f5f2ed;
  --lite:    #eae7e1;
  --muted:   #6b6b6b;
  --border:  #e0dbd3;
  --fh:      'Raleway', sans-serif;
  --fb:      'Inter', sans-serif;
  --ease:    cubic-bezier(.25,.46,.45,.94);
  --maxw:    1340px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 64px; }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  font-family: var(--fh); font-size: 10px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; transition: all .3s var(--ease);
}
.btn-gold  { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,165,90,.4); }
.btn-dark  { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #12192c; transform: translateY(-2px); }
.btn-line  { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-line:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }
.btn-line-dk { background: transparent; color: var(--dark); border: 1px solid #c8c4bb; }
.btn-line-dk:hover { background: var(--dark); color: #fff; }

/* ── TYPOGRAPHY HELPERS ──────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--fh); font-size: 9.5px; font-weight: 800;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); }
.eyebrow.dim::before { background:rgba(255,255,255,.25); }
.eyebrow.dim { color:rgba(255,255,255,.4); }

.h-xl {
  font-family: var(--fh); font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -.03em; line-height: 1.05;
  color: var(--dark);
}
.h-xl.lt { color: #fff; }
.h-xl em { font-style: normal; color: var(--gold); }

.body-text { font-size: 15px; color: var(--muted); line-height: 1.9; max-width: 520px; }
.body-text.lt { color: rgba(255,255,255,.5); }

/* ── PRELOADER ───────────────────────────── */
#preloader {
  position: fixed; inset: 0; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-logo { font-family: var(--fh); font-size: 13px; font-weight: 800; letter-spacing: .5em; text-transform: uppercase; color: #fff; margin-bottom: 40px; }
.pre-logo span { color: var(--gold); }
.pre-bar { width: 180px; height: 1px; background: rgba(255,255,255,.08); overflow: hidden; }
.pre-bar::after { content:''; display:block; height:100%; background:var(--gold); animation: preBar 1.9s ease forwards; }
@keyframes preBar { 0%{width:0} 100%{width:100%} }

/* ── VIDEO MODAL ─────────────────────────── */
.vmodal {
  position: fixed; inset: 0; background: rgba(0,0,0,.93);
  display: flex; align-items: center; justify-content: center;
  z-index: 8999; opacity: 0; visibility: hidden; transition: all .35s ease;
}
.vmodal.open { opacity: 1; visibility: visible; }
.vmodal-close { position: absolute; top: 28px; right: 36px; background: none; color: rgba(255,255,255,.5); font-size: 22px; cursor: pointer; transition: color .3s; }
.vmodal-close:hover { color: #fff; }
.vmodal-inner { width: 90%; max-width: 960px; aspect-ratio: 16/9; }
.vmodal-inner iframe { width: 100%; height: 100%; }

/* ── MOBILE MENU ─────────────────────────── */
.mob-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1099; opacity: 0; visibility: hidden; transition: all .3s; }
.mob-overlay.show { opacity: 1; visibility: visible; }
.mob-menu {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100%;
  background: var(--dark); z-index: 1100;
  padding: 80px 40px 40px; display: flex; flex-direction: column;
  transition: right .4s var(--ease); overflow-y: auto;
}
.mob-menu.open { right: 0; }
.mob-close { position: absolute; top: 22px; right: 22px; background: none; color: rgba(255,255,255,.4); font-size: 18px; cursor: pointer; }
.mob-link { display: block; padding: 15px 0; font-family: var(--fh); font-size: 16px; font-weight: 700; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.06); transition: color .3s; }
.mob-link:hover { color: var(--gold); }
.mob-cta { display: block; margin-top: 28px; padding: 16px; background: var(--gold); color: var(--dark); font-family: var(--fh); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; text-align: center; }

/* ── NAVBAR ──────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 26px 0; transition: all .4s var(--ease);
}
#nav.scrolled {
  padding: 14px 0;
  background: rgba(7,9,15,.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-sq { width: 36px; height: 36px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--fh); font-size: 15px; font-weight: 900; color: var(--dark); }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--fh); font-size: 14px; font-weight: 900; color: #fff; letter-spacing: .1em; text-transform: uppercase; }
.logo-tag  { font-size: 8px; font-weight: 700; color: var(--gold); letter-spacing: .28em; text-transform: uppercase; margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--fh); font-size: 9.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.6); position: relative; transition: color .3s; padding: 3px 0;
}
.nav-link::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1.5px; background:var(--gold); transition:width .3s; }
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.has-dd { position: relative; }
.dd {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff; min-width: 210px; padding: 8px;
  box-shadow: 0 20px 56px rgba(0,0,0,.2); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.has-dd:hover .dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd a { display:block; padding:10px 14px; font-family:var(--fh); font-size:9.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--dark); transition:all .25s; }
.dd a:hover { color: var(--gold); padding-left: 20px; background: var(--off); }

.nav-cta { font-family:var(--fh); font-size:9.5px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; padding:12px 24px; background:var(--gold); color:var(--dark); flex-shrink:0; transition:background .3s; }
.nav-cta:hover { background: var(--gold-dk); }

.nav-ham { display:none; flex-direction:column; gap:6px; background:none; cursor:pointer; }
.ham-l { display:block; width:24px; height:1.5px; background:#fff; transition:all .3s; }

/* ═══════════════════════════════════════
   HERO — split: text left / animation right
═══════════════════════════════════════ */
#hero {
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: 1fr auto;
  height: 100vh;
  min-height: 700px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* ── LEFT PANEL ─────────── */
.hero-left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 72px 48px 80px;
  position: relative;
  z-index: 2;
  background: var(--dark);
}
/* Subtle gold radial glow + dot grid */
.hero-left::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 5% 90%, rgba(201,165,90,.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 10%, rgba(14,22,40,.95) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E") repeat;
}

/* ── RIGHT PANEL ─────────── */
.hero-right {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}

/* overall darkening overlay */
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(7,9,15,.3);
  z-index: 1;
}

/* Left-edge gradient blends image into dark left panel */
.hr-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, rgba(7,9,15,.55) 22%, transparent 52%);
  z-index: 2; pointer-events: none;
}

/* Ken Burns image carousel — 3 images, 6 s each = 18 s loop */
.kb-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: kbCycle 18s ease-in-out infinite;
}
.kb-1 {
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1400&q=75');
  animation-delay: 0s;
}
.kb-2 {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1400&q=75');
  animation-delay: 6s;
}
.kb-3 {
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=75');
  animation-delay: 12s;
}
@keyframes kbCycle {
  0%    { opacity: 0; transform: scale(1.09) translateX(12px); }
  8%    { opacity: 1; }
  33%   { opacity: 1; transform: scale(1.0) translateX(0); }
  40%   { opacity: 0; }
  100%  { opacity: 0; transform: scale(1.0); }
}

/* Floating stats badge */
.hero-badge {
  position: absolute;
  bottom: 54px; right: 50px;
  background: var(--gold);
  padding: 22px 28px;
  z-index: 4;
  animation: floatBadge 4s ease-in-out infinite;
}
.hb-n {
  font-family: var(--fh); font-size: 50px; font-weight: 900;
  color: var(--dark); line-height: 1; letter-spacing: -.04em;
}
.hb-n em { font-style: normal; font-size: .56em; vertical-align: top; margin-top: 8px; display: inline-block; }
.hb-l {
  font-family: var(--fh); font-size: 9px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(7,9,15,.6); margin-top: 6px; line-height: 1.55;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* Gold corner frame — top-right of right panel */
.hr-frame {
  position: absolute; top: 46px; right: 46px;
  width: 88px; height: 88px; z-index: 4; pointer-events: none;
}
.hr-frame::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 100%; height: 100%;
  border-top: 1.5px solid rgba(201,165,90,.55);
  border-right: 1.5px solid rgba(201,165,90,.55);
}
/* bottom-left corner */
.hr-frame::after {
  content: '';
  position: absolute; bottom: -200px; left: -200px;
  width: 100%; height: 100%;
  border-bottom: 1.5px solid rgba(201,165,90,.25);
  border-left: 1.5px solid rgba(201,165,90,.25);
}

/* Project indicator strip — bottom-left of right panel */
.hr-progress {
  position: absolute; bottom: 52px; left: 38px;
  z-index: 4; display: flex; flex-direction: column; gap: 11px;
}
.hrp-item {
  display: flex; align-items: center; gap: 10px;
  opacity: .3; transition: opacity .6s ease;
}
.hrp-item.active { opacity: 1; }
.hrp-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.4); flex-shrink: 0;
  transition: background .4s;
}
.hrp-item.active .hrp-dot { background: var(--gold); }
.hrp-txt {
  font-family: var(--fh); font-size: 9.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
}

/* ── HERO TYPOGRAPHY ─────── */
.hero-label {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--fh); font-size: 9.5px; font-weight: 800;
  letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px;
}
.hero-label span { display: block; width: 28px; height: 1px; background: var(--gold); }

.hero-h1 {
  font-family: var(--fh); font-weight: 900;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: .92; letter-spacing: -.04em;
  color: #fff; margin-bottom: 24px;
}
.hero-h1 .thin { display: block; font-weight: 200; font-size: .45em; color: rgba(255,255,255,.4); letter-spacing: -.01em; margin-bottom: 6px; }
.hero-h1 .gold { color: var(--gold); display: block; }

.hero-sub { font-size: 14.5px; color: rgba(255,255,255,.42); line-height: 1.8; max-width: 430px; margin-bottom: 36px; }

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.play-btn { display:flex; align-items:center; gap:12px; background:none; cursor:pointer; color:rgba(255,255,255,.6); font-family:var(--fh); font-size:9.5px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; transition:color .3s; }
.play-btn:hover { color:#fff; }
.play-ring { width:46px; height:46px; border:1px solid rgba(255,255,255,.22); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; color:var(--gold); transition:all .3s; flex-shrink:0; }
.play-btn:hover .play-ring { background:var(--gold); border-color:var(--gold); color:var(--dark); }

/* ── STATS BAR — full width ─ */
.hero-stats {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(7,9,15,.96);
  position: relative; z-index: 3;
}
.hst {
  padding: 22px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.hst:last-child { border-right: none; }
.hst-n {
  font-family: var(--fh); font-size: clamp(24px, 3vw, 42px);
  font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1;
  margin-bottom: 5px;
}
.hst-n em { font-style: normal; color: var(--gold); }
.hst-l { font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════
   ABOUT — split: image left / text right
═══════════════════════════════════════ */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img {
  position: relative;
  min-height: 580px;         /* ensures image side has height */
  overflow: hidden;
}
.about-img { background-size: cover; background-position: center; }
.about-badge {
  position: absolute; bottom: 40px; left: 40px;
  background: var(--gold); padding: 20px 26px; z-index: 2;
}
.about-badge .num { font-family: var(--fh); font-size: 40px; font-weight: 900; color: var(--dark); line-height: 1; }
.about-badge .lbl { font-family: var(--fh); font-size: 8.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--dark); margin-top: 5px; }

.about-text {
  background: var(--off);
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 28px 0; }
.about-check { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: var(--dark); }
.about-check i { color: var(--gold); font-size: 11px; }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.about-sig { display:flex; align-items:center; gap:13px; margin-top:32px; padding-top:28px; border-top:1px solid var(--border); }
.sig-av { width:50px; height:50px; border-radius:50%; object-fit:cover; }
.sig-nm { font-family:var(--fh); font-size:14px; font-weight:800; color:var(--dark); }
.sig-tl { font-size:12px; color:var(--muted); margin-top:2px; }

/* ═══════════════════════════════════════
   STATS — dark, animated counters
═══════════════════════════════════════ */
#stats {
  background: var(--dark2);
  padding: 80px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.st {
  text-align: center; padding: 0;
  border-right: 1px solid rgba(255,255,255,.06);
}
.st:last-child { border-right: none; }
.st-num {
  font-family: var(--fh); font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1;
  margin-bottom: 8px;
}
.st-num .sx { color: var(--gold); }
.st-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28); }

/* ═══════════════════════════════════════
   SERVICES — numbered editorial rows
═══════════════════════════════════════ */
#services { background: var(--dark); padding: 120px 0; }

.svc-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 72px;
}
.svc-header-right { display:flex; flex-direction:column; align-items:flex-start; gap:24px; }

.svc-rows { border-top: 1px solid rgba(255,255,255,.07); }
.svc-row {
  display: grid;
  grid-template-columns: 70px 1fr 52px;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: padding-left .3s var(--ease);
  text-decoration: none;
}
.svc-row:hover { padding-left: 24px; }

.svc-n {
  font-family: var(--fh); font-size: 48px; font-weight: 900;
  color: rgba(255,255,255,.05); line-height: 1;
  transition: color .3s;
}
.svc-row:hover .svc-n { color: var(--gold); }

.svc-info {}
.svc-title {
  font-family: var(--fh); font-weight: 800;
  font-size: clamp(20px, 2.4vw, 32px);
  color: rgba(255,255,255,.8); letter-spacing: -.02em;
  margin-bottom: 6px; transition: color .3s;
}
.svc-row:hover .svc-title { color: #fff; }
.svc-desc { font-size: 13.5px; color: rgba(255,255,255,.3); line-height: 1.65; max-width: 520px; transition: color .3s; }
.svc-row:hover .svc-desc { color: rgba(255,255,255,.52); }

.svc-arr {
  width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.3); font-size: 13px; flex-shrink: 0;
  transition: all .3s;
}
.svc-row:hover .svc-arr { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ═══════════════════════════════════════
   PROJECTS — editorial image grid
═══════════════════════════════════════ */
#projects { background: var(--dark); padding-bottom: 120px; }

.proj-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 3px;
}
.fltrs { display: flex; gap: 4px; flex-wrap: wrap; }
.fltr {
  padding: 9px 18px;
  font-family: var(--fh); font-size: 9px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.38); background: none;
  border: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: all .3s;
}
.fltr.on, .fltr:hover { color: var(--dark); background: var(--gold); border-color: var(--gold); }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.pi { position: relative; overflow: hidden; cursor: pointer; }
.pi.big { grid-column: span 2; }
.pi-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pi.big .pi-img { aspect-ratio: 16/10; }
.pi-img::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--bg, #0e1628) center/cover no-repeat;
  filter: brightness(.72);
  transition: transform .7s var(--ease), filter .5s;
}
.pi:hover .pi-img::before { transform: scale(1.06); filter: brightness(.5); }

.pi-info {
  position: absolute; inset: 0;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  z-index: 2;
}
.pi-cat {
  align-self: flex-start;
  font-family: var(--fh); font-size: 9px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  background: rgba(7,9,15,.65); padding: 6px 12px;
}
.pi-bot { display: flex; align-items: flex-end; justify-content: space-between; }
.pi-name { font-family: var(--fh); font-size: clamp(15px, 1.8vw, 22px); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.2; }
.pi-ar {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); flex-shrink: 0;
  opacity: 0; transform: translateY(6px);
  transition: all .35s;
}
.pi:hover .pi-ar { opacity: 1; transform: translateY(0); }

.proj-foot { margin-top: 48px; display: flex; justify-content: flex-end; }

/* ═══════════════════════════════════════
   PROCESS — light section, 4 steps
═══════════════════════════════════════ */
#process { background: var(--off); padding: 120px 0; }
.proc-head { text-align: center; margin-bottom: 80px; }
.proc-head .body-text { margin: 16px auto 0; }

.proc-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.proc-steps::before {
  content: '';
  position: absolute; top: 23px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 1px; background: var(--border);
}
.proc-step { padding: 0 28px; text-align: center; }
.proc-dot {
  width: 48px; height: 48px; margin: 0 auto 28px;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 12px; font-weight: 900;
  position: relative; z-index: 1; border: 3px solid var(--off);
}
.proc-step.hl .proc-dot { background: var(--gold); color: var(--dark); }
.proc-step h3 { font-family: var(--fh); font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.proc-step p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
#testimonials { background: #fff; padding: 120px 0; }
.test-head { text-align: center; margin-bottom: 64px; }
.test-head .body-text { margin: 14px auto 0; }

.t-card {
  background: var(--off); padding: 40px 36px;
  position: relative; height: 100%;
}
.t-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.t-stars i { color: var(--gold); font-size: 12px; }
.t-text { font-size: 15px; line-height: 1.85; color: var(--muted); font-style: italic; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 13px; }
.t-av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.t-nm { font-family: var(--fh); font-size: 14px; font-weight: 800; color: var(--dark); }
.t-rl { font-size: 12px; color: var(--muted); margin-top: 2px; }
.t-q {
  position: absolute; top: 22px; right: 28px;
  font-family: Georgia, serif; font-size: 72px; line-height: 1; font-style: italic;
  color: rgba(0,0,0,.04); pointer-events: none;
}
.swiper-testimonials { padding-bottom: 52px !important; }
.swiper-pagination-bullet { background: var(--border) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ═══════════════════════════════════════
   TEAM
═══════════════════════════════════════ */
#team { background: var(--dark); padding: 120px 0; }
.team-head { text-align: center; margin-bottom: 64px; }
.team-head .body-text { margin: 14px auto 0; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.team-card { position: relative; overflow: hidden; cursor: pointer; }
.tm-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.tm-img::before { content: ''; position: absolute; inset: 0; background: var(--bg, #0e1628) center top/cover no-repeat; filter: grayscale(20%); transition: transform .6s var(--ease), filter .5s; }
.team-card:hover .tm-img::before { transform: scale(1.06); filter: grayscale(0); }
.tm-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 22px 20px;
  background: linear-gradient(to top, rgba(7,9,15,.9) 0%, transparent 100%);
}
.tm-name { font-family: var(--fh); font-size: 17px; font-weight: 800; color: #fff; }
.tm-role { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.tm-socials { display: flex; gap: 8px; margin-top: 12px; opacity: 0; transform: translateY(8px); transition: all .35s; }
.team-card:hover .tm-socials { opacity: 1; transform: translateY(0); }
.tm-socials a { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 11px; transition: all .3s; }
.tm-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ═══════════════════════════════════════
   CLIENTS
═══════════════════════════════════════ */
#clients {
  background: var(--dark);
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
}
.clients-top {
  text-align: center;
  margin-bottom: 40px;
}
.clients-lbl {
  font-family: var(--fh); font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 900; letter-spacing: -.02em; color: #fff;
  margin-top: 10px;
}
.clients-marquee { overflow: hidden; position: relative; }
/* fade edges */
.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.clients-marquee::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.clients-marquee::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }
.clients-track { display: flex; width: max-content; animation: clScroll 30s linear infinite; }
.clients-track:hover { animation-play-state: paused; }
@keyframes clScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.cl-item {
  flex-shrink: 0; display: flex; align-items: center; gap: 10px;
  padding: 14px 40px; border-right: 1px solid rgba(255,255,255,.06);
  font-family: var(--fh); font-size: 10.5px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.22); white-space: nowrap;
  transition: color .3s; cursor: default;
}
.cl-item i { font-size: 13px; color: rgba(201,165,90,.35); transition: color .3s; }
.cl-item:hover { color: rgba(255,255,255,.6); }
.cl-item:hover i { color: var(--gold); }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
#cta {
  background: var(--dark2);
  padding: 120px 0;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=50') center/cover no-repeat;
  opacity: .06;
}
.cta-inner { position: relative; z-index: 2; }
.cta-h { font-family: var(--fh); font-weight: 900; font-size: clamp(38px, 5.8vw, 86px); letter-spacing: -.04em; line-height: .95; color: #fff; margin-bottom: 24px; }
.cta-h em { font-style: normal; color: var(--gold); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.4); line-height: 1.8; max-width: 480px; margin-bottom: 44px; }
.cta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-tel { display:flex; align-items:center; gap:9px; font-family:var(--fh); font-size:9.5px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.45); transition:color .3s; }
.cta-tel i { color:var(--gold); }
.cta-tel:hover { color:#fff; }
.cta-deco { position:absolute; right:-30px; top:50%; transform:translateY(-50%); font-family:var(--fh); font-size:clamp(180px, 24vw, 320px); font-weight:900; color:rgba(255,255,255,.025); line-height:1; pointer-events:none; letter-spacing:-.06em; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
#contact { background: var(--off); padding: 120px 0 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }

.c-intro { margin-bottom: 44px; }
.c-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.c-ico { width: 42px; height: 42px; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; flex-shrink: 0; }
.c-lbl { font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.c-val { font-size: 14px; font-weight: 600; color: var(--dark); margin-top: 3px; line-height: 1.55; }

.contact-form { background: #fff; padding: 52px 48px; border: 1px solid var(--border); }
.cf-title { font-family: var(--fh); font-size: 20px; font-weight: 900; color: var(--dark); letter-spacing: -.02em; margin-bottom: 28px; }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label { display:block; font-size:9px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin-bottom:9px; }
.fg input, .fg select, .fg textarea { width:100%; padding:13px 15px; background:var(--off); border:1.5px solid transparent; font-size:14px; color:var(--dark); transition:border-color .3s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--gold); background:#fff; }
.fg textarea { resize:vertical; min-height:120px; }
.f-submit { width:100%; padding:17px; background:var(--dark); color:#fff; font-family:var(--fh); font-size:10px; font-weight:800; letter-spacing:.18em; text-transform:uppercase; cursor:pointer; transition:background .3s; margin-top:4px; }
.f-submit:hover { background: var(--gold); color: var(--dark); }

/* MAP */
#mapwrap { position:relative; height:420px; }
#mapwrap iframe { width:100%; height:100%; border:0; display:block; filter:grayscale(35%); }
.map-card { position:absolute; top:40px; left:60px; background:#fff; padding:26px 30px; border-top:3px solid var(--gold); box-shadow:0 16px 48px rgba(0,0,0,.15); min-width:230px; z-index:2; }
.mc-name { font-family:var(--fh); font-size:15px; font-weight:900; color:var(--dark); margin-bottom:13px; }
.mc-row { display:flex; align-items:center; gap:9px; font-size:12.5px; color:var(--muted); margin-bottom:7px; }
.mc-row i { color:var(--gold); width:13px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { background: var(--dark); padding: 90px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.06); }
.foot-brand .fn  { display:block; font-family:var(--fh); font-size:18px; font-weight:900; color:#fff; letter-spacing:.1em; text-transform:uppercase; margin-bottom:3px; }
.foot-brand .ft  { display:block; font-size:8.5px; font-weight:700; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); margin-bottom:18px; }
.foot-brand p    { font-size:13px; color:rgba(255,255,255,.35); line-height:1.8; margin-bottom:22px; }
.foot-socials    { display:flex; gap:8px; }
.foot-soc        { width:34px; height:34px; border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.38); font-size:12px; transition:all .3s; }
.foot-soc:hover  { background:var(--gold); border-color:var(--gold); color:var(--dark); }
.foot-head       { font-size:8.5px; font-weight:800; letter-spacing:.28em; text-transform:uppercase; color:rgba(255,255,255,.28); margin-bottom:20px; }
.foot-links li   { margin-bottom:10px; }
.foot-links a    { font-size:13px; color:rgba(255,255,255,.45); transition:color .3s; display:flex; align-items:center; gap:7px; }
.foot-links a i  { font-size:8px; color:var(--gold); opacity:.5; }
.foot-links a:hover { color:var(--gold); }
.foot-row        { display:flex; gap:11px; margin-bottom:13px; align-items:flex-start; }
.foot-ico        { color:var(--gold); font-size:11px; width:15px; margin-top:2px; flex-shrink:0; }
.foot-txt        { font-size:13px; color:rgba(255,255,255,.4); line-height:1.6; }
.foot-bottom     { display:flex; align-items:center; justify-content:space-between; padding:22px 0; }
.foot-copy       { font-size:11.5px; color:rgba(255,255,255,.22); }
.foot-blinks     { display:flex; gap:20px; }
.foot-blinks a   { font-size:11px; color:rgba(255,255,255,.22); transition:color .3s; }
.foot-blinks a:hover { color:var(--gold); }

/* ── BACK TO TOP ─────────────────────── */
#btt { position:fixed; bottom:32px; right:32px; width:44px; height:44px; background:var(--gold); color:var(--dark); display:flex; align-items:center; justify-content:center; font-size:14px; cursor:pointer; opacity:0; visibility:hidden; transform:translateY(8px); transition:all .35s; z-index:900; }
#btt.show { opacity:1; visibility:visible; transform:translateY(0); }
#btt:hover { background:var(--gold-dk); transform:translateY(-3px); }

/* ── TOAST ───────────────────────────── */
.toast { position:fixed; bottom:32px; left:50%; transform:translateX(-50%) translateY(60px); background:var(--dark); color:#fff; padding:14px 24px; font-size:14px; box-shadow:0 12px 36px rgba(0,0,0,.4); opacity:0; transition:all .4s var(--ease); z-index:9999; pointer-events:none; }
.toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ── INNER PAGE BANNER ───────────────── */
.page-banner { position:relative; height:360px; background:var(--dark); display:flex; align-items:center; overflow:hidden; }
.page-banner-bg { position:absolute; inset:0; background-size:cover; background-position:center; opacity:.22; }
.page-banner-content { position:relative; z-index:2; }
.pb-tag { font-family:var(--fh); font-size:9px; font-weight:800; letter-spacing:.26em; text-transform:uppercase; color:var(--gold); display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.pb-tag::before { content:''; width:20px; height:1px; background:var(--gold); }
.pb-h1 { font-family:var(--fh); font-size:clamp(36px, 6vw, 80px); font-weight:900; color:#fff; letter-spacing:-.03em; line-height:1; margin-bottom:18px; }
.breadcrumb { display:flex; align-items:center; gap:9px; font-size:12px; color:rgba(255,255,255,.38); }
.breadcrumb a { color:rgba(255,255,255,.38); transition:color .3s; }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb i { font-size:8px; }
.breadcrumb .cur { color:var(--gold); }

/* ── SECTION PADDING HELPERS ─────────── */
.sec-lt  { background: var(--off); padding: 100px 0; }
.sec-wh  { background: #fff;       padding: 100px 0; }
.sec-dk  { background: var(--dark); padding: 100px 0; }

/* Blog */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.blog-card { background:#fff; overflow:hidden; }
.blog-img  { aspect-ratio:16/10; overflow:hidden; }
.blog-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.blog-card:hover .blog-img img { transform:scale(1.06); }
.blog-body { padding:30px 26px; }
.blog-meta { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.blog-cat  { font-family:var(--fh); font-size:8px; font-weight:800; letter-spacing:.2em; text-transform:uppercase; background:var(--off); color:var(--gold); padding:5px 9px; }
.blog-date { font-size:11.5px; color:var(--muted); }
.blog-title { font-family:var(--fh); font-size:17px; font-weight:800; color:var(--dark); letter-spacing:-.02em; line-height:1.3; margin-bottom:10px; }
.blog-exc  { font-size:13.5px; color:var(--muted); line-height:1.75; margin-bottom:18px; }
.blog-rd   { font-family:var(--fh); font-size:9px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); display:flex; align-items:center; gap:7px; transition:gap .3s; }
.blog-rd:hover { gap:13px; }

/* Services page */
.svc-det { display:grid; grid-template-columns:1fr 1fr; min-height:500px; margin-bottom:3px; }
.svc-det.rev { direction:rtl; }
.svc-det.rev > * { direction:ltr; }
.svc-det-img { overflow:hidden; }
.svc-det-img img { width:100%; height:100%; object-fit:cover; }
.svc-det-body { background:var(--off); padding:72px 64px; display:flex; flex-direction:column; justify-content:center; }

/* Testimonials page */
.test-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }

/* FAQ */
.faq-list { max-width:780px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; align-items:center; justify-content:space-between; padding:22px 0; cursor:pointer; font-family:var(--fh); font-size:16px; font-weight:700; color:var(--dark); gap:20px; }
.faq-ico { width:30px; height:30px; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--muted); transition:all .3s; }
.faq-item.open .faq-ico { background:var(--gold); border-color:var(--gold); color:var(--dark); transform:rotate(45deg); }
.faq-a { display:none; padding:0 0 22px; font-size:14.5px; color:var(--muted); line-height:1.85; }
.faq-item.open .faq-a { display:block; }

/* Legal */
.legal-body { max-width:800px; margin:0 auto; }
.legal-date { font-size:12px; color:var(--muted); margin-bottom:32px; padding-bottom:18px; border-bottom:1px solid var(--border); }
.legal-body h2 { font-family:var(--fh); font-size:20px; font-weight:800; color:var(--dark); margin:32px 0 12px; }
.legal-body h3 { font-family:var(--fh); font-size:15px; font-weight:700; color:var(--dark); margin:22px 0 9px; }
.legal-body p  { font-size:14.5px; color:var(--muted); line-height:1.85; margin-bottom:14px; }
.legal-body ul { margin:0 0 14px 20px; list-style:disc; }
.legal-body ul li { font-size:14.5px; color:var(--muted); line-height:1.85; margin-bottom:7px; }

/* Values / Mission */
.mv-grid { display:grid; grid-template-columns:1fr 1fr; gap:3px; margin-bottom:80px; }
.mv-card { padding:60px 52px; }
.mv-dk  { background:var(--dark); }
.mv-gd  { background:var(--gold); }
.mv-lt  { background:var(--off); }
.mv-dk .h-xl, .mv-dk p { color:rgba(255,255,255,.65); }
.mv-dk .h-xl { color:#fff; }
.mv-gd .h-xl { color:var(--dark); }
.mv-gd p { color:rgba(7,9,15,.6); }
.vals-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.val-card { padding:40px 32px; background:var(--off); border-top:3px solid var(--border); transition:border-color .3s; }
.val-card:hover { border-color:var(--gold); }
.val-ico { width:48px; height:48px; background:var(--dark); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:18px; margin-bottom:18px; }
.val-ttl { font-family:var(--fh); font-size:17px; font-weight:800; color:var(--dark); margin-bottom:9px; }
.val-txt { font-size:13.5px; color:var(--muted); line-height:1.75; }

/* Projects page */
.gal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:3px; }
.gal-item { position:relative; aspect-ratio:4/3; overflow:hidden; cursor:pointer; }
.gal-item img { width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease), filter .5s; }
.gal-item:hover img { transform:scale(1.06); filter:brightness(.45); }
.gal-overlay { position:absolute; inset:0; padding:22px; display:flex; flex-direction:column; justify-content:space-between; opacity:0; transition:opacity .4s; }
.gal-item:hover .gal-overlay { opacity:1; }
.gal-cat { font-family:var(--fh); font-size:8.5px; font-weight:800; letter-spacing:.22em; text-transform:uppercase; color:var(--gold); }
.gal-nm  { font-family:var(--fh); font-size:17px; font-weight:800; color:#fff; }

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1100px) {
  .wrap { padding: 0 40px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-header { grid-template-columns: 1fr; gap: 24px; }
  .svc-header-right { align-items: flex-start; }
  #about { grid-template-columns: 1fr; }
  .about-img { min-height: 460px; }
  .about-text { padding: 72px 56px; }
  .about-badge { left: 28px; bottom: 28px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 40px 32px; }
  .f2 { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .wrap { padding: 0 28px; }
  .nav-links, .nav-cta { display: none !important; }
  .nav-ham { display: flex !important; }
  /* Collapse hero to single column — show background image on left */
  #hero { grid-template-columns: 1fr; }
  .hero-left {
    padding: 100px 28px 48px;
    background:
      linear-gradient(105deg, rgba(7,9,15,.94) 0%, rgba(7,9,15,.78) 100%),
      url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1200&q=75') right center / cover no-repeat;
  }
  .hero-right { display: none; }
  .hero-h1 { font-size: clamp(44px, 12vw, 90px); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hst:nth-child(2), .hst:nth-child(4) { border-right: none; }
  .hst:nth-child(1), .hst:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }
  .proc-steps { grid-template-columns: 1fr 1fr; }
  .proc-steps::before { display: none; }
  .proc-step { margin-bottom: 40px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .pi.big { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .st { border-bottom: 1px solid rgba(255,255,255,.06); }
  .blog-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .vals-grid { grid-template-columns: 1fr 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .svc-det { grid-template-columns: 1fr; }
  .svc-det.rev { direction: ltr; }
  .svc-det-img { min-height: 320px; }
  .svc-det-body { padding: 56px 32px; }
  .map-card { left: 20px; top: 20px; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .hero-left { padding: 95px 20px 40px; }
  .hero-h1 { font-size: clamp(40px, 14vw, 72px); }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .pi.big { grid-column: span 1; }
  .foot-grid { grid-template-columns: 1fr; }
  .about-text { padding: 52px 24px; }
  .about-checks { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .cta-deco { display: none; }
  .gal-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   INNER PAGES — Additional Styles & Aliases
   ═══════════════════════════════════════════════ */

/* ── Extra CSS Variables used by inner pages ─── */
:root {
  --accent:      #c9a55a;
  --accent-dk:   #a07c35;
  --primary:     #07090f;
  --text:        #07090f;
  --text-light:  #6b6b6b;
  --off-white:   #f5f2ed;
  --section-dark:#0e1628;
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  all .3s ease;
  --fw-medium:   500;
  --fw-semi:     600;
  --fw-bold:     700;
  --fw-black:    900;
  --ff-heading:  'Raleway', sans-serif;
}

/* ── Container ──────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 64px; }
@media (max-width: 1100px) { .container { padding: 0 40px; } }
@media (max-width: 860px)  { .container { padding: 0 28px; } }
@media (max-width: 600px)  { .container { padding: 0 20px; } }

/* ── Inner-Page Navbar ──────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 26px 0; transition: all .4s var(--ease);
}
#navbar.scrolled {
  padding: 14px 0;
  background: rgba(7,9,15,.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  box-shadow: 0 4px 32px rgba(0,0,0,.35);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.navbar-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar-logo-icon {
  width: 36px; height: 36px; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 15px; font-weight: 900; color: var(--dark);
}
.navbar-logo-text { display: flex; flex-direction: column; line-height: 1; }
.navbar-logo-name { font-family: var(--fh); font-size: 14px; font-weight: 900; color: #fff; letter-spacing: .1em; text-transform: uppercase; }
.navbar-logo-tagline { font-size: 8px; font-weight: 700; color: var(--gold); letter-spacing: .28em; text-transform: uppercase; margin-top: 4px; }
.navbar-menu { display: flex; align-items: center; gap: 32px; }
.navbar-link {
  font-family: var(--fh); font-size: 9.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.6); position: relative; transition: color .3s; padding: 3px 0;
}
.navbar-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .3s; }
.navbar-link:hover, .navbar-link.active { color: #fff; }
.navbar-link:hover::after, .navbar-link.active::after { width: 100%; }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 20px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff; min-width: 210px; padding: 8px;
  box-shadow: 0 20px 56px rgba(0,0,0,.2); border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-link { display: block; padding: 10px 14px; font-family: var(--fh); font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dark); transition: all .25s; }
.dropdown-link:hover { color: var(--gold); padding-left: 20px; background: var(--off); }
.navbar-cta { font-family: var(--fh); font-size: 9.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; padding: 12px 24px; background: var(--gold); color: var(--dark); flex-shrink: 0; transition: background .3s; }
.navbar-cta:hover { background: var(--gold-dk); }
.navbar-hamburger { display: none; flex-direction: column; gap: 6px; background: none; cursor: pointer; }
.hamburger-line { display: block; width: 24px; height: 1.5px; background: #fff; transition: all .3s; }

/* ── Mobile Menu (inner pages) ──────────────── */
.mobile-menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1099; opacity: 0; visibility: hidden; transition: all .3s; }
.mobile-menu-overlay.show { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: var(--dark); z-index: 1100; padding: 80px 40px 40px; display: flex; flex-direction: column; transition: right .4s var(--ease); overflow-y: auto; }
.mobile-menu.open { right: 0; }
.mobile-close { position: absolute; top: 22px; right: 22px; background: none; color: rgba(255,255,255,.4); font-size: 18px; cursor: pointer; }
.mobile-nav-link { display: block; padding: 15px 0; font-family: var(--fh); font-size: 16px; font-weight: 700; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.06); transition: color .3s; }
.mobile-nav-link:hover { color: var(--gold); }
.mobile-cta { display: block; margin-top: 28px; padding: 16px; background: var(--gold); color: var(--dark); font-family: var(--fh); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; text-align: center; }

/* ── Back to Top (inner pages) ──────────────── */
#backToTop { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .35s; z-index: 900; }
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--gold-dk); transform: translateY(-3px); }

/* ── Page Banner (inner pages) ──────────────── */
.page-banner-overlay { position: absolute; inset: 0; background: rgba(7,9,15,.72); }
.page-banner-tag { font-family: var(--fh); font-size: 9px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.page-banner-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.page-banner-title { font-family: var(--fh); font-size: clamp(36px,6vw,80px); font-weight: 900; color: #fff; letter-spacing: -.03em; line-height: 1; margin-bottom: 18px; }
.breadcrumb .active { color: var(--gold); }

/* ── Buttons (inner pages) ──────────────────── */
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,165,90,.4); }
.btn-ghost { background: transparent; color: var(--dark); border: 1px solid #c8c4bb; }
.btn-ghost:hover { background: var(--dark); color: #fff; }

/* ── Section Typography ─────────────────────── */
.section-tag { display: inline-flex; align-items: center; gap: 12px; font-family: var(--fh); font-size: 9.5px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-tag.centered { display: flex; justify-content: center; }
.section-title { font-family: var(--fh); font-weight: 900; font-size: clamp(28px,4vw,52px); letter-spacing: -.03em; line-height: 1.05; color: var(--dark); margin-bottom: 16px; }
.section-title.light { color: #fff; }
.section-subtitle { font-size: 15px; color: var(--muted); line-height: 1.85; max-width: 580px; }
.section-subtitle.light { color: rgba(255,255,255,.5); }

/* ── Stats (inner pages) ────────────────────── */
.stat-item { text-align: center; padding: 0; border-right: 1px solid rgba(255,255,255,.06); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--fh); font-size: clamp(44px,5.5vw,72px); font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; }
.stat-suffix { color: var(--gold); }
.stat-label { font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.28); }

/* ── Service Cards ──────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.services-header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.service-card { background: #fff; padding: 36px 28px; border: 1px solid var(--border); border-top: 3px solid transparent; transition: all .3s; position: relative; }
.service-card:hover { border-top-color: var(--gold); box-shadow: 0 12px 36px rgba(0,0,0,.08); transform: translateY(-4px); }
.service-number { font-family: var(--fh); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); opacity: .6; margin-bottom: 18px; display: block; }
.service-icon { width: 52px; height: 52px; background: var(--dark); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 20px; margin-bottom: 18px; }
.service-card h3 { font-family: var(--fh); font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -.02em; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.service-link { font-family: var(--fh); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 7px; transition: gap .3s; }
.service-link:hover { gap: 13px; }

/* ── About Page ─────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { width: 100%; height: 500px; object-fit: cover; display: block; }
.about-image-accent { position: absolute; bottom: -16px; right: -16px; width: 50%; height: 40%; border: 2px solid var(--gold); opacity: .3; pointer-events: none; }
.about-experience-badge { position: absolute; bottom: 32px; left: -20px; background: var(--gold); padding: 20px 26px; }
.about-exp-num { font-family: var(--fh); font-size: 40px; font-weight: 900; color: var(--dark); line-height: 1; }
.about-exp-text { font-family: var(--fh); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: rgba(7,9,15,.65); margin-top: 5px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 10px; }
.about-feature { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 500; color: var(--dark); }
.about-feature-check { width: 22px; height: 22px; background: var(--dark); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 10px; flex-shrink: 0; }

/* ── Team (About page) ──────────────────────── */
.team-header { text-align: center; margin-bottom: 52px; }
.team-grid { gap: 24px; }
.team-card { background: #fff; border: 1px solid var(--border); overflow: hidden; }
.team-image-wrap { overflow: hidden; aspect-ratio: 1/1; }
.team-image { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-image { transform: scale(1.05); }
.team-info { padding: 22px 20px; }
.team-name { font-family: var(--fh); font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-social { display: flex; gap: 8px; }
.team-social a { width: 30px; height: 30px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 11px; transition: all .3s; }
.team-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ── CTA (inner pages) ──────────────────────── */
.cta-inner { text-align: center; }
.cta-title { font-family: var(--fh); font-weight: 900; font-size: clamp(28px,4vw,56px); letter-spacing: -.03em; line-height: 1.05; color: #fff; margin-bottom: 16px; }
.cta-title span { color: var(--gold); }
.cta-subtitle { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.8; max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 9px; font-family: var(--fh); font-size: 9.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); transition: color .3s; }
.cta-phone i { color: var(--gold); }
.cta-phone:hover { color: #fff; }

/* ── Footer (inner pages) ───────────────────── */
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo-name { display: block; font-family: var(--fh); font-size: 18px; font-weight: 900; color: #fff; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3px; }
.footer-logo-sub { display: block; font-size: 8.5px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.8; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social-link { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.38); font-size: 12px; transition: all .3s; }
.footer-social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-heading { font-size: 8.5px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .3s; display: flex; align-items: center; gap: 7px; }
.footer-links a i { font-size: 8px; color: var(--gold); opacity: .5; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 11px; margin-bottom: 13px; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 11px; width: 15px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-text { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; }
.footer-copyright { font-size: 11.5px; color: rgba(255,255,255,.22); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,.22); transition: color .3s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Testimonials (inner pages) ─────────────── */
.testimonial-card { background: var(--off); padding: 40px 36px; position: relative; }
.testimonial-quote { position: absolute; top: 22px; right: 28px; font-family: Georgia, serif; font-size: 72px; line-height: 1; font-style: italic; color: rgba(0,0,0,.04); pointer-events: none; }
.testimonial-rating { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-rating i { color: var(--gold); font-size: 12px; }
.testimonial-text { font-size: 15px; line-height: 1.85; color: var(--muted); font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 13px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-family: var(--fh); font-size: 14px; font-weight: 800; color: var(--dark); }
.testimonial-position { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── Contact Page ────────────────────────────── */
.contact-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon { width: 42px; height: 42px; background: var(--off); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 13px; flex-shrink: 0; }
.contact-info-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-info-value { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.55; }
.form-title { font-family: var(--fh); font-size: 20px; font-weight: 900; color: var(--dark); letter-spacing: -.02em; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 13px 15px; background: var(--off); border: 1.5px solid transparent; font-size: 14px; color: var(--dark); transition: border-color .3s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: #fff; outline: none; }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; }
.form-submit { width: 100%; padding: 17px; background: var(--dark); color: #fff; font-family: var(--fh); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: background .3s; border: none; }
.form-submit:hover { background: var(--gold); color: var(--dark); }

/* ── Map (Contact page) ──────────────────────── */
#map-section { position: relative; height: 420px; }
#map-section iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(35%); }
.map-overlay-card { position: absolute; top: 40px; left: 60px; background: #fff; padding: 26px 30px; border-top: 3px solid var(--gold); box-shadow: 0 16px 48px rgba(0,0,0,.15); min-width: 230px; z-index: 2; }
.map-overlay-title { font-family: var(--fh); font-size: 15px; font-weight: 900; color: var(--dark); margin-bottom: 13px; }
.map-overlay-item { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--muted); margin-bottom: 7px; }
.map-overlay-item i { color: var(--gold); width: 13px; }

/* ── Blog Page ───────────────────────────────── */
.blog-image-wrap { overflow: hidden; }
.blog-image { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.blog-card:hover .blog-image { transform: scale(1.06); }
.blog-content { padding: 30px 26px; }
.blog-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.blog-read { font-family: var(--fh); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 7px; transition: gap .3s; }
.blog-read:hover { gap: 13px; }

/* ── Projects Page ───────────────────────────── */
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 28px; flex-wrap: wrap; gap: 24px; }
.projects-filter { display: flex; gap: 4px; flex-wrap: wrap; }
.filter-btn { padding: 9px 18px; font-family: var(--fh); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38); background: none; border: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: all .3s; }
.filter-btn.active, .filter-btn:hover { color: var(--dark); background: var(--gold); border-color: var(--gold); }
.project-card { position: relative; overflow: hidden; cursor: pointer; background: #111; }
.project-image-wrap { overflow: hidden; }
.project-image { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .6s var(--ease), filter .5s; }
.project-card:hover .project-image { transform: scale(1.06); filter: brightness(.55); }
.project-overlay { position: absolute; inset: 0; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(7,9,15,.9) 0%, transparent 55%); opacity: 0; transition: opacity .4s; }
.project-card:hover .project-overlay { opacity: 1; }
.project-category { font-family: var(--fh); font-size: 8.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.project-title { font-family: var(--fh); font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.2; margin-bottom: 8px; }
.project-info-tag { display: flex; align-items: center; gap: 5px; font-size: 11.5px; color: rgba(255,255,255,.55); }
.project-info-tag i { color: var(--gold); font-size: 10px; }
.project-view { display: inline-flex; align-items: center; gap: 7px; font-family: var(--fh); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-top: 10px; transition: gap .3s; }
.project-view:hover { gap: 13px; }

/* ── Buttons (extra) ─────────────────────────── */
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

/* ── FAQ Page ─────────────────────────────────── */
.faq-grid { max-width: 780px; margin: 0 auto; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; cursor: pointer;
  font-family: var(--fh); font-size: 16px; font-weight: 700; color: var(--dark); gap: 20px;
}
.faq-icon {
  width: 30px; height: 30px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--muted); transition: all .3s;
}
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: rotate(45deg); }
.faq-answer { display: none; overflow: hidden; }
.faq-answer-inner { padding: 0 0 22px; font-size: 14.5px; color: var(--muted); line-height: 1.85; }
.faq-item.open .faq-answer { display: block; }

/* ── Legal Pages ──────────────────────────────── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content .legal-date { font-size: 12px; color: var(--muted); margin-bottom: 32px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.legal-content p { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.legal-content h2 { font-family: var(--fh); font-size: 20px; font-weight: 800; color: var(--dark); margin: 32px 0 12px; }
.legal-content h3 { font-family: var(--fh); font-size: 15px; font-weight: 700; color: var(--dark); margin: 22px 0 9px; }
.legal-content ul { margin: 0 0 14px 20px; list-style: disc; }
.legal-content ul li { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 7px; }

/* ── Inner Pages — Responsive ────────────────── */
@media (max-width: 860px) {
  .navbar-menu, .navbar-cta { display: none !important; }
  .navbar-hamburger { display: flex !important; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-experience-badge { left: 20px; }
  .about-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .projects-header { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .map-overlay-card { left: 20px; top: 20px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
