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

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --primary:        #6c181c;
  --primary-dark:   #4e1115;
  --primary-light:  #8c2228;
  --accent:         #c42c34;
  --accent-muted:   #d9777c;
  --ink:            #1a1513;
  --ink-mid:        #3b2f2b;
  --ink-muted:      #7a6b64;
  --cream:          #f6f1ea;
  --cream-dark:     #efe8dc;
  --sand:           #e8ddcd;
  --sand-dark:      #d4c5b0;
  --warm-brown:     #8a6a55;
  --warm-brown-lt:  #b8997f;
  --white:          #ffffff;
  --border:         rgba(108,24,28,0.15);
  --border-light:   rgba(108,24,28,0.08);
  --surface-1:      #ffffff;
  --surface-2:      #f6f1ea;
  --surface-3:      #efe8dc;
  --neutral-muted:  #7a6b64;
  --shadow-sm:      0 1px 2px rgba(0,0,0,0.04), 0 4px 12px -4px rgba(0,0,0,0.08);
  --shadow-card:    0 1px 2px rgba(0,0,0,0.04), 0 18px 50px -20px rgba(0,0,0,0.12);
  --shadow-deep:    0 2px 4px rgba(0,0,0,0.06), 0 32px 60px -20px rgba(0,0,0,0.18);
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
  --section-pad:    160px;
  --section-pad-sm: 96px;
  --container:      1100px;
  --container-wide: 1400px;
  --radius:         8px;
  --radius-lg:      14px;
  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
  filter: saturate(1.05) brightness(1.02);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms;
}

a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

ul { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── Layout Containers ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.wide-container {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

.bleed {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 8vw, 110px); }
h2 { font-size: clamp(36px, 4.5vw, 64px); }
h3 { font-size: clamp(24px, 2.5vw, 36px); }
h4 { font-size: clamp(20px, 1.8vw, 26px); }

p { color: var(--ink-mid); }

.section-eyebrow,
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  background: var(--primary);
  margin-top: 20px;
}

.section-title.centered::after {
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 80px);
}

.section-lead,
.section-sub,
.section-body {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 64ch;
}

.section-header .section-lead,
.section-header .section-sub {
  margin-inline: auto;
  margin-top: 18px;
}

.accent { color: var(--primary); }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  line-height: 1;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 24px -8px rgba(108,24,28,0.5);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 8px 32px -8px rgba(108,24,28,0.6);
}

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

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

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

.btn-white:hover {
  background: var(--cream);
  color: var(--primary-dark);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.btn-phone {
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Utility Bar ───────────────────────────────────────── */
.util-bar,
#utilBar {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 9px 0;
  position: sticky;
  top: 0;
  z-index: 900;
}

.util-bar-left,
.util-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.util-bar .container,
.util-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.util-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}

.util-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

.util-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.18);
}

/* ─── Navigation ────────────────────────────────────────── */
.nav,
#nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 40px;
  z-index: 800;
  transition: box-shadow 200ms;
}

.nav.scrolled,
#nav.scrolled {
  box-shadow: 0 2px 24px -4px rgba(26,21,19,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

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

.nav-logo:hover { text-decoration: none; }

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  position: relative;
  transition: color 150ms;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 220ms var(--ease-out);
}

.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 250ms var(--ease-out), opacity 200ms;
  transform-origin: center;
}

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

/* ─── Hero ──────────────────────────────────────────────── */
.hero,
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.9) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,21,19,0.72) 0%,
    rgba(108,24,28,0.38) 55%,
    rgba(26,21,19,0.80) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 12vh, 160px) 0 clamp(64px, 8vh, 120px);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
  margin-bottom: 44px;
  font-weight: 300;
}

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

/* ─── Split Hero ────────────────────────────────────────── */
.split-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80vh;
  background: var(--cream);
  overflow: hidden;
}

.split-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
}

.split-hero-text {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-hero-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.split-hero-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

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

.split-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.split-hero-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  z-index: 2;
}

/* ─── Trust Strip ───────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 32px 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 28px;
  text-align: center;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
}

.trust-detail {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-family: var(--font-display);
  font-size: 20px;
}

/* ─── Marquee ───────────────────────────────────────────── */
.marquee,
.marquee-band {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}

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

.marquee:hover .marquee-track,
.marquee-band:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(12px, 1.4vw, 17px);
  color: var(--ink-mid);
  display: flex;
  align-items: center;
  gap: 20px;
}

.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ─── Stats ─────────────────────────────────────────────── */
.stats,
#stats {
  background: var(--cream);
  padding: clamp(80px, 10vw, 160px) 0;
}

.stats-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 48px 32px;
  text-align: center;
}

.stat,
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-top: 10px;
}

/* ─── Services ──────────────────────────────────────────── */
.services,
#services {
  background: var(--cream);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.service-card-no-img {
  background: linear-gradient(135deg, var(--sand) 0%, var(--cream-dark) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc,
.service-card .section-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 20px;
  text-decoration: none;
  transition: gap 200ms var(--ease-out);
}

.service-card-link:hover {
  text-decoration: none;
  gap: 12px;
}

/* Services Feature Layout */
.services-feature {
  background: var(--white);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.services-feature-header {
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 80px);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.services-footer {
  text-align: center;
  margin-top: 64px;
}

/* Service Row */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 480px;
  overflow: hidden;
}

.service-row-photo {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.service-row-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.service-row-text {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 24px;
  text-decoration: none;
  transition: gap 200ms var(--ease-out);
}

.service-link:hover { gap: 14px; text-decoration: none; }

/* Service Solo */
.service-solo {
  background: var(--cream);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.service-solo-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.service-solo-stat {
  display: flex;
  gap: 48px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.solo-stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}

.solo-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-top: 6px;
}

/* ─── About ─────────────────────────────────────────────── */
.about,
#about {
  background: var(--white);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.about-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.about-hero {
  background: var(--ink);
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 72px);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}

.about-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.about-hero-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 52ch;
  line-height: 1.7;
}

.about-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.about-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  z-index: 2;
}

.about-story {
  background: var(--cream);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.about-story-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.about-text {
  max-width: 68ch;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}

.about-pillar {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow-sm);
}

.story-body {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.8;
  color: var(--ink-mid);
}

.story-pull {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
  border-left: 2px solid var(--primary);
  padding-left: 24px;
  margin: 36px 0;
}

/* ─── Gallery ───────────────────────────────────────────── */
.gallery,
#gallery {
  background: var(--ink);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 72px);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.gallery-header .section-title,
.gallery-header .section-eyebrow {
  color: var(--cream);
}

.gallery-header .section-title::after {
  background: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out), filter 400ms;
  filter: saturate(0.9) brightness(0.92);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(0.98);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(26,21,19,0.7) 100%);
  opacity: 0;
  transition: opacity 300ms;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-callout {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms, transform 300ms var(--ease-out);
}

.gallery-item:hover .gallery-callout {
  opacity: 1;
  transform: translateY(0);
}

.gallery-stat {
  display: flex;
  flex-direction: column;
}

.gallery-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.gallery-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* ─── Manifesto ─────────────────────────────────────────── */
.manifesto {
  background: var(--cream);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.manifesto-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin-top: 64px;
}

.manifesto-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}

.manifesto-item:last-child { border-bottom: none; }

.manifesto-item-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--sand-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

/* ─── Type Band ─────────────────────────────────────────── */
.type-band {
  background: var(--primary);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.type-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,44,52,0.35) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 50%, rgba(78,17,21,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.type-band-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.type-band-quote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-inline: auto;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.type-band-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(255,255,255,0.68);
  max-width: 48ch;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.type-band-cta {
  position: relative;
  z-index: 1;
}

/* ─── CTA Band ──────────────────────────────────────────── */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.3);
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(108,24,28,0.88) 0%, rgba(26,21,19,0.94) 100%);
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 48px);
  max-width: var(--container);
  margin-inline: auto;
}

.cta-band-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-band-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.68);
  max-width: 50ch;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: 44px;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.cta-band-hours {
  margin-top: 36px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

/* ─── Guarantees Strip ──────────────────────────────────── */
.guarantees-strip {
  background: var(--white);
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 1px solid var(--border-light);
}

.guarantee-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.guarantee-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12);
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.guarantee-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ─── Credentials ───────────────────────────────────────── */
.credentials,
#credentials {
  background: var(--ink);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.credentials-header {
  text-align: center;
  margin-bottom: clamp(48px, 5vw, 72px);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.credentials-header .section-title,
.credentials-header .section-eyebrow {
  color: var(--cream);
}

.credentials-header .section-title::after {
  background: var(--accent);
  margin-inline: auto;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.cred-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: background 200ms, border-color 200ms;
}

.cred-badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

/* ─── Contact ───────────────────────────────────────────── */
.contact,
.contact-section,
#contact {
  background: var(--cream);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.contact-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease-out;
}

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

.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(108,24,28,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.contact-card-sub {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 4px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-row:last-child { border-bottom: none; }

.contact-row-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-row-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}

.contact-row-value {
  font-weight: 600;
  color: var(--ink);
}

.contact-cta {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-sub {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 50ch;
}

/* ─── Service Area ──────────────────────────────────────── */
.service-area,
#service-areas {
  background: var(--white);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.area-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

.area-left {
  max-width: 56ch;
}

.area-right {
  flex: 1;
}

.area-intro {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 36px;
}

.area-pledge {
  padding: 24px;
  background: rgba(108,24,28,0.05);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 32px;
}

.pledge-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}

.pledge-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}

.pledge-check {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pledge-text {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
}

.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.county-item {
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  text-align: center;
  transition: background 200ms, color 200ms, border-color 200ms;
}

.county-item:hover {
  background: rgba(108,24,28,0.06);
  color: var(--primary);
  border-color: var(--primary);
}

/* ─── Emergency ─────────────────────────────────────────── */
.emergency-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 64px);
  color: var(--white);
  text-align: center;
}

.emergency-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.emergency-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.emergency-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: 32px;
}

.emergency-card-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

.emergency-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FAQ ───────────────────────────────────────────────── */
.faq,
#faq {
  background: var(--cream);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.faq-list {
  max-width: 780px;
  margin-inline: auto;
}

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

.faq-question {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink);
  user-select: none;
  transition: color 150ms;
  gap: 16px;
}

.faq-question:hover { color: var(--primary); }

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 250ms var(--ease-out);
}

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

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms var(--ease-out), padding 250ms;
}

.faq-answer p,
.faq-answer div {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
}

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

details.faq {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink);
}

details.faq > summary::-webkit-details-marker { display: none; }

details.faq > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 24px;
  color: var(--primary);
  transition: transform 200ms;
  flex-shrink: 0;
}

details.faq[open] > summary::after {
  transform: rotate(45deg);
}

details.faq p {
  margin-top: 12px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ─── Signs Section ─────────────────────────────────────── */
.signs-section {
  background: var(--white);
  padding: clamp(var(--section-pad-sm), 10vw, var(--section-pad)) 0;
}

.signs-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.signs-left { display: flex; flex-direction: column; gap: 16px; }

.signs-intro {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.75;
  color: var(--ink-mid);
}

.signs-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}

.signs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.signs-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}

.signs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}

.signs-text {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}

.signs-closing {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  margin-top: 24px;
}

.signs-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}

.signs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signs-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
}

.signs-callout {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  z-index: 2;
  max-width: 220px;
}

.signs-cta {
  margin-top: 32px;
}

/* ─── Promo Band ────────────────────────────────────────── */
.promo-band {
  background: var(--sand);
  padding: 40px 0;
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
}

.promo-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

.promo-text {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 54ch;
}

/* ─── Top Bar / Hours ───────────────────────────────────── */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 901;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-badge {
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.82;
}

.top-bar-phone {
  font-weight: 700;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.top-bar-sep {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.25);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.hours-row:last-child { border-bottom: none; }

.hours-day {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.hours-time {
  font-size: 14px;
  color: var(--ink-mid);
}

.hours-available {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.fh-day { font-weight: 600; color: var(--ink); }
.fh-time { color: var(--ink-mid); }

/* ─── Footer ────────────────────────────────────────────── */
.footer,
#footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-top: clamp(64px, 8vw, 120px);
}

.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

.footer-brand { max-width: 340px; }

.footer-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-founding {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-col-title,
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.footer-contact-line {
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-specialties {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-service-areas {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-cta {
  margin-top: 28px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-bottom-right {
  display: flex;
  gap: 20px;
}

.footer-bottom-right a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.footer-bottom-right a:hover {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

/* ─── Process Steps ─────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.process-step {
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ─── Review Cards ──────────────────────────────────────── */
.review-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-stars svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

.review-quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 20px;
  font-style: italic;
}

.review-attribution {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.75;
  letter-spacing: 0.04em;
}

/* ─── Animation Utilities ───────────────────────────────── */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}

.fade-up    { transform: translateY(32px); }
.fade-left  { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }
.scale-in   { transform: scale(0.95); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  will-change: opacity, transform;
}

.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

/* ─── Reverse Layout ────────────────────────────────────── */
.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

/* ─── Mobile Call Pill ──────────────────────────────────── */
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45), 0 4px 16px rgba(108,24,28,0.4);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.mobile-call-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -10px rgba(0,0,0,0.5), 0 6px 20px rgba(108,24,28,0.5);
  color: var(--white);
  text-decoration: none;
}

/* ─── Responsive: 640px ─────────────────────────────────── */
@media (max-width: 480px) {
  .hero-trust-chips { gap: 6px; }
  .trust-chip { font-size: 10px; padding: 4px 10px; }
}

@media (max-width: 640px) {
  .hero,
  #hero {
    min-height: 100svh;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 640px) {
  .promo-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

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

  .hero-trust-chips { flex-wrap: nowrap; }

  .contact-cta { flex-direction: row; }
}

/* ─── Responsive: 900px ─────────────────────────────────── */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .nav-toggle { display: none; }

  .mobile-call-pill { display: none; }

  .split-hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .split-hero-photo {
    min-height: 600px;
  }

  .about-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .about-story-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

  .area-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

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

  .signs-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

  .guarantees-strip .container > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ─── Responsive: 1200px ────────────────────────────────── */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .manifesto-grid {
    max-width: 900px;
    margin-inline: auto;
  }

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

/* ─── Mobile Nav Open ───────────────────────────────────── */
@media (max-width: 899px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 799;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    transform: translateX(100%);
    transition: transform 350ms var(--ease-out);
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .nav-toggle { z-index: 801; position: relative; }
}

/* ─── Misc Utilities ────────────────────────────────────── */
.active {
  color: var(--primary);
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
