/* ═══════════════════════════════════════════════════════════
   BHARAT ELECTRIC ENGINEERING WORKS — premium dark industrial
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #0b1017;
  --bg-2: #0e1520;
  --bg-3: #121b28;
  --panel: #111a26;
  --line: rgba(255, 255, 255, 0.08);
  --text: #e8edf4;
  --muted: #93a1b5;
  --amber: #ffb100;
  --amber-2: #ffc63d;
  --amber-dim: rgba(255, 177, 0, 0.12);
  --green: #22c55e;
  --radius: 18px;
  --shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.55);
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

::selection { background: var(--amber); color: #0b1017; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; }

h1 em, h2 em, .cta-banner em {
  font-style: normal;
  color: var(--amber);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-2);
  background: var(--amber-dim);
  border: 1px solid rgba(255, 177, 0, 0.25);
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px 2px rgba(255, 177, 0, 0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.6; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn-lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-solid {
  background: linear-gradient(135deg, var(--amber), #ff9500);
  color: #100a00;
  box-shadow: 0 10px 30px -8px rgba(255, 155, 0, 0.55);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -10px rgba(255, 155, 0, 0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(255, 177, 0, 0.5); transform: translateY(-3px); }

.btn-dark { background: #0b1017; color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(0,0,0,0.6); }

.btn-outline-dark { border-color: rgba(10, 14, 20, 0.5); color: #14100a; }
.btn-outline-dark:hover { background: rgba(10, 14, 20, 0.08); transform: translateY(-3px); }

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-bolt path {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: boltdraw 1.2s ease forwards, boltfill 0.5s ease 1.1s forwards;
}
@keyframes boltdraw { to { stroke-dashoffset: 0; } }
@keyframes boltfill { to { fill: #ffb100; } }

.preloader-text {
  font-family: var(--font-head);
  font-weight: 700; letter-spacing: 0.35em; font-size: 0.8rem;
  color: var(--muted); margin: 1.1rem 0 0.9rem;
}

.preloader-bar {
  width: 180px; height: 3px; margin-inline: auto;
  background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%; width: 0;
  background: var(--amber);
  animation: loadbar 1.4s ease forwards;
}
@keyframes loadbar { to { width: 100%; } }

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--amber), #ff8a00);
  z-index: 900;
  box-shadow: 0 0 12px rgba(255, 177, 0, 0.6);
}

/* ── Navbar ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 1.1rem 0;
  transition: padding 0.3s, background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 0.65rem 0;
  background: rgba(11, 16, 23, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; }

.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--amber), #ff9500);
  display: grid; place-items: center;
  box-shadow: 0 8px 22px -6px rgba(255, 155, 0, 0.55);
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; }
.brand-text small { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links > a:not(.btn) {
  font-size: 0.92rem; font-weight: 500; color: var(--muted);
  transition: color 0.2s; position: relative; padding: 0.3rem 0;
}
.nav-links > a:not(.btn):hover, .nav-links > a.active { color: var(--text); }
.nav-links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--amber); border-radius: 2px; transition: width 0.25s;
}
.nav-links > a:not(.btn):hover::after, .nav-links > a.active::after { width: 100%; }

.nav-cta { padding: 0.6rem 1.2rem; font-size: 0.88rem; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin: 5px 0;
  background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background:
    radial-gradient(1000px 600px at 78% 30%, rgba(255, 177, 0, 0.09), transparent 60%),
    radial-gradient(800px 500px at 15% 85%, rgba(38, 99, 235, 0.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}

#scene3d {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,16,23,0.92) 0%, rgba(11,16,23,0.55) 38%, rgba(11,16,23,0) 62%),
    linear-gradient(0deg, var(--bg) 0%, transparent 22%);
}

.hero-grid { position: relative; z-index: 2; padding: 8.5rem 0 5rem; }

.hero-copy { max-width: 620px; }

.hero-sub { font-size: 1.13rem; color: var(--muted); margin: 1.4rem 0 2.1rem; max-width: 540px; }
.hero-sub strong { color: var(--text); }

.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.4rem;
  margin-top: 3rem; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 800;
  color: var(--amber);
}
.hero-stats span { font-size: 0.82rem; color: var(--muted); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 3; opacity: 0.7;
}
.mouse {
  display: block; width: 26px; height: 42px;
  border: 2px solid var(--muted); border-radius: 14px; position: relative;
}
.wheel {
  position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 3px; background: var(--amber);
  animation: wheel 1.8s infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ── Marquee ── */
.marquee {
  overflow: hidden; white-space: nowrap;
  background: var(--amber);
  padding: 0.85rem 0;
  transform: rotate(-0.6deg) scale(1.01);
  border-block: 3px solid #0b1017;
}
.marquee-track { display: inline-flex; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.06em; color: #14100a; text-transform: uppercase;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections ── */
.section { padding: 6.5rem 0; position: relative; }

.section-head { max-width: 640px; margin-bottom: 3.4rem; }

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4.5rem; align-items: center;
}

/* ── About ── */
.about { background: var(--bg-2); }

.about-media { position: relative; }

.about-photo-main img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/4.6; object-fit: cover;
}

.about-photo-float {
  position: absolute; right: -8%; bottom: -10%;
  width: 52%;
  border: 6px solid var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo-float img { aspect-ratio: 1.25; object-fit: cover; }

.about-badge {
  position: absolute; top: -1.4rem; left: -1.4rem;
  background: linear-gradient(135deg, var(--amber), #ff9500);
  color: #14100a;
  border-radius: 16px;
  padding: 0.9rem 1.3rem;
  text-align: center;
  font-family: var(--font-head);
  box-shadow: 0 14px 34px -8px rgba(255, 155, 0, 0.55);
  animation: floaty 4.5s ease-in-out infinite;
}
.about-badge strong { display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; }
.about-badge span { font-size: 1.7rem; font-weight: 800; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.about-copy p { color: var(--muted); margin-bottom: 1rem; }
.about-copy p strong { color: var(--text); }
.about-copy h2 { margin-bottom: 1.4rem; }

.checklist { margin: 1.6rem 0 2rem; display: grid; gap: 0.7rem; }
.checklist li { display: flex; align-items: center; gap: 0.7rem; font-weight: 500; }
.checklist li::before {
  content: "✓";
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--amber-dim); color: var(--amber);
  border: 1px solid rgba(255, 177, 0, 0.4);
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 800;
}

.about-owner {
  display: flex; align-items: center; gap: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1rem 1.2rem;
  border-radius: 14px;
}
.owner-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), #ff9500);
  color: #14100a;
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  display: grid; place-items: center;
}
.about-owner strong { display: block; font-family: var(--font-head); }
.about-owner span { font-size: 0.82rem; color: var(--muted); }
.about-owner .btn { margin-left: auto; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(262px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  border-color: rgba(255, 177, 0, 0.45);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

.service-img { height: 170px; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
  filter: saturate(0.9);
}
.service-card:hover .service-img img { transform: scale(1.08); }

.service-body { padding: 1.4rem 1.4rem 1.6rem; }

.service-icon {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px;
  font-size: 1.35rem;
  background: var(--amber-dim);
  border: 1px solid rgba(255, 177, 0, 0.3);
  border-radius: 13px;
  margin-top: -2.9rem;
  margin-bottom: 0.9rem;
  position: relative;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.6);
  background-color: rgba(20, 26, 36, 0.85);
}

.service-body h3 { font-size: 1.12rem; margin-bottom: 0.55rem; }
.service-body p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }

.service-link {
  font-family: var(--font-head);
  font-size: 0.86rem; font-weight: 600; color: var(--amber);
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { color: var(--amber-2); }

/* ── Why us ── */
.why { background: var(--bg-2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
}

.why-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  transition: transform 0.3s, border-color 0.3s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(255, 177, 0, 0.4); }
.why-card span { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; }
.why-card h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.why-card p { font-size: 0.9rem; color: var(--muted); }

.process { margin-top: 4.5rem; }
.process-title {
  font-size: 1.25rem; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.process-title::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}
.process-steps li {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.1rem;
}
.process-steps li strong {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 800;
  color: var(--amber); letter-spacing: 0.1em;
}
.process-steps li span {
  display: block; font-family: var(--font-head); font-weight: 600;
  margin: 0.35rem 0 0.4rem; font-size: 0.98rem;
}
.process-steps li p { font-size: 0.82rem; color: var(--muted); }

/* ── Brands ── */
.brands { padding: 4rem 0; border-block: 1px solid var(--line); }
.brands-title {
  text-align: center; font-family: var(--font-head); font-weight: 600;
  color: var(--muted); font-size: 0.95rem; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.8rem;
}
.brands-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.9rem 1.1rem;
}
.brands-row span {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.55rem 1.2rem; border-radius: 100px;
  transition: color 0.25s, border-color 0.25s, transform 0.25s;
}
.brands-row span:hover { color: var(--amber); border-color: rgba(255,177,0,0.5); transform: translateY(-3px); }
.brands-note { text-align: center; font-size: 0.72rem; color: #5b6a80; margin-top: 1.6rem; }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery-grid figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s; filter: saturate(0.92);
}
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.1rem 0.9rem;
  background: linear-gradient(transparent, rgba(8, 12, 18, 0.92));
  font-family: var(--font-head); font-size: 0.88rem; font-weight: 600;
}
.gallery-note { margin-top: 1.4rem; font-size: 0.78rem; color: #5b6a80; }
.gallery-note code { color: var(--muted); }

/* ── Reviews ── */
.reviews { background: var(--bg-2); }

.reviews-score {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem;
  text-align: center;
}
.score-big {
  font-family: var(--font-head); font-size: 4.2rem; font-weight: 800;
  color: var(--amber); line-height: 1;
}
.score-big span { font-size: 1.5rem; color: var(--muted); font-weight: 600; }
.score-stars { font-size: 1.6rem; color: var(--amber); letter-spacing: 0.2em; margin: 0.6rem 0 0.4rem; }
.star-dim { opacity: 0.25; }
.reviews-score > p { color: var(--muted); font-size: 0.92rem; }
.reviews-score .btn { margin-top: 1.6rem; }

.score-trend { margin-top: 1.6rem; }
.trend-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.trend-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 6px; height: 52px; margin-top: 0.7rem;
}
.trend-bars i {
  width: 14px; height: var(--h);
  background: linear-gradient(180deg, var(--amber), rgba(255,177,0,0.35));
  border-radius: 4px 4px 0 0;
}

.reviews-quotes { display: grid; gap: 1.4rem; }

.review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.review-stars { color: var(--amber); letter-spacing: 0.18em; margin-bottom: 0.8rem; }
.review-card > p { font-size: 1.25rem; font-family: var(--font-head); font-weight: 600; margin-bottom: 0.9rem; }
.review-card footer { color: var(--muted); font-size: 0.88rem; }

.review-cta h3 { margin-bottom: 0.5rem; }
.review-cta p { font-size: 0.95rem !important; font-family: var(--font-body) !important; font-weight: 400 !important; color: var(--muted); margin-bottom: 1.2rem !important; }

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(120deg, var(--amber) 0%, #ff9500 60%, #ff8000 100%);
  color: #14100a;
  padding: 3.8rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "⚡";
  position: absolute; right: -1rem; top: -3rem;
  font-size: 16rem; opacity: 0.12; transform: rotate(12deg);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; position: relative;
}
.cta-banner h2 { margin-bottom: 0.4rem; }
.cta-banner em { color: #14100a; text-decoration: underline; text-decoration-color: rgba(20,16,10,0.35); text-underline-offset: 6px; }
.cta-banner p { font-weight: 500; opacity: 0.85; }
.cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ── Contact ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 1.6rem; margin-bottom: 1.6rem;
}

.contact-info {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid; gap: 1.6rem; align-content: start;
}
.info-row { display: flex; gap: 1rem; }
.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.25rem;
  background: var(--amber-dim);
  border: 1px solid rgba(255, 177, 0, 0.3);
  border-radius: 13px;
}
.info-row strong { font-family: var(--font-head); display: block; margin-bottom: 0.2rem; }
.info-row p { color: var(--muted); font-size: 0.93rem; }
.info-row a { color: var(--amber); font-weight: 600; }
.info-row small { color: #5b6a80; }

.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.4rem; }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; margin-bottom: 0.4rem; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 177, 0, 0.15);
}
.field select option { background: var(--bg-3); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  display: block; width: 100%; height: 380px; border: 0;
  filter: grayscale(0.35) contrast(1.05);
  background: #1a2432;
}
.map-link {
  display: block; text-align: center;
  padding: 0.9rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  color: var(--amber);
  border-top: 1px solid var(--line);
  transition: background 0.2s;
}
.map-link:hover { background: rgba(255, 177, 0, 0.07); }

/* ── Footer ── */
.footer {
  background: #080c12;
  border-top: 1px solid var(--line);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1.1rem; max-width: 300px; }
.footer-col h4 {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--amber); margin-bottom: 1.1rem;
}
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 0.9rem; margin-bottom: 0.55rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.8rem; color: #5b6a80;
}

/* ── Floating widgets ── */
.wa-float {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 700;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37, 211, 102, 0.55);
  transition: transform 0.25s;
  animation: floaty 3.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }

.to-top {
  position: fixed; right: 1.6rem; bottom: 5.8rem; z-index: 700;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--panel); color: var(--text);
  border: 1px solid var(--line);
  font-size: 1.1rem; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { border-color: var(--amber); color: var(--amber); }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .about-badge, .wa-float, .eyebrow-dot, .wheel { animation: none !important; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { max-width: 520px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(11,16,23,0.9) 0%, rgba(11,16,23,0.7) 55%, rgba(11,16,23,0.35) 100%),
      linear-gradient(0deg, var(--bg) 0%, transparent 22%);
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 82vw);
    background: rgba(13, 19, 28, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.4rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--line);
    z-index: -1;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a:not(.btn) { font-size: 1.1rem; }

  .hero-grid { padding-top: 7rem; }
  .hero-stats { gap: 1.6rem 2.2rem; }
  .section { padding: 4.5rem 0; }
  .about-photo-float { right: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .about-owner { flex-wrap: wrap; }
  .about-owner .btn { margin-left: 0; }
}
