/* ========================================
   GRIMY GRILLS / Phoenix Grill Cleaning
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Outfit:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #FAF7F2;
  --cream-dark: #EFE9DF;
  --charcoal: #2B2926;
  --charcoal-light: #6B6560;
  --crimson: #DC2626;
  --crimson-dark: #B91C1C;
  --crimson-light: #FEE2E2;
  --sage: #3B7A57;
  --sage-light: #E8F3ED;
  --copper: #C4501B;
  --copper-light: #FDEEE6;
  --border: #E0D8CC;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(43, 41, 38, 0.06);
  --shadow-md: 0 4px 16px rgba(43, 41, 38, 0.08);
  --shadow-lg: 0 8px 32px rgba(43, 41, 38, 0.10);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-bar-height: 122px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   HEADER / NAV
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-bar-height);
  height: auto;
  padding: 10px 0;
}

.header .logo {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon {
  height: 102px;
  width: auto;
  max-width: none;
  display: block;
  flex-shrink: 0;
}

.tech-hdr-logo .logo-icon {
  height: 45px;
  max-width: none;
}

@media (max-width: 640px) {
  :root {
    --header-bar-height: 124px;
  }

  .header .logo .logo-icon {
    height: 72px;
  }

  .header .logo .logo-text {
    font-size: 0.95rem;
    letter-spacing: 0.03em;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.nav-phone-tagline {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--charcoal-light);
  line-height: 1.25;
  text-align: right;
  letter-spacing: 0.01em;
}

.mobile-nav-phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.nav-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--crimson);
  flex-shrink: 0;
}

.nav-contact-stack.nav-contact-mobile {
  display: none;
}

.nav-contact-stack {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--crimson);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.nav-contact-stack:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.28);
  color: var(--white);
}

.nav-contact-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-contact-phone {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-outline-crimson {
  background: transparent;
  color: var(--crimson);
  border: 1.5px solid var(--crimson);
}

.btn-outline-crimson:hover {
  background: var(--crimson);
  color: var(--white);
  transform: translateY(-1px);
}

/* CRM nav badge (shared across all pages) */
.crm-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.crm-badge {
  background: var(--crimson-light);
  color: var(--crimson);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero.hero-bg {
  background-image: url('/public/images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 16, 12, 0.82) 0%,
    rgba(20, 16, 12, 0.65) 55%,
    rgba(20, 16, 12, 0.50) 100%
  );
  pointer-events: none;
}

.hero.hero-bg .hero-content {
  position: relative;
  z-index: 1;
}

.hero.hero-bg h1 {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero.hero-bg .highlight {
  color: var(--crimson);
}

.hero.hero-bg p {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero.hero-bg .hero-stats {
  border-top-color: rgba(255, 255, 255, 0.2);
}

.hero.hero-bg .hero-stat .number {
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

.hero.hero-bg .hero-stat .label {
  color: rgba(255, 255, 255, 0.88);
}

.hero.hero-bg .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero.hero-bg .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson-light);
  color: var(--crimson);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--crimson);
}

.hero p {
  font-size: 1.2rem;
  color: var(--charcoal-light);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ctas.hero-ctas-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-phone {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.hero-phone:hover {
  opacity: 0.85;
}

.hero.hero-bg .hero-phone {
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero.hero-bg .hero-phone:hover {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(0,0,0,0.1);
}

.hero-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.hero-stat .number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  white-space: nowrap;
}

.hero-stat .label {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-top: 4px;
  white-space: nowrap;
}

.hero.hero-bg .hero-stat {
  border-right-color: rgba(255,255,255,0.2);
}

/* ========================================
   PROMO BANNER
   ======================================== */

.promo-banner {
  background-color: #D6E8F5;
  overflow: hidden;
}

.promo-banner-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 260px;
}

.promo-banner-content {
  flex: 0 0 55%;
  padding: 48px 40px 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.promo-banner-eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 3px solid var(--crimson);
  display: inline-block;
  padding-bottom: 2px;
  align-self: flex-start;
}

.promo-banner-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.promo-banner-deals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.promo-banner-deals li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--charcoal);
}

.promo-banner-deals li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-color: var(--charcoal);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

.promo-banner-cta {
  align-self: flex-start;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 28px;
}

.promo-banner-expiry {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--crimson);
  text-underline-offset: 3px;
}

.promo-banner-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.promo-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 700px) {
  .promo-banner-inner {
    flex-direction: column;
  }
  .promo-banner-content {
    flex: none;
    padding: 36px 24px;
  }
  .promo-banner-image {
    height: 200px;
  }
}

/* ========================================
   SECTIONS (shared)
   ======================================== */

section {
  padding: 80px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--crimson);
  margin-bottom: 16px;
}

.section-label .line {
  width: 24px;
  height: 2px;
  background: var(--crimson);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ========================================
   WHY CLEAN (health / sourced copy)
   ======================================== */

section.why-clean {
  padding: 40px 0 48px;
  scroll-margin-top: calc(var(--header-bar-height) + 10px);
}

.why-clean {
  /* Same warm neutrals as “Our Services” (copper whisper on cream)—no red/pink wash */
  background:
    radial-gradient(ellipse 95% 55% at 50% -15%, rgba(196, 80, 27, 0.045) 0%, transparent 52%),
    radial-gradient(ellipse 70% 40% at 100% 100%, rgba(59, 122, 87, 0.04) 0%, transparent 50%),
    var(--cream);
}

.why-clean-head {
  margin-bottom: 14px;
}

.why-clean-head .section-label {
  margin-bottom: 6px;
  font-size: 0.72rem;
  color: var(--copper);
}

.why-clean-head .section-label .line {
  background: var(--copper);
}

.why-clean-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.why-clean-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 900px;
  margin: 20px auto 28px;
  align-items: stretch;
}

.why-clean-shot {
  margin: 0;
  display: grid;
  grid-template: 1fr / 1fr;
  min-width: 0;
}

.why-clean-shot > * {
  grid-area: 1 / 1;
}

.why-clean-shot-frame {
  min-height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--charcoal);
  aspect-ratio: 4 / 3;
}

.why-clean-shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.why-clean-shot-label {
  align-self: end;
  justify-self: center;
  z-index: 1;
  margin-bottom: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.why-clean-shot--before .why-clean-shot-label {
  background: rgba(43, 41, 38, 0.88);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-clean-shot--after .why-clean-shot-label {
  background: rgba(59, 122, 87, 0.95);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 560px) {
  .why-clean-visual {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-top: 16px;
    margin-bottom: 22px;
  }
}

.why-clean-outline {
  list-style: none;
  counter-reset: why-clean;
  margin: 0 auto;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  max-width: 640px;
  align-content: start;
}

.why-clean-point {
  counter-increment: why-clean;
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 54px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.why-clean-point::before {
  content: counter(why-clean);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--charcoal);
  background: var(--cream-dark);
  border-radius: 8px;
  line-height: 1;
}

.why-clean-point--lead {
  border-color: rgba(59, 122, 87, 0.28);
  background:
    linear-gradient(155deg, rgba(232, 243, 237, 0.85) 0%, var(--white) 55%);
  box-shadow: var(--shadow-md);
}

.why-clean-point--lead::before {
  background: var(--sage-light);
  color: var(--sage);
}

.why-clean-point-title {
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--charcoal);
}

.why-clean-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-clean-bullets li {
  position: relative;
  padding-left: 0.95em;
  font-size: clamp(0.82rem, 1.5vw, 0.92rem);
  line-height: 1.35;
  color: var(--charcoal-light);
}

.why-clean-bullets li + li {
  margin-top: 4px;
}

.why-clean-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--charcoal);
  opacity: 0.22;
}

.why-clean-point--lead .why-clean-bullets li::before {
  background: var(--sage);
  opacity: 0.45;
}

.why-clean-source-line {
  margin-top: 10px;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--charcoal-light);
  max-width: 48em;
  margin-left: auto;
  margin-right: auto;
}

.why-clean-source-line a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.why-clean-source-line a:hover {
  color: var(--copper-dark);
}

/* Tablet: lead full width, two risks side-by-side */
@media (min-width: 640px) and (max-width: 899px) {
  .why-clean-outline {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 720px;
  }

  .why-clean-point--lead {
    grid-column: 1 / -1;
  }
}

/* Desktop: one row, three columns */
@media (min-width: 900px) {
  .why-clean-outline {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 1100px;
    align-items: stretch;
  }

  .why-clean-point--lead {
    grid-column: auto;
  }

  .why-clean-point {
    display: flex;
    flex-direction: column;
    padding: 14px 14px 16px 48px;
  }

  .why-clean-point::before {
    top: 16px;
    transform: none;
  }
}

@media (max-width: 639px) {
  section.why-clean {
    padding: 28px 0 36px;
  }

  .why-clean-point::before {
    top: 14px;
    transform: none;
  }
}

/* ========================================
   SERVICES
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-icon.crimson { background: var(--crimson-light); }
.service-icon.sage { background: var(--sage-light); }
.service-icon.cream { background: var(--cream-dark); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   OUR SERVICES / bento editorial layout
   ======================================== */

.our-services {
  position: relative;
  padding: 100px 0 108px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 55% at 100% -10%, rgba(196, 80, 27, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 70% 45% at -5% 110%, rgba(59, 122, 87, 0.06) 0%, transparent 52%),
    var(--white);
}

.our-services::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.our-services .container {
  position: relative;
  z-index: 1;
}

.our-services-intro {
  margin-bottom: 56px;
  max-width: 1080px;
}

.our-services-label {
  margin-bottom: 14px;
}

.our-services-headline {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 16ch;
}

.our-services-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  grid-template-rows: 1fr;
  gap: 22px 26px;
  align-items: stretch;
}

.our-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
}

.our-service-card--primary {
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(165deg, #35322e 0%, #1f1e1c 48%, #171615 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  color: var(--white);
  padding: 36px 32px 32px;
  box-shadow:
    0 40px 80px rgba(43, 41, 38, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.our-service-card--primary::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(196, 80, 27, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.our-services-sub-column {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.our-services-sub-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin: 0 0 2px;
}

.our-services-sub-note {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--charcoal-light);
  margin: 0 0 8px;
  max-width: 36ch;
}

.our-services-supplement-card {
  flex: 1;
  min-height: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.our-services-supplement-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224, 216, 204, 0.85);
}

.our-services-supplement-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.our-services-supplement-list > li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.our-services-supplement-list > li:first-child {
  padding-top: 0;
}

.our-services-supplement-list > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.our-services-supplement-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.our-services-supplement-icon--copper {
  background: rgba(196, 80, 27, 0.08);
  border: 1px solid rgba(196, 80, 27, 0.2);
  color: var(--copper);
}

.our-services-supplement-icon--sage {
  background: rgba(59, 122, 87, 0.1);
  border: 1px solid rgba(59, 122, 87, 0.22);
  color: var(--sage);
}

.our-services-supplement-text h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--charcoal);
  line-height: 1.2;
}

.our-services-supplement-text p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: var(--charcoal-light);
}

.our-service-card--primary:hover {
  transform: translateY(-5px);
  box-shadow:
    0 48px 96px rgba(43, 41, 38, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.our-service-index {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(43, 41, 38, 0.06);
  user-select: none;
  pointer-events: none;
}

.our-service-index--on-dark {
  color: rgba(255, 255, 255, 0.07);
}

.our-service-badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 8px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 6px 6px 6px 0;
}

.our-service-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-right: 56px;
}

.our-service-card--primary .our-service-top {
  margin-bottom: 18px;
}

.our-service-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--copper);
  background: rgba(196, 80, 27, 0.1);
  border: 1px solid rgba(196, 80, 27, 0.18);
  line-height: 0;
}

.our-service-card--primary .our-service-icon {
  background: rgba(196, 80, 27, 0.2);
  border-color: rgba(196, 80, 27, 0.35);
  color: #f4a574;
}

.our-service-top h3 {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
  line-height: 1.2;
}

.our-service-card--primary .our-service-top h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.55rem);
}

.our-service-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.our-service-content > p {
  font-size: 0.91rem;
  color: var(--charcoal-light);
  line-height: 1.72;
  margin-bottom: 18px;
}

.our-service-card--primary .our-service-content > p,
.our-service-card--primary .our-service-lede {
  color: rgba(255, 255, 255, 0.74);
}

.our-service-lede {
  font-size: 0.98rem !important;
  line-height: 1.78 !important;
}

.service-features {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.our-service-card--primary .service-features {
  margin-bottom: 0;
}

.service-features--rail li {
  font-size: 0.86rem;
  color: var(--charcoal-light);
  padding: 6px 0 6px 14px;
  border-left: 2px solid var(--cream-dark);
  position: relative;
}

.service-features--rail li::before {
  display: none;
}

.service-features--on-dark li {
  color: rgba(255, 255, 255, 0.68);
  border-left-color: rgba(196, 80, 27, 0.55);
}

@media (max-width: 960px) {
  .our-services-intro {
    margin-bottom: 44px;
  }

  .our-services-headline {
    max-width: none;
  }

  .our-services-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .our-service-card--primary,
  .our-services-sub-column {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ========================================
   NATURAL PROCESS (visual / editorial)
   ======================================== */

.natural-process {
  position: relative;
  padding: 100px 0 108px;
  overflow: hidden;
  background: var(--cream);
}

.natural-process-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 0% 30%, rgba(59, 122, 87, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 100% 70%, rgba(196, 80, 27, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.natural-process-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.natural-process-shell {
  position: relative;
  z-index: 1;
}

.natural-process-header {
  max-width: 640px;
  margin-bottom: 52px;
}

.natural-process-header .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.natural-process-lede {
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal-light);
}

.natural-process-lede em {
  font-style: normal;
  color: var(--sage);
  font-weight: 600;
}

.natural-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px 56px;
  align-items: center;
  margin-bottom: 56px;
}

.natural-process-collage {
  position: relative;
  min-height: 400px;
  max-width: 520px;
}

.natural-collage__frame {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow:
    0 28px 56px rgba(43, 41, 38, 0.18),
    0 0 0 1px rgba(43, 41, 38, 0.06);
}

.natural-collage__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.natural-collage__frame--main .natural-collage__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  aspect-ratio: 640 / 400;
  min-height: 0;
  background: var(--charcoal);
}

.natural-collage__frame--main .natural-collage__half {
  min-height: 0;
  overflow: hidden;
  display: flex;
}

.natural-collage__frame--main .natural-collage__half img {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  object-fit: cover;
  object-position: center;
}

.natural-collage__frame--main {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 22px 22px 22px 8px;
  transform: rotate(-2.75deg);
  border: 5px solid var(--white);
}

.natural-collage__ribbon {
  position: absolute;
  left: 6%;
  bottom: 14%;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0;
  padding: 10px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage) 0%, #2d5c40 100%);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(59, 122, 87, 0.35);
}

.natural-collage__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.natural-process-story p {
  color: var(--charcoal-light);
  font-size: 0.98rem;
  line-height: 1.82;
  margin-bottom: 16px;
}

.natural-faith-note {
  margin: 28px 0 0;
  padding: 0;
  border: none;
  background: transparent;
}

.natural-faith-note p {
  margin: 0;
  padding: 22px 26px;
  border-left: 4px solid var(--copper);
  background: var(--white);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-sm);
  font-style: italic;
  color: var(--charcoal);
  font-size: 0.96rem;
  line-height: 1.75;
}

.natural-process-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pillar--text {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
}

.pillar--text:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(43, 41, 38, 0.12);
  border-color: rgba(224, 216, 204, 0.5);
}

.pillar--text .pillar-body {
  position: relative;
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pillar--text .pillar-num {
  position: absolute;
  top: 16px;
  right: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(59, 122, 87, 0.2);
  pointer-events: none;
}

.pillar-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.25;
  color: var(--charcoal);
}

.pillar--text .pillar-title {
  padding-right: 2.75rem;
}

.pillar--text .pillar-body p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--charcoal-light);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .natural-process-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 960px) {
  .natural-process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .natural-process-collage {
    max-width: 440px;
    margin: 0 auto;
    min-height: 340px;
  }
}

/* ========================================
   WHY US
   ======================================== */

.why-us {
  background: var(--charcoal);
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.why-card .icon {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: var(--crimson);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-section .btn {
  position: relative;
}

.cta-section .btn-white {
  background: var(--white);
  color: var(--crimson);
}

.cta-section .btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.cta-section .btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.cta-section .btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   BOOKING FORM
   ======================================== */

.booking-section {
  background: var(--white);
  border-top: 1px solid var(--border);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.booking-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.booking-info > p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.booking-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.booking-detail .icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--crimson-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
}

.booking-detail h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.booking-detail p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
}

.booking-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* ========================================
   PRICING PAGE
   ======================================== */

.page-hero {
  padding: 64px 0 48px;
  text-align: center;
}

.page-hero h1,
.page-hero .page-hero-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--charcoal-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-embedded {
  padding: 0 0 8px;
}

.pricing-embedded .pricing-scale {
  margin-bottom: 24px;
}

.pricing-faq-section {
  padding: 0 0 72px;
}

/* ----- Animated pricing scale ($349–$549) ----- */
.pricing-scale {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  margin-bottom: 80px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.pricing-scale__ruler {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-scale__endpoints {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 8px;
  margin-bottom: 10px;
  padding: 0 2px;
}

.pricing-scale__endpoint {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  color: var(--charcoal);
  letter-spacing: -0.03em;
}

.pricing-scale__endpoint:first-child {
  text-align: left;
}

.pricing-scale__endpoint--mid {
  text-align: center;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  color: var(--copper);
}

.pricing-scale__endpoint:last-child {
  text-align: right;
}

.pricing-scale__track-wrap {
  position: relative;
  margin-bottom: 8px;
}

.pricing-scale__track {
  position: relative;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--border) 100%);
  box-shadow: inset 0 1px 3px rgba(43, 41, 38, 0.12);
  overflow: hidden;
}

.pricing-scale__fill {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: inherit;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(
    90deg,
    var(--sage) 0%,
    #4a8f68 22%,
    var(--copper) 78%,
    #a84315 100%
  );
  box-shadow:
    0 0 24px rgba(196, 80, 27, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 2.65s cubic-bezier(0.2, 0.85, 0.25, 1);
  will-change: transform;
}

.pricing-scale.fade-up.visible .pricing-scale__fill {
  transform: scaleX(1);
}

.pricing-scale__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  /* One pass, slower sweep, holds end state */
  animation: pricing-scale-shine 5.25s ease-in-out 0.35s 1 forwards;
  pointer-events: none;
}

.pricing-scale.fade-up:not(.visible) .pricing-scale__shine {
  animation: none;
}

@keyframes pricing-scale-shine {
  0%,
  100% {
    background-position: 130% 0;
  }
  50% {
    background-position: -30% 0;
  }
}

.pricing-scale__ticks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 6px;
  padding: 0;
  list-style: none;
}

.pricing-scale__tick {
  display: flex;
  justify-content: center;
}

.pricing-scale__tick::before {
  content: '';
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--charcoal);
  opacity: 0.2;
  transform: scaleY(0.3);
  transform-origin: top center;
  transition:
    opacity 0.85s ease,
    transform 0.95s cubic-bezier(0.34, 1.2, 0.64, 1),
    background 0.55s ease;
}

.pricing-scale__tick:first-child::before {
  margin-right: auto;
  margin-left: 8px;
}

.pricing-scale__tick:last-child::before {
  margin-left: auto;
  margin-right: 8px;
}

.pricing-scale.fade-up.visible .pricing-scale__tick:nth-child(1)::before {
  transition-delay: 0.95s;
}

.pricing-scale.fade-up.visible .pricing-scale__tick:nth-child(2)::before {
  transition-delay: 1.25s;
}

.pricing-scale.fade-up.visible .pricing-scale__tick:nth-child(3)::before {
  transition-delay: 1.55s;
}

.pricing-scale.fade-up.visible .pricing-scale__tick::before {
  opacity: 1;
  transform: scaleY(1);
  background: var(--copper);
}

.pricing-scale__segments {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.pricing-scale__segment {
  text-align: center;
}

.pricing-scale__segment-label {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.pricing-scale__segment-hint {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  line-height: 1.45;
}

/* ========================================
   FAQ
   ======================================== */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
}

.faq-question .faq-toggle {
  font-size: 1.4rem;
  color: var(--crimson);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--charcoal-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-story-text p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.about-image-placeholder .placeholder-text {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-card .icon {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: var(--copper);
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--charcoal-light);
  font-size: 0.93rem;
  line-height: 1.7;
}

.service-areas {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.area-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.93rem;
  font-weight: 500;
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--crimson-light);
  border-color: var(--crimson);
  color: var(--crimson);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-booking-lead {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 720px;
}

.footer-booking-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-booking-copy {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 520px;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-bottom: 28px;
}

/* Dark footer: default .btn-secondary is charcoal-on-transparent — invisible on charcoal bg */
.footer-booking-lead .btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.footer-booking-lead .btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-booking-lead > .btn {
  margin-bottom: 28px;
}

.footer-booking-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
}

.footer-booking-lead .booking-detail {
  margin-bottom: 0;
}

.footer-booking-lead .booking-detail h4 {
  color: var(--white);
}

.footer-booking-lead .booking-detail p {
  color: rgba(255, 255, 255, 0.55);
}

.footer-booking-phone {
  color: var(--copper);
  font-weight: 500;
}

.footer-booking-phone:hover {
  color: #e8a080;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  height: 48px;
  max-width: none;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Service cards: combine scroll reveal with hover (wins cascade over .fade-up alone) */
.our-service-card.fade-up {
  transition:
    opacity 0.6s ease,
    transform 0.45s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.pillar--text.fade-up {
  transition:
    opacity 0.6s ease,
    transform 0.35s cubic-bezier(0.34, 1.15, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a:not(.btn):not(.nav-contact-stack) {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
}

.mobile-nav a:not(.btn):not(.nav-contact-stack):hover {
  color: var(--crimson);
}

.mobile-nav .nav-contact-stack--menu {
  display: flex;
  padding: 14px 28px;
  min-width: min(100%, 300px);
}

.mobile-nav .nav-contact-stack--menu .nav-contact-cta {
  font-size: 0.85rem;
}

.mobile-nav .nav-contact-stack--menu .nav-contact-phone {
  font-size: 1.15rem;
}

.mobile-nav-phone-block a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--crimson);
}

.mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-bar-height: 118px;
  }

  .nav-links,
  .nav-right .nav-phone-wrap,
  .nav-contact-desktop {
    display: none;
  }

  .header .container {
    gap: 10px;
    padding: 14px 0;
    align-items: center;
  }

  .nav-right {
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
  }

  .nav-contact-stack.nav-contact-mobile {
    display: flex;
    padding: 9px 12px;
    border-radius: 10px;
  }

  .nav-contact-cta {
    font-size: 0.68rem;
  }

  .nav-contact-phone {
    font-size: 0.88rem;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    align-self: center;
  }

  .mobile-nav {
    display: flex;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-stats {
    gap: 0;
    flex-wrap: wrap;
  }

  .services-grid,
  .our-services-bento,
  .values-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .pricing-scale {
    padding: 28px 22px 26px;
  }

  .pricing-scale__endpoints {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 6px 20px;
    margin-bottom: 14px;
  }

  .pricing-scale__endpoint,
  .pricing-scale__endpoint--mid,
  .pricing-scale__endpoint:last-child {
    text-align: center;
  }

  .pricing-scale__segments {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pricing-scale__segment {
    text-align: left;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }

  .pricing-scale__segment:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .pricing-scale__ticks {
    gap: 0;
  }

  .natural-process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .natural-process-pillars {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  section {
    padding: 56px 0;
  }

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

  .booking-form {
    padding: 28px;
  }

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

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  :root {
    --header-bar-height: 112px;
  }

  .header .logo .logo-icon {
    height: 64px;
  }

  .header .logo .logo-text {
    font-size: 0.85rem;
  }

  .nav-contact-stack {
    padding: 8px 10px;
  }

  .nav-contact-cta {
    font-size: 0.62rem;
  }

  .nav-contact-phone {
    font-size: 0.8rem;
  }
}

/* ========================================
   SVG ICON ANIMATIONS
   ======================================== */

.our-service-icon svg,
.why-card .icon svg,
.value-card .icon svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.our-service-card:hover .our-service-icon svg {
  transform: scale(1.15) translateY(-2px);
}

.why-card:hover .icon svg {
  transform: scale(1.15);
  opacity: 1;
}

.value-card:hover .icon svg {
  transform: scale(1.15) translateY(-2px);
}

/* Flame flicker on grill cleaning card */
@keyframes flicker {
  0%, 100% { transform: scale(1) rotate(0deg); }
  33% { transform: scale(1.08) rotate(-2deg) translateY(-1px); }
  66% { transform: scale(0.96) rotate(2deg); }
}

.our-service-card:hover .our-service-icon svg:first-child {
  animation: none;
}

/* Sun slow spin */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.why-card:hover .icon svg {
  transition: transform 0.3s ease;
}

/* ========================================
   OUR SERVICE AREAS (Phoenix metro)
   ======================================== */

.service-map-section {
  background: var(--charcoal);
  padding: 72px 0;
}

.map-section-label {
  color: rgba(255, 255, 255, 0.55) !important;
}

.map-line {
  background: rgba(255, 255, 255, 0.25) !important;
}

.map-section-title {
  color: var(--white) !important;
}

.map-section-subtitle {
  color: rgba(255, 255, 255, 0.65) !important;
}

.service-areas-reachout {
  margin: 1.25rem auto 0;
  max-width: 32em;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

.service-areas-reachout a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-areas-reachout a:hover {
  color: var(--white);
}

/* ========================================
   PROMO / maintenance plan modal trigger
   ======================================== */

.promo-banner-deal-btn {
  font: inherit;
  color: inherit;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  flex: 1;
  line-height: inherit;
}

.promo-banner-deal-btn:hover,
.promo-banner-deal-btn:focus-visible {
  color: var(--copper);
  outline: none;
}

.promo-banner-deal-btn:focus-visible {
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--copper);
  border-radius: 4px;
}

/* ========================================
   SITE MODAL (homepage maintenance plan)
   ======================================== */

.site-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(43, 41, 38, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: siteModalFadeIn 0.2s ease;
}

.site-modal-overlay[hidden] {
  display: none;
}

@keyframes siteModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.site-modal {
  width: 100%;
  max-width: 520px;
  max-height: min(90vh, 640px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 24px 80px rgba(43, 41, 38, 0.18);
  border: 1px solid var(--border);
  animation: siteModalSlideUp 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes siteModalSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 0;
}

.site-modal-header h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0;
}

.site-modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--charcoal-light);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.site-modal-close:hover {
  background: var(--cream-dark);
  color: var(--charcoal);
}

.site-modal-body {
  padding: 16px 24px 8px;
}

.site-modal-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin: 0 0 16px;
}

.site-modal-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-modal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--charcoal-light);
}

.site-modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.site-modal-note {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--charcoal-light);
  margin: 0;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.site-modal-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 24px 24px;
}

.site-modal-footer .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.site-modal-call {
  text-decoration: none;
}

@media (min-width: 480px) {
  .site-modal-footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .site-modal-footer .site-modal-call {
    flex: 1 1 auto;
    min-width: 200px;
  }

  .site-modal-footer #dismissMaintenancePlanModal {
    flex: 0 0 auto;
    min-width: 120px;
  }
}

