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

:root {
  --gold:     #C9A84C;
  --gold-lt:  #E2C97E;
  --gold-dk:  #9A7530;
  --gold-rgb: 201, 168, 76;
  --gold-dim: rgba(var(--gold-rgb), .06);
  --charcoal: #1A1A1A;
  --charcoal-dk: #0F0F0F;
  --charcoal-mid: #252220;
  --off-white:#F8F6F1;
  --stone:    #EAE6DC;
  --marble:   #F0EDE6;
  --mid:      #6B6860;
  --white:    #FFFFFF;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --shadow-xl: 0 30px 80px rgba(0,0,0,.2);
  --font-serif: 'Playfair Display', serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  --transition: .4s cubic-bezier(.4, 0, .2, 1);
}

html { scroll-behavior: smooth; }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--stone); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--mid); }

/* ── IMAGE LAZY LOAD FADE ── */
img {
  transition: opacity .5s ease;
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── MARBLE TEXTURE ── */
.marble-bg {
  position: relative;
}
.marble-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background:
    /* vein 1 */
    radial-gradient(ellipse 120% 40% at 10% 20%, rgba(var(--gold-rgb), .12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 30% at 70% 50%, rgba(var(--gold-rgb), .08) 0%, transparent 50%),
    radial-gradient(ellipse 150% 25% at 40% 80%, rgba(var(--gold-rgb), .06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 20% at 85% 15%, rgba(var(--gold-rgb), .1) 0%, transparent 45%),
    radial-gradient(ellipse 100% 35% at 55% 65%, rgba(var(--gold-rgb), .05) 0%, transparent 50%),
    radial-gradient(ellipse 90% 15% at 25% 45%, rgba(var(--gold-rgb), .07) 0%, transparent 40%),
    radial-gradient(ellipse 70% 20% at 60% 30%, rgba(var(--gold-rgb), .04) 0%, transparent 45%),
    radial-gradient(ellipse 130% 30% at 80% 75%, rgba(var(--gold-rgb), .06) 0%, transparent 55%);
}

.marble-bg-light::before {
  opacity: .2;
  background:
    radial-gradient(ellipse 120% 40% at 10% 20%, rgba(var(--gold-rgb), .08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 30% at 70% 50%, rgba(var(--gold-rgb), .05) 0%, transparent 50%),
    radial-gradient(ellipse 150% 25% at 40% 80%, rgba(var(--gold-rgb), .04) 0%, transparent 55%),
    radial-gradient(ellipse 60% 20% at 85% 15%, rgba(var(--gold-rgb), .06) 0%, transparent 45%),
    radial-gradient(ellipse 100% 35% at 55% 65%, rgba(var(--gold-rgb), .03) 0%, transparent 50%);
}

/* ── SECTION DIVIDER WAVES ── */
.section-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  pointer-events: none;
  overflow: hidden;
}
.section-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

::selection { background: rgba(var(--gold-rgb), .25); color: var(--charcoal); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1),
              transform .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── TOP BAR / SCROLLING BANNER ── */
.topbar {
  background: linear-gradient(90deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #16213e 75%, #1a1a2e 100%);
  background-size: 200% 100%;
  animation: banner-bg-shift 6s ease-in-out infinite alternate;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid rgba(var(--gold-rgb), .25);
  box-shadow: 0 2px 20px rgba(var(--gold-rgb), .08);
}
.topbar::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    rgba(var(--gold-rgb), .03) 1px,
    transparent 2px
  );
  pointer-events: none;
}
.topbar-inner {
  overflow: hidden;
  padding: 0;
  position: relative;
}
.topbar-track {
  display: flex;
  width: max-content;
  animation: banner-scroll 40s linear infinite;
  padding: 10px 0;
}
.topbar-track:hover {
  animation-play-state: paused;
}
.topbar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 40px;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.85);
  position: relative;
}
.topbar-item::after {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(var(--gold-rgb), .6);
}
.topbar-item:last-child::after { display: none; }
.topbar-item .tb-icon { font-size: .9rem; flex-shrink: 0; }
.topbar-item .tb-highlight {
  color: var(--gold-lt);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(var(--gold-rgb), .2);
}
.topbar-item a {
  color: var(--gold-lt);
  text-decoration: none;
  font-weight: 700;
  transition: color .3s ease;
}
.topbar-item a:hover { color: #fff; }
.topbar-item .tb-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--charcoal-dk);
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes banner-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes banner-bg-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ── NAVBAR ── */
nav {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow var(--transition);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 900; color: var(--white);
  transition: transform var(--transition);
}
.logo:hover .logo-icon { transform: scale(1.05); }
.logo-text { line-height: 1.15; }
.logo-name {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.05rem;
  color: var(--charcoal); display: block;
}
.logo-sub {
  font-size: .65rem; letter-spacing: .14em; color: var(--mid);
  text-transform: uppercase; font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: .85rem; font-weight: 500;
  color: var(--charcoal); transition: color var(--transition);
  position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  transition: width var(--transition); border-radius: 1px;
}
.nav-links > li > a:hover::after,
.nav-links > li > a:focus-visible::after { width: 100%; }
.nav-links a:hover { color: var(--gold-dk); }

/* ── DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger::after {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border: 2px solid currentColor; border-top: 0; border-left: 0;
  transform: rotate(45deg); margin-top: -3px; transition: transform var(--transition);
}
.nav-dropdown:hover .nav-dropdown-trigger::after { transform: rotate(225deg); margin-top: 2px; }

.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 240px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  border: 1px solid rgba(var(--gold-rgb), .1);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-trigger:focus-visible + .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(4px); }

.nav-dropdown-menu a {
  display: block; padding: 10px 16px; font-size: .82rem; font-weight: 500;
  color: var(--charcoal); text-decoration: none; border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(var(--gold-rgb), .1); color: var(--gold-dk); }
.nav-dropdown-menu a::after { display: none !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white) !important; padding: 10px 24px; border-radius: var(--radius-sm);
  font-weight: 600 !important; font-size: .82rem !important; letter-spacing: .06em;
  transition: opacity var(--transition), transform var(--transition) !important;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), .3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: .92; transform: translateY(-1px); color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--charcoal);
  border-radius: 2px; transition: var(--transition); display: block;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(var(--gold-rgb), .12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(var(--gold-rgb), .07) 0%, transparent 55%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(var(--gold-rgb), .04) 0%, transparent 50%),
    linear-gradient(160deg, #080808 0%, #1a1712 35%, #0d0d0d 100%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .06;
  background:
    radial-gradient(ellipse 200% 100% at 0% 50%, rgba(var(--gold-rgb), .15) 0%, transparent 50%),
    radial-gradient(ellipse 150% 80% at 100% 50%, rgba(var(--gold-rgb), .1) 0%, transparent 45%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .03;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.hero .marble-shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--gold-rgb), .03) 25%,
    rgba(var(--gold-rgb), .06) 50%,
    rgba(var(--gold-rgb), .03) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: marble-shimmer 8s ease-in-out infinite;
}
.hero-glow-1 {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), .15) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-glow-drift 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--gold-rgb), .08) 0%, transparent 60%);
  pointer-events: none;
  animation: hero-glow-drift 10s ease-in-out infinite alternate-reverse;
}
@keyframes hero-glow-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, -20px); }
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 100px 24px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(var(--gold-rgb), .12);
  border: 1px solid rgba(var(--gold-rgb), .25);
  color: var(--gold-lt); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500;
  padding: 7px 16px; border-radius: 20px; margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900; line-height: 1.08;
  color: var(--white); margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--gold-lt); }
.hero-desc {
  color: rgba(255,255,255,.55);
  font-size: 1rem; line-height: 1.8;
  margin-bottom: 40px; max-width: 480px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white); text-decoration: none; padding: 16px 36px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: .9rem;
  letter-spacing: .04em; display: inline-flex; align-items: center; gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(var(--gold-rgb), .35);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(var(--gold-rgb), .45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,.25); color: var(--white);
  text-decoration: none; padding: 16px 36px; border-radius: var(--radius-sm);
  font-weight: 500; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold); background: rgba(var(--gold-rgb), .1);
  transform: translateY(-2px);
}

.hero-badges { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge strong {
  color: var(--gold-lt); font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 700; line-height: 1;
}
.hero-badge span {
  color: rgba(255,255,255,.4);
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; margin-top: 6px;
}

/* Hero visual panel */
.hero-visual { position: relative; }
.hero-card {
  background:
    radial-gradient(ellipse 150% 80% at 20% 10%, rgba(var(--gold-rgb), .06) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 80% 90%, rgba(var(--gold-rgb), .04) 0%, transparent 50%),
    rgba(255,255,255,.03);
  border: 1px solid rgba(var(--gold-rgb), .15);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: .04;
  background:
    radial-gradient(ellipse 80% 30% at 30% 20%, rgba(var(--gold-rgb), .2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 25% at 70% 80%, rgba(var(--gold-rgb), .15) 0%, transparent 55%);
}
.hero-card-title {
  color: var(--gold-lt); font-family: var(--font-serif);
  font-size: 1.1rem; margin-bottom: 24px; letter-spacing: .02em;
}
.service-pill {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm); padding: 13px 18px; margin-bottom: 10px;
  transition: background var(--transition), border-color var(--transition);
}
.service-pill:hover {
  background: rgba(var(--gold-rgb), .06);
  border-color: rgba(var(--gold-rgb), .2);
}
.service-pill-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 6px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.service-pill-text { color: rgba(255,255,255,.5); font-size: .83rem; line-height: 1.4; }
.service-pill-text strong {
  display: block; color: var(--white); font-size: .88rem; margin-bottom: 1px; font-weight: 600;
}

.floating-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: var(--white); border-radius: 12px; padding: 16px 22px; text-align: center;
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), .4);
  animation: float-badge 3s ease-in-out infinite;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.floating-badge strong { display: block; font-size: 1.5rem; font-family: var(--font-serif); line-height: 1; margin-bottom: 2px; }
.floating-badge span { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; opacity: .8; }

/* ── SECTION BASE ── */
section { padding: 100px 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dk); font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--charcoal); margin-bottom: 16px;
}
.section-desc { color: var(--mid); font-size: .97rem; line-height: 1.8; max-width: 560px; }

/* ── WHY CHOOSE ── */
.why-section {
  background:
    radial-gradient(ellipse 80% 50% at 0% 50%, rgba(var(--gold-rgb), .04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(var(--gold-rgb), .03) 0%, transparent 50%),
    var(--off-white);
  position: relative;
}
.why-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), .2), transparent);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.why-features { display: flex; flex-direction: column; gap: 32px; }
.why-feature { display: flex; gap: 22px; padding: 24px; border-radius: var(--radius-md); transition: background var(--transition); }
.why-feature:hover { background: rgba(255,255,255,.5); }
.why-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--gold-rgb), .2);
}
.why-feature-body h3 {
  font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px;
  color: var(--charcoal);
}
.why-feature-body p { color: var(--mid); font-size: .88rem; line-height: 1.7; }

.why-stats {
  background: var(--charcoal); border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  position: relative; overflow: hidden;
}
.why-stats::before {
  content: ''; position: absolute; inset: 0; opacity: .03;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.stat-item { text-align: center; position: relative; }
.stat-number {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 900;
  color: var(--gold-lt); display: block; line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,.4); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; margin-top: 8px; font-weight: 500;
}
.stat-divider {
  grid-column: 1 / -1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), .2), transparent);
}

/* ── ABOUT ── */
.about-section {
  position: relative;
  background:
    radial-gradient(ellipse 70% 40% at 80% 20%, rgba(var(--gold-rgb), .03) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 20% 80%, rgba(var(--gold-rgb), .02) 0%, transparent 45%),
    var(--white);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 12px; }

.about-visual {
  background:
    radial-gradient(ellipse 120% 50% at 30% 20%, rgba(var(--gold-rgb), .06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 70% 80%, rgba(var(--gold-rgb), .04) 0%, transparent 50%),
    linear-gradient(145deg, var(--stone), var(--off-white));
  border-radius: var(--radius-lg);
  padding: 48px 40px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about-visual-pattern {
  position: absolute; inset: 0; opacity: .2;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(var(--gold-rgb), .2) 24px, rgba(var(--gold-rgb), .2) 25px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(var(--gold-rgb), .2) 24px, rgba(var(--gold-rgb), .2) 25px);
}
.about-visual-inner { position: relative; z-index: 1; }
.about-tag {
  display: inline-block; background: var(--gold); color: var(--white);
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 6px 14px; border-radius: 3px; margin-bottom: 22px;
}
.about-visual h3 {
  font-family: var(--font-serif); font-size: 1.6rem;
  color: var(--charcoal); margin-bottom: 20px; line-height: 1.25;
}
.about-img-wrap {
  border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 4px;
}
.about-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
  border-radius: var(--radius-sm);
  transition: transform .6s ease;
}
.about-img-wrap:hover .about-img { transform: scale(1.04); }
.about-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .88rem; color: var(--mid); line-height: 1.5;
}
.about-checklist li::before {
  content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: .7rem;
}
.about-text .section-desc { max-width: 100%; margin-bottom: 20px; }
.about-text .section-desc + .section-desc { margin-top: -4px; }
.about-cta { margin-top: 32px; }

/* ── SERVICES ── */
.services-section {
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(var(--gold-rgb), .06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(var(--gold-rgb), .04) 0%, transparent 50%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-mid) 50%, var(--charcoal) 100%);
  position: relative;
}
.services-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), .2), transparent);
}
.services-section .section-title { color: var(--white); }
.services-section .section-eyebrow { color: var(--gold-lt); }
.services-section .section-desc { color: rgba(255,255,255,.45); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }

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

.service-card {
  background:
    radial-gradient(ellipse 120% 60% at 0% 100%, rgba(var(--gold-rgb), .03) 0%, transparent 60%),
    rgba(255,255,255,.03);
  border: 1px solid rgba(var(--gold-rgb), .1);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk));
  opacity: 0; transition: opacity var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .03;
  background:
    radial-gradient(ellipse 80% 30% at 20% 30%, rgba(var(--gold-rgb), .15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 25% at 80% 70%, rgba(var(--gold-rgb), .1) 0%, transparent 55%);
}
.service-card:hover {
  border-color: rgba(var(--gold-rgb), .3);
  transform: translateY(-6px);
  background:
    radial-gradient(ellipse 120% 60% at 0% 100%, rgba(var(--gold-rgb), .06) 0%, transparent 60%),
    rgba(var(--gold-rgb), .04);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.service-card:hover::before { opacity: 1; }

.service-card-icon {
  font-size: 2.2rem; margin-bottom: 22px; display: block;
  transition: transform var(--transition);
}
.service-card:hover .service-card-icon { transform: scale(1.1); }

.service-card-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(var(--gold-rgb), .12);
  border: 1px solid rgba(var(--gold-rgb), .25);
  color: var(--gold-lt); font-size: .6rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 12px;
}
.service-card h3 {
  font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.service-card p {
  color: rgba(255,255,255,.4);
  font-size: .85rem; line-height: 1.7; margin-bottom: 24px;
}
.service-card-link {
  color: var(--gold-lt); font-size: .8rem; font-weight: 600;
  text-decoration: none; letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--gold); }

/* ── PROCESS ── */
.process-section {
  background:
    radial-gradient(ellipse 70% 40% at 30% 20%, rgba(var(--gold-rgb), .04) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 70% 80%, rgba(var(--gold-rgb), .03) 0%, transparent 50%),
    var(--off-white);
  position: relative;
}
.process-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), .2), transparent);
}

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 56px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(12.5% + 16px);
  right: calc(12.5% + 16px); height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt), var(--gold));
  opacity: .25;
}
.process-step { text-align: center; position: relative; }
.process-num {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 1;
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--white);
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), .25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover .process-num {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(var(--gold-rgb), .35);
}
.process-step h3 {
  font-family: var(--font-serif); font-size: 1rem; margin-bottom: 10px; color: var(--charcoal);
}
.process-step p {
  color: var(--mid); font-size: .82rem; line-height: 1.7; max-width: 220px; margin: 0 auto;
}

/* ── LOCATION ── */
.location-section {
  background:
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(var(--gold-rgb), .03) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 90% 70%, rgba(var(--gold-rgb), .02) 0%, transparent 45%),
    var(--white);
  position: relative;
}
.location-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), .2), transparent);
}
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); height: 400px; background: var(--stone);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-info h3 {
  font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 24px; color: var(--charcoal);
}
.location-items { display: flex; flex-direction: column; gap: 20px; }
.location-item { display: flex; gap: 16px; align-items: flex-start; }
.location-item-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(var(--gold-rgb), .2);
}
.location-item-body label {
  display: block; font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--mid); margin-bottom: 2px; font-weight: 500;
}
.location-item-body a, .location-item-body span {
  color: var(--charcoal); font-weight: 500; font-size: .92rem; text-decoration: none;
}
.location-item-body a:hover { color: var(--gold-dk); }

.areas-served { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--stone); }
.areas-served h4 { font-size: .85rem; font-weight: 600; margin-bottom: 14px; color: var(--charcoal); }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: var(--stone); color: var(--mid); font-size: .75rem;
  padding: 6px 14px; border-radius: 20px; letter-spacing: .04em;
  transition: background var(--transition), color var(--transition);
}
.area-tag:hover { background: var(--gold); color: var(--white); }

/* ── CTA BANNER ── */
.cta-banner {
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(var(--gold-rgb), .1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(var(--gold-rgb), .06) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 50% 50%, rgba(var(--gold-rgb), .04) 0%, transparent 60%),
    linear-gradient(160deg, #0d0d0d 0%, #1c1a14 50%, #0d0d0d 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(var(--gold-rgb), .03) 0, rgba(var(--gold-rgb), .03) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  background:
    radial-gradient(ellipse 200% 80% at 0% 50%, rgba(var(--gold-rgb), .2) 0%, transparent 50%),
    radial-gradient(ellipse 150% 60% at 100% 50%, rgba(var(--gold-rgb), .15) 0%, transparent 45%);
  pointer-events: none;
}
.cta-inner {
  max-width: 700px; margin: 0 auto; padding: 0 24px;
  text-align: center; position: relative; z-index: 2;
}
.cta-inner .section-eyebrow {
  justify-content: center; display: flex; color: var(--gold-lt);
}
.cta-inner .section-title { color: var(--white); margin-bottom: 20px; }
.cta-inner .section-desc {
  color: rgba(255,255,255,.5); margin: 0 auto 40px;
  max-width: 480px; font-size: 1rem;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white); text-decoration: none;
  padding: 16px 32px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}
.btn-whatsapp:hover { opacity: .9; transform: translateY(-2px); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: white; }

/* ── MARQUEE / CLIENT STRIP ── */
/* ── CLIENT PORTFOLIO MARQUEE ── */
.portfolio-marquee {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.portfolio-marquee-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
}
.portfolio-head {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; padding: 22px 0 18px;
}
.portfolio-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: .7;
  white-space: nowrap;
}
.portfolio-line {
  flex: 0 1 80px; height: 1px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb), .15), transparent);
}
.marquee-stage {
  position: relative; overflow: hidden;
  padding: 6px 0 28px;
}
.marquee-stage::before,
.marquee-stage::after {
  content: ''; position: absolute; top: 6px; bottom: 28px;
  width: 80px; z-index: 2; pointer-events: none;
}
.marquee-stage::before {
  left: 0;
  background: linear-gradient(90deg, var(--off-white) 0%, transparent 100%);
}
.marquee-stage::after {
  right: 0;
  background: linear-gradient(270deg, var(--off-white) 0%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: marquee-roll 32s linear infinite;
}
.marquee-stage:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 50px;
  padding: 8px 20px 8px 14px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition:
    border-color .4s ease,
    background .4s ease,
    transform .4s ease,
    box-shadow .4s ease;
  position: relative;
  overflow: hidden;
}
.marquee-item::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 60%,
    rgba(var(--gold-rgb), .06) 100%);
  opacity: 0;
  transition: opacity .4s ease;
}
.marquee-item::after {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at var(--mx, 0) var(--my, 0),
    rgba(var(--gold-rgb), .03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.marquee-item:hover {
  border-color: rgba(var(--gold-rgb), .3);
  background: rgba(var(--gold-rgb), .03);
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 24px rgba(0,0,0,.08),
    0 0 20px rgba(var(--gold-rgb), .1);
}
.marquee-item:hover::before { opacity: 1; }
.marquee-item:hover::after { opacity: 1; }
.marquee-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(var(--gold-rgb), .4);
  flex-shrink: 0;
  transition:
    transform .4s ease,
    box-shadow .4s ease;
}
.marquee-item:hover .marquee-dot {
  transform: scale(1.5);
  box-shadow: 0 0 14px rgba(var(--gold-rgb), .7);
}
.marquee-item .flag {
  font-size: 1.25rem; line-height: 1; flex-shrink: 0;
  transition: transform .4s ease;
}
.marquee-item:hover .flag {
  transform: scale(1.15);
}
.marquee-item .name {
  font-size: .82rem; font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .04em;
  transition: all .4s ease;
}
.marquee-item:hover .name {
  color: var(--gold);
}

@keyframes marquee-roll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal-dk);
  color: rgba(255,255,255,.45);
  position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), .15), transparent);
}
.footer-main { max-width: 1200px; margin: 0 auto; padding: 70px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 18px; display: inline-flex; }
.footer-brand p {
  font-size: .83rem; line-height: 1.8; color: rgba(255,255,255,.35);
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,.05);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(255,255,255,.4);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; }
.footer-col h4 {
  color: var(--white); font-size: .85rem; font-weight: 600;
  margin-bottom: 22px; letter-spacing: .06em;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(255,255,255,.35); text-decoration: none; font-size: .83rem;
  transition: color var(--transition), padding var(--transition);
}
.footer-links a:hover { color: var(--gold-lt); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item span:first-child {
  color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: 2px;
}
.footer-contact-item a, .footer-contact-item span:last-child {
  color: rgba(255,255,255,.35); font-size: .82rem; text-decoration: none;
  transition: color var(--transition); line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 24px 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  padding: 40px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 92vw; max-height: 82vh; object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  transform: scale(.95);
  transition: transform .35s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-caption {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
}
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: var(--white);
  font-size: 2.4rem; cursor: pointer; opacity: .6;
  transition: opacity .2s; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 9998;
  width: 44px; height: 44px;
  background: rgba(var(--gold-rgb), .9);
  border-radius: 50%; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(var(--gold-rgb), .3);
  opacity: 0; pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}
.back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-top:hover { background: var(--gold); transform: translateY(-2px); }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 6px 40px rgba(37, 211, 102, .65); }
}

/* ── MARBLE SHIMMER ANIMATION ── */
@keyframes marble-shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.marble-shimmer {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--gold-rgb), .04) 25%,
    rgba(var(--gold-rgb), .08) 50%,
    rgba(var(--gold-rgb), .04) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: marble-shimmer 6s ease-in-out infinite;
}

/* ── REAL IMAGE STYLES ── */
.service-img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.service-img-wrap {
  overflow: hidden; position: relative;
}
.service-img-wrap:hover .service-img { transform: scale(1.06); }

/* ─── IMAGE GALLERY ─── */
.img-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.img-gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; cursor: pointer;
}
.img-gallery-item img {
  width: 100%; height: 240px; object-fit: cover;
  display: block; transition: transform var(--transition);
}
.img-gallery-item:hover img { transform: scale(1.06); }
.img-gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
  pointer-events: none;
}

/* ─── BEFORE / AFTER COMPARISON ─── */
.ba-section {
  background: var(--white);
  position: relative;
}
.ba-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.ba-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ba-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ba-card:hover .ba-handle::before {
  transform: translate(-50%, -50%) scale(1.1);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: var(--white);
  box-shadow: 0 2px 16px rgba(var(--gold-rgb), .4);
}
.ba-card:hover .ba-handle {
  box-shadow: 0 0 16px rgba(var(--gold-rgb), .3);
}
.ba-card-header {
  padding: 18px 20px 12px; text-align: center;
}
.ba-card-header h4 {
  font-family: var(--font-serif); font-size: .95rem; color: var(--charcoal);
}
.ba-card-header p {
  font-size: .75rem; color: var(--mid); margin-top: 4px;
}

.ba-compare {
  position: relative; width: 100%; height: 280px;
  overflow: hidden; cursor: ew-resize; user-select: none;
  background: var(--stone);
  touch-action: none;
}
.ba-compare.ba-dragging .ba-handle::before {
  transform: translate(-50%, -50%) scale(1.12);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), .4);
}
.ba-compare.ba-dragging .ba-handle::after { color: var(--white); }
.ba-compare.ba-dragging { cursor: ew-resize; }
.ba-compare img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block; pointer-events: none;
}
.ba-before {
  filter: grayscale(.35) brightness(.7) saturate(.3) contrast(.8) blur(.3px);
  transition: filter 1.2s ease;
}
.ba-after {
  clip-path: inset(0 50% 0 0);
  filter: saturate(1.08) brightness(1.03) contrast(1.05);
}
.ba-card:hover .ba-before {
  filter: grayscale(.25) brightness(.75) saturate(.35) contrast(.82) blur(.2px);
}
.ba-before-label,
.ba-after-label {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white);
  background: rgba(0,0,0,.45);
  padding: 4px 12px; border-radius: 3px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba-before-label { left: 12px; }
.ba-after-label { right: 12px; }

.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--white);
  box-shadow: 0 0 12px rgba(0,0,0,.4);
  pointer-events: none; z-index: 2;
  transform: translateX(-50%);
}
.ba-handle::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  z-index: 1;
}
.ba-handle::after {
  content: '◀ ▶'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: .65rem; letter-spacing: 4px; color: var(--charcoal);
  z-index: 2; pointer-events: none;
}

.ba-section .section-desc { margin: 0 auto; }

/* ─── GALLERY ─── */
.gallery-section {
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(var(--gold-rgb), .03) 0%, transparent 55%),
    var(--off-white);
  position: relative;
}
.gallery-section .section-desc { margin: 0 auto; }

/* ─── MARBLE TYPES ─── */
.marble-types-section {
  background:
    radial-gradient(ellipse 60% 40% at 30% 10%, rgba(var(--gold-rgb), .03) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 70% 90%, rgba(var(--gold-rgb), .02) 0%, transparent 45%),
    var(--white);
  position: relative;
}
.marble-types-section .section-desc { margin: 0 auto; }
.marble-types-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.marble-type-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone);
  transition: transform var(--transition), box-shadow var(--transition);
}
.marble-type-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.marble-type-img {
  height: 200px; overflow: hidden;
}
.marble-type-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.marble-type-card:hover .marble-type-img img { transform: scale(1.08); }
.marble-type-info {
  padding: 20px 24px 24px;
}
.marble-type-info h4 {
  font-family: var(--font-serif); font-size: 1.05rem;
  color: var(--charcoal); margin-bottom: 6px;
}
.marble-type-info p {
  color: var(--mid); font-size: .82rem; line-height: 1.6;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background:
    radial-gradient(ellipse 70% 40% at 20% 20%, rgba(var(--gold-rgb), .04) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 80% 80%, rgba(var(--gold-rgb), .03) 0%, transparent 50%),
    var(--off-white);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 12px; left: 20px;
  font-family: var(--font-serif); font-size: 4rem;
  color: rgba(var(--gold-rgb), .15); line-height: 1;
}
.testimonial-stars {
  color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: .88rem; line-height: 1.7; color: var(--mid);
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--stone);
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600; font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block; font-size: .85rem; color: var(--charcoal);
}
.testimonial-author-info span {
  font-size: .75rem; color: var(--mid);
}

/* ─── TIPS SECTION ─── */
.tips-section {
  background:
    radial-gradient(ellipse 60% 40% at 50% 20%, rgba(var(--gold-rgb), .03) 0%, transparent 55%),
    var(--white);
}
.tips-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px;
}
.tip-card {
  display: flex; gap: 20px; padding: 28px;
  background: var(--off-white); border-radius: var(--radius-md);
  border: 1px solid var(--stone);
  transition: transform var(--transition), background var(--transition);
}
.tip-card:hover {
  transform: translateY(-3px); background: var(--white);
  box-shadow: var(--shadow-sm);
}
.tip-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(var(--gold-rgb), .2);
}
.tip-body h4 {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--charcoal); margin-bottom: 6px;
}
.tip-body p {
  color: var(--mid); font-size: .84rem; line-height: 1.7;
}

/* ─── BRAND STRIP ─── */
.brand-strip {
  background: var(--charcoal); padding: 40px 0;
  position: relative; overflow: hidden;
}
.brand-strip::before {
  content: ''; position: absolute; inset: 0; opacity: .04;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.brand-strip-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.brand-strip span {
  color: rgba(255,255,255,.15); font-size: .75rem;
  letter-spacing: .15em; text-transform: uppercase; font-weight: 600;
}

/* ── SUBTLE MARBLE TEXTURE OVERLAYS ── */
.texture-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: .03;
  background-image:
    repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.texture-overlay-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: .025;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ── IMAGE REVEAL ── */
.reveal-img {
  opacity: 0; transform: scale(.96);
  transition: opacity .8s cubic-bezier(.4,0,.2,1),
              transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-img.visible { opacity: 1; transform: scale(1); }

/* ── COUNTER ANIMATION ── */
.stat-number.counting { transition: color .3s; }

/* ── SHIMMER ANIMATION ── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ── FADE-IN UP STRONG ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── GENTLE PULSE ── */
@keyframes gentle-pulse {
  0%, 100% { opacity: .6; }
  50% { opacity: 1; }
}

/* ── SERVICE DETAIL PAGE ── */
.service-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(var(--gold-rgb), .1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(var(--gold-rgb), .06) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #1a1712 40%, #0d0d0d 100%);
  overflow: hidden;
}
.service-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.service-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.service-hero h1 em { font-style: normal; color: var(--gold-lt); }
.service-hero p {
  color: rgba(255,255,255,.5);
  font-size: 1rem; line-height: 1.8; margin-bottom: 32px;
}

.service-hero-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.service-hero-visual svg { display: block; width: 100%; height: auto; }

.service-detail-section { padding: 80px 0; }
.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.service-detail-grid.reverse .service-detail-visual { order: 2; }
.service-detail-grid.reverse .service-detail-text { order: 1; }

.service-detail-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--stone);
  position: relative;
}
.service-detail-visual svg { display: block; width: 100%; height: auto; }
.service-detail-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }

.service-detail-text h3 {
  font-family: var(--font-serif); font-size: 1.6rem;
  color: var(--charcoal); margin-bottom: 16px; line-height: 1.25;
}
.service-detail-text p {
  color: var(--mid); font-size: .95rem; line-height: 1.8; margin-bottom: 16px;
}
.service-detail-text ul {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.service-detail-text ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--mid); line-height: 1.5;
}
.service-detail-text ul li::before {
  content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: .7rem;
}

.service-benefits {
  background:
    radial-gradient(ellipse 70% 40% at 20% 20%, rgba(var(--gold-rgb), .04) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 80% 80%, rgba(var(--gold-rgb), .03) 0%, transparent 50%),
    var(--off-white);
}
.service-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.service-benefit-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px; text-align: center;
  border: 1px solid rgba(var(--gold-rgb), .1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-benefit-card-icon {
  font-size: 2.4rem; margin-bottom: 16px; display: block;
}
.service-benefit-card h4 {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--charcoal); margin-bottom: 8px;
}
.service-benefit-card p {
  color: var(--mid); font-size: .82rem; line-height: 1.6;
}

.service-cta {
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(var(--gold-rgb), .1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(var(--gold-rgb), .06) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #1c1a14 50%, #0d0d0d 100%);
  padding: 80px 0; text-align: center;
}
.service-cta .section-title { color: var(--white); }
.service-cta .section-desc { color: rgba(255,255,255,.5); margin: 0 auto 36px; }
.service-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold-lt); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── RESPONSIVE NEW ── */
@media (max-width: 1024px) {
  .img-gallery { grid-template-columns: repeat(2, 1fr); }
  .marble-types-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .img-gallery { grid-template-columns: 1fr; }
  .img-gallery-item img { height: 200px; }
  .marble-types-grid { grid-template-columns: 1fr; }
  .marble-type-img { height: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-compare { height: 220px; }
  .brand-strip-inner { gap: 24px; }
  .brand-strip span { font-size: .65rem; }
}
@media (max-width: 600px) {
  .img-gallery-item img { height: 180px; }
  .tip-card { flex-direction: column; align-items: flex-start; }
  .ba-compare { height: 200px; }
  .portfolio-head { gap: 12px; padding: 18px 0 14px; }
  .portfolio-eyebrow { font-size: .6rem; letter-spacing: .14em; }
  .portfolio-line { flex: 0 1 50px; }
  .marquee-stage { padding: 4px 0 20px; }
  .marquee-stage::before,
  .marquee-stage::after { top: 4px; bottom: 20px; width: 50px; }
  .marquee-item { padding: 6px 14px 6px 10px; gap: 7px; }
  .marquee-item .flag { font-size: 1.05rem; }
  .marquee-item .name { font-size: .68rem; }
  .marquee-track { gap: 12px; animation-duration: 20s; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 60px 0; }
  .why-grid, .about-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .about-visual { order: 2; }
  .about-text { order: 1; }
  .service-hero-inner { grid-template-columns: 1fr; }
  .service-hero-visual { display: none; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse .service-detail-visual { order: 0; }
  .service-benefits-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .hero-inner { padding: 60px 24px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-badges { gap: 24px; }
  .why-stats { padding: 36px 28px; }
  .cta-banner { padding: 60px 0; }
}

@media (max-width: 600px) {
  .nav-links {
    display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 20px; z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav-links.open {
    opacity: 1; pointer-events: all;
  }
  .nav-links > li { width: 100%; text-align: center; }
  .nav-links a { font-size: 1.1rem; color: var(--white); }
  .nav-links > li > a::after { background: var(--gold); }
  .nav-links .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: var(--white) !important; font-size: .9rem !important;
  }
  .nav-dropdown-menu {
    position: static; background: transparent; box-shadow: none;
    border: none; padding: 8px 0 0; min-width: auto;
    opacity: 1; pointer-events: all; transform: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { color: rgba(255,255,255,.7); font-size: .9rem; text-align: center; }
  .nav-dropdown-menu a:hover { background: rgba(255,255,255,.05); color: var(--gold-lt); }
  .nav-dropdown-trigger::after { border-color: var(--white); }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 36px; }
  .process-step p { max-width: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-badges { gap: 20px; }
  .topbar-contact { gap: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { text-align: center; justify-content: center; }
  .service-benefits-grid { grid-template-columns: 1fr; }
  .service-hero { min-height: auto; padding: 40px 0; }
  .service-detail-section { padding: 60px 0; }
  .service-cta { padding: 60px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline, .btn-whatsapp { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 24px; height: 24px; }
}
