/* =====================================================================
   Metaspaces — Premium Home Interior Designers in Bangalore
   Shared stylesheet (charcoal + gold luxe)
   Author: Seasun Group
   ---------------------------------------------------------------------
   Structure:
   1.  Design tokens (CSS variables)
   2.  Reset & base
   3.  Typography & utilities
   4.  Layout helpers (container, grid, section)
   5.  Buttons & badges
   6.  Header / navbar / mobile menu
   7.  Hero
   8.  Cards & feature blocks
   9.  Sections (trust, services, rooms, process, gallery, etc.)
   10. Forms
   11. FAQ accordion
   12. Footer
   13. Floating actions (WhatsApp / call)
   14. Animations (scroll reveal)
   15. Responsive breakpoints
   ===================================================================== */

/* 1. ----------------------------------------------------- DESIGN TOKENS */
:root {
  /* Brand palette — Option C: charcoal grey + maroon + yellow */
  --charcoal-900: #161619;  /* darkest grey */
  --charcoal-800: #1f2024;  /* hero / dark section base */
  --charcoal-700: #2a2b30;
  --charcoal-600: #35363c;

  --gold-500: #c99a2b;   /* yellow accent (readable on light & dark) */
  --gold-400: #ffd24a;   /* bright yellow — highlights on dark */
  --gold-300: #f3cd6a;
  --gold-soft: #f7eccf;

  --maroon-600: #851f29; /* deep maroon */
  --maroon-500: #9c333d; /* primary maroon */
  --maroon-400: #b04450; /* maroon hover */
  --brown-500: #9c333d;  /* legacy alias → maroon */
  --beige-100: #f1ede7;  /* warm grey-beige surface */
  --beige-50:  #f7f4ee;

  --white: #ffffff;
  --ink-900: #1b1b1d;    /* primary text */
  --ink-700: #3c3c40;
  --ink-500: #6b6b70;    /* muted text */
  --line: #e7e1d6;       /* hairline borders */

  /* Functional */
  --shadow-sm: 0 2px 10px rgba(18,18,20,.06);
  --shadow-md: 0 14px 40px rgba(18,18,20,.10);
  --shadow-lg: 0 30px 70px rgba(18,18,20,.16);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Type */
  --font-head: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --gap: clamp(18px, 3vw, 36px);
  --section-y: clamp(56px, 9vw, 110px);

  --nav-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--beige-50);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* 3. ------------------------------------------- TYPOGRAPHY & UTILITIES */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.14; color: var(--ink-900); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--ink-700); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-500);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); display: inline-block; }

.text-center { text-align: center; }
.muted { color: var(--ink-500); }
.gold  { color: var(--gold-500); }
.lead  { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-700); }

/* 4. -------------------------------------------------- LAYOUT HELPERS */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(30px, 4vw, 50px); }
#services { padding-top: clamp(30px, 4vw, 56px); }
.section--charcoal { background: var(--charcoal-800); color: var(--beige-100); }
.section--charcoal h1, .section--charcoal h2, .section--charcoal h3, .section--charcoal h4 { color: var(--white); }
.section--charcoal p { color: #cfc8bb; }
.section--beige { background: var(--beige-100); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

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

/* 5. --------------------------------------------------- BUTTONS & BADGES */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: 14px 26px; border-radius: var(--radius-pill);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap; cursor: pointer; border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: linear-gradient(135deg, var(--maroon-400), var(--maroon-500)); color: #ffffff; box-shadow: 0 12px 28px rgba(156,51,61,.38); }
.btn--gold:hover { background: linear-gradient(135deg, var(--maroon-500), var(--maroon-600)); box-shadow: 0 18px 38px rgba(156,51,61,.48); }
.btn--dark { background: var(--charcoal-800); color: var(--beige-100); }
.btn--dark:hover { background: var(--charcoal-900); }
.btn--ghost { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--ghost:hover { background: var(--ink-900); color: var(--white); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghost-light:hover { background: var(--white); color: var(--charcoal-900); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,150,40,.12); color: var(--gold-500);
  border: 1px solid rgba(201,150,40,.3);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* 6. ----------------------------------------------- HEADER / NAVBAR */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fffefb;          /* fully opaque, bright */
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
/* align header content to the same 25mm left margin as the hero */
.site-header .container { max-width: 100%; padding-left: 25mm; }
@media (max-width: 700px) { .site-header .container { padding-left: clamp(18px, 6vw, 28px); } }

.nav { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__logo { height: 50px; width: auto; display: block; }
@media (max-width: 600px) { .brand__logo { height: 42px; } }
.brand__mark {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--charcoal-800), var(--charcoal-600));
  display: grid; place-items: center; color: var(--gold-400);
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  border: 1px solid rgba(201,150,40,.4);
}
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; letter-spacing: .01em; line-height: 1; }
.brand__tag { display: block; font-family: var(--font-body); font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-500); margin-top: 4px; }

.nav__links { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1 1 auto; }
.nav__links a {
  position: relative; padding: 9px 13px; font-size: .94rem; font-weight: 500; color: var(--ink-700);
  border-radius: 8px; transition: color .2s ease, background .2s ease; white-space: nowrap;
}
.nav__item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__links a:hover, .nav__links a.active { color: var(--ink-900); background: rgba(201,150,40,.12); }

/* Dropdown */
.nav__item { position: relative; }
.nav__dd {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .22s ease; display: grid; gap: 2px;
}
.nav__item:hover .nav__dd, .nav__item:focus-within .nav__dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dd a { display: block; padding: 10px 12px; font-size: .9rem; border-radius: 8px; }
.nav__caret { opacity: .7; }

.nav__cta { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink-900); white-space: nowrap; }
.nav__phone svg { color: var(--gold-500); }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: var(--white); }
.nav__toggle span { display: block; width: 21px; height: 2px; background: var(--ink-900); margin: 4px auto; transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 999;
  background: var(--beige-50); padding: 24px clamp(18px,5vw,40px) 40px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 14px 8px; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 18px; }
.mobile-menu__group-title { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-500); margin-top: 14px; padding: 4px 8px; }
body.no-scroll { overflow: hidden; }

/* 7. ------------------------------------------------------------- HERO */
.hero {
  position: relative; background: var(--charcoal-900); color: var(--beige-100);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(201,150,40,.18), transparent 60%),
    linear-gradient(160deg, #1d1d20 0%, #141416 55%, #0f0f10 100%);
}
.hero__bg::after { /* subtle texture */
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(201,150,40,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,64px); align-items: center; padding-block: clamp(54px,8vw,96px); }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--gold-400); }
.hero__sub { margin: 20px 0 28px; font-size: clamp(1.02rem,1.6vw,1.18rem); color: #d2ccc0; max-width: 560px; }
.hero__stats { display: flex; gap: 30px; margin-top: 36px; flex-wrap: wrap; }
.hero__stat b { font-family: var(--font-head); font-size: 1.7rem; color: var(--gold-400); display: block; }
.hero__stat span { font-size: .85rem; color: #bdb6a8; }
.hero__trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 26px; font-size: .86rem; color: #c8c1b4; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { color: var(--gold-400); }

/* Hero visual placeholder */
.hero__visual { position: relative; }
.media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #2a2a2f, #1b1b1e);
  border: 1px solid rgba(201,150,40,.25); box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; display: grid; place-items: center; color: #8a8a90;
}
.media--wide { aspect-ratio: 16/10; }
.media--square { aspect-ratio: 1/1; }
/* real photos fill the media frame */
.media img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

/* video testimonials */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.video-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-card video { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; background: #111; }
.video-card__body { padding: 16px 18px 18px; }
.video-card__body b { display: block; font-weight: 600; }
.video-card__body span { font-size: .85rem; color: var(--ink-500); }
.upload-note { margin-top: 22px; background: rgba(201,150,40,.08); border: 1px dashed rgba(201,150,40,.45); border-radius: var(--radius); padding: 16px 18px; font-size: .9rem; color: var(--ink-700); }
.upload-note code { background: rgba(0,0,0,.06); padding: 1px 6px; border-radius: 5px; font-size: .85em; }
@media (max-width: 860px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .video-grid { grid-template-columns: 1fr; } }
.media__label {
  font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); text-align: center; padding: 12px; line-height: 1.5;
}
/* light-surface placeholder variant */
.media--light { background: linear-gradient(135deg, #efe7d8, #e3d8c4); border-color: var(--line); color: var(--brown-500); }
.media--light .media__label { color: rgba(111,91,67,.6); }
.media__badge { position: absolute; top: 16px; left: 16px; }
.hero__float {
  position: absolute; bottom: 18px; right: -10px; background: var(--white); color: var(--ink-900);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 14px 18px; display: flex; gap: 12px; align-items: center;
}
.hero__float b { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold-500); }
.hero__float span { font-size: .78rem; color: var(--ink-500); }

/* ---- HERO SLIDER (auto-sliding banner carousel) ---- */
.hero-slider {
  position: relative; overflow: hidden; background: var(--charcoal-900);
  height: calc(100vh - var(--nav-h));   /* fill the screen below the sticky navbar */
  height: calc(100svh - var(--nav-h));  /* dynamic viewport units where supported */
  min-height: 560px;
}
.hero-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: opacity .9s ease, transform 6s ease, visibility .9s ease;
  z-index: 1;
}
.hero-slide::after { /* extra readability scrim on the left */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,12,.9) 0%, rgba(10,10,12,.72) 38%, rgba(10,10,12,.45) 68%, rgba(10,10,12,.3) 100%);
}
/* lighter overlay on slide 1 so it doesn't darken the model's face on the right */
.hero-slide:first-child::after {
  background: linear-gradient(90deg, rgba(10,10,12,.82) 0%, rgba(10,10,12,.55) 30%, rgba(10,10,12,.2) 52%, transparent 68%);
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.hero-slider .container { max-width: 100%; padding-left: 25mm; }   /* ~25mm gap, then content */
@media (max-width: 700px) { .hero-slider .container { padding-left: clamp(18px, 6vw, 28px); } }
.hero-slide__inner { position: relative; z-index: 3; max-width: 720px; color: var(--beige-100); padding-bottom: calc(clamp(48px, 8vh, 96px) + 12mm); }
.hero-slide__inner .badge { margin-bottom: 16px; opacity: 0; transform: translateY(16px); }
.hero-slide__inner h1 { color: #fff; opacity: 0; transform: translateY(20px); font-size: clamp(1.7rem, 3.7vw, 2.7rem); }
.hero-slide__inner .accent { color: #ffd24a; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.hero-slide__inner p { color: #e3ddd3; margin: 18px 0 26px; font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 560px; opacity: 0; transform: translateY(20px); }
.hero-slide__inner .cta-row { opacity: 0; transform: translateY(20px); margin-top: 28px; }
.hero-slide__note { display: block; margin-top: 14px; font-size: .78rem; color: #c7c0b4; opacity: 0; }
/* entrance animation for the active slide's content */
.hero-slide.is-active .badge,
.hero-slide.is-active h1,
.hero-slide.is-active p,
.hero-slide.is-active .cta-row,
.hero-slide.is-active .hero-slide__note { animation: heroRise .7s ease forwards; }
.hero-slide.is-active h1 { animation-delay: .12s; }
.hero-slide.is-active p { animation-delay: .22s; }
.hero-slide.is-active .cta-row { animation-delay: .32s; }
.hero-slide.is-active .hero-slide__note { animation-delay: .42s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  color: #fff;
  background: rgba(20,20,24,.4); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px); transition: background .25s ease, transform .25s ease;
}
.hero-arrow:hover { background: var(--maroon-500); border-color: var(--maroon-500); }
.hero-arrow svg { width: 22px; height: 22px; display: block; }
.hero-arrow--prev { left: 18px; }
.hero-arrow--next { right: 18px; }
.hero-dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 10px; }
.hero-dots button {
  width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.45);
  border: none; cursor: pointer; transition: all .3s ease; padding: 0;
}
.hero-dots button.is-active { background: var(--gold-400); width: 30px; border-radius: 6px; }
@media (max-width: 860px) {
  .hero-slider { height: calc(100vh - var(--nav-h)); height: calc(100svh - var(--nav-h)); min-height: 520px; }
  .hero-slide { align-items: flex-end; }
  .hero-slide__inner { padding-bottom: 64px; }
  .hero-slide::after, .hero-slide:first-child::after { background: linear-gradient(180deg, rgba(10,10,12,.5) 0%, rgba(10,10,12,.68) 50%, rgba(10,10,12,.92) 100%); }
  .hero-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .4s ease, visibility .4s ease; transform: none; }
  .hero-slide.is-active { transform: none; }
  .hero-slide.is-active .badge, .hero-slide.is-active h1, .hero-slide.is-active p,
  .hero-slide.is-active .cta-row, .hero-slide.is-active .hero-slide__note { animation: none; opacity: 1; transform: none; }
}

/* Page hero (interior pages) */
.page-hero { position: relative; background: var(--charcoal-900); color: var(--beige-100); overflow: hidden; }
.page-hero .hero__bg { background: radial-gradient(900px 400px at 75% -20%, rgba(201,150,40,.16), transparent 60%), linear-gradient(160deg,#1c1c1f,#101012); }
.page-hero__inner { position: relative; padding-block: clamp(48px,7vw,86px); max-width: 760px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: #d2ccc0; margin-top: 16px; font-size: 1.1rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .82rem; color: #b7b0a3; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { opacity: .5; }

/* 8. ------------------------------------------------- CARDS & FEATURES */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,150,40,.4); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(201,150,40,.16), rgba(201,150,40,.05));
  color: var(--gold-500); margin-bottom: 18px; border: 1px solid rgba(201,150,40,.25);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 600; font-size: .9rem; color: var(--gold-500); }
.card__link:hover { gap: 11px; }

/* Service card with image header */
.svc-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.svc-card .media { border-radius: 0; aspect-ratio: 16/10; }
.svc-card__body { padding: 22px 24px 26px; }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.feature-list { display: grid; gap: 14px; margin-top: 22px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(201,150,40,.16);
  color: var(--gold-500); display: grid; place-items: center; font-size: .8rem; margin-top: 2px;
}
.feature-list b { display: block; }
.feature-list span { font-size: .94rem; color: var(--ink-500); }

/* 9. ------------------------------------------------------- SECTIONS */
/* Trust strip */
.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
.trust-item { text-align: center; padding: 10px; }
.trust-item b { font-family: var(--font-head); font-size: clamp(1.9rem,4vw,2.7rem); color: var(--gold-500); display: block; line-height: 1; }
.trust-item span { font-size: .92rem; color: var(--ink-500); margin-top: 8px; display: block; }

/* Logos / partner row */
.partner-row { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: center; opacity: .9; }
.partner-row .pill { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 10px 20px; font-weight: 600; font-size: .9rem; color: var(--ink-700); }

/* Process timeline */
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  background: var(--charcoal-800); color: var(--gold-400); margin-bottom: 16px;
  border: 1px solid rgba(201,150,40,.4);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .92rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 26px; left: 60px; right: -10px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-300) 0 8px, transparent 8px 16px);
}

/* Gallery / before-after */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery > div { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery .media { aspect-ratio: 4/3; border-radius: 0; }
/* uniform grid — tall tiles no longer span rows */
.gallery .tall { grid-row: auto; }
.gallery .tall .media { aspect-ratio: 4/3; height: auto; }

.ba {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.ba .media { border-radius: 0; aspect-ratio: 16/10; }
.ba__tag { position: absolute; top: 12px; left: 12px; background: var(--charcoal-800); color: var(--gold-300); font-size: .72rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill); letter-spacing: .08em; text-transform: uppercase; }

/* Locations */
.loc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.loc-chip {
  display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 500; font-size: .94rem;
  transition: all .25s ease; color: var(--ink-700);
}
.loc-chip:hover { border-color: var(--gold-500); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--ink-900); }
.loc-chip svg { color: var(--gold-500); flex: none; }

.loc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.loc-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.loc-card p { font-size: .93rem; }

/* Testimonials */
.tcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.tcard .stars { color: var(--gold-500); letter-spacing: 3px; margin-bottom: 14px; }
.tcard blockquote { font-size: 1rem; color: var(--ink-700); margin-bottom: 20px; flex: 1; }
.tcard__person { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-400), var(--brown-500)); color: var(--white); display: grid; place-items: center; font-weight: 700; }
.tcard__person b { display: block; font-size: .95rem; }
.tcard__person span { font-size: .82rem; color: var(--ink-500); }

/* Pricing / estimate cards */
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); height: 100%; position: relative; }
.price-card.featured { border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.price-card.featured::before { content: "Most popular"; position: absolute; top: -13px; left: 30px; background: var(--maroon-500); color: var(--charcoal-900); font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: var(--radius-pill); letter-spacing: .06em; color:#fff; }
.price-card h3 { font-size: 1.3rem; }
.price-card .price { font-family: var(--font-head); font-size: 2rem; color: var(--gold-500); margin: 10px 0 4px; }
.price-card .price small { font-size: .9rem; color: var(--ink-500); font-family: var(--font-body); }
.price-card ul { display: grid; gap: 10px; margin: 18px 0 24px; }
.price-card li { display: flex; gap: 10px; font-size: .94rem; color: var(--ink-700); }
.price-card li::before { content: "✓"; color: var(--gold-500); font-weight: 700; }

/* CTA banner */
.cta-banner {
  position: relative; background: linear-gradient(135deg, var(--charcoal-800), var(--charcoal-700));
  border-radius: var(--radius-lg); padding: clamp(34px,5vw,60px); color: var(--beige-100);
  overflow: hidden;
}
.cta-banner::before { content: ""; position: absolute; top: -60px; right: -40px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(201,150,40,.25), transparent 70%); }
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p { color: #d2ccc0; position: relative; max-width: 560px; margin-top: 12px; }
.cta-banner .cta-row { position: relative; margin-top: 26px; }

/* 10. -------------------------------------------------------- FORMS */
.lead-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-md); }
.lead-form.on-dark { box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink-700); }
.field label .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: .96rem; color: var(--ink-900); background: var(--beige-50);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,150,40,.18); background: var(--white); }
.field .error-msg { font-size: .78rem; color: #c0392b; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .error-msg { display: block; }
.form-note { font-size: .8rem; color: var(--ink-500); margin-top: 14px; }
.form-success {
  display: none; margin-top: 18px; padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(46,125,50,.1); border: 1px solid rgba(46,125,50,.3); color: #2e7d32; font-size: .92rem; font-weight: 500;
}
.form-success.show { display: block; }

/* 11. ------------------------------------------------ FAQ ACCORDION */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-item.open { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-family: var(--font-head); font-size: 1.08rem; font-weight: 600; color: var(--ink-900);
}
.faq-q .ico { flex: none; width: 30px; height: 30px; border-radius: 50%; background: rgba(201,150,40,.14); color: var(--gold-500); display: grid; place-items: center; transition: transform .3s ease; font-size: 1.1rem; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--gold-500); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 24px 22px; color: var(--ink-700); font-size: .98rem; }

/* 12. ------------------------------------------------------- FOOTER */
.site-footer { background: var(--charcoal-900); color: #c8c1b4; padding-block: clamp(48px,7vw,80px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(26px,4vw,50px); }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #c8c1b4; font-size: .92rem; transition: color .2s ease; }
.site-footer a:hover { color: var(--gold-400); }
.footer-links { display: grid; gap: 10px; }
.footer-brand .brand__name { color: var(--white); }
.footer-about { font-size: .92rem; color: #a8a194; margin: 16px 0 20px; max-width: 320px; }
.footer-contact { display: grid; gap: 12px; font-size: .92rem; }
.footer-contact a, .footer-contact div { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { color: var(--gold-400); flex: none; margin-top: 3px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #c8c1b4; }
.social-row a:hover { border-color: var(--gold-400); color: var(--gold-400); background: rgba(201,150,40,.08); }
.footer-locations { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 8px; }
.footer-locations a { font-size: .84rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: #8d877b; }

/* 13. ------------------------------------------ FLOATING ACTIONS */
.floats { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); color: var(--white); transition: transform .25s ease; }
.fab:hover { transform: scale(1.08); }
.fab--wa { background: #25d366; }
.fab--call { background: var(--charcoal-800); border: 1px solid rgba(201,150,40,.4); color: var(--gold-400); }
.fab svg { width: 26px; height: 26px; }
.wa-pulse { position: relative; }
.wa-pulse::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; opacity: .5; animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .5; } 70% { transform: scale(1.6); opacity: 0; } 100% { opacity: 0; } }

/* 14. ----------------------------------------------- ANIMATIONS */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* 15. --------------------------------------------- RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .step:not(:last-child)::after { display: none; }
  .loc-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* collapse the full nav to the mobile menu before it gets cramped */
@media (max-width: 1024px) {
  .nav__links, .nav__cta .nav__phone, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .nav__phone, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .tall { grid-row: auto; }
  .gallery .tall .media { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4, .trust-strip, .timeline, .loc-grid, .form-grid, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .floats { right: 14px; bottom: 14px; }
  .fab { width: 52px; height: 52px; }
  .footer-bottom { flex-direction: column; }
}
