/* ==========================================================================
   Who Who North Brisbane — Main Stylesheet
   Rebuilt to match old project visual direction
   ========================================================================== */

/* ─── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  /* Brand colours — matched from old project */
  --yellow:       #F4C430;   /* primary accent / highlight */
  --blue:         #1E90FF;   /* primary interactive colour */
  --blue-dark:    #1B82E6;
  --navy:         #0D1F3C;   /* dark backgrounds / headings */
  --orange:       #FF8C00;   /* CTA gradient complement */
  --white:        #FFFFFF;
  --off-white:    #FAFAFA;

  /* Gray scale */
  --gray-50:      #FAFAFA;
  --gray-100:     #F5F5F5;
  --gray-200:     #E5E5E5;
  --gray-300:     #D4D4D4;
  --gray-400:     #A3A3A3;
  --gray-500:     #737373;
  --gray-600:     #525252;
  --gray-700:     #404040;
  --gray-800:     #262626;
  --gray-900:     #171717;

  /* Spacing / Layout */
  --container:    1200px;
  --radius-sm:    0.5rem;
  --radius:       0.75rem;
  --radius-lg:    1rem;
  --radius-xl:    1.5rem;

  /* Shadows */
  --shadow-sm:    0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px -2px rgba(0,0,0,.10);
  --shadow-lg:    0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10);
  --shadow-xl:    0 20px 25px -5px rgba(0,0,0,.10), 0 8px 10px -6px rgba(0,0,0,.10);

  /* Transitions */
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--navy); color: #fff;
  padding: 8px 16px; z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

/* ─── Layout ─────────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--light { background: var(--gray-50); }
.section--navy { background: var(--navy); }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Section Headers ────────────────────────────────────────────────────────── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(30,144,255,.08);
  border: 1px solid rgba(30,144,255,.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.section-label--gold {
  color: var(--yellow);
  background: rgba(244,196,48,.1);
  border-color: rgba(244,196,48,.25);
}
.section-title { margin-bottom: 0.75rem; }
.section-title--light { color: var(--white); }
.section-desc { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; }
.section-desc--light { color: rgba(255,255,255,.8); }

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem; font-weight: 600; line-height: 1;
  text-decoration: none; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap; cursor: pointer;
}
.btn-large { padding: 1rem 2rem; font-size: 1rem; border-radius: 50px; }

.btn-primary {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--blue-dark); border-color: var(--blue-dark);
  color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent; color: var(--gray-800); border-color: var(--gray-300);
}
.btn-outline:hover { background: var(--gray-100); color: var(--gray-900); }

.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

/* Hero buttons */
.btn-hero-primary {
  background: var(--blue); color: var(--white);
  box-shadow: var(--shadow-lg);
}
.btn-hero-primary:hover {
  background: var(--blue-dark); color: var(--white);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
}
.btn-hero-outline {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.22);
  color: var(--white);
  transform: translateY(-3px) scale(1.03);
}
.btn-hero-outline svg { flex-shrink: 0; }

/* CTA section buttons */
.btn-cta-primary {
  background: var(--white); color: var(--blue); font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.btn-cta-primary:hover { background: var(--gray-100); color: var(--blue-dark); transform: translateY(-2px); }
.btn-cta-outline {
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6);
}
.btn-cta-outline:hover { background: rgba(255,255,255,.12); }

/* Quote button (header) */
.btn-quote {
  background: var(--blue); color: var(--white);
  padding: .6rem 1.35rem; font-size: .875rem; font-weight: 700;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.btn-quote:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* ─── Site Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

/* Scrolled state — applied by JS */
.site-header.is-scrolled {
  background: rgba(255,255,255,.98);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}

/* When on non-hero pages, always show solid header */
body:not(.is-front-page) .site-header {
  background: rgba(255,255,255,.98);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: .75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo-img { height: 52px; width: auto; object-fit: contain; }

/* Nav links */
.header-nav { display: flex; align-items: center; gap: .25rem; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }

.nav-link {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .5rem .9rem;
  color: var(--white); /* transparent hero state */
  font-size: .9375rem; font-weight: 500;
  text-shadow: 0 2px 6px rgba(0,0,0,.5);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  background: none; border: none; cursor: pointer;
}
.nav-link:hover, .nav-link--active { color: var(--yellow); text-shadow: 0 2px 6px rgba(0,0,0,.4); }

/* Scrolled: dark nav text */
.is-scrolled .nav-link,
body:not(.is-front-page) .nav-link {
  color: var(--gray-700); text-shadow: none;
}
.is-scrolled .nav-link:hover,
.is-scrolled .nav-link--active,
body:not(.is-front-page) .nav-link:hover,
body:not(.is-front-page) .nav-link--active {
  color: var(--blue); background: var(--gray-100);
}

/* Services Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { gap: .35rem; }
.dropdown-arrow { font-size: .65rem; transition: transform .25s ease; }
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: .4rem;
  border: 1px solid var(--gray-200);
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 1001;
  list-style: none;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1rem;
  color: var(--gray-700); font-size: .9rem; font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast); text-shadow: none;
}
.dropdown-link:hover { background: var(--gray-50); color: var(--blue); }
.dropdown-icon { color: var(--blue); font-size: .55rem; }

/* Quote button in header */
.header-nav .btn-quote { margin-left: .75rem; }
.is-scrolled .btn-quote,
body:not(.is-front-page) .btn-quote {
  background: var(--blue); color: var(--white);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.mobile-toggle:hover { background: rgba(255,255,255,.12); }
.is-scrolled .mobile-toggle:hover,
body:not(.is-front-page) .mobile-toggle:hover { background: var(--gray-100); }

.toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.is-scrolled .toggle-bar,
body:not(.is-front-page) .toggle-bar { background: var(--gray-700); }

/* Hamburger → X */
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Navigation Panel ────────────────────────────────────────────────── */
.mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-title { font-weight: 600; color: var(--gray-800); font-size: 1rem; }
.mobile-close {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  color: var(--gray-600);
  transition: background var(--transition-fast);
}
.mobile-close:hover { background: var(--gray-100); color: var(--gray-900); }

.mobile-menu { padding: .75rem 0; }
.mobile-link {
  display: flex; align-items: center;
  padding: .85rem 1.5rem;
  color: var(--gray-700); font-weight: 500; font-size: .9375rem;
  min-height: 48px;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}
.mobile-link:hover, .mobile-link--active {
  background: var(--gray-50); color: var(--blue);
  border-left-color: var(--blue);
}

.mobile-sub-group { border-top: 1px solid var(--gray-100); margin-top: .25rem; }
.mobile-sub-heading {
  display: block;
  padding: .75rem 1.5rem .25rem;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .06em;
  color: var(--gray-400); font-weight: 700;
}
.mobile-sublink { padding-left: 2.5rem; font-size: .9rem; color: var(--gray-600); }

.mobile-nav-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--gray-100);
  display: flex; flex-direction: column; gap: .75rem;
}
.mobile-phone-link {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  font-size: 1.05rem; font-weight: 700; color: var(--gray-800);
  padding: .75rem;
}
.mobile-phone-link:hover { color: var(--blue); }

.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 998;
}
.mobile-overlay.is-visible { display: block; }

/* ─── Hero Slider ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 600px; max-height: 860px;
  overflow: hidden;
}

.hero-slider { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute; inset: 0;
  /* Gradient fallback shown until real images are placed */
  background-color: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}

/* Prev / Next buttons */
.hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.88);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
  color: var(--gray-700);
  transition: var(--transition);
}
.hero-nav:hover { background: var(--white); transform: translateY(-50%) scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.hero-nav-prev { left: 20px; }
.hero-nav-next { right: 20px; }

/* Dot indicators */
.hero-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: 2px solid rgba(255,255,255,.7);
  transition: var(--transition);
}
.hero-dot.active, .hero-dot:hover { background: var(--white); transform: scale(1.2); }

/* Hero Content */
.hero-content {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center;
}
.hero-inner { max-width: 820px; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.92);
  color: var(--gray-700); font-size: .875rem; font-weight: 500;
  padding: .45rem 1rem; border-radius: 4px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

.hero-subtitle {
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.9); line-height: 1.6;
  margin-bottom: 2rem; max-width: 600px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.hero-trust-row { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .875rem; color: rgba(255,255,255,.8);
  font-weight: 500;
}
.hero-trust-item svg { color: var(--yellow); flex-shrink: 0; }

/* ─── Features / Service Cards ───────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 28px; height: 28px; }

.feature-card--accent { background: var(--navy); border-color: var(--navy); }
.feature-card--accent h3 { color: var(--white); }
.feature-card--accent p  { color: rgba(255,255,255,.75); }

.feature-icon--light {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
}

.feature-card h3 { font-size: 1.1875rem; margin-bottom: .6rem; }
.feature-card p  { color: var(--gray-600); font-size: .9375rem; line-height: 1.65; margin-bottom: 1rem; }

.feature-link {
  font-size: .875rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: .04em;
}
.feature-link:hover { color: var(--blue-dark); }
.feature-link--light { color: var(--yellow); }
.feature-link--light:hover { color: #ffe57c; }

/* ─── Section Content — Text + Image ─────────────────────────────────────────── */
.section-content {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: center;
}
.section-content-reverse {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: center;
}

.section-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.section-image img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.section-image:hover img { transform: scale(1.04); }

/* Floating badge on section image */
.section-image-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--blue); color: var(--white);
  border-radius: var(--radius);
  padding: .9rem 1.1rem;
  text-align: center; box-shadow: var(--shadow-lg);
}
.sib-num { display: block; font-size: 1.75rem; font-weight: 800; line-height: 1; }
.sib-text { display: block; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; opacity: .9; margin-top: 2px; }

.section-text h2 { margin-bottom: .75rem; }
.section-text > p { color: var(--gray-600); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }

/* Why list */
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; margin: 1.5rem 0 2rem; }
.why-list li { display: flex; gap: .9rem; align-items: flex-start; }
.why-check {
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px;
  background: var(--blue); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; line-height: 1;
}
.why-list li div { display: flex; flex-direction: column; gap: 2px; }
.why-list li strong { font-size: 1rem; color: var(--gray-900); }
.why-list li span  { font-size: .9rem; color: var(--gray-600); line-height: 1.55; }
.why-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Stats Section ──────────────────────────────────────────────────────────── */
.stats-section { background: var(--blue); padding: 3rem 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: .35rem; }
.stat-num { font-size: 2.25rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* ─── Rug Types Grid ─────────────────────────────────────────────────────────── */
.rug-types-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: .75rem; margin-top: 1rem;
}
.rug-type-item {
  display: flex; align-items: center; gap: .6rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: .7rem 1rem; font-size: .9rem; font-weight: 500; color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}
.rug-type-item svg { color: var(--blue); flex-shrink: 0; }
.rug-type-item:hover { border-color: var(--blue); background: var(--gray-50); }

/* ─── Process Teaser ─────────────────────────────────────────────────────────── */
.process-mini-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem;
  margin-bottom: 1rem;
}
.process-mini-step {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; min-width: 88px;
  transition: var(--transition-fast);
}
.process-mini-step:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.pms-num { font-size: 1.375rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.pms-label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.75); }

/* ─── Service Areas ──────────────────────────────────────────────────────────── */
.service-areas {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .6rem; margin-top: 1.25rem; list-style: none;
}
.service-areas li {
  background: var(--white); padding: .6rem .9rem;
  border-radius: var(--radius-sm); border-left: 3px solid var(--blue);
  font-size: .875rem; font-weight: 500; color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}

/* ─── CTA Section ────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
  color: var(--white); text-align: center; padding: 5rem 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white); margin-bottom: .75rem;
}
.cta-content p {
  font-size: 1.125rem; color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Page Hero ──────────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 7rem 0 4.5rem; color: var(--white);
}
/* Offset for fixed header */
.page-hero { padding-top: calc(72px + 3.5rem); }

.page-hero-inner { max-width: 760px; }
.page-title { font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.page-hero-desc { font-size: 1.125rem; color: rgba(255,255,255,.85); margin-bottom: 1.75rem; line-height: 1.7; }

.breadcrumb {
  display: flex; align-items: center; gap: 4px;
  font-size: .875rem; color: rgba(255,255,255,.6);
  margin-bottom: 1rem; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--yellow); }

/* ─── Page Content ───────────────────────────────────────────────────────────── */
.page-content-wrap { padding: 4rem 0; }
.page-content-section { padding: 4rem 0; }
.page-intro-content { padding: 3.5rem 0; }
.content-narrow { max-width: 780px; margin: 0 auto; }

.entry-content { font-size: 1.0625rem; line-height: 1.8; color: var(--gray-700); }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 2em 0 .75em; color: var(--gray-900); }
.entry-content h2:first-child, .entry-content h3:first-child { margin-top: 0; }
.entry-content p { margin-bottom: 1.1em; }
.entry-content ul { list-style: disc; margin: 0 0 1.2em 1.5em; }
.entry-content ol { list-style: decimal; margin: 0 0 1.2em 1.5em; }
.entry-content li { margin-bottom: .4em; }

/* ─── Process Steps Page ─────────────────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; }

.process-step {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 2rem; padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow-xl); transform: translateX(3px); }
.process-step--final { border-left-color: var(--yellow); }

.step-marker { display: flex; justify-content: center; padding-top: 2px; }
.step-number {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--blue); color: var(--white);
  font-size: 1.125rem; font-weight: 800;
  border-radius: 50%; flex-shrink: 0;
}
.process-step--final .step-number { background: var(--yellow); color: var(--gray-900); }

.step-title { font-size: 1.2rem; color: var(--gray-900); margin-bottom: .6rem; }
.step-desc { color: var(--gray-600); font-size: .9875rem; line-height: 1.75; margin-bottom: .9rem; }

.step-note {
  display: flex; align-items: flex-start; gap: .6rem;
  background: rgba(244,196,48,.07);
  border-left: 3px solid var(--yellow);
  padding: .75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .875rem; color: var(--gray-700);
}
.step-note svg { color: var(--yellow); flex-shrink: 0; margin-top: 1px; }

/* ─── Pet Urine Page ─────────────────────────────────────────────────────────── */
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.problem-content p { color: var(--gray-600); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }

.warning-box {
  display: flex; gap: .75rem; align-items: flex-start;
  background: rgba(255,140,0,.06);
  border: 1px solid rgba(255,140,0,.2); border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem; margin-top: 1.5rem;
}
.warning-box svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.warning-box p { margin: 0; font-size: .9375rem; color: var(--gray-700); }

.problem-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.pstat { background: var(--navy); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; }
.pstat-num { display: block; font-size: 2rem; font-weight: 800; color: var(--yellow); margin-bottom: .4rem; }
.pstat-label { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.5; }

.treatment-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.treatment-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.tstep-num {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue); color: var(--white);
  border-radius: 50%; font-size: 1.1rem; font-weight: 800;
}
.tstep-content h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.tstep-content p { color: var(--gray-600); font-size: .9375rem; line-height: 1.7; margin: 0; }

.pet-types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.pet-type-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: var(--transition);
}
.pet-type-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ptc-icon { width: 48px; height: 48px; margin-bottom: 1rem; }
.pet-type-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.pet-type-card p  { color: var(--gray-600); font-size: .9rem; line-height: 1.65; margin: 0; }

.safe-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.safe-content p { color: var(--gray-600); font-size: 1rem; line-height: 1.75; margin-bottom: 1.5rem; }
.safe-list { display: flex; flex-direction: column; gap: .9rem; }
.safe-list li { display: flex; align-items: center; gap: .7rem; font-size: .9375rem; color: var(--gray-700); font-weight: 500; }
.safe-list li svg { color: #27ae60; flex-shrink: 0; }

.safe-notice { background: var(--navy); border-radius: var(--radius-lg); padding: 2.25rem; }
.safe-notice h3 { font-size: 1.375rem; color: var(--white); margin-bottom: 1rem; }
.safe-notice p  { color: rgba(255,255,255,.8); font-size: .9375rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* ─── FAQ Section ────────────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); margin-bottom: 1rem;
  border-left: 4px solid var(--yellow);
}
.faq-item h4 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); margin-bottom: .6rem; }
.faq-item p  { color: var(--gray-600); line-height: 1.7; margin: 0; }

/* ─── Generic Page ───────────────────────────────────────────────────────────── */
.page-article { padding-bottom: 0; }
.page-main { padding-top: 72px; } /* offset for fixed header */

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.8); }

.footer-main { padding: 4.5rem 0 3.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo-img {
  width: 200px; height: 200px; object-fit: contain;
  margin-bottom: 1.25rem;
}
.footer-description { font-size: .9375rem; color: var(--gray-400); line-height: 1.65; margin-bottom: 1.25rem; }

.footer-trust-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.8);
  font-size: .75rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
}

.footer-heading {
  font-size: .875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer-list { display: flex; flex-direction: column; gap: .65rem; }
.footer-list li a { color: var(--gray-400); font-size: .9375rem; transition: var(--transition-fast); }
.footer-list li a:hover { color: var(--white); }
.footer-list--plain li { color: var(--gray-500); font-size: .9rem; }

.footer-contact-item { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.25rem; }
.footer-contact-icon { color: var(--yellow); flex-shrink: 0; margin-top: 1px; }
.footer-contact-label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); margin-bottom: 3px; }
.footer-phone { display: block; font-size: 1.9rem; font-weight: 700; color: var(--white); line-height: 1.15; }
.footer-phone:hover { color: var(--yellow); }
.footer-email { color: var(--gray-300); font-size: .9375rem; }
.footer-email:hover { color: var(--white); }
.footer-areas, .footer-hours { color: var(--gray-400); font-size: .9rem; }

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding: 1.5rem 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: .875rem; color: var(--gray-500); margin: 0; }
.footer-copy a { color: var(--gray-400); }
.footer-copy a:hover { color: var(--white); }
.footer-tagline { font-size: .8125rem; color: var(--gray-600); margin: 0; }

/* ─── Utility ────────────────────────────────────────────────────────────────── */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* WordPress alignment */
.alignleft  { float: left;  margin: 0 1.5rem 1.5rem 0; }
.alignright { float: right; margin: 0 0 1.5rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1.5rem; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .footer-brand { grid-column: 1 / -1; }
  .section-content, .section-content-reverse { gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-inner, .safe-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }

  /* Header */
  .header-nav { display: none; }
  .mobile-toggle { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; max-height: none; }
  .hero-inner { max-width: 100%; }
  .hero-title  { font-size: clamp(1.875rem, 7vw, 2.75rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust-row { flex-direction: column; gap: .65rem; }
  .hero-nav-prev { left: 10px; }
  .hero-nav-next { right: 10px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Section content */
  .section-content, .section-content-reverse { grid-template-columns: 1fr; gap: 2rem; }
  .section-image img { height: 260px; }

  /* Stats */
  .stats-section { padding: 2rem 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* Rug types */
  .rug-types-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process teaser */
  .process-mini-grid { justify-content: flex-start; }
  .process-mini-step { min-width: 78px; }

  /* Process steps page */
  .process-step { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .step-marker { justify-content: flex-start; }

  /* Pet types */
  .pet-types-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-logo-img { width: 140px; height: 140px; }
  .footer-phone { font-size: 1.5rem; }

  /* Page hero */
  .page-hero { padding-top: calc(72px + 2.5rem); padding-bottom: 3rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .hero-badge { font-size: .8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.75rem; }
  .features-grid { gap: 1rem; }
  .rug-types-grid { grid-template-columns: 1fr 1fr; }
  .service-areas { grid-template-columns: 1fr 1fr; }
}

/* ─── Section Image Fallback (before real images arrive) ─────────────────────── */
.section-image img {
  background-color: var(--gray-200);
}

/* ─── Contact Page ───────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 4rem; align-items: flex-start;
}

.contact-form-col { /* left column — form */ }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.75rem; box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.contact-form-title { font-size: 1.625rem; margin-bottom: .5rem; }
.contact-form-intro { color: var(--gray-600); font-size: .9375rem; margin-bottom: 2rem; }

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .9rem; font-weight: 600; color: var(--gray-700); }
.form-group label span { color: #e03; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-size: .9375rem; font-family: inherit; color: var(--gray-800);
  background: var(--white); transition: border-color var(--transition-fast);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,144,255,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%236b7280'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-privacy { font-size: .8rem; color: var(--gray-500); text-align: center; margin-top: .75rem; }

/* Placeholder notice */
.cfp-notice {
  display: flex; gap: .75rem; align-items: flex-start;
  background: rgba(30,144,255,.06); border: 1px solid rgba(30,144,255,.18);
  border-left: 4px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem; margin-bottom: 1.75rem;
}
.cfp-notice svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.cfp-notice p { color: var(--gray-700); font-size: .9rem; line-height: 1.65; margin: 0; }

/* Contact details column */
.contact-details-col { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-detail-card {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 2rem; color: var(--white);
}
.contact-detail-card-title { font-size: 1.25rem; color: var(--white); margin-bottom: 1.5rem; }

.contact-detail-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding-bottom: 1.25rem; margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-detail-item:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }
.cdi-icon { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.cdi-label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.cdi-value { display: block; font-size: 1rem; font-weight: 600; color: var(--white); }
.cdi-value:hover { color: var(--yellow); }
.cdi-phone { font-size: 1.5rem; font-weight: 700; }

.contact-pickup-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(30,144,255,.07); border: 1px solid rgba(30,144,255,.18);
  border-left: 4px solid var(--blue); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.25rem 1.5rem;
}
.pickup-card-icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.contact-pickup-card h4 { font-size: 1rem; color: var(--gray-900); margin-bottom: .4rem; }
.contact-pickup-card p  { color: var(--gray-600); font-size: .9rem; line-height: 1.6; margin: 0; }

.contact-areas-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.contact-areas-card h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--gray-900); }
.contact-areas-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 8px; margin-bottom: .75rem;
}
.contact-areas-list li {
  font-size: .875rem; color: var(--gray-600); padding: 2px 0;
  border-left: 2px solid var(--blue); padding-left: 6px;
}
.contact-areas-note { font-size: .8125rem; color: var(--gray-500); margin: 0; }

.contact-wp-content { font-size: 1rem; line-height: 1.75; }

/* Contact page responsive */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .contact-form-wrap { padding: 1.5rem; }
  .contact-areas-list { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
