/* ══════════════════════════════════════════
   MULTISIGNS — Shared Stylesheet
   ══════════════════════════════════════════ */

/* ── FONTS & ICONS (imported via HTML <link>) ── */

:root {
  --white: #ffffff;
  --snow: #f9f8f6;
  --cream: #f2f0ec;
  --light: #e8e5df;
  --rule: #d4d0c8;
  --mid: #9a9690;
  --steel: #5c5a56;
  --gun: oklch(0.18 0.03 50);
  --charcoal: oklch(0.12 0.015 60);
  --black: oklch(0.1 0.01 50);
  --ink: #252320;
  --copper: oklch(0.78 0.12 85);
  --copper-l: oklch(0.88 0.1 85);
  --gold-rgb: 218, 175, 100;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overflow-y: overlay;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--background);
  color: var(--foreground);
  cursor: default;
  overflow-x: clip;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Ensure footer acts perfectly */
footer {
  position: relative;
  width: 100%;
  margin-top: auto;
}



/* ── CURSOR ── */
.cursor,
.cursor-follower {
  display: none;
}

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, oklch(0.12 0.01 60) 0%, oklch(0.18 0.04 55) 50%, oklch(0.12 0.02 70) 100%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  line-height: 1;
  opacity: 0;
  animation: loaderIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.loader-logo img {
  width: min(72vw, 560px);
  height: auto;
  display: block;
}

.loader-rule {
  display: none;
}

.loader-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.10rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bcbcbc;
  text-align: center;
  margin-top: 1.2rem;
  margin-right: -0.5em;
  /* Offset trailing letter-spacing to perfectly center */
  opacity: 0;
  animation: fadeUp 0.8s ease 1.5s forwards;
}

@keyframes loaderIn {
  from {
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes ruleEx {
  from {
    width: 0;
  }

  to {
    width: 280px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 0.5s;
}

nav.scrolled {
  background: linear-gradient(160deg, oklch(0.12 0.01 60) 0%, oklch(0.18 0.04 55) 50%, oklch(0.12 0.02 70) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ── NAV LOGO ── */
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s, opacity 0.3s;
}

.nav-logo:hover {
  opacity: 0.82;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-logo:hover img {
  transform: scale(1.06);
}



.nav-logo em {
  color: var(--copper);
  font-style: normal;
}

/* ── NAV LINKS — Sirnik-style vertical text-slide ── */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  position: relative;
  align-items: center;
}

/* Gliding hover underline indicator */
.nav-indicator {
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
  transition: width 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.22s ease;
  opacity: 0;
  pointer-events: none;
  width: 0;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  overflow: hidden;
  height: 1.15em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s;
}

/* The two text spans inside each link for slide-up effect */
.nav-links a .nav-txt-top {
  display: block;
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
  white-space: nowrap;
  color: inherit;
}

.nav-links a .nav-txt-bot {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
  color: var(--copper);
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
}

/* On hover: slide both up */
.nav-links li:hover>a .nav-txt-top {
  transform: translateY(-100%);
}

.nav-links li:hover>a .nav-txt-bot {
  transform: translateY(-100%);
}

/* Default (transparent header) states */
.nav-links a:hover {
  color: var(--white);
}

.nav-links li.active-item>a .nav-txt-top {
  color: var(--white);
}

/* Active dot — placed on the li, not the a, to avoid overflow:hidden clipping */
.nav-links li.active-item>a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
}

/* Scrolled (charcoal bg) states */
nav.scrolled {
  background: linear-gradient(160deg, oklch(0.12 0.01 60) 0%, oklch(0.18 0.04 55) 50%, oklch(0.12 0.02 70) 100%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



















/* ── Dark nav pages ── */
.nav-dark {
  background: linear-gradient(160deg, oklch(0.12 0.01 60) 0%, oklch(0.18 0.04 55) 50%, oklch(0.12 0.02 70) 100%);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav-dark .nav-logo {
  color: var(--white);
}

.nav-dark .nav-logo em {
  color: var(--copper);
}

.nav-dark .nav-links a {
  color: rgba(255, 255, 255, 0.7);
}

.nav-dark .nav-links a:hover {
  color: var(--white);
}

.nav-dark .nav-links a .nav-txt-bot {
  color: var(--copper);
}

.nav-dark .nav-links li.active-item>a .nav-txt-top {
  color: var(--white);
}

.nav-dark .nav-links li.active-item>a::before {
  background: var(--copper);
}

.nav-dark .nav-cta {
  background: var(--copper);
  color: var(--white);
}

.nav-dark .hamburger span {
  background: var(--background);
}

/* ── CTA Button ── */
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gun);
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.6rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.nav-cta:hover::before {
  transform: scaleX(1);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--gold-rgb), 0.28);
}



/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--background);
  transition: all 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  transform-origin: center;
}



.nav-dark .hamburger span {
  background: var(--background);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, oklch(0.12 0.01 60) 0%, oklch(0.18 0.04 55) 50%, oklch(0.12 0.02 70) 100%);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  animation: mMenuIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mMenuIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  height: 1em;
  transition: color 0.3s;
}

.mobile-menu a::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--copper);
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu a .mm-txt {
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
  display: block;
}

.mobile-menu a:hover .mm-txt {
  transform: translateY(-100%);
}

.mobile-menu a:hover::before {
  transform: translateY(-100%);
}

.mobile-menu a:hover {
  color: var(--copper);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.mobile-close:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: rotate(90deg);
}

/* ── FLOAT WA ── */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.wa-bubble {
  border-radius: 999px;
  background: var(--background);
  border: 1px solid var(--rule);
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  color: var(--muted-fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  opacity: 0;
  display: none;
}

.wa-bubble.show {
  display: block;
  animation: bubIn 0.3s ease forwards;
}

@keyframes bubIn {
  from {
    opacity: 0;
    transform: translateX(15px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.wa-btn {
  width: 52px;
  height: 52px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.35rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.vis {
  opacity: 1;
  transform: none;
}

.rev-l {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rev-l.vis {
  opacity: 1;
  transform: none;
}

.rev-r {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rev-r.vis {
  opacity: 1;
  transform: none;
}

.stagger>* {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger.vis>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s
}

.stagger.vis>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .08s
}

.stagger.vis>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .16s
}

.stagger.vis>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .24s
}

.stagger.vis>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .32s
}

.stagger.vis>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: .4s
}

.stagger.vis>*:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: .48s
}

.stagger.vis>*:nth-child(8) {
  opacity: 1;
  transform: none;
  transition-delay: .56s
}

.stagger.vis>*:nth-child(9) {
  opacity: 1;
  transform: none;
  transition-delay: .64s
}

/* ── SECTIONS ── */
section {
  padding: 4rem 0;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 5%;
}

.label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1.00rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--copper);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--copper);
  display: block;
}

.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--copper);
  display: block;
}

h2.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--foreground);
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  /* Removes the hard uppercase style */
}

h2.title .ghost {
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
}

h2.title .copper {
  background: linear-gradient(135deg, oklch(0.62 0.14 75), var(--copper), var(--copper-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.rule {
  width: 48px;
  height: 2px;
  background: var(--copper);
  margin: 1.8rem 0;
}

.body-text {
  font-family: 'DM Sans', sans-serif;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1.125rem;
  max-width: 800px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(160deg, oklch(0.12 0.01 60) 0%, oklch(0.18 0.04 55) 50%, oklch(0.12 0.02 70) 100%);
  padding: 10rem 0 6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.08) 0%, transparent 60%);
}

.page-hero-watermark {
  position: absolute;
  right: 3%;
  bottom: -1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(5rem, 14vw, 14rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.page-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.page-hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--copper);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.page-hero h1 .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
}

.page-hero h1 .copper {
  background: linear-gradient(135deg, oklch(0.62 0.14 75), var(--copper), var(--copper-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  max-width: 520px;
  line-height: 1.75;
  margin-top: 1.5rem;
}

/* ── COUNTERS ── */
#counters {
  background: var(--gun);
  padding: 0;
}

.counters-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ctr {
  padding: 4rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
  position: relative;
}

.ctr:last-child {
  border-right: none;
}

.ctr::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width 0.5s ease;
}

.ctr:hover::after {
  width: 50%;
}

.ctr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.ctr-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--white);
  line-height: 1;
}

.ctr-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.33);
  margin-top: 0.6rem;
}

/* ── SERVICES ── */
#services {
  background: var(--background);
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
}

.scard {
  background: transparent;
  padding: 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: auto;
  transition: background 0.3s;
}

.scard:hover {
  background: var(--background);
}

.scard::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: var(--copper);
  transition: height 0.4s ease;
}

.scard:hover::after {
  height: 100%;
}

.snum {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--light);
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  transition: color 0.3s;
  letter-spacing: -0.02em;
}

.scard:hover .snum {
  color: rgba(var(--gold-rgb), 0.1);
}

.sicon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  transition: border-color 0.3s, background 0.3s;
  color: var(--mid);
}

.scard:hover .sicon {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(var(--gold-rgb), 0.06);
}

.sname {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 1rem;
  padding-top: 15rem;
}

.sdesc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted-fg);
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}

.img-card {
  position: relative;
  overflow: hidden;
  color: white;
}

.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 0;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.img-card .content {
  position: relative;
  z-index: 2;
}

.img-card .sname,
.img-card .sdesc {
  color: white;
}

.img-card:hover .card-bg {
  transform: scale(1.1);
}

/* ── COVERAGE ── */
/* ── COVERAGE MARQUEE ── */
.regions-strip {
  margin-top: 2rem;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.regions-lbl-wrap {
  margin-bottom: 2.5rem;
  text-align: center;
}

.regions-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--copper);
}

.marquee-window {
  width: 100%;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  padding-left: 2rem;
  animation: scrollMarquee 20s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

.rtag {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  background: var(--card);
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  color: var(--fg);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.rtag img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--copper);
  background: var(--cream);
}

.rtag:hover {
  border-color: var(--copper);
  background: rgba(var(--gold-rgb), 0.05);
  color: var(--copper);
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ── INFRASTRUCTURE ── */
#infrastructure {
  background: transparent;
}

.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
}

.machines {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
}

.mitem {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.3s;
  cursor: default;
}

.mitem:first-child {
  border-top: 1px solid var(--rule);
}

.mitem:hover {
  padding-left: 0.8rem;
}

.mmark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.mitem:hover .mmark {
  transform: scale(1.6);
}

.mname {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted-fg);
  transition: color 0.3s;
  letter-spacing: 0.03em;
  font-family: 'DM Sans', sans-serif;
}

.mitem:hover .mname {
  color: var(--foreground);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.gcell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--light);
}

.gcell:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gcell:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gcell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.05);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.gcell:hover img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

.gcell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--gold-rgb), 0);
  transition: background 0.4s;
}

.gcell:hover .gcell-overlay {
  background: rgba(var(--gold-rgb), 0.08);
}

/* ── PROCESS ── */
#process {
  background: var(--background);
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-header .label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--copper);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--copper);
  display: block;
}

.pstep:hover {
  background: var(--background);
}

.pnode {
  width: 46px;
  height: 46px;
  background: var(--background);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mid);
  margin-bottom: 1.2rem;
  transition: all 0.35s;
}

.pstep:hover .pnode {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(var(--gold-rgb), 0.06);
  transform: scale(1.08);
}

.ptitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1.4;
  transition: color 0.3s;
}

.pstep:hover .ptitle {
  color: var(--foreground);
}

.timeline-callout {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: var(--gun);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.tcall-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

.tcall-val {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
}

.tcall-accent {
  color: var(--copper);
}

/* ── CLIENTS ── */
#clients {
  background: transparent;
  padding: 0.01rem 0 5rem;
}

.clients-top {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--rule);
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  margin: 0 auto 2rem;
  background: var(--background);
}

.trust-badge span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
}

.tdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

.slider-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.clogo {
  width: 200px;
  padding: 2.2rem 2.5rem;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
  cursor: default;
}

.clogo:hover {
  background: var(--background);
}

.clogo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--rule);
  transition: color 0.3s;
}

.clogo:hover .clogo-text {
  color: var(--gun);
}

/* ── FEATURES ── */
#features, #home-products, #home-cta {
  position: relative;
  background: linear-gradient(160deg, oklch(0.12 0.01 60) 0%, oklch(0.18 0.04 55) 50%, oklch(0.12 0.02 70) 100%);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  grid-auto-rows: 1fr;
}

.fcard {
  background: var(--background);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.fcard:hover {
  background: #ffffff;
  border-color: var(--copper);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(var(--gold-rgb), 0.12);
}

.ficon {
  font-size: 1.8rem;
  color: var(--copper);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.04);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
}

.fcontent {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ftitle {
  font-family: \'Playfair Display\', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.6rem;
}

.fdesc {
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.5;
  max-width: 95%;
  margin: 0;
}

.fhighlight {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  background: rgba(var(--gold-rgb), 0.05);
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.02);
}

/* ── CONTACT ── */
#contact {
  background: transparent;
}

#contact .container {
  max-width: 1455px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left {
  background: linear-gradient(165deg, #22211e 0%, #181715 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  border-radius: 18px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.contact-left .title {
  color: var(--white) !important;
}

.contact-left .body-text {
  color: rgba(255, 255, 255, 0.65) !important;
}

.contact-left .label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--copper);
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--copper);
  display: block;
}

.cinfo-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 2rem;
  margin-top: 3rem;
}

.cinfo-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.cinfo-item:hover {
  border-color: rgba(var(--gold-rgb), 0.7);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.cinfo-wide {
  grid-column: 1 / -1;
}

.cinfo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--copper);
  background: rgba(var(--gold-rgb), 0.08);
  transition: all 0.3s;
}

.cinfo-item:hover .cinfo-icon {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.cinfo-lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-l);
  margin-bottom: 0.28rem;
}

.cinfo-val {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

.cinfo-val a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  transition: color 0.3s;
}

.cinfo-val a:hover {
  color: var(--copper-l);
}

.cactions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

.cbtn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--rule);
  color: var(--muted-fg);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.cbtn i {
  font-size: 0.7rem;
}

.cbtn:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.cbtn-wa {
  background: #25d366;
  border-color: #25d366;
  color: var(--white) !important;
}

.cbtn-wa:hover {
  background: #20c45d;
  border-color: #20c45d;
  color: var(--white) !important;
}

.cmap {
  margin-top: 1.4rem;
  height: 240px;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.10);
  position: relative;
}

.cmap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 1;
}

.cmap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(1.05) contrast(1.05);
}

#contact-map-section {
  background: var(--background);
  padding-top: 4rem;
}

#contact-map-section .cmap {
  max-width: 980px;
  margin: 1.5rem auto 0;
  height: 340px;
}

.form-wrap {
  background: var(--background);
  border: 1px solid var(--rule);
  padding: 3rem 2.8rem;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 2rem;
}

.fgroup {
  margin-bottom: 1.4rem;
}

.flabel {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 0.5rem;
}

.finput,
.ftextarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--foreground);
  padding: 0.85rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  cursor: text;
}

.finput:focus,
.ftextarea:focus {
  border-color: var(--copper);
  background: var(--background);
}

.finput::placeholder,
.ftextarea::placeholder {
  color: var(--rule);
}

.ftextarea {
  resize: vertical;
  min-height: 110px;
}

.fsubmit {
  width: 100%;
  background: var(--gun);
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: -0.3rem;
}

.fsubmit:hover {
  background: var(--copper);
  transform: translateY(-1px);
}

/* ── CONTACT QUOTE FORM REFRESH ── */
#contact .form-wrap,
.enq-box {
  background: linear-gradient(180deg, #ffffff 0%, var(--background) 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.32);
  border-radius: 20px;
  padding: calc(1.76rem - 6.25px) 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

#contact .form-wrap::before,
.enq-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-l), var(--copper));
}

#contact .finput,
#contact .ftextarea,
.enq-box .finput,
.enq-box .ftextarea {
  background: #ffffff;
}

#contact .form-title,
.enq-box .form-title {
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.28rem;
}

#contact .fgroup,
.enq-box .fgroup {
  margin-bottom: 0.8rem;
}

#contact .finput,
#contact .ftextarea,
.enq-box .finput,
.enq-box .ftextarea {
  background: var(--background);
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  border-radius: 12px;
  padding: 0.72rem 1rem;
}

#contact select.finput,
.enq-box select.finput {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 2.6rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--copper) 50%),
    linear-gradient(135deg, var(--copper) 50%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--background) 100%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

#contact select.finput option,
.enq-box select.finput option {
  color: var(--foreground);
  background: var(--background);
}

#contact .finput:focus,
#contact .ftextarea:focus,
.enq-box .finput:focus,
.enq-box .ftextarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.14);
}

#contact .fsubmit,
.enq-box .fsubmit {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper-l) 0%, var(--copper) 100%);
  color: #1f1c16;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 0.72rem;
  padding: 0.9rem;
}

#contact .fsubmit:hover {
  background: linear-gradient(135deg, #eee0be 0%, #c6a16e 100%);
  transform: translateY(-2px);
}

#contact .cactions {
  margin-top: 1.3rem;
}

#contact .cbtn {
  border-radius: 999px;
  padding: 0.52rem 1rem;
}

#contact .cnote {
  margin-top: 0.9rem;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: linear-gradient(160deg, oklch(0.12 0.01 60) 0%, oklch(0.18 0.04 55) 50%, oklch(0.12 0.02 70) 100%);
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2rem;
}

.fbrand .flogo {
  display: block;
  margin-bottom: 1rem;
}

.fbrand .flogo img {
  height: 40px;
  width: auto;
  display: block;
}

.fbrand p {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.7;
  max-width: 300px;
  font-family: 'DM Sans', sans-serif;
}

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.sbtn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.sbtn:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.fcol h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
}

.fcol ul {
  list-style: none;
}

.fcol ul li {
  margin-bottom: 0.7rem;
}

.fcol ul a {
  font-size: 0.87rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.3s;
}

.fcol ul a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.fcopy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.05em;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, oklch(0.62 0.14 75), var(--copper), var(--copper-l));
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;

}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.32);
}

.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2.5rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.btn-ghost:hover {
  border-color: #c6a34e;
  color: var(--copper);
  transform: translateY(-2px);
}

/* ── ENQUIRY POPUP ── */
.enq-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.enq-modal.show {
  display: flex;
}

.enq-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 12, 0.65);
  backdrop-filter: blur(3px);
}

.enq-box {
  position: relative;
  z-index: 1;
  width: min(92vw, 560px);
  /* The rest of .enq-box styles (background, borders) are pulled from #contact .form-wrap */
}

.enq-form-box {
  padding: 0.5rem 0;
  /* Adjusted since .enq-box has padding now */
}

.enq-form-box .form-title {
  margin-bottom: 1.2rem;
}

.enq-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  border-radius: 50%;
  background: var(--background);
  color: var(--muted-fg);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
  z-index: 10;
}

.enq-close:hover {
  border-color: var(--copper);
  color: var(--copper);
  transform: rotate(90deg);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {


  .infra-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem
  }

  .cinfo-items {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-head {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .counters-inner {
    grid-template-columns: 1fr 1fr
  }

  .ctr:nth-child(2) {
    border-right: none
  }

  .ctr:nth-child(3),
  .ctr:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.07)
  }

  .ctr:nth-child(4) {
    border-right: none
  }

  .feat-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem
  }

  .ptrack {
    flex-wrap: wrap
  }

  .ptrack::before {
    display: none
  }

  .pstep {
    width: calc(33.333% - 1px);
    flex: none
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-cta {
    display: none
  }

  .hamburger {
    display: flex
  }

  section {
    padding: 5rem 0
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .gallery {
    grid-template-columns: 1fr 1fr
  }

  .feat-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .pstep {
    width: calc(50% - 1px)
  }
}

/* Restore root scope */


.contact-left {
  background: linear-gradient(165deg, #22211e 0%, #181715 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  border-radius: 18px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.contact-left .title {
  color: var(--white) !important;
}

.contact-left .body-text {
  color: rgba(255, 255, 255, 0.65) !important;
}

.hero-content {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: rgba(198, 163, 78, .70);
  margin-bottom: 16px;
}

.hero-desc {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted-fg);
  font-size: clamp(0.945rem, 1.68vw, 1.05rem);
  line-height: 1.6;
}

.shimmer-line {
  width: 64px;
  height: 2px;
  background: var(--gold-shimmer);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }
}

/* ── HOME ABOUT TITLE OVERRIDE ── */
#home-about .services-head {
  align-items: flex-start;
}

#home-about .title {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: -0.3rem;
}

#home-about .title span.text-gold-gradient {
  display: inline-block;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
}

/* ── HEADER PARTICLES ── */
.nav-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.nav-particles .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(198, 163, 78, 0.4);
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(198, 163, 78, 0.2);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ── GENERIC PARTICLES ── */
.particle-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle-container .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(198, 163, 78, 0.4);
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(198, 163, 78, 0.2);
}
/* Theatre Marquee Hero styles from logo.html */
.theatre-screen {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  padding: 0;
  transform: none;
  margin-top: 3rem;
  overflow: hidden;
}

.row { overflow: hidden; }
.track {
  display: flex;
  width: max-content;
  gap: 12px;
  will-change: transform;
}
.track:hover {
  animation-play-state: paused;
}
.tile {
  height: 80px;
  width: 128px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff; padding: 12px;
  transition: transform 0.3s ease;
}
.tile:hover {
  transform: scale(1.05);
}
.tile img { width: 100%; height: 100%; object-fit: contain; display: block; }

@media (min-width: 768px) {
  .tile { height: 96px; width: 144px; }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.left  { animation: marquee-left  60s linear infinite; }
.right { animation: marquee-right 70s linear infinite; }
.slow  { animation-duration: 90s; }

.vignette-left,
.vignette-right {
  display: none;
}

/* Review Cards Marquee */
.review-marquee-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.review-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: 10px 0;
  will-change: transform;
}

.review-track:hover {
  animation-play-state: paused;
}

.rcard {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.8rem;
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.rcard:hover {
  border-color: rgba(var(--gold-rgb), 0.8);
  transform: translateY(-4px);
}

.rcard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.rcard-user {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.rcard-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-weight: 700;
  font-size: 1.1rem;
}

.rcard-meta h4 {
  color: #111111;
  font-size: 1rem;
  margin-bottom: 0.1rem;
  font-family: 'DM Sans', sans-serif;
}

.rcard-meta p {
  color: #666666;
  font-size: 0.8rem;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

.rcard-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
}

.rcard-icon i {
  color: #4285F4;
  font-size: 14px;
}

.rcard-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.rcard-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.rcard-date {
  font-size: 0.75rem;
  color: #888888;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

/* --- Compact Panels Section --- */
.panels {
  display: flex;
  gap: 10px;
  height: 380px; 
  width: 100%;
}
@media (min-width: 768px) { .panels { height: 440px; } }

.panel {
  position: relative;
  flex: 1 1 0;
  min-width: 50px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
  transition: flex-grow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: flex-grow;
  transform: translateZ(0);
  padding: 0;
}

.panel:hover { flex-grow: 12; }
.panels:not(:hover) .panel:first-child { flex-grow: 12; }

.panel .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,0.6) 0%, rgba(14,13,11,0.1) 60%, transparent 100%);
}

.panel-vertical {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; letter-spacing: 0.15em; font-size: 14px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  transition: opacity 0.2s;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.panel:hover .panel-vertical, 
.panels:not(:hover) .panel:first-child .panel-vertical { opacity: 0; }

.panel-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
  z-index: 5;
  pointer-events: none;
}

.panel:hover .panel-content,
.panels:not(:hover) .panel:first-child .panel-content { 
  opacity: 1; 
  transform: translateY(0);
  pointer-events: auto;
}

.panel-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 22px; font-weight: 800; margin: 0 0 6px; text-transform: capitalize;
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255,255,255,0.6), 0 2px 4px rgba(0,0,0,0.8);
}
@media (min-width: 768px) { .panel-title { font-size: 28px; } }

.panel-desc {
  margin: 0 0 16px; max-width: 18rem; font-size: 14px; line-height: 1.5;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255,255,255,0.4), 0 1px 3px rgba(0,0,0,0.8);
}

.cta {
  display: inline-flex; align-items: center;
  background: var(--copper);
  color: var(--ink);
  font-weight: 700; font-size: 12px;
  padding: 8px 20px; border-radius: 4px; 
  text-decoration: none; width: fit-content;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta:hover {
  background: var(--copper-l);
  transform: translateY(-2px);
}

/* ── QUOTE ANIMATION ── */
.quote-container {
  perspective: 1000px;
}
.animated-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--black), var(--charcoal), var(--gun), var(--black));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  cursor: default;
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: var(--black); }
}

/* ── SERVICE CARD ENHANCEMENTS ── */
.director-card {
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.5s ease;
}

.director-card .overlay {
  transition: opacity 0.5s ease;
}

.director-card:hover .overlay {
  opacity: 0.85;
}

.director-card .icon {
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), color 0.3s ease;
}

.director-card:hover .icon {
  transform: scale(1.2) translateY(-5px);
  color: var(--gold-light) !important;
}

.director-card h3 {
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.director-card:hover h3 {
  transform: translateY(-2px);
}


/* --- Spacing Overrides --- */
#home-products {
  padding-top: 20px;
}
#home-about {
  padding-bottom: 20px;
}
