
/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #0d0c08;
  --cream2:  #131008;
  --gold:    #c8a030;
  --gold2:   #a07e22;
  --dark:    #070604;
  --dark2:   #1a1710;
  --card:    #1a1710;
  --card2:   #211e12;
  --ink:     #ede5cc;
  --muted:   #9a9070;
  --white:   #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(200,160,48,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  animation: pulse-ring 2s ease infinite;
}

.loader-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(200,160,48,0.10);
  animation: pulse-ring 2s ease infinite 0.4s;
}

.loader-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
}

.loader-wordmark {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.45em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 0.6s ease 0.4s forwards;
}

.loader-bar-track {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.10);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fade-up 0.4s ease 0.6s forwards;
}

.loader-bar-fill {
  position: absolute;
  inset: 0;
  left: -100%;
  background: var(--gold);
  animation: bar-fill 1.6s ease 0.8s forwards;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.06); opacity: 0.7; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bar-fill {
  from { left: -100%; }
  to   { left: 0; }
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 52px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}

nav.scrolled {
  background: rgba(13,12,8,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 52px;
  box-shadow: 0 1px 0 rgba(200,160,48,0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color 0.4s;
  cursor: pointer;
}

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

.nav-logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s;
  flex-shrink: 0;
}

nav.scrolled .nav-logo-icon { border-color: rgba(200,160,48,0.45); }

.nav-logo-icon svg { width: 16px; height: 16px; }
.nav-logo-icon svg path { stroke: var(--white); transition: stroke 0.4s; }
nav.scrolled .nav-logo-icon svg path { stroke: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}

.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: rgba(255,255,255,1); }

nav.scrolled .nav-links a { color: rgba(237,229,204,0.65); }
nav.scrolled .nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

nav.scrolled .nav-cta {
  border-color: rgba(200,160,48,0.55);
  color: var(--gold);
}

nav.scrolled .nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: background 0.4s, transform 0.3s;
}
nav.scrolled .nav-hamburger span { background: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,8,0.30) 0%,
    rgba(10,10,8,0.15) 40%,
    rgba(10,10,8,0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.40em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-eyebrow.visible { opacity: 1; transform: translateY(0); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(58px, 8vw, 110px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s ease 0.45s, transform 0.9s ease 0.45s;
}

.hero-title.visible { opacity: 1; transform: translateY(0); }

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  max-width: 420px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}

.hero-subtitle.visible { opacity: 1; transform: translateY(0); }

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}

.hero-buttons.visible { opacity: 1; transform: translateY(0); }

.btn-gold {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover { background: #a07e22; transform: translateY(-1px); }

.btn-outline-light {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 16px 32px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Counter badge */
.hero-badge {
  position: absolute;
  bottom: 52px;
  right: 52px;
  background: rgba(200,160,48,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,160,48,0.35);
  padding: 18px 26px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.8s ease 1.2s;
}
.hero-badge.visible { opacity: 1; }

.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hero-badge-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.8s ease 1.4s;
}
.hero-scroll.visible { opacity: 1; }

.hero-scroll-text {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.40), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.85); }
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.45s; }
.reveal-d5 { transition-delay: 0.60s; }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: 120px 52px;
  background: var(--cream);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Abstract image placeholder */
.about-visual {
  position: relative;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--dark2);
  overflow: hidden;
  position: relative;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 60%, rgba(200,160,48,0.22) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(200,160,48,0.12) 0%, transparent 50%),
              linear-gradient(160deg, #1a1608, #0d0c08);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 32px;
}

/* Animated pool ripple in about visual */
.about-pool-anim {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pool-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,160,48,0.15);
  transform: translate(-50%, -50%);
  animation: pool-expand 4s ease-out infinite;
}

.pool-ring:nth-child(1) { animation-delay: 0s;    width: 80px;  height: 80px;  left: 50%; top: 55%; }
.pool-ring:nth-child(2) { animation-delay: 1.2s;  width: 80px;  height: 80px;  left: 50%; top: 55%; }
.pool-ring:nth-child(3) { animation-delay: 2.4s;  width: 80px;  height: 80px;  left: 50%; top: 55%; }
.pool-ring:nth-child(4) { animation-delay: 0.6s;  width: 60px;  height: 60px;  left: 30%; top: 40%; }
.pool-ring:nth-child(5) { animation-delay: 1.8s;  width: 60px;  height: 60px;  left: 30%; top: 40%; }
.pool-ring:nth-child(6) { animation-delay: 1.0s;  width: 50px;  height: 50px;  left: 70%; top: 35%; }
.pool-ring:nth-child(7) { animation-delay: 2.2s;  width: 50px;  height: 50px;  left: 70%; top: 35%; }

@keyframes pool-expand {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(8);   opacity: 0; }
}

/* Stars in about visual */
.about-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.star-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(200,160,48,0.6);
  animation: twinkle 3s ease infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.5); }
}

.about-est {
  background: var(--gold);
  padding: 22px 28px;
  position: absolute;
  bottom: -24px;
  right: -24px;
  text-align: center;
}

.about-est-word {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1;
}

.about-est-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.7);
  margin-top: 4px;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.10;
  margin-bottom: 28px;
}

.about-heading em { font-style: italic; color: var(--gold); }

.about-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 16px;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: rgba(200,160,48,0.40);
  margin: 32px 0;
}

.about-stats {
  display: flex;
  gap: 0;
}

.stat-item {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(200,160,48,0.20);
}

.stat-item:last-child {
  padding-right: 0;
  border-right: none;
  padding-left: 32px;
}

.stat-item:not(:first-child):not(:last-child) {
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-num sup {
  font-size: 18px;
  vertical-align: super;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 120px 52px;
  background: var(--cream2);
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 72px;
  text-align: center;
}

.services-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.10;
}

.services-title em { font-style: italic; color: var(--gold); }

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
  border: 1px solid rgba(200,160,48,0.18);
}

.service-card {
  background: var(--card);
  padding: 52px 40px;
  position: relative;
  border-right: 1px solid rgba(200,160,48,0.15);
  transition: background 0.4s;
  overflow: hidden;
}

.service-card:last-child { border-right: none; }
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(-n+3) { border-bottom: 1px solid rgba(200,160,48,0.15); }

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--card2); }

.service-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  color: rgba(200,160,48,0.12);
  line-height: 1;
  position: absolute;
  top: 28px;
  right: 32px;
  letter-spacing: -0.03em;
  user-select: none;
  transition: color 0.4s;
}

.service-card:hover .service-num { color: rgba(200,160,48,0.22); }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200,160,48,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover .service-icon {
  border-color: var(--gold);
  background: rgba(200,160,48,0.08);
}

.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.2;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.80;
  color: var(--muted);
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-features li {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
#gallery {
  padding: 0;
  background: var(--dark);
  overflow: hidden;
}

.gallery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  height: 420px;
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-cell-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.gallery-cell:hover .gallery-cell-bg { transform: scale(1.06); }

/* Abstract decorative backgrounds for gallery */
.gallery-cell:nth-child(1) .gallery-cell-bg {
  background: radial-gradient(ellipse at 40% 50%, rgba(200,160,48,0.28) 0%, transparent 65%),
              linear-gradient(145deg, #1a1608, #0d0c08);
}
.gallery-cell:nth-child(2) .gallery-cell-bg {
  background: radial-gradient(ellipse at 60% 40%, rgba(200,160,48,0.20) 0%, transparent 60%),
              linear-gradient(160deg, #131008, #0a0904);
}
.gallery-cell:nth-child(3) .gallery-cell-bg {
  background: radial-gradient(ellipse at 35% 65%, rgba(200,160,48,0.24) 0%, transparent 60%),
              linear-gradient(135deg, #1c1808, #0d0c08);
}
.gallery-cell:nth-child(4) .gallery-cell-bg {
  background: radial-gradient(ellipse at 55% 45%, rgba(200,160,48,0.22) 0%, transparent 60%),
              linear-gradient(150deg, #151208, #0a0904);
}

.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.70) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-cell:hover .gallery-cell-overlay { opacity: 1; }

.gallery-cell-label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  font-style: italic;
}

/* Decorative particles in gallery cells */
.gallery-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,160,48,0.5);
  pointer-events: none;
}

.gallery-heading-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 52px 56px;
  text-align: center;
}

.gallery-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
}

.gallery-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.20em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.gallery-cta-wrap {
  text-align: center;
  padding: 52px 52px 80px;
}

.btn-outline-gold {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(200,160,48,0.45);
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 120px 52px;
  background: var(--cream);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.10;
  margin-bottom: 18px;
}

.contact-heading em { font-style: italic; color: var(--gold); }

.contact-sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 340px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,160,48,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.contact-item:hover .contact-item-icon {
  background: rgba(200,160,48,0.10);
  border-color: var(--gold);
}

.contact-item-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.3;
}


.contact-item-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
}

.contact-item-value a {
  color: inherit;
  text-decoration: none;
}

.contact-item-value a:hover {
  color: var(--gold);
}

/* Map placeholder */
.contact-map {
  margin-top: 40px;
  background: var(--dark2);
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,160,48,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,160,48,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.contact-map-pin {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-map-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 6px;
  box-shadow: 0 0 0 6px rgba(200,160,48,0.20), 0 0 0 12px rgba(200,160,48,0.10);
  animation: pin-pulse 2s ease infinite;
}

@keyframes pin-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(200,160,48,0.20), 0 0 0 12px rgba(200,160,48,0.10); }
  50%       { box-shadow: 0 0 0 10px rgba(200,160,48,0.15), 0 0 0 20px rgba(200,160,48,0.06); }
}

.contact-map-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
}

/* Form */
.contact-form {
  background: var(--card);
  padding: 48px 44px;
  border: 1px solid rgba(200,160,48,0.20);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200,160,48,0.28);
  padding: 10px 0;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(154,144,112,0.50); }

.form-select option {
  background: var(--card2);
  color: var(--ink);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-bottom-color: var(--gold); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

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

/* Photo Upload */
.form-label-optional {
  font-size: 10px;
  color: rgba(200,160,48,0.6);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 6px;
}

.photo-upload-area {
  border: 1.5px dashed rgba(200,160,48,0.35);
  background: rgba(200,160,48,0.03);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  overflow: hidden;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-upload-area:hover {
  border-color: var(--gold);
  background: rgba(200,160,48,0.07);
}

.photo-upload-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 28px 20px;
  color: rgba(200,160,48,0.6);
  text-align: center;
}

.photo-upload-icon svg {
  width: 36px;
  height: 36px;
  stroke: rgba(200,160,48,0.5);
  margin-bottom: 4px;
}

.photo-upload-icon span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.photo-upload-icon small {
  font-size: 11px;
  color: rgba(200,160,48,0.5);
  letter-spacing: 0.02em;
}

.photo-preview-wrap {
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.photo-preview-wrap img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 2px;
}

.photo-remove {
  background: none;
  border: 1px solid rgba(200,160,48,0.3);
  color: rgba(200,160,48,0.7);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}

.photo-remove:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.photo-upload-hint {
  font-size: 11px;
  color: rgba(200,160,48,0.5);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* WhatsApp Submit */
.form-submit-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
}

.form-submit-wa:hover { background: #1da851; color: #fff; }

.form-wa-hint {
  text-align: center;
  font-size: 11px;
  color: rgba(200,160,48,0.5);
  margin-top: 10px;
  letter-spacing: 0.03em;
}

.form-submit {
  width: 100%;
  margin-top: 32px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  border: none;
  padding: 18px 32px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.form-submit:hover { background: #a07e22; color: var(--white); }

/* Success / Error message */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0 0;
}

.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(200, 60, 60, 0.08);
  border: 1px solid rgba(200, 60, 60, 0.25);
  color: #c03c3c;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.form-success-msg {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
}

.form-success-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  padding: 60px 52px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(200,160,48,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon svg { width: 14px; height: 14px; }
.footer-logo-icon svg path { stroke: var(--gold); }

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  max-width: 240px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-nav-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav-list a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}

.footer-copy span { color: rgba(200,160,48,0.6); }

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(200,160,48,0.08);
}

.footer-social svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.45); fill: none; stroke-width: 1.4; }
.footer-social a:hover svg { stroke: var(--gold); }

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: 120px 52px;
  background: var(--cream);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 72px;
}

.pricing-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.10;
  margin-bottom: 16px;
}

.pricing-title em { font-style: italic; color: var(--gold); }

.pricing-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(200,160,48,0.12);
  border: 1px solid rgba(200,160,48,0.18);
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--card);
  padding: 48px 44px;
  position: relative;
  transition: background 0.35s;
}

.pricing-card:hover { background: var(--card2); }

.pricing-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pricing-card:hover::after { transform: scaleX(1); }

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(200,160,48,0.15);
}

.pricing-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200,160,48,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: border-color 0.3s, background 0.3s;
}

.pricing-card:hover .pricing-icon {
  border-color: var(--gold);
  background: rgba(200,160,48,0.08);
}

.pricing-icon svg {
  width: 18px;
  height: 18px;
}

.pricing-card-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(200,160,48,0.08);
}

.pricing-list li:last-child { border-bottom: none; }

.pricing-item-name {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.3s;
}

.pricing-list li:hover .pricing-item-name { color: var(--ink); }

.pricing-item-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-left: 16px;
}

.pricing-na {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted) !important;
}

.pricing-note {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(154,144,112,0.65);
  line-height: 1.7;
  font-style: italic;
}

.pricing-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark2);
  border: 1px solid rgba(200,160,48,0.18);
  border-left: 3px solid var(--gold);
  padding: 22px 28px;
}

.pricing-disclaimer-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 1px;
}

.pricing-disclaimer-icon svg { width: 20px; height: 20px; }

.pricing-disclaimer p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-disclaimer strong {
  color: var(--gold);
  font-weight: 500;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
#beforeafter {
  padding: 120px 52px;
  background: var(--cream2);
  overflow: hidden;
}

.ba-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.ba-header {
  text-align: center;
  margin-bottom: 64px;
}

.ba-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.10;
  margin-bottom: 14px;
}

.ba-title em { font-style: italic; color: var(--gold); }

.ba-subtitle {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Outer wrapper — holds track + arrows */
.ba-track-wrap {
  position: relative;
}

/* Carousel track */
.ba-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.ba-track.dragging { cursor: grabbing; transition: none; }

/* Single slide */
.ba-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ba-slide-caption {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* The comparison widget itself */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(200,160,48,0.20);
  background: var(--dark2);
  touch-action: pan-y;
}

/* Both images fill the box */
.ba-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* "Before" is clipped on the right by JS */
.ba-img-before {
  z-index: 2;
  /* clip-path set via JS */
}

.ba-img-after {
  z-index: 1;
}

/* Labels */
.ba-label {
  position: absolute;
  bottom: 18px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid currentColor;
}

.ba-label-before {
  left: 18px;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.30);
  background: rgba(0,0,0,0.35);
}

.ba-label-after {
  right: 18px;
  color: var(--gold);
  border-color: rgba(200,160,48,0.45);
  background: rgba(0,0,0,0.35);
}

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  /* left set by JS */
  transform: translateX(-50%);
}

.ba-handle-line {
  flex: 1;
  width: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 18px rgba(200,160,48,0.35);
}

.ba-handle-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--dark);
  stroke-width: 2;
}

/* Placeholder when no image is loaded */
.ba-img-before::after,
.ba-img-after::after {
  content: attr(data-label);
}

.ba-img img[src="before1.jpg"]:not([complete]),
.ba-img img[src="after1.jpg"]:not([complete]) {
  display: none;
}

/* Fallback placeholder gradient when image missing */
.ba-img-before { background: linear-gradient(135deg, #1a1608 0%, #2a2010 100%); }
.ba-img-after  { background: linear-gradient(135deg, #0d0c08 0%, #1a1508 100%); }

/* Placeholder overlay shown when image is broken */
.ba-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-placeholder svg {
  width: 36px;
  height: 36px;
  stroke: rgba(200,160,48,0.30);
  fill: none;
  stroke-width: 1;
}

/* Carousel arrows */
.ba-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(13,12,8,0.75);
  border: 1px solid rgba(200,160,48,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  z-index: 20;
  /* offset so they sit outside the slider frame */
  margin-top: -18px; /* half caption height approx */
}

.ba-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.ba-arrow svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.ba-arrow:hover svg { stroke: var(--dark); }

.ba-arrow-prev { left: -64px; }
.ba-arrow-next { right: -64px; }

.ba-arrow:disabled { opacity: 0.25; pointer-events: none; }

/* Dots */
.ba-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.ba-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200,160,48,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.ba-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-overlay a {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-mobile-overlay a:hover { color: var(--gold); }

.nav-mobile-close {
  position: absolute;
  top: 24px; right: 52px;
  font-size: 28px;
  color: rgba(255,255,255,0.40);
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  line-height: 1;
}

.nav-mobile-close:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  nav { padding: 20px 28px; }
  nav.scrolled { padding: 14px 28px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  #about, #services, #pricing, #beforeafter, #contact { padding: 80px 28px; }
  #gallery { padding: 0; }
  .ba-arrow-prev { left: -8px; }
  .ba-arrow-next { right: -8px; }
  .ba-arrow { width: 38px; height: 38px; }
  .gallery-heading-wrap { padding: 60px 28px 48px; }
  .gallery-cta-wrap { padding: 40px 28px 64px; }

  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; }
  .about-est { right: -12px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(200,160,48,0.15); }
  .service-card:last-child { border-bottom: none; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 28px; }

  .gallery-inner { grid-template-columns: 1fr 1fr; height: 340px; }

  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-form { padding: 36px 28px; }

  footer { padding: 48px 28px 24px; }
  .footer-top { flex-direction: column; gap: 40px; }
  .hero-badge { right: 20px; bottom: 80px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 46px; }
  .gallery-inner { grid-template-columns: 1fr 1fr; height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(200,160,48,0.20); padding: 0 0 24px; }
  .stat-item:last-child { border-bottom: none; padding: 24px 0 0; }
  .stat-item:not(:first-child):not(:last-child) { padding: 24px 0; }
  .footer-nav { gap: 32px; }
  .wa-fixed-label { display: none; }
}

/* ============================================================
   WHATSAPP FIXED BUTTON
   ============================================================ */
.wa-fixed {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.wa-fixed:hover {
  background: #1da851;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.wa-fixed svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-fixed-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   SEO / ACCESSIBILITY — Skip Link
═══════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold, #c8a030);
  color: #000;
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 99999;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}
