/* ============================================================
   QueenTM Cleaning Services — Premium Design System
   Creative Director: Senior Agency Level
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */
:root {
  /* Core Colors */
  --color-navy:        #14142B;
  --color-navy-light:  #1E1E3F;
  --color-navy-muted:  #2D2D5A;
  --color-gold:        #C9A84C;
  --color-gold-light:  #E2C97A;
  --color-gold-pale:   #F5EDDA;
  --color-ivory:       #F8F6F0;
  --color-white:       #FFFFFF;
  --color-off-white:   #FAFAF8;

  /* Text Colors */
  --text-primary:      #14142B;
  --text-secondary:    #3D3D6B;
  --text-muted:        #6B7280;
  --text-light:        #9CA3AF;
  --text-on-dark:      #F8F6F0;
  --text-gold:         #C9A84C;

  /* Semantic */
  --color-success:     #10B981;
  --color-success-bg:  #D1FAE5;
  --color-error:       #EF4444;

  /* Gradients */
  --gradient-hero:     linear-gradient(135deg, rgba(20,20,43,0.92) 0%, rgba(30,30,63,0.75) 50%, rgba(20,20,43,0.60) 100%);
  --gradient-gold:     linear-gradient(135deg, #C9A84C 0%, #E2C97A 50%, #C9A84C 100%);
  --gradient-navy:     linear-gradient(135deg, #14142B 0%, #1E1E3F 100%);
  --gradient-card:     linear-gradient(135deg, #FFFFFF 0%, #F8F6F0 100%);
  --gradient-section:  linear-gradient(180deg, #FAFAF8 0%, #F5EDDA 100%);

  /* Shadows */
  --shadow-sm:         0 1px 3px rgba(20,20,43,0.06), 0 1px 2px rgba(20,20,43,0.04);
  --shadow-md:         0 4px 16px rgba(20,20,43,0.08), 0 2px 6px rgba(20,20,43,0.04);
  --shadow-lg:         0 10px 40px rgba(20,20,43,0.12), 0 4px 12px rgba(20,20,43,0.06);
  --shadow-xl:         0 20px 60px rgba(20,20,43,0.16), 0 8px 20px rgba(20,20,43,0.08);
  --shadow-gold:       0 8px 32px rgba(201,168,76,0.30);
  --shadow-card-hover: 0 20px 50px rgba(20,20,43,0.14), 0 8px 20px rgba(201,168,76,0.12);

  /* Typography */
  --font-display:      'Playfair Display', Georgia, serif;
  --font-editorial:    'Cormorant Garamond', Georgia, serif;
  --font-body:         'Inter', system-ui, sans-serif;

  /* Font Sizes — Fluid Scale */
  --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;
  --text-7xl:          4.5rem;
  --text-8xl:          6rem;

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-7:   1.75rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* Border Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-sm: 200ms;
  --duration-md: 350ms;
  --duration-lg: 600ms;

  /* Layout */
  --container:   1200px;
  --nav-height:  80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-primary);
  background-color: var(--color-off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--text-base);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section-padding {
  padding: var(--space-24) 0;
}

.section-padding-lg {
  padding: var(--space-32) 0;
}

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4        { gap: var(--space-4); }
.gap-6        { gap: var(--space-6); }
.gap-8        { gap: var(--space-8); }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, var(--text-8xl));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, var(--text-7xl));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, var(--text-5xl));
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, var(--text-4xl));
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, var(--text-3xl));
  font-weight: 600;
  line-height: 1.3;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, var(--text-2xl));
  font-weight: 600;
  line-height: 1.35;
}

.body-lg {
  font-size: var(--text-lg);
  line-height: 1.75;
  font-weight: 400;
}

.body-md {
  font-size: var(--text-base);
  line-height: 1.7;
}

.body-sm {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.label-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.editorial {
  font-family: var(--font-editorial);
  font-style: italic;
}

/* Section Labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--duration-md) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-md) var(--ease-out);
}

.btn:hover::before { opacity: 1; }

/* Primary Button — Gold */
.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
  border-color: transparent;
}

.btn-primary::before {
  background: rgba(255,255,255,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button — Outlined */
.btn-secondary {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-secondary::before {
  background: var(--color-navy);
}

.btn-secondary:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Ghost Button — Light Outline */
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost::before {
  background: rgba(255,255,255,0.1);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

/* Dark Button */
.btn-dark {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.btn-dark:hover {
  background: var(--color-navy-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 18px 44px;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 10px 24px;
  font-size: var(--text-xs);
}

/* Button Icon */
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--duration-sm) var(--ease-out);
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--duration-md) var(--ease-out);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav.scrolled {
  background: rgba(20, 20, 43, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.nav-logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
  transition: color var(--duration-sm) ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--duration-md) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  transition: color var(--duration-sm) ease;
}

.nav-phone:hover {
  color: var(--color-gold);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--duration-md) var(--ease-out);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(20, 20, 43, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-6) var(--space-6) var(--space-8);
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--duration-md) var(--ease-out);
  pointer-events: none;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.nav-mobile-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-lg);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-md);
  transition: all var(--duration-sm) ease;
}

.nav-mobile-link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--color-white);
}

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-overlay-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: var(--space-16) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: pulse-gold 2s infinite;
}

.hero-badge-text {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--color-white);
  margin-bottom: var(--space-6);
  max-width: 800px;
}

.hero-headline .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero-subtext {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: var(--space-10);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  font-weight: 500;
}

.hero-trust-icon {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-navy);
  padding: var(--space-10) 0;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.trust-stat {
  text-align: center;
  position: relative;
}

.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.trust-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.trust-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-16);
}

.section-header.left {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-title.light {
  color: var(--color-white);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 400;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.7);
}

.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
  margin: var(--space-6) auto 0;
}

.section-header.left .gold-line {
  margin-left: 0;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-md) var(--ease-out);
  position: relative;
  border: 1px solid rgba(20,20,43,0.06);
  group: true;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(201,168,76,0.2);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-lg) var(--ease-out);
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: rgba(20,20,43,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.service-icon-wrap {
  position: absolute;
  bottom: -20px;
  right: var(--space-6);
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  font-size: 1.2rem;
}

.service-card-body {
  padding: var(--space-8) var(--space-6) var(--space-6);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.service-card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 500;
}

.service-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-navy);
  letter-spacing: 0.02em;
  transition: gap var(--duration-sm) ease;
}

.service-card-link:hover {
  gap: var(--space-3);
  color: var(--color-gold);
}

/* Service cards without image (icon style) */
.service-card-icon-style {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  background: var(--color-gold-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--duration-md) var(--ease-out);
  flex-shrink: 0;
}

.service-card:hover .service-icon-box {
  background: var(--gradient-gold);
  transform: rotate(-4deg) scale(1.05);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.about-image-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

.about-image-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 180px;
  height: 180px;
  background: var(--gradient-gold);
  border-radius: var(--radius-xl);
  z-index: 0;
  opacity: 0.18;
}

.about-badge-float {
  position: absolute;
  bottom: 32px;
  left: -32px;
  z-index: 2;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  min-width: 240px;
}

.about-badge-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.about-badge-text-wrap {
  display: flex;
  flex-direction: column;
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.about-badge-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-content .section-label { margin-bottom: var(--space-3); }

.about-story {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.about-story + .about-story {
  margin-top: -var(--space-3);
}

.about-signature {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(20,20,43,0.08);
}

.about-signature-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--color-gold-pale);
  flex-shrink: 0;
}

.about-signature-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-signature-info {
  flex: 1;
}

.about-signature-name {
  font-family: var(--font-editorial);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-signature-title {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(201,168,76,0.3);
  transition: all var(--duration-md) var(--ease-out);
}

.process-step:hover .process-step-icon {
  background: rgba(201,168,76,0.12);
  border-color: var(--color-gold);
  transform: scale(1.08);
}

.process-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--gradient-gold);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-emoji {
  font-size: 1.75rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.process-step-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.why-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  border: 1px solid rgba(20,20,43,0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-md) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform var(--duration-md) var(--ease-out);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-5);
  display: block;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.why-card-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--color-ivory);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20,20,43,0.04);
  transition: all var(--duration-md) var(--ease-out);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
  background: var(--gradient-navy);
  border-color: rgba(201,168,76,0.2);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--color-gold-pale);
  font-weight: 700;
  user-select: none;
}

.testimonial-card.featured .testimonial-quote-mark {
  color: rgba(201,168,76,0.2);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--color-gold);
  font-size: var(--text-sm);
}

.testimonial-text {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  flex: 1;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255,255,255,0.85);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(20,20,43,0.06);
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255,255,255,0.08);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-primary);
  line-height: 1.3;
}

.testimonial-card.featured .testimonial-name {
  color: var(--color-white);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.testimonial-card.featured .testimonial-location {
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   BEFORE / AFTER SECTION
   ============================================================ */
.before-after-section {
  background: var(--color-off-white);
}

.before-after-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  max-width: 900px;
  margin: 0 auto;
}

.before-after-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.before-after-label {
  position: absolute;
  top: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-before {
  left: var(--space-4);
  background: rgba(0,0,0,0.55);
  color: var(--color-white);
}

.label-after {
  right: var(--space-4);
  background: var(--gradient-gold);
  color: var(--color-navy);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  background: var(--color-navy);
  position: relative;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-12);
}

.area-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  transition: all var(--duration-md) var(--ease-out);
  cursor: default;
}

.area-chip:hover {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

.area-chip-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}

.area-chip-state {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--color-off-white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20,20,43,0.07);
  overflow: hidden;
  transition: all var(--duration-md) var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) var(--space-7);
  background: none;
  text-align: left;
  gap: var(--space-4);
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--duration-md) var(--ease-out);
  color: var(--color-gold);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-lg) var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 var(--space-7) var(--space-6);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient-navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-6);
  display: block;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-title .gold { color: var(--color-gold); }

.cta-text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto var(--space-10);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cta-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D0D1F;
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-5);
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  transition: all var(--duration-md) ease;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-5);
  letter-spacing: -0.01em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--duration-sm) ease;
}

.footer-link:hover {
  color: var(--color-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-icon {
  font-size: var(--text-base);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-contact-text a {
  color: rgba(255,255,255,0.7);
  transition: color var(--duration-sm) ease;
}

.footer-contact-text a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer-bottom-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
  transition: color var(--duration-sm) ease;
}

.footer-bottom-link:hover {
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   STICKY MOBILE BUTTONS
   ============================================================ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom));
  background: rgba(20,20,43,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: var(--space-3);
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(20,20,43,0.12);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--color-white);
  transition: all var(--duration-sm) ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-navy);
  padding: calc(var(--nav-height) + var(--space-20)) 0 var(--space-20);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-5);
  margin-bottom: var(--space-6);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}

.page-hero-title .gold {
  color: var(--color-gold);
}

.page-hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
}

.breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color var(--duration-sm) ease;
}

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

.breadcrumb-sep {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.bg-ivory    { background: var(--color-ivory); }
.bg-white    { background: var(--color-white); }
.bg-navy     { background: var(--color-navy); }
.bg-offwhite { background: var(--color-off-white); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  :root { --container: 100%; }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }

  .process-grid::before { display: none; }

  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .about-image-wrap {
    max-width: 520px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-10);
  }

  .trust-stat:nth-child(2)::after { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn,
  .nav-phone { display: none; }

  .nav-toggle { display: flex; }

  .nav-mobile { display: block; }

  .services-grid,
  .why-grid,
  .testimonials-grid,
  .process-grid,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-stat::after { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-desc { max-width: 100%; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-badge-float {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: var(--space-4);
    width: 100%;
  }

  .mobile-sticky-bar { display: flex; }

  body { padding-bottom: 80px; }

  .section-padding { padding: var(--space-16) 0; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; max-width: 340px; }

  .before-after-wrap img { height: 280px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 var(--space-4); }
}
