/* ═══════════════════════════════════════════════════════════════
   DECOR X WALLPAPER — LUXURY DESIGN SYSTEM
   Palette: Warm Sage + Champagne Gold + Deep Slate
   Typography: Playfair Display + DM Sans
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:wght@200;300;400;500;600&family=Cormorant:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  /* Core Palette — Slate + Champagne */
  --bg:          #F7F4EF;
  --bg-2:        #EFE9DF;
  --bg-3:        #E6DFD1;
  --surface:     #FDFBF7;
  --charcoal:    #1A1816;
  --slate:       #2D2B28;
  --slate-2:     #4A4844;
  --mist:        #7C7A74;
  --mist-light:  #B0ADA7;
  --champagne:   #C9A96E;
  --champ-light: #E0C896;
  --champ-pale:  #F5EDD8;
  --champ-glow:  rgba(201,169,110,0.15);
  --sage:        #8A9E8B;
  --sage-light:  #B5C4B6;
  --sage-pale:   #E8EFE8;
  --white:       #FFFFFF;
  --border:      rgba(201,169,110,0.25);
  --border-light:rgba(201,169,110,0.12);

  /* Shadows */
  --sh-xs: 0 1px 6px rgba(26,24,22,0.06);
  --sh-sm: 0 3px 16px rgba(26,24,22,0.09);
  --sh-md: 0 8px 36px rgba(26,24,22,0.12);
  --sh-lg: 0 20px 70px rgba(26,24,22,0.16);
  --sh-xl: 0 40px 100px rgba(26,24,22,0.20);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--slate);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══ UTILITY ═══ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--champagne); font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--champagne);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--charcoal); font-weight: 700;
  margin: 12px 0 20px;
}
.section-sub {
  font-size: 1.05rem; color: var(--mist);
  max-width: 560px; line-height: 1.75;
}
.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--champagne), var(--champ-light));
  margin: 16px 0 32px; border-radius: 2px;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s var(--ease); position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--champagne); color: var(--charcoal);
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
}
.btn-primary:hover {
  background: var(--champ-light);
  box-shadow: 0 8px 32px rgba(201,169,110,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--border);
  color: var(--charcoal); background: transparent;
}
.btn-outline:hover {
  background: var(--champ-glow);
  border-color: var(--champagne);
  transform: translateY(-1px);
}
.btn-dark {
  background: var(--charcoal); color: var(--champ-light);
  box-shadow: var(--sh-md);
}
.btn-dark:hover {
  background: var(--slate); transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

/* ═══ LOCATION SWITCHER ═══ */
#locBanner {
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  gap: 4px; padding: 0 16px; height: 48px;
  position: relative; z-index: 200;
}
.loc-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 20px; border-radius: 100px;
  font-size: 12px; letter-spacing: 0.08em; font-weight: 500;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.25s var(--ease);
  color: var(--mist-light); background: transparent;
  border: 1px solid transparent;
}
.loc-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.loc-pill.active {
  background: var(--champ-glow);
  color: var(--champ-light);
  border-color: rgba(201,169,110,0.3);
}
.loc-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.1); margin: 0 4px; }

/* ═══ NAVIGATION ═══ */
#mainNav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,239,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#mainNav.scrolled {
  border-color: var(--border-light);
  box-shadow: var(--sh-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 38px; height: 38px;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
}
.nav-logo-mark span { color: var(--champagne); font-size: 16px; font-weight: 700; font-family: 'Playfair Display', serif; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--charcoal); letter-spacing: 0.05em; }
.nav-logo-text .sub { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--champagne); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.06em; font-weight: 400;
  color: var(--slate-2); transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--champagne);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--slate); border-radius: 2px; transition: 0.3s; }

/* Mobile Nav */
#mobileNav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: var(--charcoal);
  flex-direction: column;
}
#mobileNav.open { display: flex; }
.mobile-nav-inner {
  display: flex; flex-direction: column;
  padding: 32px 32px 48px;
  height: 100%;
}
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.mobile-close { font-size: 24px; color: var(--mist-light); cursor: pointer; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-links a {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-links a:hover { color: var(--champ-light); }
.mobile-nav-footer { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.mobile-loc-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px; color: var(--champ-light);
  font-size: 13px; font-weight: 500;
}

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26,24,22,0.72) 0%,
    rgba(26,24,22,0.45) 50%,
    rgba(26,24,22,0.25) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 0;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.35);
  border-radius: 100px;
  padding: 8px 18px; margin-bottom: 28px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champ-light);
  animation: fadeDown 0.8s var(--ease-out) 0.2s both;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white); font-weight: 800;
  line-height: 1.08;
  animation: fadeUp 0.9s var(--ease-out) 0.4s both;
}
.hero h1 em { color: var(--champ-light); font-style: italic; font-weight: 600; }
.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.75);
  margin: 24px 0 36px; max-width: 480px; line-height: 1.75;
  animation: fadeUp 0.9s var(--ease-out) 0.55s both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease-out) 0.7s both;
}
.hero-stats {
  position: absolute; z-index: 2;
  bottom: 48px; right: 0;
  display: flex; gap: 2px;
}
.hero-stat {
  background: rgba(26,24,22,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 20px 28px;
  text-align: center;
  animation: fadeUp 1s var(--ease-out) 0.9s both;
}
.hero-stat .num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--champ-light);
}
.hero-stat .lbl { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist-light); }

@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }

/* ═══ USP BAR ═══ */
.usp-bar {
  background: var(--charcoal);
  padding: 28px 0;
  overflow: hidden;
}
.usp-inner {
  display: flex; gap: 0; align-items: stretch;
}
.usp-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 36px; flex: 1;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--champ-glow); border: 1px solid rgba(201,169,110,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.usp-icon svg { width: 18px; height: 18px; }
.usp-text .title { font-size: 13px; font-weight: 600; color: var(--white); letter-spacing: 0.02em; }
.usp-text .desc { font-size: 11px; color: var(--mist-light); margin-top: 2px; }

/* ═══ SECTION BASE ═══ */
.section { padding: 100px 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--charcoal); }

/* ═══ COLLECTIONS GRID ═══ */
.collections-header { text-align: center; margin-bottom: 60px; }
.collections-header .section-sub { margin: 0 auto; }
.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.col-card {
  position: relative; overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.col-card.featured {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 420px;
}
.col-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.col-card:hover img { transform: scale(1.06); }
.col-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,22,0.75) 0%, rgba(26,24,22,0.1) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}
.col-card:hover .col-overlay {
  background: linear-gradient(to top, rgba(26,24,22,0.85) 0%, rgba(26,24,22,0.25) 60%);
}
.col-tag {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champ-light); margin-bottom: 6px;
}
.col-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
}
.col-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--champ-light); margin-top: 10px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s var(--ease);
}
.col-card:hover .col-link { opacity: 1; transform: translateY(0); }

/* ═══ WHY CHOOSE US ═══ */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-image { position: relative; }
.why-image-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 3px;
}
.why-image-float {
  position: absolute; bottom: -30px; right: -30px;
  width: 55%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 3px;
  border: 6px solid var(--bg);
  box-shadow: var(--sh-lg);
}
.why-badge {
  position: absolute; top: 24px; left: -20px;
  background: var(--champagne); color: var(--charcoal);
  padding: 16px 20px; border-radius: 2px;
  box-shadow: var(--sh-md);
  text-align: center;
}
.why-badge .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; display: block; }
.why-badge .sm { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.why-feat {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: var(--surface);
  border: 1px solid var(--border-light); border-radius: 3px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.why-feat:hover { border-color: var(--border); box-shadow: var(--sh-sm); }
.why-feat-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--champ-pale); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.why-feat-icon svg { width: 22px; height: 22px; color: var(--champagne); }
.why-feat h4 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.why-feat p { font-size: 0.9rem; color: var(--mist); }

/* ═══ GALLERY / PORTFOLIO ═══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  overflow: hidden; border-radius: 3px; position: relative;
  cursor: pointer;
}
.gallery-item:nth-child(5n+1) { grid-column: span 2; aspect-ratio: 3/2; }
.gallery-item { aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(26,24,22,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,24,22,0.35); }
.gallery-zoom {
  width: 44px; height: 44px;
  background: rgba(247,244,239,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0.7); transition: all 0.3s var(--ease);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }

/* ═══ PROCESS STEPS ═══ */
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px; background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center; padding: 0 20px;
  position: relative; z-index: 1;
}
.process-num {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--champagne);
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .process-num {
  background: var(--champagne); color: var(--charcoal);
  border-color: var(--champagne);
}
.process-step h4 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.process-step p { font-size: 0.875rem; color: var(--mist); }

/* ═══ TESTIMONIALS ═══ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 3px; padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.review-card:hover {
  border-color: var(--border); transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.review-stars { color: var(--champagne); font-size: 14px; margin-bottom: 16px; }
.review-text {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.15rem; font-style: italic; line-height: 1.65;
  color: var(--slate); margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--champ-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--champagne);
}
.review-info .name { font-size: 0.9rem; font-weight: 600; color: var(--charcoal); }
.review-info .loc { font-size: 11px; color: var(--mist); letter-spacing: 0.04em; }

/* ═══ LOCATIONS SECTION ═══ */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loc-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 3px; overflow: hidden;
  transition: box-shadow 0.3s;
}
.loc-card:hover { box-shadow: var(--sh-md); }
.loc-card-img { aspect-ratio: 16/9; overflow: hidden; }
.loc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.loc-card:hover .loc-card-img img { transform: scale(1.05); }
.loc-card-body { padding: 32px; }
.loc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--champ-pale); color: var(--champagne);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; font-weight: 500;
}
.loc-card h3 { font-size: 1.6rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.loc-info { display: flex; flex-direction: column; gap: 10px; margin: 16px 0 24px; }
.loc-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.9rem; color: var(--mist);
}
.loc-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--champagne); }
.loc-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ═══ AREAS SERVED ═══ */
.areas-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.area-block {
  border: 1px solid var(--border-light);
  border-radius: 3px; padding: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.area-block:hover {
  border-color: var(--champagne); background: var(--champ-glow);
}
.area-block h4 { font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.area-tag {
  font-size: 11px; padding: 3px 10px; border-radius: 100px;
  background: var(--bg-2); color: var(--mist);
  border: 1px solid var(--border-light);
}

/* ═══ FAQ ═══ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--border-light); border-radius: 3px; overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--charcoal);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--champ-glow); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--champagne);
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--champagne); color: var(--charcoal); border-color: var(--champagne); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner {
  padding: 0 28px 22px;
  font-size: 0.95rem; color: var(--mist); line-height: 1.75;
}

/* ═══ CONTACT FORM ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 3px; padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mist); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid var(--border-light);
  border-radius: 2px; padding: 14px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--slate);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-group textarea { resize: none; min-height: 100px; }

/* ═══ FLOATING BUTTONS ═══ */
.float-wrap {
  position: fixed; bottom: 28px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.float-main {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg); cursor: pointer;
  position: relative; z-index: 2;
  transition: transform 0.3s;
}
.float-main:hover { transform: scale(1.08); }
.float-wa { background: #25D366; }
.float-call { background: var(--champagne); }
.float-panel {
  position: absolute; bottom: 68px; right: 0;
  display: none; flex-direction: column; gap: 8px; align-items: flex-end;
  min-width: 220px;
}
.float-panel.open { display: flex; }
.float-option {
  display: flex; align-items: center; gap: 10px;
  background: var(--charcoal); color: var(--white);
  padding: 10px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 400;
  box-shadow: var(--sh-md);
  transition: background 0.2s;
  white-space: nowrap;
}
.float-option:hover { background: var(--slate-2); }
.float-option svg { width: 18px; height: 18px; flex-shrink: 0; }
.float-option.wa { background: #25D366; }
.float-option.wa:hover { background: #20bf5a; }
.float-picker-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mist-light); text-align: right; margin-bottom: 2px;
}

/* ═══ LIGHTBOX ═══ */
#lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,24,22,0.95);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
#lightbox.open { display: flex; }
#lightbox img { max-height: 90vh; max-width: 90vw; border-radius: 2px; }
#lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 32px; cursor: pointer; opacity: 0.7;
}
#lightbox-close:hover { opacity: 1; }

/* ═══ FOOTER ═══ */
footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
}
.footer-brand .logo-wrap { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; color: var(--mist-light); line-height: 1.75; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--mist-light); transition: all 0.2s;
}
.social-btn:hover { border-color: var(--champagne); color: var(--champ-light); }
.footer-col h4 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--champagne); font-weight: 500; margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem; color: var(--mist-light);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--mist-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--mist-light); transition: color 0.2s; }
.footer-legal a:hover { color: var(--champ-light); }

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══ PAGE BANNER (inner pages) ═══ */
.page-banner {
  background: var(--charcoal);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute;
  top: 0; right: 0; bottom: 0; left: 50%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,169,110,0.06) 100%);
}
.page-banner-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--mist-light); margin-bottom: 16px;
}
.breadcrumb a { color: var(--champ-light); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--mist); }
.page-banner h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: var(--white); font-weight: 800; }
.page-banner p { font-size: 1.05rem; color: var(--mist-light); margin-top: 12px; max-width: 560px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .col-grid { grid-template-columns: repeat(2, 1fr); }
  .col-card.featured { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .usp-inner { flex-direction: column; gap: 0; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px 24px; }
  .usp-item:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-image-float { display: none; }
  .why-badge { display: none; }
  .col-grid { grid-template-columns: 1fr; }
  .col-card.featured { grid-column: span 1; min-height: 280px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(5n+1) { grid-column: span 1; }
  .locations-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .loc-actions { flex-direction: column; }
}





.top-contact-bar{
    background:#111;
    color:#fff;
    padding:8px 0;
    font-size:13px;
}

.contact-numbers{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.contact-numbers a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
}

.contact-numbers a:hover{
    color:#c9a96e;
}