/* =========================================
   CHAVADI INTERIORS — DESIGN SYSTEM
   Modern, AI-SEO Friendly Website
   ========================================= */

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

:root {
  /* ── Brand Colors ── */
  --primary:       #2D3E50;   /* Logo navy / dark slate blue  */
  --primary-dark:  #1e2c3a;   /* Deeper navy for hover/footer */
  --accent:        #C9952A;   /* Metallic amber-gold          */
  --accent-dark:   #A87720;   /* Deeper gold for hover        */
  --accent-light:  #FFF3D6;   /* Very light gold tint         */
  --light:         #F8F9FA;   /* Off-white background         */
  --cream:         #FEF6E4;   /* Warm amber-tinted cream      */
  --text:          #1A1A1A;   /* Near-black body text         */
  --text-muted:    #5A6A7A;   /* Muted blue-grey              */
  --border:        #DDE3EA;   /* Subtle blue-grey border      */
  --white:         #ffffff;

  /* Typography — Clean, modern architectural sans-serif & crisp body */
  --font-display:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading:  'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --section-py:    64px;
  --container:     1200px;
  --radius:        12px;
  --radius-sm:     6px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 12px 48px rgba(0,0,0,.14);

  /* Transitions */
  --transition:    0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
img[loading="lazy"] { content-visibility: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.015em;
}
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3, h4, h5 {
  font-family: var(--font-heading);
}
h1 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); }
h2 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
h3 { font-size: clamp(1.02rem, 1.5vw, 1.22rem); }
h4 { font-size: 0.95rem; }

p { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.75; font-size: 0.94rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 0.98rem; color: var(--text-muted); max-width: 700px; line-height: 1.7; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section,
.section-py { padding: var(--section-py) 0; }
.section-light { background: var(--light); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.75); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header .eyebrow,
.section-eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 0;
}
.section-header p { margin: 12px auto 0; }
.section-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 640px;
  margin: 8px auto 0;
  line-height: 1.65;
}

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .84rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-weight: 700;
  letter-spacing: .02em;
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,42,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- LOGO IMAGE ---------- */
.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.nav-logo-img img,
.nav-logo-img svg,
.nav-logo-img .logo-nav svg {
  display: block;
  height: 74px;
  width: auto;
  max-width: 250px;
}
.nav-logo-img span.logo-nav {
  display: flex !important;
  align-items: center;
  height: 74px !important;
}
.nav-logo-img span.logo-nav svg {
  height: 74px !important;
  width: auto;
  max-width: 250px;
  display: block;
}
.nav-logo-img:hover { opacity: .9; }

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 6px 0;
  background: rgba(11, 21, 32, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar.scrolled {
  background: rgba(11, 21, 32, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  padding: 5px 0;
  border-bottom: 1.5px solid var(--accent);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link {
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--transition), box-shadow var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { 
  width: 100%; 
  height: 2.5px;
  bottom: -4px;
  background: linear-gradient(90deg, #c9952a 0%, #f7cf7c 50%, #c9952a 100%);
  box-shadow: 0 0 10px rgba(201,149,42,.7);
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { 
  color: #f7cf7c !important; 
  font-weight: 700;
  text-shadow: 0 0 12px rgba(201,149,42,.35);
}
.nav-dropdown-trigger.active .drop-arrow {
  color: #f7cf7c;
  opacity: 1;
}

.nav-cta {
  padding: 8px 22px;
  background: linear-gradient(135deg, #e5b95f 0%, #c9952a 100%);
  color: #0b1520 !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: .86rem;
  transition: all var(--transition);
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(201,149,42,.3);
}
.nav-cta:hover {
  background: linear-gradient(135deg, #f0c56d 0%, #d49f33 100%);
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,149,42,.5);
}
.nav-cta::after { display: none; }

/* Get Estimate — outline CTA in navbar */
a.nav-link[href*="/estimate/"] {
  padding: 7px 18px;
  background: rgba(201,149,42,.12);
  color: #e5b95f !important;
  border: 1.5px solid rgba(201,149,42,.55);
  border-radius: 50px;
  font-weight: 700;
  font-size: .84rem;
  transition: all var(--transition);
  letter-spacing: .02em;
}
a.nav-link[href*="/estimate/"]:hover {
  background: var(--accent);
  color: #0b1520 !important;
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,149,42,.35);
}
a.nav-link[href*="/estimate/"]::after { display: none; }

/* ── Dropdown menu ───────────────────────────────────────────────────────── */
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown-trigger .drop-arrow {
  width: 12px; height: 12px;
  transition: transform .25s;
  opacity: .7;
}
.nav-has-dropdown:hover .drop-arrow,
.nav-has-dropdown.open .drop-arrow {
  transform: rotate(180deg);
  opacity: 1;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #0e1a24;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  min-width: 170px;
  padding: 6px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 500;
  white-space: nowrap;
}
/* small arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,.1);
}
.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 500;
  transition: color .15s, background .15s, padding-left .15s;
  text-decoration: none;
}
.nav-dropdown-item svg { flex-shrink: 0; opacity: .6; }
.nav-dropdown-item:hover {
  color: var(--accent);
  background: rgba(255,255,255,.05);
  padding-left: 22px;
}
.nav-dropdown-item:hover svg { opacity: 1; }
.nav-dropdown-item.active {
  color: #f7cf7c !important;
  background: rgba(201,149,42,.12);
  font-weight: 700;
  padding-left: 22px;
}
.nav-dropdown-item.active svg {
  opacity: 1;
  color: #f7cf7c;
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 4px 12px;
}

/* Mobile — expand dropdown inline */
@media (max-width: 768px) {
  .nav-has-dropdown { width: 100%; text-align: center; }
  .nav-dropdown-trigger { justify-content: center; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,.05);
    border-radius: 8px;
    margin-top: 8px;
    display: none;
    padding: 4px 0;
  }
  .nav-has-dropdown.open .nav-dropdown { display: block; }
  .nav-dropdown::before { display: none; }
  .nav-dropdown-item { justify-content: center; }
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
/* Navbar is always dark so hamburger is always white */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
/* ---------- HERO (CLEAN LUXURY MINIMALIST) ---------- */
.hero {
  position: relative;
  background: radial-gradient(ellipse 80% 60% at 75% 20%, rgba(201,149,42,.08) 0%, #0b1520 65%);
  overflow: hidden;
  padding-top: 108px;
  padding-bottom: 56px;
}

.hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

/* LEFT: Clean Copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.hero-hl-gold {
  color: var(--accent);
}

.hero-lead {
  font-size: 1.02rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.75;
}

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

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0b1520 !important;
  font-weight: 700;
  font-size: .94rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(201,149,42,.35);
  transition: all var(--transition);
}
.btn-hero-primary:hover {
  background: var(--accent-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,42,.5);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: .94rem;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: all var(--transition);
}
.btn-hero-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,149,42,.08);
  transform: translateY(-2px);
}

/* ── Hero Photo Frame & 3D Perspective Card ── */
.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.hero-photo-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 22px;
  padding: 3px;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 25px rgba(201, 149, 42, 0.2);
  transition: transform 0.25s ease-out, box-shadow 0.35s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-photo-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent 0deg,
    transparent 140deg,
    rgba(201,149,42,.2) 180deg,
    rgba(243,207,122,.7) 220deg,
    #ffffff 245deg,
    rgba(243,207,122,.9) 255deg,
    rgba(201,149,42,.4) 280deg,
    transparent 320deg,
    transparent 360deg
  );
  animation: borderFlashBeam 3.6s linear infinite;
  z-index: 1;
}

@keyframes borderFlashBeam {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 19px;
  overflow: hidden;
  z-index: 2;
  background: #0b1520;
}

/* Multi-scene crossfade container */
.hero-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.hero-scene.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-scene .hero-photo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.08) brightness(0.85);
  transition: filter 0.75s cubic-bezier(0.25, 1, 0.5, 1), transform 8s ease-out;
  transform: scale(1);
}

/* Ken Burns slow cinematic zoom */
.hero-scene.active .hero-photo-main {
  transform: scale(1.06);
}

/* Mouse hover illuminates in warm natural 4K color */
.hero-photo-card:hover .hero-scene .hero-photo-main {
  filter: grayscale(0%) contrast(1.02) brightness(1.05);
}

/* Hero Floating Badge */
.hero-photo-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,21,32,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(201,149,42,.5);
  padding: 8px 18px;
  border-radius: 50px;
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  z-index: 4;
}
.hero-photo-badge strong { color: var(--accent); }
.hpb-icon { font-size: 1rem; }
.hpb-text { transition: opacity 0.25s ease; }

/* Scene Navigation Progress Bars */
.hero-scene-nav {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
  background: rgba(11,21,32,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 9px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
}
.hsn-bar {
  width: 20px;
  height: 3.5px;
  background: rgba(255,255,255,.3);
  border: none;
  border-radius: 3px;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.hsn-bar.active {
  width: 34px;
  background: linear-gradient(90deg, var(--accent) 0%, #fff 100%);
  box-shadow: 0 0 8px rgba(201,149,42,.8);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-top: 20px;
  }
  .hero-copy { align-items: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
}

/* Bottom stats bar on hero */
.hero-stats-bar {
  background: #0e1a24;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
}
.hero-stats-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.hero-stat-value {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1.1;
}
.hero-stat-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.hero-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-stat-icon {
  color: var(--accent);
  opacity: .85;
  margin-bottom: 2px;
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: .70rem;
  color: rgba(255,255,255,.55);
  margin-top: 2px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ---------- TRUST BADGES ---------- */
.trust-bar {
  background: var(--accent);
  padding: 14px 0;
  border-top: 3px solid var(--accent-dark);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .02em;
}
.trust-item svg { flex-shrink: 0; }

/* ---------- ABOUT / INTRO SECTION ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
/* Image column with floating badge */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,149,42,.4);
}
.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge-txt {
  font-size: .78rem;
  font-weight: 700;
  opacity: .85;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
/* Checklist bullets */
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.about-checklist li svg {
  flex-shrink: 0;
  color: var(--accent);
  stroke: var(--accent);
}
.about-visual {
  position: relative;
}
.about-visual-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(201,149,42,.4);
}
.about-visual-badge .num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.about-visual-badge .lbl { font-size: .8rem; opacity: .85; margin-top: 4px; }
.about-content .eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.about-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-feature {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--light);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  transition: box-shadow var(--transition);
}
.about-feature:hover { box-shadow: var(--shadow-sm); }
.about-feature-icon {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary-dark);
}
.about-feature h4 { margin-bottom: 4px; font-size: 1rem; }
.about-feature p { font-size: .88rem; margin: 0; }

/* ---------- SERVICES CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid rgba(221,227,234,.7);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 0 0 var(--radius) var(--radius);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 36px rgba(45,62,80,.12);
  border-color: var(--accent);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.5rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(201,149,42,.35);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 9px; }

/* ---------- PORTFOLIO SECTION & GRID (CLEAN 3-COLUMN) ---------- */
.portfolio-section {
  background: var(--light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.portfolio-section .section-heading {
  color: var(--primary);
}
.portfolio-section .section-sub {
  color: var(--text-muted);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #fff;
  cursor: pointer;
  border: 1px solid rgba(221,227,234,.8);
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: all var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(45,62,80,.15);
}
/* Images fill the entire item */
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-thumb {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.5s ease;
}
.portfolio-item:hover .portfolio-thumb { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14,26,36,.92) 0%, rgba(14,26,36,.45) 45%, transparent 75%);
  opacity: 1;
  transition: opacity var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
}
.portfolio-overlay h3,
.portfolio-overlay h4 { 
  color: var(--white); 
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.3;
}
.portfolio-overlay p { 
  color: rgba(255,255,255,.8); 
  font-size: .8rem; 
  margin: 2px 0 0; 
}
.portfolio-result {
  color: var(--accent);
  font-size: .78rem;
  font-weight: 600;
  margin-top: 6px;
}
.portfolio-cat {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #0b1520;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
  flex-shrink: 0;
  align-self: flex-start;
}

@media (max-width: 991px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 580px) {
  .portfolio-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- PLACEHOLDER VISUALS ---------- */
.visual-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  background: var(--cream);
  font-size: .85rem;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
}
.visual-placeholder svg { opacity: .4; }
.room-card-icon { font-size: 3rem; opacity: .35; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--primary-dark);
  padding: 46px 0;
  border-top: 4px solid var(--accent);
}
/* Both grid and flex-row variants */
.stats-grid,
.stats-strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.stat-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  flex: 1;
  min-width: 120px;
}
.stat-item:last-child { border-right: none; }
/* Support both .stat-number and .stat-num */
.stat-number,
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
/* Support both .stat-label and .stat-label-s */
.stat-label,
.stat-label-s {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ---------- PROCESS STEPS ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Base horizontal connection track line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 31px; 
  left: 12.5%; 
  right: 12.5%;
  height: 2px;
  background: rgba(201,149,42,.28);
  border-radius: 2px;
  z-index: 0;
}

/* Glowing laser beam gliding smoothly from Left to Right */
.process-steps::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 12.5%;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(201,149,42,.3) 20%, 
    rgba(247,207,124,.9) 70%, 
    #ffffff 90%, 
    rgba(247,207,124,1) 100%
  );
  border-radius: 4px;
  box-shadow: 0 0 10px 2px rgba(247,207,124,1), 0 0 20px 4px rgba(201,149,42,.8);
  z-index: 1;
  animation: processLaserTravel 5.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes processLaserTravel {
  0% {
    left: 12.5%;
    opacity: 0;
    transform: translateX(-100%) scaleX(0.5);
  }
  12% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
  85% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
  100% {
    left: 87.5%;
    opacity: 0;
    transform: translateX(0) scaleX(0.5);
  }
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
.step-num {
  width: 64px; 
  height: 64px;
  background: linear-gradient(135deg, #e5b95f 0%, #c9952a 100%);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b1520;
  box-shadow: 0 6px 20px rgba(201,149,42,.42);
  position: relative;
  z-index: 3;
  transition: all var(--transition);
}
.process-step:hover .step-num {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,149,42,.65);
  border-color: #f7cf7c;
}
.process-step h4 { margin-bottom: 8px; font-size: 1.05rem; font-weight: 700; color: var(--primary-dark); font-family: var(--font-heading); }
.process-step p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  font-size: .95rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .95rem; color: var(--primary); }
.author-location { font-size: .8rem; color: var(--text-muted); }

/* ---------- FAQ SECTION ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--accent-light);
  border: 1.5px solid rgba(201,149,42,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--accent-dark);
  font-size: 1.2rem;
  font-weight: 400;
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ---------- CTA BAND ---------- */
/* cta-box: used in the CTA section on homepage and about page */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,149,42,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.cta-box h2 { color: var(--white) !important; margin-bottom: 12px; }
.cta-box p  { color: rgba(255,255,255,.75) !important; margin-bottom: 24px; }
/* outline button on dark CTA background */
.cta-section .btn-outline {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.cta-section .btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

/* Homepage CTA with compact lead form — two-column layout */
.cta-box-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  max-width: 980px;
  text-align: left;
}
.cta-box-split .cta-box-copy { text-align: left; }
.cta-box-split .cta-actions { justify-content: flex-start; }
.cta-lead-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-lead-form h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}
.cta-lead-form input,
.cta-lead-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.92);
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: .9rem;
}
.cta-lead-form input::placeholder { color: #6b7280; }
.cta-lead-msg { text-align: left; }

@media (max-width: 900px) {
  .cta-box-split { grid-template-columns: 1fr; text-align: center; }
  .cta-box-split .cta-box-copy { text-align: center; }
  .cta-box-split .cta-actions { justify-content: center; }
}

.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,149,42,.14) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 24px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
  margin-bottom: 22px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #141f2b;
  color: rgba(255,255,255,.75);
  padding: 54px 0 24px;
  border-top: 4px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 36px;
}
/* Footer logo: uses logo-light.svg (white/gold), no filter needed */
.footer .nav-logo-img img {
  opacity: .92;
  height: 64px;
}
.footer .nav-logo-img:hover img { opacity: 1; }

.footer-brand .nav-logo { font-size: 1.2rem; margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
  align-items: flex-start;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--accent); }

/* ---------- SOCIAL MEDIA ICONS (FOOTER) ---------- */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  background: var(--cream);
  padding: 16px 0;
  margin-top: 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 8px; color: var(--text-muted); }
.breadcrumb-list a { color: var(--accent); }
.breadcrumb-list .sep { color: var(--border); }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 116px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 70% 50%, rgba(201,149,42,.16) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; margin-top: 16px; }

/* ---------- CONTACT FORM ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px;
  border-top: 4px solid var(--accent);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(201,149,42,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid rgba(201,149,42,.25);
}
.contact-info-item h4 { color: var(--white); font-size: .9rem; margin-bottom: 4px; }
.contact-info-item p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; }
.contact-info-item a { color: var(--accent); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 48px 40px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,149,42,.18);
}
textarea { min-height: 130px; resize: vertical; }

/* ---------- PORTFOLIO FILTER ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-weight: 700;
}

/* ---------- PROJECT CARDS ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--white);
  border: 1px solid var(--border);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.project-image {
  aspect-ratio: 4/3;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
  box-shadow: 0 2px 8px rgba(201,149,42,.3);
}
.project-body { padding: 22px; }
.project-body h4 { margin-bottom: 6px; }
.project-body p { font-size: .88rem; margin: 0; }
.project-meta {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-muted);
}
.project-meta span { display: flex; align-items: center; gap: 4px; }

/* ---------- MAP EMBED ---------- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  background: var(--cream);
  border: 1px solid var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ---------- BADGE STRIP ---------- */
.badge-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--accent-light);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent-dark);
  border: 1.5px solid rgba(201,149,42,.4);
}

/* ---------- GOOGLE REVIEWS SECTION ---------- */
.google-reviews-section {
  background: #111b24;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.google-reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,149,42,.05) 0%, transparent 70%);
  pointer-events: none;
}
.gr-heading {
  text-align: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.gr-heading-underline {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 52px;
  border-radius: 2px;
}

.gr-wrapper {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

/* Left panel */
.gr-summary {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  border-right: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
  gap: 6px;
}
.gr-summary-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.gr-summary-excellent {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
}
.gr-summary-stars {
  font-size: 1.5rem;
  color: #FBBC04;
  letter-spacing: 2px;
  line-height: 1;
}
.gr-summary-rating {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.gr-summary-rating strong {
  color: var(--white);
}
.gr-google-logo {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gr-google-logo svg { width: 72px; height: 24px; }

/* Carousel track */
.gr-carousel-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.gr-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}
.gr-card {
  flex: 0 0 calc(33.333% - 1px);
  background: rgba(255,255,255,.05);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--transition);
}
.gr-card:hover { background: rgba(255,255,255,.08); }
.gr-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.gr-card-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gr-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
  font-family: var(--font-heading);
}
.gr-card-name {
  font-weight: 600;
  font-size: .93rem;
  color: var(--white);
  line-height: 1.2;
}
.gr-card-date {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-top: 1px;
}
.gr-card-g-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
}
.gr-card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gr-card-stars span {
  color: #FBBC04;
  font-size: 1rem;
  letter-spacing: 1px;
}
.gr-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.gr-verified svg { color: #4285F4; }
.gr-card-text {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gr-read-more {
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  cursor: default;
}

/* Carousel arrows */
.gr-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.gr-arrow:hover { background: var(--accent); border-color: var(--accent); color: #0e1a24; }
.gr-arrow-prev { left: 8px; }
.gr-arrow-next { right: 8px; }

@media (max-width: 900px) {
  .gr-summary { flex: 0 0 160px; padding: 24px 16px; }
  .gr-card { flex: 0 0 calc(50% - 1px); }
}
@media (max-width: 600px) {
  .gr-summary { display: none; }
  .gr-card { flex: 0 0 calc(100% - 0px); border-right: none; }
  .gr-arrow { display: none; }
}

/* ---------- BLOG PAGE ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.blog-card-body {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-card-meta svg { flex-shrink: 0; }
.blog-card-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--primary);
}
.blog-card h3 a {
  color: inherit;
  transition: color var(--transition);
}
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
  margin-top: auto;
}
.blog-card-read:hover { gap: 10px; }

/* Featured blog card (first, spans 2 cols) */
.blog-card-featured {
  grid-column: span 2;
}
.blog-card-featured .blog-card-img { aspect-ratio: 2/1; }
.blog-card-featured .blog-card-body { padding: 28px 26px; }
.blog-card-featured h3 { font-size: 1.4rem; }
.blog-card-featured p { -webkit-line-clamp: 4; }

/* Blog sidebar layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-sidebar {
  position: sticky;
  top: 100px;
}
.blog-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 28px;
}
.blog-sidebar-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.blog-cat-list { display: flex; flex-direction: column; gap: 8px; }
.blog-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: .88rem;
  color: var(--text);
  border: 1px solid transparent;
}
.blog-cat-item:hover, .blog-cat-item.active {
  background: var(--accent-light);
  border-color: rgba(201,149,42,.3);
  color: var(--accent-dark);
  font-weight: 600;
}
.blog-cat-count {
  background: var(--border);
  color: var(--text-muted);
  font-size: .75rem;
  padding: 2px 8px;
  border-radius: 50px;
}
.blog-recent-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.blog-recent-item:last-child { border-bottom: none; }
.blog-recent-img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
}
.blog-recent-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.blog-recent-title:hover { color: var(--accent); }
.blog-recent-date { font-size: .75rem; color: var(--text-muted); }

/* Blog pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.page-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}
.page-btn:hover, .page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-card-featured { grid-column: span 1; }
  .blog-card-featured .blog-card-img { aspect-ratio: 16/9; }
  .blog-card-featured h3 { font-size: 1.1rem; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- WHATSAPP FLOAT BUTTON ---------- */
/* Bottom-right — the spot the Tawk chat widget used to occupy (now removed).
   .scroll-top also lives in this corner (bottom:28,right:28, 48px tall), so
   this is stacked directly above it with a clear gap, and raised further on
   desktop/tablet where the hero stats bar sits flush with the viewport edge. */
.whatsapp-float {
  position: fixed;
  bottom: 92px; right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all var(--transition);
}
.whatsapp-float:hover { background: #1ebe5a; box-shadow: 0 6px 24px rgba(37,211,102,.55); transform: translateY(-3px); }
.whatsapp-float-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .85rem;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .whatsapp-float { bottom: 112px; }
}
@media (max-width: 640px) {
  .whatsapp-float { bottom: 84px; right: 16px; padding: 12px; }
  .whatsapp-float-label { display: none; }
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  border: none;
  box-shadow: 0 4px 20px rgba(201,149,42,.45);
  font-weight: 800;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(201,149,42,.55); }

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.fw-600 { font-weight: 600; }

/* ---------- WHY CHOOSE US ---------- */
.why-section { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid rgba(221,227,234,.6);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-icon {
  width: 76px; height: 76px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--accent);
  transition: all var(--transition);
  border: 2px solid rgba(201,149,42,.2);
}
.why-card:hover .why-icon {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(201,149,42,.35);
}
.why-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.why-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  border: 1px solid rgba(201,149,42,.25);
}
.why-card p {
  font-size: .94rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before,
  .process-steps::after { display: none; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid .why-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
}

/* ---------- STICKY MOBILE CONVERSION BAR ---------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(11, 21, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 149, 42, 0.35);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.4);
  padding: 8px 12px max(8px, env(safe-area-inset-bottom));
}

.mobile-action-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}

.mab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mab-btn svg {
  flex-shrink: 0;
}

.mab-call {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.mab-call:active {
  background: rgba(255, 255, 255, 0.2);
}

.mab-wa {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.mab-wa:active {
  background: #1eb956;
}

.mab-estimate {
  background: var(--accent);
  color: var(--primary-dark);
  border: 1px solid var(--accent);
  box-shadow: 0 2px 10px rgba(201, 149, 42, 0.4);
}
.mab-estimate:active {
  background: var(--accent-dark);
  color: #fff;
}

/* Hero Floating Proof Badges */
.hero-photo-wrap {
  position: relative;
  overflow: visible !important;
}

.hero-badge-float {
  position: absolute;
  z-index: 5;
  background: rgba(14, 26, 36, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 149, 42, 0.45);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatPulse 4s ease-in-out infinite alternate;
}

@keyframes floatPulse {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.hero-badge-top {
  top: -14px;
  right: -14px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.hbf-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 2px; line-height: 1; }
.hbf-val { font-size: 0.82rem; color: #fff; }
.hbf-val strong { color: var(--accent); }
.hbf-sub { font-size: 0.68rem; color: rgba(255,255,255,0.6); }

.hero-badge-bottom {
  bottom: -14px;
  left: -14px;
  animation-delay: 2s;
}
.hbf-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.hbf-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

/* Hero Explore Room Pills */
.hero-room-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hrt-lbl {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.hrt-pill {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hrt-pill:hover {
  background: rgba(201,149,42,0.18);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.cta-form-trust {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin-top: 6px;
}
.cta-lead-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid .why-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
  :root { --section-py: 48px; }
  body { padding-bottom: 68px !important; }
  .mobile-action-bar { display: block; }
  .whatsapp-float { display: none !important; }
  .scroll-top { bottom: 76px !important; }

  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #0e1a24; justify-content: center; align-items: center; gap: 18px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1rem; color: var(--white) !important; }
  .nav-toggle { display: flex; z-index: 1000; }
  .services-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-grid .why-card:last-child { grid-column: auto; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 14px; }
  .process-steps { grid-template-columns: 1fr; }

  /* Hero mobile */
  .hero-arrow { display: none; }
  .hero-stats-bar { display: none; }
  .hero { min-height: auto; padding-bottom: 36px; }
  .hero-body {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 24px;
    min-height: auto;
    gap: 32px;
  }
  .hero-visual { display: flex; justify-content: center; width: 100%; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-copy h1 { font-size: 1.8rem; }
  .hero-lead { max-width: 100%; }
  .hero-room-tags { justify-content: center; }
  .hero-badge-top { top: 8px; right: 8px; }
  .hero-badge-bottom { bottom: 8px; left: 8px; }
  .cta-box-split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.65rem; }
  .btn { padding: 12px 24px; font-size: .82rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-badge-pill { font-size: .68rem; }
}