/* ═══════════════════════════════════════════════
   AG ALUMINIUM WORKS — STYLESHEET
   Red #CC1111 | Blue #1a2fCC | Dark #0a0a14
═══════════════════════════════════════════════ */

:root {
  --red:        #CC1111;
  --red-lt:     #e82020;
  --red-dark:   #991010;
  --red-glow:   rgba(204,17,17,0.18);
  --blue:       #1a2fCC;
  --blue-lt:    #2b42e0;
  --blue-dark:  #1220a0;
  --blue-glow:  rgba(26,47,204,0.18);
  --dark:       #0a0a14;
  --dark-mid:   #101020;
  --dark-card:  #13131f;
  --dark-lt:    #1a1a2e;
  --white:      #f0f0f8;
  --grey:       #6e6e88;
  --grey-lt:    #9090aa;
  --line-r:     rgba(204,17,17,0.18);
  --line-b:     rgba(26,47,204,0.18);
  --line:       rgba(255,255,255,0.08);
  --trans:      all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'Inter',sans-serif; background:var(--dark); color:var(--white); overflow-x:hidden; }
img  { max-width:100%; display:block; }
a    { text-decoration:none; }

.ag-red  { color:var(--red) !important; }
.ag-blue { color:var(--blue) !important; }

/* ─────────────────────────────────────────
   SPLASH
───────────────────────────────────────── */
#splash {
  position:fixed; inset:0; z-index:9999;
  background:var(--dark);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  transition:opacity 0.8s ease, visibility 0.8s ease;
}
#splash.hidden { opacity:0; visibility:hidden; pointer-events:none; }

#splashCanvas { position:absolute; inset:0; width:100%; height:100%; opacity:0.4; }

/* subtle diagonal colour accent panels */
.sp-split {
  position:absolute; top:-30%; bottom:-30%;
  width:3px; opacity:0.12;
}
.sp-split-left  { left:30%;  background:linear-gradient(180deg,transparent,var(--red),transparent); transform:rotate(15deg); animation:splitGlow 3s ease-in-out infinite; }
.sp-split-right { right:30%; background:linear-gradient(180deg,transparent,var(--blue),transparent); transform:rotate(-15deg); animation:splitGlow 3s ease-in-out 0.5s infinite; }
@keyframes splitGlow { 0%,100%{opacity:0.08} 50%{opacity:0.22} }

/* corner brackets – red tl/br, blue tr/bl */
.sp-corner { position:absolute; width:42px; height:42px; animation:cIn 0.6s ease both; }
.sp-tl { top:22px; left:22px;   border-top:2px solid var(--red);  border-left:2px solid var(--red);   animation-delay:0.1s; }
.sp-tr { top:22px; right:22px;  border-top:2px solid var(--blue); border-right:2px solid var(--blue); animation-delay:0.2s; }
.sp-bl { bottom:22px; left:22px; border-bottom:2px solid var(--blue); border-left:2px solid var(--blue); animation-delay:0.3s; }
.sp-br { bottom:22px; right:22px; border-bottom:2px solid var(--red); border-right:2px solid var(--red); animation-delay:0.4s; }
@keyframes cIn { from{opacity:0;transform:scale(0.4)} to{opacity:1;transform:scale(1)} }

.sp-inner {
  position:relative; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:1.8rem; text-align:center;
}

/* Logo box — rectangular white background (logo already white) */
.sp-logo-box {
  position:relative;
  display:flex; align-items:center; justify-content:center;
  animation:logoIn 0.9s cubic-bezier(0.2,0,0.1,1) 0.3s both;
}

/* animated gradient border ring */
.sp-logo-ring {
  position:absolute; inset:-6px; border-radius:10px;
  background:conic-gradient(var(--red) 0deg, var(--blue) 180deg, var(--red) 360deg);
  opacity:0.5; animation:ringRotate 4s linear infinite; z-index:0;
  padding:3px;
}
@keyframes ringRotate { to { transform:rotate(360deg); } }

.sp-logo-bg {
  width:260px;
  background:#ffffff;
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:1;
  box-shadow:0 0 60px rgba(0,0,0,0.6), 0 0 0 3px rgba(255,255,255,0.15);
  padding:18px 24px;
}
.sp-logo { width:100%; max-width:220px; }

@keyframes logoIn { from{opacity:0;transform:scale(0.5) translateY(24px)} to{opacity:1;transform:scale(1) translateY(0)} }

.sp-brand {
  display:flex; align-items:center; gap:0.8rem;
  animation:fadeUp 0.7s ease 1s both;
}
.sp-a { font-family:'Oswald',sans-serif; font-size:2rem; font-weight:700; color:var(--red); letter-spacing:0.05em; }
.sp-divider { width:2px; height:28px; background:linear-gradient(180deg,var(--red),var(--blue)); border-radius:1px; }
.sp-sub { font-family:'Oswald',sans-serif; font-size:1rem; font-weight:500; color:var(--blue-lt); letter-spacing:0.22em; text-transform:uppercase; }

.sp-tagline { display:flex; align-items:center; gap:0.9rem; animation:fadeUp 0.7s ease 1.15s both; }
.sp-line { display:block; width:40px; height:2px; }
.sp-line-red  { background:var(--red); }
.sp-line-blue { background:var(--blue); }
.sp-tag-text {
  font-size:0.72rem; font-weight:600;
  letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(240,240,248,0.6);
}

.sp-bar-wrap { width:270px; animation:fadeUp 0.7s ease 1.3s both; }
.sp-bar-track {
  height:3px; border-radius:2px; overflow:hidden;
  background:rgba(255,255,255,0.07); margin-bottom:0.5rem;
}
.sp-bar-fill {
  height:100%; width:0%;
  background:linear-gradient(90deg, var(--red-dark), var(--red), var(--blue), var(--blue-lt));
  border-radius:2px; position:relative;
  box-shadow:0 0 12px rgba(100,80,200,0.4);
  transition:width 0.04s linear;
}
.sp-bar-sheen {
  position:absolute; top:0; left:-100%; width:60%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.5),transparent);
  animation:sheen 1.8s ease-in-out infinite;
}
@keyframes sheen { to{left:200%} }

.sp-bar-row { display:flex; justify-content:space-between; }
.sp-bar-label { font-size:0.7rem; font-weight:600; letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.3); }
.sp-bar-pct   { font-size:0.7rem; font-weight:700; letter-spacing:0.1em; color:var(--blue-lt); }

@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#mainNav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(10,10,20,0.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
  transition:var(--trans);
}
#mainNav.scrolled {
  background:rgba(10,10,20,0.99);
  box-shadow:0 4px 30px rgba(0,0,0,0.5);
}
.nav-wrap {
  max-width:1280px; margin:0 auto;
  height:72px; padding:0 2.5rem;
  display:flex; align-items:center; justify-content:space-between;
}

/* logo with white bg — rectangular to suit new logo */
.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo-img-wrap {
  height:46px; width:auto; min-width:80px;
  background:#ffffff;
  border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; overflow:hidden;
  padding:4px 10px;
  border:1px solid rgba(255,255,255,0.12);
}
.nav-logo-img-wrap img { height:36px; width:auto; }
.nav-logo-name { font-family:'Oswald',sans-serif; font-size:1.3rem; font-weight:700; line-height:1; display:block; }
.nav-logo-sub  { font-size:0.58rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--grey-lt); display:block; margin-top:2px; }

.nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
.nav-links a {
  font-size:0.84rem; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase;
  color:var(--grey-lt);
  position:relative; padding:0.25rem 0;
  transition:color 0.25s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-2px; left:0; right:100%;
  height:2px;
  background:linear-gradient(90deg,var(--red),var(--blue));
  transition:right 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color:var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { right:0; }

.nav-cta {
  background:linear-gradient(135deg, var(--red), var(--blue)) !important;
  color:var(--white) !important;
  padding:0.5rem 1.4rem !important; border-radius:2px; font-weight:700 !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { opacity:0.85 !important; transform:translateY(-1px); }

.nav-burger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.nav-burger span { display:block; width:24px; height:2px; background:var(--white); border-radius:1px; transition:var(--trans); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background:url('../images/hero.jpg') center/cover no-repeat;
  animation:hZoom 10s ease-out forwards;
}
@keyframes hZoom { from{transform:scale(1.08)} to{transform:scale(1)} }
.hero-blueprint {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(rgba(26,47,204,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,17,17,0.1) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  opacity:0.22;
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(110deg, rgba(10,10,20,0.96) 38%, rgba(10,10,20,0.55) 100%);
}
/* dual colour left bar */
.hero-bar {
  position:absolute; left:0; top:0; bottom:0; width:5px;
  background:linear-gradient(180deg, var(--red) 0%, var(--blue) 100%);
}
.hero-content {
  position:relative; z-index:2;
  padding:120px 5rem 5rem; max-width:820px;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:0.7rem;
  font-size:0.75rem; font-weight:600;
  letter-spacing:0.24em; text-transform:uppercase;
  color:var(--grey-lt); margin-bottom:1.6rem;
  animation:fadeUp 0.8s ease 0.2s both;
}
.hero-badge::before { content:''; width:28px; height:2px; background:linear-gradient(90deg,var(--red),var(--blue)); display:block; }

.hero h1 {
  font-family:'Oswald',sans-serif;
  font-size:clamp(3rem,6.5vw,6rem);
  font-weight:700; line-height:0.92; text-transform:uppercase; letter-spacing:0.02em;
  margin-bottom:1.5rem;
  animation:fadeUp 0.8s ease 0.35s both;
}
.hero h1 .h-red  { color:var(--red); }
.hero h1 .h-blue { color:var(--blue-lt); }

.hero p {
  font-size:1rem; font-weight:300;
  color:rgba(240,240,248,0.68); line-height:1.8;
  max-width:520px; margin-bottom:2.5rem;
  animation:fadeUp 0.8s ease 0.5s both;
}
.btn-group { display:flex; gap:1rem; flex-wrap:wrap; animation:fadeUp 0.8s ease 0.65s both; }

.btn {
  display:inline-flex; align-items:center; gap:0.55rem;
  font-family:'Oswald',sans-serif; font-size:1rem; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  padding:0.85rem 2rem; border-radius:2px;
  transition:var(--trans);
}
.btn svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.btn-primary { background:linear-gradient(135deg, var(--red), var(--blue)); color:var(--white); }
.btn-primary:hover { opacity:0.85; transform:translateY(-2px); box-shadow:0 8px 28px rgba(100,60,200,0.3); }
.btn-ghost { border:2px solid rgba(255,255,255,0.25); color:var(--white); }
.btn-ghost:hover { border-color:var(--white); transform:translateY(-2px); }

/* ─────────────────────────────────────────
   STATS BAND
───────────────────────────────────────── */
.stats-band { background:var(--dark-mid); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:2.2rem 2.5rem; }
.stats-inner { max-width:1280px; margin:0 auto; display:flex; justify-content:space-around; flex-wrap:wrap; gap:2rem; }
.stat-item { text-align:center; }
.stat-num { font-family:'Oswald',sans-serif; font-size:3rem; font-weight:700; line-height:1; }
.stat-num.red-num  { color:var(--red); }
.stat-num.blue-num { color:var(--blue-lt); }
.stat-lbl { font-size:0.72rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; color:var(--grey); margin-top:0.3rem; }

/* ─────────────────────────────────────────
   SECTIONS
───────────────────────────────────────── */
.section { padding:6rem 2.5rem; }
.section-inner { max-width:1280px; margin:0 auto; }
.bg-mid { background:var(--dark-mid); }

.section-tag {
  display:inline-flex; align-items:center; gap:0.6rem;
  font-size:0.72rem; font-weight:600;
  letter-spacing:0.22em; text-transform:uppercase;
  color:var(--grey-lt); margin-bottom:0.8rem;
}
.section-tag::before { content:''; display:block; width:24px; height:2px; background:linear-gradient(90deg,var(--red),var(--blue)); }
.section-tag.light { color:rgba(240,240,248,0.5); }

.section-title {
  font-family:'Oswald',sans-serif;
  font-size:clamp(2rem,4.5vw,3.5rem);
  font-weight:700; text-transform:uppercase; line-height:1; letter-spacing:0.02em;
  margin-bottom:1.2rem; color:var(--white);
}
.section-title .t-red  { color:var(--red); }
.section-title .t-blue { color:var(--blue-lt); }

.section-sub { font-size:0.97rem; font-weight:300; color:var(--grey-lt); line-height:1.8; max-width:580px; }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:center; margin-top:3rem; }
.about-text p { font-size:0.96rem; font-weight:300; color:var(--grey-lt); line-height:1.85; margin-bottom:1.1rem; }
.about-img-frame { position:relative; border-radius:2px; overflow:hidden; }
.about-img-frame img { width:100%; filter:brightness(0.82) saturate(0.9); transition:filter 0.4s; }
.about-img-frame:hover img { filter:brightness(1) saturate(1); }
.about-img-frame::after { content:''; position:absolute; inset:0; border:2px solid rgba(255,255,255,0.08); border-radius:2px; pointer-events:none; }
.about-badge {
  position:absolute; bottom:1.2rem; left:1.2rem;
  background:linear-gradient(135deg,var(--red),var(--blue)); color:var(--white);
  font-size:0.76rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  padding:0.35rem 0.9rem; border-radius:1px;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.service-card {
  background:var(--dark-card);
  border:1px solid var(--line);
  border-radius:2px; padding:2.4rem 2rem;
  position:relative; overflow:hidden;
  transition:var(--trans);
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--red),var(--blue));
  transform:scaleX(0); transform-origin:left; transition:transform 0.35s ease;
}
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover { border-color:rgba(255,255,255,0.15); transform:translateY(-5px); box-shadow:0 24px 48px rgba(0,0,0,0.4); }
.svc-icon { width:52px; height:52px; background:rgba(255,255,255,0.05); border:1px solid var(--line); border-radius:2px; display:flex; align-items:center; justify-content:center; margin-bottom:1.4rem; }
.svc-icon svg { width:24px; height:24px; stroke:var(--white); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3 { font-family:'Oswald',sans-serif; font-size:1.2rem; font-weight:600; text-transform:uppercase; letter-spacing:0.04em; margin-bottom:0.6rem; color:var(--white); }
.service-card p  { font-size:0.86rem; font-weight:300; color:var(--grey-lt); line-height:1.72; }

/* ─────────────────────────────────────────
   GALLERY
───────────────────────────────────────── */
.gf-wrap { display:flex; flex-wrap:wrap; gap:0.6rem; margin:2rem 0; }
.gf-btn {
  font-size:0.76rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  padding:0.45rem 1.2rem; border-radius:2px;
  border:1px solid var(--line); background:transparent; color:var(--grey-lt);
  cursor:pointer; transition:var(--trans);
}
.gf-btn:hover, .gf-btn.active { border-color:rgba(255,255,255,0.3); color:var(--white); background:rgba(255,255,255,0.06); }

.gallery-masonry { columns:3; column-gap:1rem; }
.g-item { break-inside:avoid; margin-bottom:1rem; position:relative; overflow:hidden; border-radius:2px; cursor:pointer; }
.g-item img { width:100%; display:block; transition:transform 0.5s ease, filter 0.4s; filter:brightness(0.75) saturate(0.85); }
.g-item:hover img { transform:scale(1.06); filter:brightness(1) saturate(1); }
.g-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,10,20,0.88) 0%,transparent 55%); opacity:0; transition:opacity 0.3s; display:flex; align-items:flex-end; padding:1rem; }
.g-item:hover .g-overlay { opacity:1; }
.g-label { font-family:'Oswald',sans-serif; font-size:0.88rem; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--white); }

/* ─────────────────────────────────────────
   WHY US
───────────────────────────────────────── */
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; margin-top:3rem; }
.why-card { text-align:center; padding:2rem 1.2rem; border:1px solid var(--line); border-radius:2px; transition:var(--trans); }
.why-card:hover { border-color:rgba(255,255,255,0.18); background:rgba(255,255,255,0.03); transform:translateY(-3px); }
.why-icon { width:60px; height:60px; margin:0 auto 1.2rem; background:rgba(255,255,255,0.04); border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.why-icon svg { width:26px; height:26px; stroke:var(--white); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.why-card h4 { font-family:'Oswald',sans-serif; font-size:1.1rem; font-weight:600; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:0.55rem; color:var(--white); }
.why-card p  { font-size:0.84rem; color:var(--grey-lt); line-height:1.68; font-weight:300; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:5rem; margin-top:3rem; }
.c-detail { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.6rem; }
.c-icon { width:44px; height:44px; flex-shrink:0; background:rgba(255,255,255,0.05); border:1px solid var(--line); border-radius:2px; display:flex; align-items:center; justify-content:center; }
.c-icon svg { width:18px; height:18px; stroke:var(--white); fill:none; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.c-text strong { display:block; font-size:0.72rem; font-weight:700; letter-spacing:0.18em; text-transform:uppercase; color:var(--grey-lt); margin-bottom:0.25rem; }
.c-text span, .c-text a { font-size:0.95rem; color:rgba(240,240,248,0.7); font-weight:300; line-height:1.55; }
.c-text a:hover { color:var(--white); }

.contact-form { display:flex; flex-direction:column; gap:1.2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; }
.form-group label { font-size:0.72rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; color:var(--grey); }
.form-group input,
.form-group textarea,
.form-group select {
  background:var(--dark-mid); border:1px solid var(--line); border-radius:2px;
  padding:0.78rem 1rem; font-family:'Inter',sans-serif; font-size:0.9rem; color:var(--white);
  outline:none; appearance:none; transition:border-color 0.25s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:rgba(255,255,255,0.35); box-shadow:0 0 0 3px rgba(255,255,255,0.04); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-group select option { background:var(--dark-mid); }

.form-msg { display:none; padding:0.78rem 1rem; border-radius:2px; font-size:0.9rem; font-weight:600; }
.form-msg.success { background:rgba(26,47,204,0.1); border:1px solid rgba(26,47,204,0.3); color:#8899ff; display:block; }
.form-msg.error   { background:rgba(204,17,17,0.08); border:1px solid rgba(204,17,17,0.3); color:#ff8080; display:block; }

/* ─────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────── */
.page-hero {
  position:relative; padding:140px 2.5rem 5rem;
  background:var(--dark-mid); border-bottom:1px solid var(--line); overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(26,47,204,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(204,17,17,0.03) 1px,transparent 1px);
  background-size:55px 55px;
}
.page-hero-inner { max-width:1280px; margin:0 auto; position:relative; z-index:1; }
.page-hero h1 { font-family:'Oswald',sans-serif; font-size:clamp(2.2rem,5.5vw,4.5rem); font-weight:700; text-transform:uppercase; letter-spacing:0.02em; line-height:1; margin-bottom:0.8rem; color:var(--white); }
.page-hero p  { font-size:1rem; color:var(--grey-lt); font-weight:300; max-width:540px; line-height:1.7; }
.breadcrumb   { display:flex; align-items:center; gap:0.5rem; font-size:0.75rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--grey); margin-bottom:1rem; }
.breadcrumb a { color:rgba(255,255,255,0.4); transition:color 0.2s; }
.breadcrumb a:hover { color:var(--white); }
.breadcrumb span { color:var(--grey); }

/* ─────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────── */
#lightbox { display:none; position:fixed; inset:0; z-index:8000; background:rgba(0,0,0,0.95); align-items:center; justify-content:center; }
#lightbox.open { display:flex; }
#lightbox img  { max-width:88vw; max-height:86vh; border-radius:2px; border:1px solid var(--line); }
.lb-close { position:absolute; top:1.5rem; right:2rem; width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:1px solid var(--line); cursor:pointer; transition:var(--trans); }
.lb-close:hover { border-color:rgba(255,255,255,0.4); }
.lb-close svg { width:20px; height:20px; stroke:var(--white); fill:none; stroke-width:2; }
.lb-nav { position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; border:1px solid var(--line); cursor:pointer; transition:var(--trans); }
.lb-nav:hover { border-color:rgba(255,255,255,0.4); background:rgba(255,255,255,0.06); }
.lb-nav svg { width:22px; height:22px; stroke:var(--white); fill:none; stroke-width:2; }
.lb-prev { left:2rem; } .lb-next { right:2rem; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background:var(--dark-mid); border-top:1px solid var(--line); }
.footer-top { max-width:1280px; margin:0 auto; display:grid; grid-template-columns:1.5fr 1fr 1fr 1.4fr; gap:3rem; padding:4rem 2.5rem 3rem; }
.footer-logo-wrap { background:#ffffff; border-radius:4px; width:auto; display:inline-flex; align-items:center; justify-content:center; margin-bottom:1rem; padding:6px 14px; }
.footer-logo { height:38px; width:auto; }
.footer-brand p { font-size:0.85rem; color:var(--grey); font-weight:300; line-height:1.65; margin-bottom:1.2rem; }
.footer-socials { display:flex; gap:0.7rem; }
.footer-socials a { width:36px; height:36px; display:flex; align-items:center; justify-content:center; border:1px solid var(--line); border-radius:2px; color:var(--grey); transition:var(--trans); }
.footer-socials a svg { width:16px; height:16px; }
.footer-socials a:hover { border-color:rgba(255,255,255,0.3); color:var(--white); }

.footer-col h4 { font-family:'Oswald',sans-serif; font-size:0.9rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--white); margin-bottom:1.2rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:0.65rem; }
.footer-col ul li a { font-size:0.87rem; color:var(--grey); font-weight:300; transition:color 0.25s; }
.footer-col ul li a:hover { color:var(--white); }
.footer-contact { list-style:none; }
.footer-contact li { display:flex; align-items:flex-start; gap:0.7rem; margin-bottom:0.9rem; }
.footer-contact li svg { width:16px; height:16px; stroke:var(--grey-lt); fill:none; stroke-width:1.8; flex-shrink:0; margin-top:3px; }
.footer-contact li span { font-size:0.85rem; color:var(--grey); font-weight:300; line-height:1.5; }

.footer-bottom { border-top:1px solid var(--line); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; padding:1.4rem 2.5rem; max-width:1280px; margin:0 auto; }
.footer-bottom p { font-size:0.8rem; color:var(--grey); font-weight:300; }
.footer-bottom p span { color:rgba(255,255,255,0.5); }
.footer-tag { color:var(--grey) !important; font-style:italic; }

/* ─────────────────────────────────────────
   REVEAL
───────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid      { grid-template-columns:repeat(2,1fr); }
  .footer-top    { grid-template-columns:1fr 1fr; }
}
@media (max-width:768px) {
  .nav-links { display:none; flex-direction:column; gap:0; position:absolute; top:72px; left:0; right:0; background:rgba(10,10,20,0.98); border-bottom:1px solid var(--line); }
  .nav-links.open { display:flex; }
  .nav-links li { border-bottom:1px solid var(--line); }
  .nav-links a { display:block; padding:1rem 2rem; }
  .nav-burger { display:flex; }
  .hero-content { padding:110px 1.5rem 4rem; }
  .section { padding:4rem 1.5rem; }
  .page-hero { padding:120px 1.5rem 3rem; }
  .about-grid, .contact-grid, .form-row { grid-template-columns:1fr; gap:2rem; }
  .services-grid { grid-template-columns:1fr; }
  .gallery-masonry { columns:2; }
  .footer-top { grid-template-columns:1fr; gap:2rem; padding:2.5rem 1.5rem; }
  .footer-bottom { padding:1.2rem 1.5rem; flex-direction:column; text-align:center; }
}
@media (max-width:480px) {
  .gallery-masonry { columns:1; }
  .why-grid { grid-template-columns:1fr; }
  .stats-inner { flex-direction:column; align-items:center; }
}
