@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f4efe7;
  --surface: #fffaf3;
  --surface-strong: #efe5d5;
  --card: rgba(255, 250, 243, 0.82);
  --card-strong: #ffffff;
  --text: #192126;
  --text-soft: #52606c;
  --text-inverse: #f5f7fa;
  --line: rgba(25, 33, 38, 0.12);
  --line-strong: rgba(25, 33, 38, 0.24);
  --brand: #1f5d99;
  --brand-strong: #144a7b;
  --accent: #d97f33;
  --accent-soft: #f2ddc7;
  --shadow-soft: 0 18px 50px rgba(28, 37, 42, 0.08);
  --shadow-card: 0 14px 34px rgba(23, 31, 36, 0.1);
  --shadow-strong: 0 24px 60px rgba(22, 28, 33, 0.16);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;
  --container: min(1240px, calc(100vw - 40px));
  --section-space: clamp(72px, 9vw, 120px);
  --hero-space: clamp(88px, 11vw, 140px);
  --eyebrow-space: 0.18em;
  --header-height: 88px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 127, 51, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f3eb 0%, #f4efe7 46%, #efe7da 100%);
  line-height: 1.6;
}

body.nav-open,
body.intro-active {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  transition: background-color var(--transition), box-shadow var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(249, 244, 236, 0.74);
  backdrop-filter: blur(16px);
  border-color: rgba(25, 33, 38, 0.08);
  box-shadow: 0 14px 34px rgba(16, 22, 26, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  width: 110px;
  height: auto;
}

.brand-text {
  display: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.88;
}

.brand-text span {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.96rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-weight: 800;
  color: var(--brand-strong);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(25, 33, 38, 0.12);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 500ms ease;
}

.button:hover::before {
  transform: translateX(130%);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--brand) 0%, #2f78c0 100%);
  box-shadow: 0 18px 32px rgba(31, 93, 153, 0.25);
}

.button-primary:hover {
  box-shadow: 0 22px 38px rgba(31, 93, 153, 0.3);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(25, 33, 38, 0.12);
}

.button-ghost {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 93, 153, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: var(--eyebrow-space);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--brand-strong);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.hero {
  padding: var(--hero-space) 0 calc(var(--section-space) * 0.75);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

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

.hero h1,
.page-hero h1 {
  margin: 16px 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero p,
.page-hero p,
.section-intro p,
.cta-banner p {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: var(--text-soft);
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(25, 33, 38, 0.08);
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-visual,
.page-hero-visual,
.split-media,
.trust-photo,
.map-card,
.guide-media,
.process-visual-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.hero-visual {
  background: linear-gradient(180deg, rgba(20, 74, 123, 0.08), rgba(20, 74, 123, 0.2));
}

.hero-visual img,
.page-hero-visual img,
.split-media img,
.trust-photo img,
.guide-media img,
.process-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.hero-visual img {
  aspect-ratio: 1.15 / 1;
}

.hero-visual:hover img,
.page-hero-visual:hover img,
.split-media:hover img,
.trust-photo:hover img,
.guide-media:hover img,
.process-visual-card:hover img {
  transform: scale(1.04);
}

.hero-card {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(260px, calc(100% - 40px));
  padding: 20px;
  border-radius: 24px;
  background: rgba(21, 28, 33, 0.76);
  backdrop-filter: blur(10px);
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card strong,
.stat-card strong,
.step-number,
.contact-detail strong {
  font-family: "Barlow Condensed", sans-serif;
}

.hero-card p {
  color: rgba(245, 247, 250, 0.82);
  margin-top: 8px;
  font-size: 0.95rem;
}

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

.section-tint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.18)),
    rgba(255, 248, 240, 0.58);
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(12, 27, 40, 0.92), rgba(22, 36, 45, 0.92)),
    url("assets/background/palm-desert-street.png") center/cover;
  color: var(--text-inverse);
}

.section-dark p,
.section-dark .section-intro p,
.section-dark .card p,
.section-dark .faq-item p {
  color: rgba(245, 247, 250, 0.82);
}

.section-header,
.section-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.section-header h2,
.section-intro h2,
.cta-banner h2,
.map-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.3rem, 4.3vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.symptom-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.symptom-card,
.card,
.trust-card,
.service-card,
.step-card,
.guide-card,
.contact-detail,
.faq-item,
.service-highlight {
  background: var(--card);
  border: 1px solid rgba(25, 33, 38, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.symptom-card:hover,
.card:hover,
.trust-card:hover,
.service-card:hover,
.step-card:hover,
.guide-card:hover,
.contact-detail:hover,
.faq-item:hover,
.service-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(25, 33, 38, 0.15);
}

.symptom-card {
  padding: 22px 20px;
}

.symptom-card strong,
.card h3,
.service-card h3,
.step-card h3,
.guide-card h3,
.contact-detail h3,
.faq-item h3,
.service-highlight h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.card,
.service-card,
.guide-card,
.faq-item,
.contact-detail,
.service-highlight {
  padding: 28px;
}

.card p,
.service-card p,
.guide-card p,
.faq-item p,
.contact-detail p,
.service-highlight p {
  margin: 0;
  color: var(--text-soft);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card ul,
.guide-card ul,
.contact-panel ul,
.footer-contact-list,
.process-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.service-card li,
.guide-card li,
.contact-panel li,
.footer-contact-list li,
.process-list li {
  margin-bottom: 8px;
}

.service-card .button-ghost {
  margin-top: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.split-media {
  background: #ece8e0;
}

.split-media.portrait-safe img,
.process-visual-card img {
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(243, 238, 229, 0.8));
}

.split-copy h2,
.trust-copy h2,
.map-copy h2,
.contact-panel h2 {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.split-copy p,
.trust-copy p,
.map-copy p,
.contact-panel p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4.8vw, 56px);
  align-items: stretch;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 24px;
}

.trust-card strong,
.stat-card strong {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-preview,
.steps-grid,
.guides-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.process-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  padding: 24px;
}

.step-number {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--brand-strong);
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
  align-items: stretch;
}

.map-card iframe {
  width: 100%;
  min-height: 100%;
  border: 0;
  aspect-ratio: 16 / 11;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.stat-card {
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(25, 33, 38, 0.08);
}

.stat-card p {
  margin: 6px 0 0;
}

.cta-banner {
  padding: 38px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(130deg, rgba(24, 72, 114, 0.94), rgba(27, 49, 67, 0.94)),
    url("assets/background/tucson-cactus-garden-home.png") center/cover;
  color: var(--text-inverse);
  box-shadow: var(--shadow-strong);
}

.cta-banner p {
  color: rgba(245, 247, 250, 0.84);
  margin-top: 14px;
}

.page-hero {
  padding: calc(var(--hero-space) * 0.76) 0 calc(var(--section-space) * 0.52);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.page-hero-visual img {
  aspect-ratio: 1.12 / 0.88;
}

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

.process-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.process-visual-card img {
  aspect-ratio: 1 / 1;
}

.guides-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
}

.guide-media img {
  aspect-ratio: 1.1 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(246, 240, 230, 0.8));
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-panel,
.contact-form-preview {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 247, 0.82);
  border: 1px solid rgba(25, 33, 38, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-form-preview form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 700;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(25, 33, 38, 0.12);
  background: #ffffff;
  color: var(--text);
}

.form-note {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-area-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(31, 93, 153, 0.08);
  color: var(--brand-strong);
  font-weight: 700;
}

.site-footer {
  padding: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(25, 33, 38, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 49, 81, 0.98) 0%, rgba(13, 40, 69, 1) 100%);
  color: var(--text-inverse);
  overflow-x: clip;
}

.footer-shell {
  padding: clamp(32px, 5vw, 48px) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.footer-column {
  min-width: 0;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-mark img {
  width: 108px;
  flex-shrink: 0;
}

.footer-wordmark {
  display: grid;
  gap: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  line-height: 0.9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand-line,
.footer-note,
.footer-list,
.footer-contact-list {
  margin: 0;
  color: rgba(245, 247, 250, 0.82);
}

.footer-brand-line,
.footer-note,
.footer-list li,
.footer-contact-list li,
.footer-bottom-copy {
  line-height: 1.75;
}

.footer-note {
  max-width: 34ch;
  font-size: 0.95rem;
}

.footer-heading {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-inverse);
}

.footer-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-list li,
.footer-contact-list li {
  margin: 0 0 10px;
  overflow-wrap: anywhere;
}

.footer-list li:last-child,
.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list strong {
  color: var(--text-inverse);
  font-weight: 700;
}

.footer-contact-list a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 0.18em;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #ffd9b7;
  text-decoration-color: currentColor;
}

.footer-bottom {
  margin-top: clamp(28px, 4vw, 40px);
  padding: 18px 0 22px;
  border-top: 1px solid rgba(245, 247, 250, 0.14);
}

.footer-bottom-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px 28px;
}

.footer-bottom-copy,
.footer-bottom-note {
  margin: 0;
  color: rgba(245, 247, 250, 0.78);
  font-size: 0.94rem;
}

.footer-bottom-copy {
  white-space: nowrap;
}

.footer-bottom-note {
  max-width: 72ch;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  box-shadow: 0 18px 36px rgba(31, 93, 153, 0.32);
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(217, 127, 51, 0.22), transparent 28%),
    linear-gradient(180deg, #f7f1e8 0%, #f2eadf 100%);
  opacity: 0;
  pointer-events: none;
}

.intro-screen.is-visible {
  display: flex;
  pointer-events: auto;
}

.intro-screen.is-active {
  opacity: 1;
  transition: opacity 420ms ease;
}

.intro-mark {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  transform: scale(0.96);
  opacity: 0;
}

.intro-screen.is-active .intro-mark {
  opacity: 1;
  transform: scale(1);
  transition: transform 1.3s ease, opacity 1.3s ease;
}

.intro-mark img {
  width: clamp(120px, 18vw, 180px);
}

.intro-mark span {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.08em;
}

.reveal {
  opacity: 1;
  transform: none;
}

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

body.js-ready .reveal.reveal-left {
  transform: translateX(-28px);
}

body.js-ready .reveal.reveal-right {
  transform: translateX(28px);
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.js-ready .hero-copy .reveal:nth-child(2) { transition-delay: 90ms; }
body.js-ready .hero-copy .reveal:nth-child(3) { transition-delay: 160ms; }
body.js-ready .hero-copy .reveal:nth-child(4) { transition-delay: 230ms; }
body.js-ready .hero-copy .reveal:nth-child(5) { transition-delay: 300ms; }

.stagger-grid > * {
  transition-delay: 0ms;
}

body.js-ready .stagger-grid > *:nth-child(2) { transition-delay: 70ms; }
body.js-ready .stagger-grid > *:nth-child(3) { transition-delay: 140ms; }
body.js-ready .stagger-grid > *:nth-child(4) { transition-delay: 210ms; }
body.js-ready .stagger-grid > *:nth-child(5) { transition-delay: 280ms; }
body.js-ready .stagger-grid > *:nth-child(6) { transition-delay: 350ms; }

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .trust-grid,
  .map-grid,
  .contact-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .process-preview,
  .grid-3,
  .steps-grid,
  .trust-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 860px) {
  :root {
    --container: min(100vw - 28px, 100%);
    --header-height: 78px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta .button,
  .desktop-only {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 12px);
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 26px;
    background: rgba(250, 245, 238, 0.96);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(25, 33, 38, 0.08);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 10px 4px;
  }

  .process-preview,
  .grid-3,
  .grid-2,
  .steps-grid,
  .guides-grid,
  .process-visual-grid,
  .trust-card-grid,
  .symptom-strip {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .mobile-only {
    display: inline-flex;
  }

  .page-hero,
  .hero {
    padding-top: 54px;
  }

  .section-kicker {
    flex-direction: column;
    align-items: start;
  }
}

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 44rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
  }

  .footer-bottom-copy {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-shell {
    padding-top: 28px;
  }

  .footer-brand-mark {
    gap: 12px;
  }

  .footer-brand-mark img {
    width: 92px;
  }
}

@media (max-width: 560px) {
  .button,
  .floating-call {
    width: 100%;
    justify-content: center;
  }

  .floating-call {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .cta-actions,
  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .contact-panel,
  .contact-form-preview,
  .cta-banner,
  .service-card,
  .guide-card,
  .card,
  .faq-item,
  .step-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
