:root {
  --green-950: #031b15;
  --green-900: #06271f;
  --green-850: #082f25;
  --green-800: #0d3d2e;
  --green-700: #13513e;
  --gold-500: #c9963a;
  --gold-400: #e5bd65;
  --gold-300: #f5dc98;
  --cream: #f6f1e7;
  --cream-2: #fff9ec;
  --charcoal: #111111;
  --ink: #181a17;
  --muted: #b8b2a4;
  --white: #ffffff;
  --shadow: 0 25px 80px rgba(0, 0, 0, .35);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, .18);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1240px;
  --nav-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-500) var(--green-950);
}

body {
  min-height: 100vh;
  background: var(--charcoal);
  color: var(--cream);
  font-family: "Manrope";
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.45) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 10%, rgba(255,255,255,.25) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,.18) 0 1px, transparent 1px);
  background-size: 38px 38px, 57px 57px, 83px 83px;
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top left, rgba(201,150,58,.20), transparent 34%),
    radial-gradient(circle at bottom right, rgba(13,61,46,.82), transparent 42%),
    linear-gradient(135deg, #050806 0%, #111111 42%, #041b15 100%);
}

::selection {
  color: var(--green-950);
  background: var(--gold-400);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--green-950);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-300), var(--gold-500));
  border: 3px solid var(--green-950);
  border-radius: 999px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  box-shadow: 0 0 22px rgba(229, 189, 101, .95);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(229, 189, 101, .78);
  transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease;
}

.cursor-ring.is-hovering {
  width: 56px;
  height: 56px;
  background: rgba(201,150,58,.10);
  border-color: rgba(255, 225, 156, .95);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.section-title {
  font-family: "Bebas Neue";
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .9;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.section-title span,
.gold-text {
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500) 45%, #9d6b1f 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  max-width: 720px;
  color: rgba(246, 241, 231, .78);
  font-size: 1.03rem;
  margin-top: 18px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: transform .55s ease;
}

.btn:hover::before {
  transform: translateX(110%) skewX(-18deg);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  color: #1c1507;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 15px 35px rgba(201,150,58,.28);
}

.btn-ghost {
  color: var(--cream);
  border-color: rgba(229, 189, 101, .52);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  background: rgba(201,150,58,.12);
  border-color: rgba(229, 189, 101, .9);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
  border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
  background: rgba(3, 27, 21, .70);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(229, 189, 101, .18);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
}

.nav-inner {
  width: min(calc(100% - 34px), 1380px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

/* Brand Container Layout Alignment */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Ensure the SVG scales perfectly within your nav height bar */
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
}

/* Tightly stacked uniform vertical text block */
.brand-copy.uniform-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.05; /* Spaces lines tightly and evenly */
  font-family: 'Tinos', serif;
}

/* Style rule applied identically to all three lines */
.brand-copy.uniform-stack span {
  color: var(--gold-400);   /* Set to var(--white) if you prefer all white */
  font-size: 1.1rem;        /* Forces precise identical height for all text lines */
  font-weight: 700;         /* Consistent clean bold weight */
  letter-spacing: 0.1em;    /* Shared elegant letter separation */
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(246, 241, 231, .82);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding-block: 7px;
  transition: color .25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold-400);
  transition: transform .25s ease;
}

.nav-links a:hover {
  color: var(--gold-300);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(229, 189, 101, .35);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255,255,255,.06);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 50px) 0 54px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(3, 27, 21, .96) 0%, rgba(3, 27, 21, .78) 40%, rgba(3, 27, 21, .34) 65%, rgba(3, 27, 21, .80) 100%),
    radial-gradient(circle at 70% 35%, rgba(229, 189, 101, .24), transparent 28%),
    linear-gradient(120deg, #07140f, #13251d 50%, #040806);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .55;
  background:
    linear-gradient(115deg, transparent 0 50%, rgba(201,150,58,.40) 50.15%, transparent 50.8%),
    linear-gradient(118deg, transparent 0 62%, rgba(229,189,101,.25) 62.15%, transparent 62.7%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 85px);
  animation: heroLines 12s ease-in-out infinite alternate;
}

@keyframes heroLines {
  from { transform: translate3d(-20px, 0, 0); }
  to { transform: translate3d(20px, 0, 0); }
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .88;
  background:
    linear-gradient(90deg, rgba(3,27,21,.98), rgba(3,27,21,.24) 56%, rgba(3,27,21,.82)),
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.12), transparent 17%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 950'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23082f25'/%3E%3Cstop offset='1' stop-color='%23031814'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1600' height='950' fill='url(%23g)'/%3E%3Cpath d='M900 120h620v600H900z' fill='%23134537' opacity='.46'/%3E%3Cpath d='M960 180h100v480H960zm130 0h100v480h-100zm130 0h100v480h-100zm130 0h100v480h-100z' fill='%23f8e6b0' opacity='.07'/%3E%3Cpath d='M1000 680h440v52h-440z' fill='%23c9963a' opacity='.38'/%3E%3Cpath d='M920 720h580v90H920z' fill='%23ffffff' opacity='.07'/%3E%3Ccircle cx='1150' cy='260' r='70' fill='%23c9963a' opacity='.13'/%3E%3Cpath d='M0 730c230-80 400-55 590 0 230 70 340 75 530 10 210-70 340-70 480-20v230H0z' fill='%23031b15' opacity='.72'/%3E%3Cpath d='M980 585c95-26 180-26 300 0 75 16 138 18 218-4v175H980z' fill='%23051410' opacity='.70'/%3E%3Cpath d='M1010 585h450' stroke='%23c9963a' stroke-width='5' opacity='.65'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  animation: cinematicPan 18s ease-in-out infinite alternate;
}

@keyframes cinematicPan {
  from { transform: scale(1.05) translateX(-1.2%); }
  to { transform: scale(1.12) translateX(1.2%); }
}

.hero-watermark {
  position: absolute;
  right: -40px;
  bottom: 28px;
  z-index: -1;
  font-family: "Bebas Neue";
  font-size: clamp(8rem, 22vw, 24rem);
  line-height: .8;
  letter-spacing: .05em;
  color: rgba(255,255,255,.035);
  text-transform: uppercase;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

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

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-weight: 900;
  font-size: .8rem;
  margin-bottom: 16px;
}

.hero-kicker .spark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 0 45px rgba(201,150,58,.35);
}

.hero h1 {
  font-family: "Bebas Neue";
  font-size: clamp(5.2rem, 10vw, 11.3rem);
  line-height: .82;
  letter-spacing: .035em;
  text-transform: uppercase;
  max-width: 880px;
  text-wrap: balance;
}

.hero .script {
  display: block;
  font-family: "Tinos", serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: .01em;
  text-transform: none;
  font-size: clamp(3.25rem, 6vw, 7rem);
  line-height: .85;
  margin-top: 6px;
  color: var(--gold-400);
  text-shadow: 0 12px 40px rgba(0,0,0,.34);
}

.hero p {
  max-width: 660px;
  color: rgba(246, 241, 231, .84);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  margin-top: 22px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(229, 189, 101, .24);
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  backdrop-filter: blur(8px);
}

.visual-card.main {
  inset: 8% 0 4% 8%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.4)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 980'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23225b48'/%3E%3Cstop offset='.55' stop-color='%230a2b22'/%3E%3Cstop offset='1' stop-color='%2305110d'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='900' height='980' fill='url(%23a)'/%3E%3Cg opacity='.22' fill='%23fff4cf'%3E%3Crect x='80' y='90' width='220' height='160' rx='12'/%3E%3Crect x='350' y='90' width='470' height='160' rx='12'/%3E%3Crect x='80' y='300' width='740' height='52' rx='8'/%3E%3Crect x='80' y='405' width='300' height='380' rx='18'/%3E%3Crect x='420' y='405' width='400' height='380' rx='18'/%3E%3C/g%3E%3Cpath d='M65 830h770' stroke='%23c9963a' stroke-width='10' opacity='.72'/%3E%3Cpath d='M110 855h680' stroke='%23fff2bd' stroke-width='3' opacity='.6'/%3E%3Ccircle cx='650' cy='260' r='105' fill='%23c9963a' opacity='.14'/%3E%3Cpath d='M0 720c180-72 310-60 470 0 155 58 285 66 430 8v252H0z' fill='%23031814' opacity='.84'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  transform: rotate(2deg);
}

.visual-card.side {
  width: 42%;
  height: 36%;
  left: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(13,61,46,.05), rgba(13,61,46,.82)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 420'%3E%3Crect width='600' height='420' fill='%2317352b'/%3E%3Cpath d='M0 300c100-50 210-48 330 0 80 32 170 36 270 0v120H0z' fill='%23020d0a'/%3E%3Cpath d='M70 95h460v40H70zM70 170h190v110H70zM300 170h230v110H300z' fill='%23f8e9bc' opacity='.16'/%3E%3Cpath d='M70 325h460' stroke='%23c9963a' stroke-width='8'/%3E%3C/svg%3E");
  background-size: cover;
  transform: rotate(-4deg);
}

.visual-card.top {
  width: 36%;
  height: 36%;
  right: 2%;
  top: 1%;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 27, 21, .82);
  transform: rotate(-3deg);
}

.visual-card.top img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(229, 189, 101, .45);
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  color: var(--cream);
  background: rgba(3, 27, 21, .72);
  border: 1px solid rgba(229, 189, 101, .35);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  animation: floatBadge 5s ease-in-out infinite;
}

.floating-badge b {
  display: block;
  line-height: 1.1;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.floating-badge span {
  color: rgba(246,241,231,.72);
  font-size: .78rem;
}

.floating-badge svg {
  color: var(--gold-400);
  flex: 0 0 auto;
}

.badge-one {
  left: -12px;
  top: 22%;
}

.badge-two {
  right: -10px;
  bottom: 18%;
  animation-delay: -1.5s;
}

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

.stats-bar {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), var(--max));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(229, 189, 101, .20);
  border-radius: 24px;
  background: rgba(229, 189, 101, .12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.stat {
  padding: 20px 22px;
  background: rgba(3, 27, 21, .72);
  min-height: 88px;
}

.stat strong {
  display: block;
  font-family: "Bebas Neue";
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: .04em;
  color: var(--gold-400);
}

.stat span {
  display: block;
  color: rgba(246,241,231,.74);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 7px;
}

.gold-marquee-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #8c5f19, var(--gold-500), var(--gold-300), var(--gold-500), #8c5f19);
  color: var(--green-950);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}

.gold-marquee-wrap::before,
.gold-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
}

.gold-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3,27,21,.45), transparent);
}

.gold-marquee-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(3,27,21,.45));
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 17px 16px;
  font-family: "Bebas Neue";
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-row span::before {
  content: "✦";
  margin-right: 32px;
  color: rgba(3, 27, 21, .7);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

section {
  position: relative;
  padding: 110px 0;
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(201,150,58,.10), transparent 30%),
    linear-gradient(180deg, rgba(3,27,21,.45), rgba(3,27,21,.88));
}

.section-cream {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 20%, rgba(201,150,58,.12), transparent 32%),
    linear-gradient(180deg, #fffaf1, #efe7d8);
}

.section-cream .section-lead {
  color: rgba(24,26,23,.68);
}

.section-cream .eyebrow {
  color: #9d6b1f;
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.image-panel {
  min-height: 610px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201,150,58,.30);
  background:
    linear-gradient(160deg, rgba(6,39,31,.08), rgba(6,39,31,.82)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 1000'%3E%3Crect width='800' height='1000' fill='%230d3d2e'/%3E%3Cg opacity='.20'%3E%3Cpath d='M80 100h640v120H80zM80 270h640v55H80zM80 380h280v420H80zM410 380h310v420H410z' fill='%23fff6d8'/%3E%3C/g%3E%3Cpath d='M0 720c140-90 260-85 415 0 125 70 255 70 385 0v280H0z' fill='%23031814' opacity='.82'/%3E%3Cpath d='M80 845h640' stroke='%23c9963a' stroke-width='10' opacity='.8'/%3E%3Ccircle cx='590' cy='205' r='95' fill='%23c9963a' opacity='.12'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(246,241,231,.24);
  border-radius: 24px;
  pointer-events: none;
}

.corner-accent {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(310px, calc(100% - 56px));
  padding: 22px;
  border-radius: 22px;
  background: rgba(3,27,21,.80);
  border: 1px solid rgba(229,189,101,.42);
  backdrop-filter: blur(18px);
  color: var(--cream);
}

.corner-accent strong {
  display: block;
  color: var(--gold-400);
  font-family: "Bebas Neue";
  font-size: 2.2rem;
  letter-spacing: .04em;
  line-height: 1;
}

.corner-accent span {
  display: block;
  color: rgba(246,241,231,.78);
  font-size: .93rem;
  margin-top: 8px;
}

.about-content .section-title {
  max-width: 720px;
}

.pillar-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pillar {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(13,61,46,.12);
  box-shadow: 0 14px 34px rgba(0,0,0,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,.12);
}

.pillar .icon,
.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green-800);
  color: var(--gold-400);
  margin-bottom: 14px;
  box-shadow: inset 0 0 0 1px rgba(229,189,101,.30);
  font-size: 1.25rem; /* Ensures emoji sizing is balanced */
}

.pillar h3 {
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--green-900);
}

.pillar p {
  color: rgba(24,26,23,.66);
  font-size: .94rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.section-head .section-lead {
  max-width: 480px;
  margin-top: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 245px;
  padding: 26px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
    rgba(255,255,255,.04);
  border: 1px solid rgba(229,189,101,.17);
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(76%);
  background: linear-gradient(180deg, rgba(19,81,62,.18), rgba(13,61,46,.96));
  transition: transform .35s ease;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201,150,58,.28), transparent 60%);
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(229,189,101,.54);
  box-shadow: 0 24px 70px rgba(0,0,0,.36);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card h3 {
  font-family: "Bebas Neue";
  font-size: 2rem;
  letter-spacing: .05em;
  line-height: .96;
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(246,241,231,.72);
  font-size: .94rem;
}

.service-card .mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

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

.gallery-card {
  position: relative;
  min-height: 310px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(13,61,46,.13);
  background: #151515;
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  isolation: isolate;
}

.gallery-card::before,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: filter .45s ease, clip-path .45s ease, transform .45s ease;
  transform: scale(1.05);
}

.gallery-card::before {
  background-image: var(--before-img);
  filter: grayscale(1) contrast(1.12) brightness(.72);
}

.gallery-card::after {
  background-image: var(--after-img);
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 45% 100%);
  filter: saturate(1.15) contrast(1.02);
}

.gallery-card:hover::before,
.gallery-card:hover::after {
  transform: scale(1.12);
}

.gallery-card:hover::before {
  filter: grayscale(0) contrast(1.05) brightness(.85);
}

.gallery-card:hover::after {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 5% 100%);
}

.gallery-label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(3,27,21,.82);
  color: var(--gold-400);
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(229,189,101,.28);
  backdrop-filter: blur(10px);
}

.ba-tag {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 9px;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ba-before {
  left: 14px;
  color: var(--cream);
  background: rgba(0,0,0,.64);
}

.ba-after {
  right: 14px;
  color: var(--green-950);
  background: var(--gold-400);
}

.gallery-card[data-type="office"] {
  --before-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Crect width='600' height='500' fill='%233d3d3d'/%3E%3Cpath d='M55 95h490v95H55zM55 240h220v160H55zM325 240h220v160H325z' fill='%23868686'/%3E%3Cg fill='%23141414' opacity='.8'%3E%3Ccircle cx='100' cy='415' r='18'/%3E%3Ccircle cx='170' cy='370' r='13'/%3E%3Ccircle cx='265' cy='435' r='16'/%3E%3Ccircle cx='410' cy='365' r='12'/%3E%3Ccircle cx='505' cy='420' r='17'/%3E%3C/g%3E%3C/svg%3E");
  --after-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Crect width='600' height='500' fill='%23d9d2c3'/%3E%3Cpath d='M55 95h490v95H55zM55 240h220v160H55zM325 240h220v160H325z' fill='%23f7f0df'/%3E%3Cpath d='M55 425h490' stroke='%23c9963a' stroke-width='8'/%3E%3C/svg%3E");
}

.gallery-card[data-type="restaurant"] {
  --before-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Crect width='600' height='500' fill='%23251512'/%3E%3Cpath d='M60 110h480v80H60zM80 240h90v90H80zm175 0h90v90h-90zm175 0h90v90h-90z' fill='%23685436'/%3E%3Cg fill='%23000' opacity='.75'%3E%3Ccircle cx='110' cy='390' r='16'/%3E%3Ccircle cx='280' cy='410' r='20'/%3E%3Ccircle cx='480' cy='380' r='14'/%3E%3C/g%3E%3C/svg%3E");
  --after-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Crect width='600' height='500' fill='%230d3d2e'/%3E%3Cpath d='M60 110h480v80H60zM80 240h90v90H80zm175 0h90v90h-90zm175 0h90v90h-90z' fill='%23f2deaa' opacity='.95'/%3E%3Cpath d='M60 420h480' stroke='%23c9963a' stroke-width='8'/%3E%3C/svg%3E");
}

.gallery-card[data-type="floor"] {
  --before-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Crect width='600' height='500' fill='%232d2a24'/%3E%3Cpath d='M0 280h600v220H0z' fill='%23443a2e'/%3E%3Cg stroke='%23635d53' stroke-width='3'%3E%3Cpath d='M0 320h600M0 380h600M0 440h600M90 280v220M190 280v220M310 280v220M430 280v220M540 280v220'/%3E%3C/g%3E%3Cg fill='%23111111' opacity='.65'%3E%3Ccircle cx='80' cy='350' r='18'/%3E%3Ccircle cx='250' cy='410' r='25'/%3E%3Ccircle cx='470' cy='335' r='20'/%3E%3C/g%3E%3C/svg%3E");
  --after-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Crect width='600' height='500' fill='%230e211b'/%3E%3Cpath d='M0 280h600v220H0z' fill='%23d6cab4'/%3E%3Cg stroke='%23a88744' stroke-width='3'%3E%3Cpath d='M0 320h600M0 380h600M0 440h600M90 280v220M190 280v220M310 280v220M430 280v220M540 280v220'/%3E%3C/g%3E%3Cpath d='M0 305c140 28 340 28 600 0' stroke='%23fff3cf' stroke-width='7' opacity='.72'/%3E%3C/svg%3E");
}

.gallery-card[data-type="restroom"] {
  --before-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Crect width='600' height='500' fill='%2343443f'/%3E%3Cpath d='M55 80h120v340H55zm170 0h120v340H225zm170 0h120v340H395z' fill='%2372766f'/%3E%3Cpath d='M60 390h480' stroke='%231b1b1b' stroke-width='16' opacity='.65'/%3E%3C/svg%3E");
  --after-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Crect width='600' height='500' fill='%23ece7dd'/%3E%3Cpath d='M55 80h120v340H55zm170 0h120v340H225zm170 0h120v340H395z' fill='%23fdf8ef'/%3E%3Cpath d='M60 390h480' stroke='%23c9963a' stroke-width='8' opacity='.65'/%3E%3C/svg%3E");
}

.process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.process-wrap::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 26px 22px 28px;
  border-radius: 28px;
  border: 1px solid rgba(229,189,101,.17);
  background: rgba(255,255,255,.055);
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
  text-align: center;
}

.step-num {
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  border: 8px solid rgba(3,27,21,.95);
  box-shadow: 0 0 0 1px rgba(229,189,101,.38), 0 18px 45px rgba(0,0,0,.28);
  font-family: "Bebas Neue";
  font-size: 2.25rem;
  line-height: 1;
}

.process-step h3 {
  font-family: "Bebas Neue";
  font-size: 1.8rem;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(246,241,231,.72);
  font-size: .94rem;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.serve-card {
  position: relative;
  min-height: 570px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(201,150,58,.22);
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.serve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--serve-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(.8) brightness(.78);
}

.serve-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(3,27,21,.12), rgba(3,27,21,.28) 30%, rgba(3,27,21,.94) 100%);
}

.serve-card:hover::before {
  transform: scale(1.13);
  filter: saturate(1.1) brightness(.96);
}

.serve-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px;
  transform: translateY(42px);
  transition: transform .35s ease;
}

.serve-card:hover .serve-content {
  transform: translateY(0);
}

.serve-content h3 {
  font-family: "Bebas Neue";
  font-size: 3rem;
  line-height: .95;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.serve-content p {
  color: rgba(246,241,231,.78);
  margin-bottom: 18px;
}

.serve-list {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(246,241,231,.88);
  font-size: .9rem;
  font-weight: 700;
}

.serve-card:hover .serve-list {
  opacity: 1;
  transform: translateY(0);
}

.serve-list li::before {
  content: "✓";
  color: var(--gold-400);
  margin-right: 8px;
}

.serve-card:nth-child(1) {
  --serve-bg: linear-gradient(135deg, #2d332e, #0d3d2e);
}

.serve-card:nth-child(2) {
  --serve-bg: linear-gradient(135deg, #394a32, #123f35);
}

.serve-card:nth-child(3) {
  --serve-bg: linear-gradient(135deg, #6b5a3d, #143a2d);
}

.serve-card:nth-child(4) {
  --serve-bg: linear-gradient(135deg, #222b2d, #0d3d2e);
}

.testimonials {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonials 42s linear infinite;
}

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

@keyframes testimonials {
  to { transform: translateX(-50%); }
}

.testimonial-card {
  width: 410px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(229,189,101,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.stars {
  color: var(--gold-400);
  letter-spacing: .15em;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: rgba(246,241,231,.80);
  font-size: .98rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-weight: 900;
}

.testimonial-person strong {
  display: block;
  color: var(--cream);
  line-height: 1.2;
}

.testimonial-person span {
  color: rgba(246,241,231,.58);
  font-size: .83rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.map-card {
  min-height: 560px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(229,189,101,.28), transparent 22%),
    radial-gradient(circle at 54% 46%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(135deg, var(--green-900), var(--green-950));
  border: 1px solid rgba(229,189,101,.24);
  box-shadow: var(--shadow);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .20;
  background-image:
    linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.28) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, #000 35%, transparent 74%);
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 0 9px rgba(201,150,58,.14), 0 0 28px rgba(201,150,58,.65);
  transform: translate(-50%, -50%);
}

.map-pin::after {
  content: attr(data-city);
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  color: var(--cream);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin-top: 34px;
}

.area-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(229,189,101,.14);
  color: rgba(246,241,231,.86);
  font-weight: 800;
}

.area-list li::before {
  content: "•";
  color: var(--gold-400);
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 0;
}

.contact-split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info,
.quote-form {
  border-radius: 34px;
  padding: 38px;
  border: 1px solid rgba(13,61,46,.15);
  box-shadow: var(--shadow-soft);
}

.contact-info {
  color: var(--cream);
  background:
    radial-gradient(circle at top right, rgba(229,189,101,.20), transparent 30%),
    linear-gradient(145deg, var(--green-900), var(--green-950));
  position: relative;
  overflow: hidden;
}

.contact-info::after {
  content: "ROPHÉ";
  position: absolute;
  left: -18px;
  bottom: -12px;
  font-family: "Bebas Neue";
  font-size: 8rem;
  line-height: .8;
  letter-spacing: .07em;
  color: rgba(255,255,255,.045);
}

.contact-info h2,
.quote-form h2 {
  font-family: "Bebas Neue";
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-info p {
  color: rgba(246,241,231,.76);
  margin-bottom: 28px;
}

.contact-items {
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(229,189,101,.16);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
}

.contact-item strong {
  display: block;
  font-size: .78rem;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 2px;
}

.contact-item span {
  color: rgba(246,241,231,.90);
  font-weight: 800;
  word-break: break-word;
}

.quote-form {
  background: rgba(255,255,255,.72);
}

.quote-form h2 {
  color: var(--green-900);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(24,26,23,.74);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(13,61,46,.18);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.84);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(201,150,58,.78);
  box-shadow: 0 0 0 4px rgba(201,150,58,.16);
  background: var(--white);
}

.form-note {
  margin: 16px 0 22px;
  color: rgba(24,26,23,.58);
  font-size: .9rem;
}

.footer {
  padding: 68px 0 32px;
  background: #02130f;
  border-top: 1px solid rgba(229,189,101,.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .9fr;
  gap: 38px;
}

.footer h3 {
  color: var(--gold-400);
  font-family: "Bebas Neue";
  font-size: 1.7rem;
  letter-spacing: .07em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer p,
.footer a,
.footer li {
  color: rgba(246,241,231,.70);
  font-size: .92rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer a:hover {
  color: var(--gold-400);
}

.footer-brand-text {
  margin-top: 18px;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(246,241,231,.55);
  font-size: .86rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(229,189,101,.16);
  font-weight: 800;
  font-size: .82rem;
}

.credential-list li::before {
  content: "✓";
  color: var(--gold-400);
  margin-right: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 16px;
    font-size: .72rem;
  }

  .hero-inner,
  .about-grid,
  .coverage-grid,
  .contact-split {
    gap: 34px;
  }

  .services-grid,
  .gallery-grid,
  .serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-visual {
    min-height: 470px;
  }
}

@media (max-width: 900px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: calc(var(--nav-h) + 12px);
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(3,27,21,.94);
    border: 1px solid rgba(229,189,101,.24);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;      /* Forces the link to behave like a full-width block */
    width: 100%;         /* Ensures it stretches edge-to-edge */
    text-align: center;  /* Centers the text within the full-width block */
    padding: 15px 12px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,.06);
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 40px;
  }

  .hero-inner,
  .about-grid,
  .coverage-grid,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 430px;
  }

  .stats-bar {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 34px auto 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head {
    display: block;
  }

  .section-head .section-lead {
    margin-top: 18px;
  }

  .services-grid,
  .gallery-grid,
  .serve-grid,
  .process-wrap,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-wrap::before {
    display: none;
  }

  .serve-card {
    min-height: 470px;
  }

  .image-panel,
  .map-card {
    min-height: 500px;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-h: 76px;
  }

  .container,
  .nav-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand-copy strong {
    font-size: .92rem;
    letter-spacing: .10em;
  }

  .brand-copy span {
    font-size: .55rem;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  section {
    padding: 78px 0;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 18vw, 6rem);
  }

  .hero .script {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .hero-ctas {
    display: grid;
  }

  .hero-visual {
    min-height: 360px;
  }

  .floating-badge {
    display: none;
  }

  .stats-bar,
  .services-grid,
  .gallery-grid,
  .serve-grid,
  .process-wrap,
  .footer-grid,
  .pillar-grid,
  .area-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .visual-card.main {
    inset: 8% 0 2% 0;
  }

  .visual-card.side,
  .visual-card.top {
    display: none;
  }

  .image-panel,
  .map-card {
    min-height: 430px;
  }

  .gallery-card {
    min-height: 280px;
  }

  .serve-card {
    min-height: 420px;
  }

  .testimonial-card {
    width: 320px;
  }

  .contact-info,
  .quote-form {
    padding: 26px;
    border-radius: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Performance Optimization: Disable custom animated cursor on touch devices */
@media (max-width: 1024px) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* --- Jobber Embed Integration --- */

/* 1. Force the wrapper to fill the right column */
.jobber-embed-container {
  width: 100% !important;
  height: 100% !important;
  min-height: 560px;
  display: flex; 
  flex-direction: column;
}

/* 2. Force the ID div Jobber targets to stretch and strip its margins */
.jobber-embed-container > div {
  width: 100% !important;
  height: 100% !important;
  flex-grow: 1;
  margin: 0 !important; /* <--- OVERRIDES JOBBER'S EXTERNAL CSS */
}

/* 3. Override the iframe injected by the JS */
/* Update your existing iframe rule to tweak the spacing */
.jobber-embed-container iframe {
  width: 100% !important;
  height: 100% !important;
  
  /* Increase this from 560px to 600px to give the bottom more room to breathe */
  min-height: 600px !important; 
  
  /* Add padding to the top of the iframe to push Jobber's content down */
  padding-top: 10px !important; 
  
  border: none !important;
  border-radius: 34px !important; 
  box-shadow: var(--shadow-soft) !important;
  background: rgba(255,255,255,.84) !important;
  margin: 0 !important; 
}

/* --- Before & After Image Container Styles --- */
.image-comparison {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .4s ease;
}

/* Default shows the 'after' image or handles side-by-side transition */
.image-comparison img:first-child {
  opacity: 0; /* Before image hidden by default, revealed on hover */
}

.image-comparison img:last-child {
  opacity: 1; /* After image shown by default */
}

.gallery-card:hover .image-comparison img:first-child {
  opacity: 1;
}

.gallery-card:hover .image-comparison img:last-child {
  opacity: 0.3;
}

/* --- OpenStreetMap Card Container Polish --- */
.map-card {
  min-height: 560px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229,189,101,.24);
  box-shadow: var(--shadow);
  background: var(--green-950);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  filter: contrast(1.05) saturate(0.9);
}

/* --- Fill Image Utility --- */
.fill-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Override the old CSS background on the About panel */
.image-panel {
  background: var(--green-800); /* Fallback */
}

/* Specific styling for the Industries (Serve) images */
.serve-bg {
  transition: transform .45s ease, filter .45s ease;
  filter: saturate(.8) brightness(.60); /* Darkens the image so text is readable */
}

.serve-card:hover .serve-bg {
  transform: scale(1.1);
  filter: saturate(1.1) brightness(.80);
}

/* Override the old serve-card pseudo-elements */
.serve-card::before {
  display: none; 
}

/* --- Interactive City List --- */
.area-list li {
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .2s ease;
}

.area-list li:hover,
.area-list li.is-active {
  background: rgba(229,189,101,.15);
  border-color: var(--gold-400);
  transform: translateX(4px);
}

/* --- Clickable Before/After Tabs --- */
.ba-tag {
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 27, 21, 0.75);
  color: var(--white);
  transition: all 0.3s ease;
  z-index: 10;
}

.ba-tag:hover,
.ba-tag.active {
  background: var(--gold-400);
  color: var(--green-950);
  font-weight: 700;
  border-color: var(--gold-400);
}

/* Image Switching Logic */
.image-comparison img.img-before {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-comparison img.img-after {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* State when 'Before' button is active on the card */
.gallery-card.show-before .image-comparison img.img-before {
  opacity: 1;
}

.gallery-card.show-before .image-comparison img.img-after {
  opacity: 0;
}

/* ==========================================================================
   BEFORE / AFTER SLIDING ANIMATION
   ========================================================================== */

/* 1. Prevent off-screen sliding images from overflowing the card */
.image-comparison {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* Hides the image while it is slid off-screen */
}

/* 2. Enable GPU-accelerated transition for image sliding */
.image-comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  will-change: transform;
}

/* 3. DEFAULT STATE: Showing AFTER image in center */
.image-comparison img.img-before {
  transform: translateX(-100%); /* Positioned off-screen to the left */
  opacity: 0;
  z-index: 2;
}

.image-comparison img.img-after {
  transform: translateX(0);     /* Centered in view */
  opacity: 1;
  z-index: 1;
}

/* 4. TOGGLED STATE (.show-before active): Showing BEFORE image */
.gallery-card.show-before .image-comparison img.img-before {
  transform: translateX(0);     /* Slides in from left to center */
  opacity: 1;
}

.gallery-card.show-before .image-comparison img.img-after {
  transform: translateX(100%);  /* Slides out to the right */
  opacity: 0;
}