/* ==========================================================================
   TOUCHED BY SAIAH DEVELOPMENT - LUXURY DESIGN SYSTEM
   Palette: Soft Blush Pink, Champagne Gold, Warm Ivory/Cream, Deep Charcoal
   Fonts: Cormorant Garamond, Cinzel, Playfair Display, Plus Jakarta Sans
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Blush Pink Family (from official logo) */
  --blush-50: #FFF9FA;
  --blush-100: #FDF2F4;
  --blush-200: #F9E0E4;
  --blush-300: #F2CACA;
  --blush-400: #E6AEB8;
  --blush-500: #CE8192;
  --blush-600: #B3657C;
  --blush-700: #964A60;

  /* Champagne Gold Family (from monogram and accents) */
  --gold-100: #FDF9EE;
  --gold-200: #F7EFCF;
  --gold-300: #EEDD9D;
  --gold-400: #E2C76A;
  --gold-500: #D4AF37;
  --gold-600: #BA9522;
  --gold-700: #937414;
  --gold-glow: rgba(212, 175, 55, 0.28);
  --gold-gradient: linear-gradient(135deg, #ECCF80 0%, #D4AF37 50%, #B89222 100%);
  --blush-gold-gradient: linear-gradient(135deg, #FBECEE 0%, #F5D5DC 50%, #F0E2C8 100%);

  /* Warm Cream & Neutrals */
  --cream-bg: #FAF6F0;
  --cream-card: #FFFFFF;
  --cream-surface: #FDFBF8;

  /* Deep Charcoal Typography */
  --text-primary: #1A1617;
  --text-secondary: #483E42;
  --text-muted: #796B70;
  --text-light: #A3969B;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-motto: 'Cinzel', serif;
  --font-script: 'Playfair Display', Georgia, serif;

  /* Elevation Shadows */
  --shadow-sm: 0 2px 8px rgba(179, 101, 124, 0.06);
  --shadow-md: 0 8px 24px rgba(179, 101, 124, 0.08);
  --shadow-lg: 0 16px 40px rgba(179, 101, 124, 0.12);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.22);

  /* Layout */
  --container-max: 1240px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-bg);
  color: var(--text-secondary);
  line-height: 1.68;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.text-accent {
  color: var(--blush-600);
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-motto);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 1.2rem 0 1.5rem 0;
  border-radius: 2px;
}

.center-divider {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  white-space: normal;
  max-width: 100%;
}

.btn-primary {
  background: var(--blush-600);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(179, 101, 124, 0.3);
}

.btn-primary:hover {
  background: var(--blush-700);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(179, 101, 124, 0.4);
}

.btn-secondary {
  background: var(--gold-100);
  color: var(--gold-700);
  border-color: rgba(212, 175, 55, 0.35);
}

.btn-secondary:hover {
  background: var(--gold-200);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(179, 101, 124, 0.3);
}

.btn-outline:hover {
  background: var(--blush-100);
  border-color: var(--blush-400);
  transform: translateY(-2px);
}

.btn-white {
  background: #FFFFFF;
  color: var(--blush-700);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.btn-white:hover {
  background: var(--blush-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  flex-shrink: 0;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #FAF2F4 0%, #F5E5E8 50%, #FAF0E4 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  color: var(--text-secondary);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  text-align: center;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.announcement-divider {
  color: var(--gold-500);
  opacity: 0.6;
}

.star-icon {
  color: var(--gold-500);
  font-size: 0.9rem;
}

.ig-quick-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--blush-700);
  font-weight: 600;
}

.ig-quick-link a:hover {
  color: var(--text-primary);
}

/* --- Sticky Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(179, 101, 124, 0.08);
  border-bottom-color: rgba(212, 175, 55, 0.25);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-header.scrolled .nav-container {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.brand-link:hover .nav-logo {
  transform: scale(1.05);
}

.brand-titles {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  line-height: 1.1;
  white-space: normal;
  max-width: 100%;
}

.brand-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blush-600);
  text-transform: uppercase;
  margin-top: 0.1rem;
  white-space: normal;
  max-width: 100%;
}

/* --- Desktop Nav Links --- */
.desktop-nav {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  position: relative;
  transition: color var(--transition-fast);
  white-space: normal;
  max-width: 100%;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--blush-700);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ig-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blush-100);
  color: var(--blush-700);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.ig-icon-btn:hover {
  background: var(--blush-200);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Mobile Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: height var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mobile-drawer.open {
  height: calc(100vh - 100%);
  overflow-y: auto;
}

.mobile-drawer-inner {
  padding: 2rem 1.5rem 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(242, 202, 202, 0.35);
}

.mobile-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4rem 0 5rem 0;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -10%;
  right: 0;
  width: 50vw;
  height: 50vw;
  max-width: 500px;
  max-height: 500px;
  overflow: hidden;
  background: radial-gradient(circle, rgba(242, 202, 202, 0.45) 0%, rgba(247, 239, 207, 0.25) 50%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blush-100);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  max-width: 100%;
}

.gold-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 8px var(--gold-500);
  flex-shrink: 0;
}

.hero-eyebrow-text {
  font-family: var(--font-motto);
  font-size: clamp(0.62rem, 2vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  line-height: 1.3;
}

.hero-title {
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 540px;
}

.hero-positioning-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: #FFFFFF;
  color: var(--text-primary);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-sm);
  white-space: normal;
  max-width: 100%;
}

.pill-icon {
  font-size: 0.85rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.hero-ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-google-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.google-stars {
  color: #FBBC05;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.google-trust-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Hero Visual --- */
.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.gold-frame-accent {
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: 10px;
  left: 10px;
  border: 2px solid var(--gold-400);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-badge {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 0.75rem 1.1rem;
}

.hero-float-card {
  bottom: 25px;
  left: -15px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatSlow 4s ease-in-out infinite;
}

.float-badge-icon {
  font-size: 1.5rem;
}

.float-badge-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.2;
}

.float-badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-float-motto {
  top: 25px;
  right: -10px;
  display: flex;
  flex-direction: column;
  text-align: right;
  animation: floatSlow 5s ease-in-out infinite reverse;
}

.motto-mini {
  font-family: var(--font-motto);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blush-600);
}

.motto-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-600);
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ==========================================================================
   MINIMALIST TRUST STRIP
   ========================================================================== */
.trust-strip {
  background: #FFFFFF;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(179, 101, 124, 0.04);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  font-size: 1.35rem;
}

.gold-star {
  color: var(--gold-500);
}

.trust-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.15;
}

.trust-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-sep {
  color: var(--gold-300);
  opacity: 0.5;
  font-weight: 300;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--cream-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.service-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.featured-service-card {
  border: 1.5px solid var(--blush-400);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FA 100%);
}

.service-badge-pill {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--blush-600);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(179, 101, 124, 0.3);
}

.service-badge-pill.gold-badge {
  background: var(--gold-500);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--blush-100);
  color: var(--blush-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon-box {
  transform: scale(1.08);
  background: var(--blush-200);
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.service-brief {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.service-features-list {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.25rem;
}

.service-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-weight: 700;
}

.service-action-wrap {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(242, 202, 202, 0.4);
}

.service-link-btn {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blush-700);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition-fast);
}

.service-link-btn:hover {
  color: var(--text-primary);
  gap: 0.55rem;
}

/* ==========================================================================
   FEATURED DEEP CLEANING SECTION
   ========================================================================== */
.featured-deep-clean {
  background: #FFFFFF;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.deep-clean-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.image-frame-gold {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.deep-clean-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-frame-gold:hover .deep-clean-img {
  transform: scale(1.03);
}

.image-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-500);
}

.badge-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.badge-sub {
  font-size: 0.76rem;
  color: var(--blush-600);
  font-weight: 600;
}

.editorial-lead {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.45;
}

.body-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.deep-clean-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.5rem 0 2rem 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-bullet {
  color: var(--gold-500);
  font-size: 0.95rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.check-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.check-text strong {
  color: var(--text-primary);
}

.deep-clean-cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   MOVE-IN / MOVE-OUT SECTION
   ========================================================================== */
.move-in-out-section {
  background-color: var(--cream-bg);
}

.move-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.move-features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 1.8rem 0;
}

.mini-feature-box {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.mini-feature-icon {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.mini-feature-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.mini-feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.move-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.move-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.move-caption-pill {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blush-700);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   HAULING SECTION
   ========================================================================== */
.hauling-section {
  background: #FFFFFF;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hauling-banner-card {
  background: linear-gradient(135deg, #FAF4E8 0%, #FFFDF8 50%, #FAF0E6 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.hauling-banner-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hauling-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hauling-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: 1px solid var(--gold-400);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-motto);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-700);
  margin-bottom: 1.2rem;
  max-width: 100%;
}

.hauling-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 0.5rem;
}

.hauling-lead-text {
  font-size: 1.15rem;
  color: var(--blush-700);
  margin-bottom: 0.5rem;
}

.hauling-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hauling-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.hauling-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  background: #FFFFFF;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.25);
  white-space: normal;
  max-width: 100%;
}

.hauling-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   WHY TOUCHED BY SAIAH SECTION
   ========================================================================== */
.why-us-section {
  background-color: var(--cream-bg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blush-200);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
}

.why-icon-box {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.why-card-title {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.why-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 1.8rem;
}

.why-card-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(242, 202, 202, 0.35);
}

.why-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* ==========================================================================
   ABOUT & BRAND PHILOSOPHY
   ========================================================================== */
.about-section {
  background: #FFFFFF;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.brand-philosophy-highlight {
  background: linear-gradient(135deg, #FDF5F6 0%, #FAF0E4 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
}

.lotus-motif {
  margin-bottom: 0.75rem;
}

.philosophy-motto {
  font-family: var(--font-motto);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blush-600);
  margin-bottom: 0.4rem;
}

.philosophy-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  color: var(--gold-600);
  margin-bottom: 0.3rem;
}

.philosophy-sub {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.about-emblem-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: #FFFFFF;
  border: 2px solid var(--gold-400);
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
}

/* ==========================================================================
   OUR WORK & INTERACTIVE BEFORE/AFTER SLIDER
   ========================================================================== */
.our-work-section {
  background-color: var(--cream-bg);
}

.before-after-wrapper {
  max-width: 960px;
  margin: 3rem auto 3.5rem auto;
}

.before-after-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ba-tag {
  font-family: var(--font-motto);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blush-600);
  text-transform: uppercase;
}

.ba-instruction {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold-400);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  --ba-pos: 50%;
}

.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  clip-path: polygon(0 0, var(--ba-pos) 0, var(--ba-pos) 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, var(--ba-pos) 0, var(--ba-pos) 100%, 0 100%);
  pointer-events: none;
}

.ba-label {
  position: absolute;
  bottom: 18px;
  z-index: 3;
  font-family: var(--font-motto);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.ba-label-before {
  left: 18px;
  background: rgba(26, 22, 23, 0.85);
  color: #FFFFFF;
}

.ba-label-after {
  right: 18px;
  background: rgba(212, 175, 55, 0.95);
  color: #FFFFFF;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  width: 44px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: #FFFFFF;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.ba-handle-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--gold-500);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--gold-600);
  font-size: 0.75rem;
}

/* --- Work Gallery Grid --- */
.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-sm);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-hover-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 22, 23, 0.88) 100%);
  padding: 2rem 1.25rem 1.25rem 1.25rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.gallery-room-type {
  font-family: var(--font-motto);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold-300);
}

.gallery-room-title {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin: 0.2rem 0;
}

.gallery-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.gallery-bottom-cta {
  margin-top: 3rem;
}

.gallery-cta-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ==========================================================================
   GOOGLE TRUST & RATING SPOTLIGHT
   ========================================================================== */
.google-trust-section {
  background: #FFFFFF;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.google-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.2rem;
  background: linear-gradient(135deg, #FFFDFD 0%, #FCF8F5 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.google-badge-left {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.google-g-icon {
  flex-shrink: 0;
}

.gold-stars-row {
  color: #FBBC05;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.rating-title {
  font-size: 1.65rem;
  margin-bottom: 0.2rem;
}

.rating-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.google-pillars-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.google-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.gp-icon {
  font-size: 1.1rem;
}

/* ==========================================================================
   READY TO ELEVATE BANNER CTA
   ========================================================================== */
.banner-cta-section {
  padding: 4rem 0;
  background-color: var(--cream-bg);
}

.banner-cta-box {
  background: linear-gradient(135deg, #FBECEE 0%, #F5D2DA 60%, #E8D3B4 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 4rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.banner-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.banner-eyebrow {
  font-family: var(--font-motto);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blush-700);
}

.banner-title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin: 0.6rem 0 1rem 0;
}

.banner-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  background: #FFFFFF;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-container {
  max-width: 860px;
}

.faq-accordion {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  background: var(--cream-surface);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-500);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold-600);
  font-weight: 300;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  max-height: 350px;
  padding: 0 1.5rem 1.4rem 1.5rem;
}

.faq-content p {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT & QUOTE REQUEST SECTION
   ========================================================================== */
.contact-section {
  background-color: var(--cream-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.contact-method-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.3rem;
  box-shadow: var(--shadow-sm);
}

.contact-method-item.highlight-method {
  border: 1.5px solid var(--blush-400);
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F9 100%);
}

.method-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blush-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.ig-box {
  background: var(--blush-600);
  color: #FFFFFF;
}

.method-details {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.method-label {
  font-family: var(--font-motto);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-600);
  margin-bottom: 0.2rem;
}

.method-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.method-value.ig-link:hover {
  color: var(--blush-600);
}

.method-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.copy-handle-btn {
  background: var(--blush-100);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blush-700);
  cursor: pointer;
  margin-top: 0.5rem;
  width: fit-content;
  transition: all var(--transition-fast);
}

.copy-handle-btn:hover {
  background: var(--blush-200);
  color: var(--text-primary);
}

/* --- Form Card --- */
.form-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.form-card-header {
  margin-bottom: 1.8rem;
}

.form-title {
  font-size: 1.9rem;
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.required {
  color: var(--blush-600);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  background: var(--cream-surface);
  color: var(--text-primary);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.form-textarea {
  resize: vertical;
}

.form-error-msg {
  display: none;
  font-size: 0.76rem;
  color: #C0392B;
  margin-top: 0.2rem;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select {
  border-color: #C0392B;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.form-submit-wrap {
  margin-top: 0.5rem;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

.link-gold {
  color: var(--blush-700);
}

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success-notice {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon-wrap {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.success-title {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

/* ==========================================================================
   INSTAGRAM FEATURE SECTION
   ========================================================================== */
.instagram-feature-section {
  background: #FFFFFF;
  padding: 5rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.ig-feature-box {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ig-icon-large {
  color: var(--blush-600);
  margin-bottom: 1rem;
}

.ig-handle-display {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blush-700);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.ig-feature-desc {
  margin-bottom: 2rem;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #1A1617;
  color: rgba(255, 255, 255, 0.8);
  padding: 4.5rem 0 2rem 0;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.05fr 0.95fr 1.15fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo-img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
  margin-bottom: 1.2rem;
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.footer-positioning {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.4rem;
}

.footer-pillars-text {
  font-size: 0.8rem;
  color: var(--blush-300);
}

.footer-heading {
  font-family: var(--font-motto);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  margin-bottom: 1.2rem;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-link-list a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer-link-list a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  margin-bottom: 0.7rem;
}

.footer-ig-link {
  color: var(--blush-300);
  font-weight: 600;
}

.footer-ig-link:hover {
  color: #FFFFFF;
}

.footer-cta-wrap {
  margin-top: 1.2rem;
}

.footer-motto-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.footer-motto-words {
  font-family: var(--font-motto);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-tagline-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--blush-300);
}

.footer-philosophy-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-bottom-bar {
  padding-top: 1.8rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   FLOATING MOBILE QUICK ACTION BAR
   ========================================================================== */
.mobile-floating-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.6rem 0.85rem;
  padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
  gap: 0.65rem;
}

.floating-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  text-align: center;
  white-space: normal;
  max-width: 100%;
}

.btn-float-clean {
  background: var(--blush-600);
  color: #FFFFFF;
}

.btn-float-ig {
  background: var(--gold-100);
  color: var(--gold-700);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   RESPONSIVE DESIGN (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }

  .deep-clean-grid,
  .move-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .trust-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    justify-items: center;
  }

  .trust-strip-inner .trust-item:last-child {
    grid-column: span 2;
  }

  .trust-sep {
    display: none;
  }

  .google-card-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-floating-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 640px) {
  .top-announcement-bar {
    display: none;
  }

  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .move-features-cards {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .gold-frame-accent {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .about-emblem-badge {
    bottom: -15px;
    right: 15px;
  }

  .emblem-img {
    width: 68px;
    height: 68px;
  }

  .hero-float-card,
  .hero-float-motto {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .brand-tag {
    font-size: 0.58rem;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    padding: 0 0.5rem;
    gap: 0.9rem;
  }

  .trust-strip-inner .trust-item:last-child {
    grid-column: span 1;
  }

  .service-action-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .service-action-wrap .btn {
    width: 100%;
  }

  .service-link-btn {
    justify-content: center;
    padding: 0.35rem 0;
  }

  .ba-label {
    font-size: 0.62rem;
    padding: 0.25rem 0.65rem;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 2rem;
  }

  .brand-name {
    font-size: 0.95rem;
  }
}

/* --- Zero Overflow Guarantee for Grid and Flex Items --- */
.hero-container,
.hero-content,
.hero-visual,
.services-grid > *,
.why-grid > *,
.move-grid > *,
.deep-clean-grid > *,
.about-grid > *,
.contact-grid > *,
.nav-container,
.brand-link,
.trust-strip-inner > * {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 640px) {
  .hero-eyebrow {
    white-space: normal;
    text-align: left;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-md);
    width: 100%;
  }

  .hero-eyebrow-text {
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .work-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-bottom-cta .btn {
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  padding: 0.85rem 1.6rem;
  max-width: 100%;
}
