/* ─────────────────────────────────────────────────────────
   Shining Stars Maid Solutions — Premium Brand System
   Taste-Skill: DESIGN_VARIANCE:6 MOTION_INTENSITY:5 VISUAL_DENSITY:3
   High-end cleaning service with luxury aesthetic & premium UX
───────────────────────────────────────────────────────── */

/* ── Design Philosophy ─────────────────────────────────
   • Premium spacing: generous whitespace for luxury feel
   • Sophisticated motion: smooth, purposeful animations
   • Gold accent used sparingly for premium emphasis
   • Clean typography hierarchy with premium fonts
   • Dark sophistication with gold accents and silver balance
──────────────────────────────────────────────────────── */

/* ── Color Tokens ─────────────────────────────────────── */
:root {
  /* Primary Brand Palette */
  --gold:          #E29400;
  --gold-hover:    #C97F00;
  --gold-light:    #FBF0D9;
  --gold-rgb:      226, 148, 0;
  
  /* Secondary & Neutral */
  --silver:        #BDBDBD;
  --silver-light:  #E8E8E8;
  --silver-dark:   #A0A0A0;
  
  /* Core Brand Colors */
  --dark:          #1F1F1F;
  --dark-80:       #3D3D3D;
  --text:          #333333;
  --muted:         #6E6E6E;
  --muted-light:   #888888;
  
  /* Backgrounds & Surfaces */
  --bg:            #F8F8F8;
  --bg-alt:        #F2F2F2;
  --surface:       #FFFFFF;
  --surface-alt:   #FAFAFA;
  
  /* UI Elements */
  --border:        #E5E5E5;
  --border-light:  #ECECEC;
  --border-dark:   #D0D0D0;
  --divider:       #EAEAEA;
  
  /* Semantic Colors */
  --success:       #10A760;
  --success-light: #E8F5E9;
  --warning:       #F5A623;
  --danger:        #D32F2F;

  /* Typography */
  --font-display:  'Poppins', 'Segoe UI', sans-serif;
  --font-serif:    'Lora', 'Georgia', serif;
  --font-mono:     'Monaco', 'Courier New', monospace;
  --font-body:     'Inter', 'Segoe UI', sans-serif;

  /* Typography Scales */
  --text-xs:       0.75rem;
  --text-sm:       0.875rem;
  --text-base:     1rem;
  --text-lg:       1.125rem;
  --text-xl:       1.25rem;
  --text-2xl:      1.5rem;
  --text-3xl:      1.875rem;
  --text-4xl:      2.25rem;
  --text-5xl:      3rem;
  --text-6xl:      3.75rem;

  /* Spacing Scale (luxury: generous) */
  --space-0:       0;
  --space-1:       0.25rem;
  --space-2:       0.5rem;
  --space-3:       0.75rem;
  --space-4:       1rem;
  --space-5:       1.25rem;
  --space-6:       1.5rem;
  --space-8:       2rem;
  --space-10:      2.5rem;
  --space-12:      3rem;
  --space-16:      4rem;
  --space-20:      5rem;
  --space-24:      6rem;
  --space-32:      8rem;

  /* Border Radius (refined) */
  --radius-none:   0;
  --radius-sm:     0.375rem;
  --radius-md:     0.75rem;
  --radius-lg:     1.25rem;
  --radius-xl:     1.75rem;
  --radius-2xl:    2.5rem;
  --radius-full:   9999px;

  /* Shadows (sophisticated depth) */
  --shadow-sm:     0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:     0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg:     0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl:     0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl:    0 25px 50px -12px rgba(0, 0, 0, 0.15);

  /* Premium Gold Shadow */
  --shadow-gold:   0 4px 20px rgba(226, 148, 0, 0.15);

  /* Transitions & Animations */
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic:  cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --duration-fast:   150ms;
  --duration-base:   200ms;
  --duration-slow:   300ms;
  --duration-slower: 500ms;

  /* Layout */
  --nav-h:         72px;
  --max-w-full:    100%;
  --max-w-screen:  100vw;
  --max-w-prose:   65ch;
  --max-w-md:      448px;
  --max-w-lg:      512px;
  --max-w-xl:      576px;
  --max-w-2xl:     672px;
  --max-w-3xl:     768px;
  --max-w-4xl:     896px;
  --max-w-5xl:     1024px;
  --max-w-6xl:     1152px;
  --max-w-7xl:     1280px;
}


/* ── Reset & Baseline ──────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: var(--text-base);
  font-weight: 400;
}

/* Typography Resets */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: var(--text-4xl); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-4);
  color: var(--muted);
  line-height: 1.7;
}

strong { font-weight: 600; color: var(--text); }
em { font-style: italic; font-family: var(--font-serif); }

ul, ol {
  margin: var(--space-4) 0 var(--space-4) var(--space-6);
}

li {
  margin-bottom: var(--space-3);
  color: var(--muted);
  line-height: 1.7;
}

/* Links */
a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

a:hover {
  color: var(--gold-hover);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Images */
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inputs & Form Elements */
input, textarea, select {
  font-family: var(--font-display);
  font-size: var(--text-base);
}

/* Buttons */
button {
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--duration-base) var(--ease-out);
}

button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Container ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

/* Hero Container (wider breathing room) */
.container-hero {
  max-width: 1400px;
}

/* Prose Container (narrower for readability) */
.container-prose {
  max-width: var(--max-w-prose);
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.25s var(--ease-out-expo);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }

.btn--sm  { padding: 0.55rem 1.1rem; font-size: 0.875rem; }
.btn--lg  { padding: 0.875rem 1.75rem; font-size: 1rem; }

.btn--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px -4px rgba(226,148,0,0.35);
}
.btn--primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 28px -4px rgba(226,148,0,0.5);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1.5px solid var(--dark);
  color: var(--dark);
  background: transparent;
}
.btn--outline:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1.5px solid var(--border);
  color: var(--dark);
  background: var(--surface);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--gold {
  background: var(--gold);
  color: #fff;
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px -6px rgba(226,148,0,0.4);
}
.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -6px rgba(226,148,0,0.55);
}

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(248,248,248,0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 24px -8px rgba(31,31,31,0.12);
}
.nav__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 62px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 0;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
  margin-top: 2px;
}
.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  transform: translateY(-6px);
  min-width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px -20px rgba(31,31,31,0.18);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
  z-index: 200;
}
.nav__dropdown-menu a {
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav__dropdown-menu a:hover {
  background: var(--gold-light);
  color: var(--dark);
}
.nav__dropdown:hover > a,
.nav__dropdown:focus-within > a {
  color: var(--dark);
}
.nav__dropdown:hover > a::after,
.nav__dropdown:focus-within > a::after {
  transform: rotate(180deg);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--dark); }
.nav__links a:hover::after { width: 100%; }
.nav__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-left: auto;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100dvh;
  padding-top: var(--nav-h);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  gap: 4rem;
  align-items: center;
}
.hero__content {
  padding-block: 5rem 4rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero__dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.7); }
}
.hero__h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero__h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero__trust-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero__trust-item span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-block: 4rem;
}
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg) var(--radius-lg) calc(var(--radius-lg) * 3) var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px -20px rgba(31,31,31,0.2);
}
.hero__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.4));
  pointer-events: none;
}
.hero__img-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.45) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(20deg) translateX(-100%);
  transition: transform 1s var(--ease-out-expo);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__img-wrap:hover::before {
  transform: rotate(20deg) translateX(220%);
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero__img-wrap:hover .hero__img {
  transform: scale(1.04);
}
.hero__img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 24px -8px rgba(31,31,31,0.15);
  border-radius: 100px;
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  animation: float-badge 3.5s ease-in-out infinite;
}
.hero__img-badge svg { color: var(--gold); }
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Hero mini image stack */
.hero__mini-stack {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero__mini-stack img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px rgba(31,31,31,0.2);
  animation: float-badge 3.5s ease-in-out infinite;
}
.hero__mini-stack img:nth-child(2) { animation-delay: 0.7s; }

/* ── Marquee ──────────────────────────────────────────── */
.marquee-wrap {
  background: var(--dark);
  overflow: hidden;
  padding-block: 1rem;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.marquee-dot { color: var(--gold) !important; font-size: 0.65rem !important; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Shared ───────────────────────────────────── */
.section { padding-block: clamp(5rem, 10vw, 8rem); }
.section--contrast {
  background: linear-gradient(180deg, var(--bg-alt), #ffffff 40%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section__h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--dark);
}
.section__header { margin-bottom: 4rem; }
.section__header--center { text-align: center; }
.section__header--left { max-width: 52ch; }

/* ── Services Grid ────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: all 0.35s var(--ease-out-expo);
  cursor: default;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px -12px rgba(226,148,0,0.15);
  transform: translateY(-3px);
}
.service-card--featured {
  grid-row: span 2;
  background: var(--dark);
  border-color: var(--dark);
}
.service-card--featured h3,
.service-card--featured p,
.service-card--featured .service-card__link { color: #fff; }
.service-card--featured p { color: rgba(255,255,255,0.6); }
.service-card--featured .service-card__icon { color: var(--gold); }
.service-card--featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -15px rgba(31,31,31,0.4);
}

/* Image-backed service cards */
.service-card--img {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: none;
  min-height: 260px;
}
.service-card--img.service-card--featured { min-height: 100%; }
.service-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.service-card--img:hover .service-card__bg { transform: scale(1.06); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,14,0.88) 40%, rgba(20,18,14,0.2) 100%);
  transition: background 0.35s ease;
}
.service-card--img:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(20,18,14,0.92) 50%, rgba(20,18,14,0.35) 100%);
}
.service-card__body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}
.service-card--img h3 { color: #fff; }
.service-card--img p { color: rgba(255,255,255,0.7); }
.service-card--img .service-card__link { color: var(--gold); }
.service-card--img .service-card__icon { color: var(--gold); }

/* Mid-services CTA */
.services__cta-bar {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--gold-light);
  border: 1px solid rgba(226,148,0,0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem 2.5rem;
  flex-wrap: wrap;
}
.services__cta-bar p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

.service-card__icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.service-card__link:hover { gap: 0.5rem; }

/* ── New Clean Service Cards (svc-card) ───────────────── */
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.3s ease;
}
.svc-card--square {
  aspect-ratio: 1/1;
  min-height: 260px;
}
@media (max-width: 768px) {
  .svc-card--square { aspect-ratio: auto; }
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 48px -12px rgba(226,148,0,0.15);
}
.svc-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  flex-shrink: 0;
}
.svc-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out-expo);
}
.svc-card:hover .svc-card__img-wrap img { transform: scale(1.05); }
.svc-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.svc-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}
.svc-card__icon {
  width: 40px; height: 40px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.svc-card:hover .svc-card__icon { background: var(--gold); color: #fff; }
.svc-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.svc-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap 0.2s ease;
  margin-top: auto;
}
.svc-card__link:hover { gap: 0.65rem; color: var(--gold-hover); }

.widget--wide {
  max-width: 1100px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: block !important;
}

/* Center the quote section container */
.quote-section__inner {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}

/* Fix stepper layout to keep number on same line */
.widget__stepper {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
.widget__stepper input {
  text-align: center !important;
  min-width: 60px !important;
}

/* Half-width field for side-by-side layout */
.widget__field--half {
  flex: 1 !important;
  min-width: 0 !important;
  padding-right: 1.5rem !important;
}

.widget__field--half:last-child {
  padding-right: 0 !important;
  padding-left: 0.5rem !important;
}
.widget--wide .widget__chips {
  flex-wrap: wrap;
  gap: 0.5rem;
}
.widget--wide .widget__contact-row {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .widget--wide .widget__contact-row {
    grid-template-columns: 1fr;
  }
}

/* ── About page premium cards */
.about-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.about-card:hover .about-card__title {
  color: var(--gold);
}
.about-card:hover .about-card__link {
  gap: 0.5rem;
}

.about-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(226, 148, 0, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}
.about-card:hover .about-card__icon {
  background: rgba(226, 148, 0, 0.12);
}

.about-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #172554;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.about-card__desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0 0 1.5rem 0;
}

.about-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s ease;
}
.about-card__link:hover {
  color: #c37f00;
  gap: 0.5rem;
}
.about-card__link svg {
  flex-shrink: 0;
}

/* ── About ────────────────────────────────────────────── */
.about {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg) calc(var(--radius-lg) * 3) var(--radius-lg) var(--radius-lg);
  box-shadow: 0 32px 80px -20px rgba(31,31,31,0.18);
}
.about__stat-card {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  background: var(--gold);
  color: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px -10px rgba(226,148,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 140px;
}
.about__stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.about__stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 55ch;
  margin-bottom: 1rem;
}
.about__counties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.about__counties span {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  background: var(--gold-light);
  color: var(--gold-hover);
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.about__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Partners ─────────────────────────────────────────── */
.partners__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 55ch;
  margin: 1rem auto 0;
  line-height: 1.7;
}
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: center;
}
.partner-logo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
}
.partner-logo:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px -8px rgba(226,148,0,0.12);
  transform: translateY(-2px);
}
.partner-logo img {
  max-height: 90px;
  width: auto;
  max-width: 100%;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}
.partner-logo:hover img { filter: grayscale(0%); }

.partners__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── CTA Band ─────────────────────────────────────────── */
.cta-band {
  background: var(--dark);
  padding-block: clamp(5rem, 9vw, 7rem);
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

/* Quote widget spacing & elegance */
.widget .widget__form { gap: 1.25rem; }
.widget .widget__step { display: flex; flex-direction: column; gap: 1rem; }
.widget .widget__step-label { margin-bottom: 0.25rem; }
.widget .widget__row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; align-items: end; }
.widget .widget__contact-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
@media (max-width: 768px) { .widget .widget__row, .widget .widget__contact-row { grid-template-columns: 1fr; } }

.widget .widget__field { display: flex; flex-direction: column; gap: 0.5rem; }
.widget .widget__field label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.widget .widget__field input,
.widget .widget__field select,
.widget .widget__field textarea { padding: 0.8rem 1rem; border: 1px solid var(--border); border-radius: 10px; background: #fff; font-size: 0.95rem; }
.widget .widget__field textarea { min-height: 120px; }

.widget .widget__chips { display: flex; flex-wrap: nowrap; gap: 0.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 0.25rem; }
.widget .widget__chips::-webkit-scrollbar { height: 6px; }
.widget .widget__chips::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.widget .chip { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); border-radius: 999px; padding: 0.45rem 0.9rem; background: var(--surface); transition: all var(--duration-fast) var(--ease-out); flex: 0 0 auto; }
/* Override earlier .widget--wide wrap rule: keep chips on one line with scroll */
.widget.widget--wide .widget__chips { flex-wrap: nowrap !important; overflow-x: auto; }
.widget .chip input { appearance: none; width: 14px; height: 14px; border: 1.5px solid var(--border-dark); border-radius: 50%; display: inline-block; position: relative; }
.widget .chip input:checked { border-color: var(--gold); background: radial-gradient(circle at center, var(--gold) 45%, transparent 47%); }
.widget .chip span { font-weight: 600; font-size: 0.85rem; color: var(--text); }
.widget .chip:hover { border-color: var(--gold); box-shadow: 0 6px 18px -8px rgba(var(--gold-rgb),0.35); }

.widget .widget__stepper { gap: 0.5rem; }
.widget .stepper-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); font-weight: 700; color: var(--dark); }
.widget .stepper-btn:hover { border-color: var(--gold); color: var(--gold); }
.widget .widget__stepper input[type="number"] { height: 40px; padding: 0 0.75rem; border: 1px solid var(--border); border-radius: 10px; }
.cta-band__eyebrow { color: var(--gold) !important; }
.cta-band__h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #fff;
  margin-top: 0.5rem;
}
.cta-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 50ch;
  margin-top: 1rem;
  line-height: 1.7;
}
.cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  min-width: 220px;
}
.cta-band__phone {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cta-band__phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s ease;
}
.cta-band__phone-link:hover { color: var(--gold); }
.cta-band__phone span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-left: 1.75rem;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer__logo { height: 66px; width: auto; margin-bottom: 1rem; filter: brightness(1.1); }
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s ease;
}
.footer__social a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}
.footer__links a, .footer__links span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--gold); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.5rem;
}
.footer__contact p,
.footer__contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  transition: color 0.2s ease;
}
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.5rem;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── Map Section ───────────────────────────────────────── */
.map-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.map-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(31,31,31,0.18);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
}
@media (min-width: 1200px) {
  .map-embed iframe { height: 520px; }
}
@media (max-width: 640px) {
  .map-embed iframe { height: 320px; }
}

/* ── Sticky Floating CTA ──────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 200;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
  width: calc(100% - 3rem);
  max-width: 780px;
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: rgba(31,31,31,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 20px 60px -10px rgba(0,0,0,0.4);
  border-radius: 100px;
  padding: 0.9rem 1.25rem 0.9rem 1.75rem;
  flex-wrap: wrap;
}
.sticky-cta__text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.sticky-cta__dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
.sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.sticky-cta__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
  padding: 0.4rem 0.75rem;
}
.sticky-cta__phone:hover { color: var(--gold); }

/* ── Gallery Strip ────────────────────────────────────── */
.gallery-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.gallery__strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
  margin-inline: clamp(1.25rem, 4vw, 3rem);
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}
.gallery__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(20,18,14,0.85) 0%, transparent 100%);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out-expo);
}
.gallery__item:hover .gallery__label { transform: translateY(0); }
.gallery__cta {
  text-align: center;
  margin-top: 3rem;
}
.gallery__strip [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.gallery__strip [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.gallery__strip [data-reveal]:nth-child(4) { transition-delay: 0.24s; }
.gallery__strip [data-reveal]:nth-child(5) { transition-delay: 0.32s; }
.gallery__strip [data-reveal]:nth-child(6) { transition-delay: 0.40s; }

/* ── Quote / Widget Section ───────────────────────────── */
.quote-section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.quote-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quote-section__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.quote-section__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,18,14,0.92) 0%, rgba(31,20,0,0.85) 100%);
}
.quote-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.quote-section__perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.quote-perk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.quote-perk svg { color: var(--gold); flex-shrink: 0; }

/* Widget card */
.widget {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  overflow: hidden;
  border: 1px solid rgba(226,148,0,0.12);
}
.widget__header {
  background: var(--dark);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.widget__logo { height: 44px; width: auto; }
.widget__tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-left: auto;
}
.widget__form { padding: 2rem; display: flex; flex-direction: column; gap: 1.75rem; }
.widget__step-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}
.widget__step-num {
  width: 22px; height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Chips */
.widget__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: block;
  padding: 0.45rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
  user-select: none;
}
.chip input:checked + span {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(226,148,0,0.4);
}
.chip span:hover { border-color: var(--gold); color: var(--gold); }

/* Stepper */
.widget__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.widget__field { display: flex; flex-direction: column; gap: 0.4rem; }
.widget__field--full { grid-column: 1 / -1; }
.widget__field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.widget__stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.stepper-btn {
  padding: 0.5rem 0.9rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}
.stepper-btn:hover { background: var(--gold); color: #fff; }
.widget__stepper input {
  flex: 1;
  text-align: center;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  padding: 0.5rem 0;
}

/* Contact fields */
.widget__contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.widget__field input[type=text],
.widget__field input[type=tel],
.widget__field input[type=email] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--surface);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.widget__field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(226,148,0,0.1);
}

/* Submit */
.widget__submit-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}
.widget__submit { width: 100%; justify-content: center; border-radius: var(--radius-sm) !important; }
.widget__disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* Success */
.widget__success {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.widget__success svg { color: var(--gold); }
.widget__success strong { font-size: 1.25rem; font-weight: 800; color: var(--dark); }
.widget__success p { font-size: 0.9rem; color: var(--muted); }

/* ── Reveal Animations ────────────────────────────────── */
.js-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}
.js-reveal-ready [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Staggered Children ───────────────────────────────── */
.services__grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.services__grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.services__grid [data-reveal]:nth-child(4) { transition-delay: 0.15s; }
.services__grid [data-reveal]:nth-child(5) { transition-delay: 0.25s; }
.services__grid [data-reveal]:nth-child(6) { transition-delay: 0.35s; }
.partners__grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.partners__grid [data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.partners__grid [data-reveal]:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .gallery__strip { grid-template-columns: repeat(3, 1fr); }
  .quote-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo-img { height: 52px; }

  .hero {
    grid-template-columns: 1fr;
    padding-block: calc(var(--nav-h) + 2rem) 3rem;
    gap: 2.5rem;
  }
  .hero__visual { justify-content: center; padding-block: 0; }
  .hero__img-wrap { max-width: 100%; aspect-ratio: 3/2; border-radius: var(--radius-lg); }
  .hero__mini-stack { display: none; }
  .hero__content { padding-block: 0; }
  .hero__trust { flex-wrap: wrap; gap: 1rem; }

  .services__grid { grid-template-columns: 1fr; }
  .services__grid > * { grid-column: 1 !important; grid-row: auto !important; }
  .service-card--img { min-height: 260px; }
  .services__cta-bar { flex-direction: column; text-align: center; }

  .about__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about__stat-card { right: 0; bottom: -1.5rem; }
  .about__ctas { flex-direction: column; }

  .gallery__strip { grid-template-columns: repeat(2, 1fr); }
  .gallery__label { transform: translateY(0); }

  .partners__grid { grid-template-columns: repeat(2, 1fr); }

  .cta-band__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .sticky-cta__text { display: none; }
  .sticky-cta__inner { justify-content: center; border-radius: var(--radius-md); }

  .widget__contact-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .partners__grid { grid-template-columns: 1fr 1fr; }
  .gallery__strip { grid-template-columns: repeat(2, 1fr); }
}

/* ── Bootstrap Navbar Custom Styling ──────────────────── */
.navbar {
  background: rgba(248, 248, 248, 0.95) !important;
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  box-shadow: 0 2px 12px -4px rgba(31, 31, 31, 0.08);
  transition: all 0.3s ease;
}

.navbar-brand {
  padding: 0;
  margin-right: 2rem;
}

.navbar-brand img {
  height: 62px !important;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

.navbar-nav {
  gap: 0.5rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--dark) !important;
  background: rgba(226, 148, 0, 0.08);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.dropdown-toggle::after {
  margin-left: 0.4rem;
  vertical-align: 0.15em;
  border-top-width: 0.35em;
  border-right-width: 0.35em;
  border-left-width: 0.35em;
}

.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px -20px rgba(31, 31, 31, 0.18);
  padding: 0.75rem;
  margin-top: 0.5rem;
  background: var(--surface);
  min-width: 240px;
}

.dropdown-item {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  margin-bottom: 0.25rem;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateX(4px);
}

.navbar .btn {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1.25rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-size: 0.9rem;
}

.navbar .btn-outline-secondary {
  border: 1.5px solid var(--border-dark);
  color: var(--muted);
  background: transparent;
}

.navbar .btn-outline-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(226, 148, 0, 0.05);
  transform: translateY(-1px);
}

.navbar .btn-warning {
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(226, 148, 0, 0.4);
}

.navbar .btn-warning:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -4px rgba(226, 148, 0, 0.5);
}

.navbar-toggler {
  border: 1.5px solid var(--border-dark);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.navbar-toggler:hover {
  border-color: var(--gold);
  background: rgba(226, 148, 0, 0.05);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(226, 148, 0, 0.15);
}

.navbar-toggler-icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Menu Styling */
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px -8px rgba(31, 31, 31, 0.12);
  }

  .navbar-nav {
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.75rem 1rem !important;
  }

  .dropdown-menu {
    border: none;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.25rem;
    background: var(--bg);
  }

  .dropdown-item {
    font-size: 0.875rem;
    padding: 0.6rem 1rem;
  }

  .navbar .d-flex {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .navbar .gap-3 {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .navbar .gap-3 a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    color: var(--muted);
    transition: all 0.2s ease;
  }

  .navbar .gap-3 a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(226, 148, 0, 0.05);
    transform: scale(1.05);
  }
}

/* ============================================================
   IMAGE LAYOUT COMPONENTS
   ============================================================ */

/* --- Full-bleed image break between sections --- */
.img-break {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.img-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}
.img-break:hover img {
  transform: scale(1.04);
}
.img-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.04) 50%,
    rgba(0,0,0,0.22) 100%
  );
}

/* --- Split layout: text left, image right --- */
.img-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
  overflow: hidden;
}
.img-split--flip {
  direction: rtl;
}
.img-split--flip > * {
  direction: ltr;
}
.img-split__text {
  padding: 4rem 3rem 4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.img-split--flip .img-split__text {
  padding: 4rem 0 4rem 3rem;
}
.img-split__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}
.img-split__text h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
}
.img-split__text p {
  color: var(--muted);
  line-height: 1.75;
}
.img-split__text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.img-split__text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  line-height: 1.6;
}
.img-split__text ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}
.img-split__media {
  position: relative;
  overflow: hidden;
}
.img-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.img-split__media:hover img {
  transform: scale(1.04);
}

/* --- Centered feature image --- */
.img-feature {
  padding: 2rem 0;
}
.img-feature__inner {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.15);
}
.img-feature__inner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.img-feature__inner:hover img {
  transform: scale(1.03);
}
.img-feature__caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
  font-style: italic;
}

/* --- 3-up mini gallery strip --- */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}
.mini-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.mini-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.mini-gallery__item:hover img {
  transform: scale(1.07);
}

/* Responsive image layouts */
@media (max-width: 768px) {
  .img-break { height: 220px; }
  .img-split { grid-template-columns: 1fr; }
  .img-split__text {
    padding: 2.5rem 0 1.5rem;
    order: 1;
  }
  .img-split--flip .img-split__text { padding: 1.5rem 0 2.5rem; }
  .img-split__media {
    height: 260px;
    order: 0;
  }
  .img-feature__inner img { height: 240px; }
  .mini-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .mini-gallery__item:last-child { display: none; }
}

/* ============================================================
   GOOGLE REVIEWS PAGE STYLES
   ============================================================ */

/* Reviews Hero */
.reviews-hero {
  background: linear-gradient(135deg, var(--ink) 0%, #2a1f00 60%, #1a1400 100%);
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reviews-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(226,148,0,0.18) 0%, transparent 70%);
}
.reviews-hero__inner {
  position: relative;
  z-index: 1;
}
.reviews-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(226,148,0,0.15);
  border: 1px solid rgba(226,148,0,0.35);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.reviews-hero__stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.reviews-hero__stars svg { color: var(--gold); }
.reviews-hero__h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.reviews-hero__h1 em {
  font-style: normal;
  color: var(--gold);
}
.reviews-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 46ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.reviews-hero__stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.reviews-hero__stat {
  text-align: center;
}
.reviews-hero__stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.reviews-hero__stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
  display: block;
}

/* Filter Bar */
.reviews-filter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 1rem 0.5rem;
}
.reviews-filter__btn {
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.reviews-filter__btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-light);
}
.reviews-filter__btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 2rem 0 3rem;
  align-items: start;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Review Card */
.review-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.review-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.review-card__meta {
  flex: 1;
  min-width: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}
.review-card__stars {
  display: flex;
  gap: 2px;
}
.review-card__stars svg { color: var(--gold); }
.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
  flex: 1;
}
.review-card__text.clamp { 
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__readmore {
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  text-align: left;
  margin-top: -0.5rem;
}
.review-card__readmore:hover { text-decoration: underline; }
.review-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  align-self: flex-start;
}
.review-card__google {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* Service Links Grid on Reviews Page */
.service-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 700px) { .service-links-grid { grid-template-columns: repeat(2, 1fr); } }
.service-link-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: block;
  background: #fff;
}
.service-link-card:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226,148,0,0.12);
}
.service-link-card__icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  display: block;
}
