/* =========================================================
   CACTUS AC & HEATING LLC — New River / Phoenix Valley HVAC
   Cinematic art direction: desert horizon at golden hour
   Palette: deep night-navy, ember copper, sand, warm cream
   ========================================================= */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@500,700,900,400&f[]=cabinet-grotesk@700,800,900&display=swap');

/* ---------- TOKENS ---------- */
:root, [data-theme="light"] {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

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

  /* Light mode — warm desert cream */
  --color-bg:               #F5EFE6;
  --color-surface:          #FAF6EE;
  --color-surface-2:        #FFFBF3;
  --color-surface-offset:   #EDE4D3;
  --color-surface-offset-2: #E2D6BD;
  --color-divider:          #D9CCB3;
  --color-border:           #C9B894;

  --color-text:        #1B1A24;
  --color-text-muted:  #5E574A;
  --color-text-faint:  #9C907A;
  --color-text-inverse:#FAF6EE;

  /* Ember copper — sunset on metal */
  --color-primary:        #B94A1F;
  --color-primary-hover:  #9A3814;
  --color-primary-active: #7A2A0E;
  --color-primary-highlight: #F2D9C9;

  /* Deep night navy — twilight ridge */
  --color-night:        #1B2235;
  --color-night-2:      #283149;

  /* Sun amber */
  --color-amber:        #E8A23A;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm: 0 1px 2px rgba(40,30,15,0.08);
  --shadow-md: 0 8px 24px rgba(40,30,15,0.10);
  --shadow-lg: 0 24px 60px rgba(40,30,15,0.16);
  --shadow-xl: 0 40px 100px rgba(40,30,15,0.22);

  --content-narrow: 720px;
  --content-default: 1080px;
  --content-wide: 1320px;

  --font-body: 'Satoshi', -apple-system, system-ui, sans-serif;
  --font-display: 'Cabinet Grotesk', 'Satoshi', system-ui, sans-serif;
}

[data-theme="dark"] {
  --color-bg:               #110E14;
  --color-surface:          #18141B;
  --color-surface-2:        #1F1A22;
  --color-surface-offset:   #221C24;
  --color-surface-offset-2: #2A222D;
  --color-divider:          #2D2630;
  --color-border:           #3A3038;

  --color-text:        #ECE3D2;
  --color-text-muted:  #948877;
  --color-text-faint:  #5A5247;
  --color-text-inverse:#18141B;

  --color-primary:        #E66A36;
  --color-primary-hover:  #F08550;
  --color-primary-active: #FBA170;
  --color-primary-highlight: #3D2418;

  --color-night:        #0A0D17;
  --color-night-2:      #161B2C;
  --color-amber:        #F0B45D;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.6);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.7);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-16);
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

p, li { text-wrap: pretty; max-width: 65ch; }

::selection { background: var(--color-primary); color: #fff; }

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a, button {
  transition:
    color var(--transition-interactive),
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

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

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

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 4vw, var(--space-10));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
  transition: background 400ms var(--ease-out), backdrop-filter 400ms, padding 300ms, border-color 300ms;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: color-mix(in oklab, var(--color-bg) 86%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  padding: var(--space-3) 0;
  border-bottom-color: color-mix(in oklab, var(--color-border) 60%, transparent);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
}

.brand__mark { width: 36px; height: 36px; }

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

.nav__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.nav__links a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  opacity: 0.85;
}

.nav__links a:hover { opacity: 1; color: var(--color-primary); }

.header.on-dark:not(.scrolled) .brand,
.header.on-dark:not(.scrolled) .nav__links a,
.header.on-dark:not(.scrolled) .theme-toggle { color: #FAF6EE; }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .brand em { display: none; }
  .nav { gap: var(--space-3); }
  .header__inner { gap: var(--space-3); }
  .nav .btn--primary { padding: 0.55rem 1rem !important; font-size: var(--text-xs); }
}

.theme-toggle {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text);
  border: 1px solid transparent;
}
.theme-toggle:hover { background: color-mix(in oklab, var(--color-primary) 12%, transparent); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 24px color-mix(in oklab, var(--color-primary) 35%, transparent);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px color-mix(in oklab, var(--color-primary) 45%, transparent);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  border-color: var(--color-text);
  background: color-mix(in oklab, var(--color-text) 6%, transparent);
}

.btn--light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(10px);
}
.btn--light:hover { background: rgba(255,255,255,0.22); }

.btn svg { width: 16px; height: 16px; }

/* ---------- HERO (cinematic photo + motion blend) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0A0D17;
  color: #FAF6EE;
  isolation: isolate;
}

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  /* Subtle parallax + ken-burns slow drift */
  animation: kenburns 24s var(--ease-in-out) infinite alternate;
  will-change: transform, filter;
  filter: saturate(1.05) contrast(1.05);
}

@keyframes kenburns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.14) translate(-1.5%, -1.5%); }
}

/* Heat shimmer overlay — animated SVG turbulence */
.hero__shimmer {
  position: absolute; inset: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(232,162,58,0.30), transparent 55%),
    linear-gradient(180deg,
      rgba(10,13,23,0.20) 0%,
      rgba(10,13,23,0.10) 35%,
      rgba(10,13,23,0.65) 75%,
      rgba(10,13,23,0.95) 100%);
}

/* Drifting "dust" light streaks */
.hero__dust {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 60%, rgba(255,210,140,0.10), transparent 40%),
    radial-gradient(circle at 75% 40%, rgba(255,180,100,0.08), transparent 40%);
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(-4%, 2%); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: clamp(var(--space-20), 14vh, var(--space-32)) clamp(var(--space-4), 4vw, var(--space-10)) clamp(var(--space-16), 10vh, var(--space-24));
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-content: end;
  min-height: 100svh;
}

.hero__eyebrow {
  color: var(--color-amber);
  opacity: 0;
  animation: fadeUp 800ms var(--ease-out) 200ms forwards;
}
.hero__eyebrow::before { background: var(--color-amber); }

.hero__title {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 15ch;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  filter: blur(8px);
  animation: revealWord 1100ms var(--ease-out) forwards;
}

.hero__title .word.accent { color: var(--color-amber); font-style: italic; font-weight: 800; padding-inline-end: 0.18em; }

@keyframes revealWord {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  max-width: 52ch;
  font-size: var(--text-lg);
  color: rgba(250,246,238,0.82);
  opacity: 0;
  animation: fadeUp 800ms var(--ease-out) 1400ms forwards;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  opacity: 0;
  animation: fadeUp 800ms var(--ease-out) 1700ms forwards;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(250,246,238,0.18);
  opacity: 0;
  animation: fadeUp 800ms var(--ease-out) 2000ms forwards;
}

.hero__meta-item { display: flex; flex-direction: column; gap: var(--space-1); }
.hero__meta-item dt { font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-amber); }
.hero__meta-item dd { font-size: var(--text-base); font-weight: 600; color: #FAF6EE; }

/* Scroll cue — right-aligned to avoid colliding with hero meta */
.hero__scroll-cue {
  position: absolute;
  bottom: var(--space-8);
  right: clamp(var(--space-4), 4vw, var(--space-10));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.7);
  opacity: 0;
  animation: fadeUp 800ms var(--ease-out) 2300ms forwards;
}
@media (max-width: 900px) {
  .hero__scroll-cue { display: none; }
}

.hero__scroll-cue::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(250,246,238,0.7), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---------- MARQUEE — between-section breath ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--color-night);
  color: var(--color-text-inverse);
  padding: var(--space-5) 0;
  border-block: 1px solid color-mix(in oklab, var(--color-night) 70%, var(--color-amber));
}

.marquee__track {
  display: flex;
  gap: var(--space-12);
  width: max-content;
  animation: scroll-x 38s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.marquee__item { display: inline-flex; align-items: center; gap: var(--space-12); white-space: nowrap; }
.marquee__item span { color: var(--color-amber); }

@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- SECTION SHELL ---------- */
section { position: relative; }

.section {
  padding-block: clamp(var(--space-20), 12vw, var(--space-32));
}

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 56rem;
  margin-bottom: clamp(var(--space-12), 6vw, var(--space-20));
}

.section__title {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.section__title em { color: var(--color-primary); font-style: italic; font-weight: 700; }

.section__lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
}

/* ---------- WHY-US (asymmetric editorial grid w/ image blend) ---------- */
.why {
  position: relative;
  background: var(--color-surface);
  overflow: hidden;
}

.why__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: center;
}

@media (max-width: 900px) {
  .why__inner { grid-template-columns: 1fr; }
}

.why__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.why__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(27,34,53,0.45) 100%);
  pointer-events: none;
}

.why__media-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  background: rgba(255,255,255,0.92);
  color: var(--color-text);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.why__media-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2BBF6A;
  box-shadow: 0 0 0 4px rgba(43,191,106,0.25);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 4px rgba(43,191,106,0.25); }
  50%     { box-shadow: 0 0 0 8px rgba(43,191,106,0.05); }
}

.why__list {
  list-style: none;
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.why__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
}

.why__check {
  width: 36px; height: 36px;
  border-radius: var(--radius-full);
  background: color-mix(in oklab, var(--color-primary) 14%, var(--color-surface));
  color: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why__check svg { width: 18px; height: 18px; stroke-width: 2.5; }

.why__item h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-1);
}
.why__item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* ---------- SERVICES — cinematic cards w/ image hover ---------- */
.services {
  background: var(--color-bg);
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-5);
}

.service {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  padding: var(--space-8);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-8);
  isolation: isolate;
  transition: transform 500ms var(--ease-out), box-shadow 500ms var(--ease-out), border-color 400ms;
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in oklab, var(--color-primary) 35%, var(--color-border));
}

.service--feature { grid-column: span 7; min-height: 460px; }
.service--small   { grid-column: span 5; }
.service--wide    { grid-column: span 12; min-height: 240px; flex-direction: row; align-items: center; gap: var(--space-12); padding: var(--space-10); }
.service--third   { grid-column: span 4; }

@media (max-width: 900px) {
  .service--feature, .service--small, .service--wide, .service--third { grid-column: span 12; }
  .service--wide { flex-direction: column; align-items: flex-start; gap: var(--space-6); padding: var(--space-8); min-height: auto; }
}

.service__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-sm);
  letter-spacing: 0.16em;
  color: var(--color-primary);
}

.service__title {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-3);
  line-height: 1.05;
}

.service__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: 48ch;
}

.service__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  align-self: flex-start;
}
.service__link svg { width: 14px; height: 14px; transition: transform var(--transition-interactive); }
.service__link:hover { color: var(--color-primary); }
.service__link:hover svg { transform: translateX(4px); }

/* Service with background image — feature card */
.service--feature {
  background: #1B2235;
  color: #FAF6EE;
  border-color: transparent;
}
.service--feature .service__num,
.service--feature .service__title { color: #FAF6EE; }
.service--feature .service__desc { color: rgba(250,246,238,0.8); }
.service--feature .service__link { color: #FAF6EE; }
.service--feature .service__link:hover { color: var(--color-amber); }

.service__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.service__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 800ms var(--ease-out), transform 1.2s var(--ease-out);
  filter: saturate(1.1);
}

.service--feature::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(27,34,53,0.4) 0%, rgba(27,34,53,0.85) 100%);
}

.service--feature:hover .service__bg img { opacity: 0.75; transform: scale(1.04); }

/* ---------- CTA STRIP (full-bleed with photo blend) ---------- */
.cta-strip {
  position: relative;
  min-height: 80svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #FAF6EE;
  overflow: hidden;
  isolation: isolate;
}

.cta-strip__bg {
  position: absolute; inset: 0; z-index: -2;
}
.cta-strip__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.cta-strip::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(10,13,23,0.5) 60%, rgba(10,13,23,0.92) 100%),
    linear-gradient(180deg, rgba(10,13,23,0.55), rgba(27,34,53,0.5));
}

.cta-strip__content {
  max-width: 56rem;
  padding: var(--space-16) clamp(var(--space-4), 4vw, var(--space-10));
  display: grid;
  gap: var(--space-6);
  justify-items: center;
}

.cta-strip h2 {
  font-size: var(--text-3xl);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.0;
  max-width: 18ch;
}

.cta-strip h2 em { color: var(--color-amber); font-style: italic; }

.cta-strip p {
  font-size: var(--text-lg);
  color: rgba(250,246,238,0.85);
  max-width: 52ch;
}

.cta-strip__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-4);
}

.cta-strip__hours {
  margin-top: var(--space-8);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: var(--text-sm);
  backdrop-filter: blur(10px);
}

.cta-strip__hours::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: #2BBF6A;
  box-shadow: 0 0 0 4px rgba(43,191,106,0.25);
  animation: pulseDot 2s ease-in-out infinite;
}

/* ---------- PROCESS — visual progression strip ---------- */
.process {
  background: var(--color-night);
  color: #FAF6EE;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(232,162,58,0.18), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(185,74,31,0.20), transparent 50%);
  pointer-events: none;
}

.process .section__title { color: #FAF6EE; }
.process .section__title em { color: var(--color-amber); }
.process .section__lede { color: rgba(250,246,238,0.7); }
.process .eyebrow { color: var(--color-amber); }
.process .eyebrow::before { background: var(--color-amber); }

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

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  position: relative;
  padding: var(--space-8) var(--space-6);
  border: 1px solid rgba(250,246,238,0.15);
  border-radius: var(--radius-lg);
  background: rgba(250,246,238,0.03);
  transition: border-color var(--transition-interactive), background var(--transition-interactive), transform var(--transition-interactive);
}

.step:hover {
  border-color: var(--color-amber);
  background: rgba(232,162,58,0.06);
  transform: translateY(-2px);
}

.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--text-3xl);
  color: var(--color-amber);
  line-height: 1;
  margin-bottom: var(--space-6);
  display: inline-block;
  letter-spacing: -0.04em;
}

.step h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}

.step p {
  font-size: var(--text-sm);
  color: rgba(250,246,238,0.7);
}

/* ---------- TESTIMONIAL strip ---------- */
.testimonial {
  background: var(--color-surface);
  border-block: 1px solid var(--color-divider);
}
.testimonial__inner {
  max-width: var(--content-default);
  text-align: center;
  display: grid;
  gap: var(--space-6);
  justify-items: center;
}
.testimonial blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 24ch;
  color: var(--color-text);
}
.testimonial blockquote::before { content: '"'; color: var(--color-primary); margin-right: 0.05em; }
.testimonial blockquote::after  { content: '"'; color: var(--color-primary); margin-left: 0.05em; }
.testimonial cite {
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.testimonial cite span { color: var(--color-primary); }

.stars { display: inline-flex; gap: 2px; color: var(--color-amber); }
.stars svg { width: 20px; height: 20px; }

/* ---------- CONTACT ---------- */
.contact {
  background: var(--color-bg);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(var(--space-10), 6vw, var(--space-20));
  align-items: start;
}

@media (max-width: 900px) {
  .contact__inner { grid-template-columns: 1fr; }
}

.contact__info { display: grid; gap: var(--space-8); }

.contact__channels { display: grid; gap: var(--space-5); margin-top: var(--space-4); }
.contact__channel {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color var(--transition-interactive), transform var(--transition-interactive), background var(--transition-interactive);
}
.contact__channel:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  background: var(--color-surface-2);
}
.contact__channel-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: color-mix(in oklab, var(--color-primary) 14%, var(--color-surface));
  color: var(--color-primary);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__channel-icon svg { width: 20px; height: 20px; }
.contact__channel-text dt { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 2px; }
.contact__channel-text dd { font-size: var(--text-base); font-weight: 700; letter-spacing: -0.01em; }

.form {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  display: grid;
  gap: var(--space-5);
}

.form h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.field { display: grid; gap: var(--space-2); }
.field label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.field input, .field select, .field textarea {
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  color: var(--color-text);
  font-size: var(--text-base);
  width: 100%;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--color-primary) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 120px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }

.form__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0A0D17;
  color: rgba(250,246,238,0.7);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(250,246,238,0.10);
}

@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: 1fr; }
}

.footer__brand h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  color: #FAF6EE;
  margin-bottom: var(--space-3);
}
.footer__brand p { font-size: var(--text-sm); max-width: 36ch; }

.footer__col h5 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-4);
}
.footer__col ul { list-style: none; display: grid; gap: var(--space-2); }
.footer__col a {
  color: rgba(250,246,238,0.7);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer__col a:hover { color: var(--color-amber); }

.footer__bottom {
  margin-top: var(--space-6);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: rgba(250,246,238,0.5);
}

/* ---------- SCROLL REVEAL (CLS-safe: opacity + clip-path) ---------- */
.reveal { opacity: 1; }

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: revealFade linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 30%;
  }
  .reveal--clip {
    opacity: 1;
    clip-path: inset(0 0 100% 0);
    animation: revealClip linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 90%;
  }
  .reveal--image img {
    transform: scale(1.18);
    filter: saturate(0.85);
    animation: revealImage linear both;
    animation-timeline: view();
    animation-range: cover 0% cover 60%;
  }
}

@keyframes revealFade { to { opacity: 1; } }
@keyframes revealClip { to { clip-path: inset(0 0 0 0); } }
@keyframes revealImage { to { transform: scale(1); filter: saturate(1.05); } }
