/* ─────────────────────────────────────────────
   ShopOS AI — main.css
   Design system: Cinematic Dark, Barbershop Floor
   Fonts: Playfair Display (display) + Oswald (body/UI)
   ───────────────────────────────────────────── */

/* ─── DESIGN TOKENS ─── */
:root {
  --bg-primary:    #0D0B09;
  --bg-section:    #141210;
  --bg-surface:    #1E1A16;
  --text-primary:  #F2EDE6;
  --text-secondary:#9E9187;
  --accent:        #C8872A;
  --accent-hover:  #B5771F;
  --accent-loss:   #8B4A3C;
  --border:        #2C2620;
  --text-inverse:  #0D0B09;
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── TYPOGRAPHY UTILITIES ─── */
.section-label {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 24px;
  display: block;
}

.section-headline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.body-copy {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-primary);
}

.body-copy p {
  margin-bottom: 20px;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

/* ─── CTA BUTTON ─── */
.btn-cta {
  display: inline-block;
  background-color: var(--accent);
  color: var(--text-inverse);
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 0;
  border: none;
  box-shadow: none;
  white-space: nowrap;
  transition: background-color 200ms ease, color 200ms ease;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  background-color: var(--accent-hover);
  color: var(--text-inverse);
  outline: none;
}

.btn-cta--tier {
  font-size: 13px;
  padding: 14px 24px;
  white-space: nowrap;
}

/* ─── NAVIGATION ─── */
.site-nav {
  position: static;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0 8vw;
}

.nav-wordmark {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

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

.nav-links a {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links .nav-cta {
  color: var(--accent);
  font-weight: 500;
}

.nav-links .nav-cta:hover {
  color: var(--accent-hover);
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--text-primary);
  transition: background-color 200ms ease;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: var(--bg-surface);
  border-left: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  z-index: 200;
  padding: 32px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 280ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu ul {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu ul li:first-child {
  border-top: 1px solid var(--border);
}

.mobile-menu ul a {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  padding: 16px 0;
  transition: color 200ms ease;
  text-decoration: none;
}

.mobile-menu ul a:hover {
  color: var(--text-primary);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 200ms ease;
  border-radius: 0;
}

.mobile-menu-close:hover {
  color: var(--text-primary);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?w=1600&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 11, 9, 0.88) 0%,
    rgba(13, 11, 9, 0.60) 55%,
    rgba(13, 11, 9, 0.20) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-headline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 28px;
  margin-top: 0;
  max-width: 680px;
}

.hero-subheadline {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-content .btn-cta {
  margin-bottom: 20px;
}

.hero-secondary-link {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 200ms ease;
  margin-top: 4px;
}

.hero-secondary-link:hover {
  color: var(--text-primary);
}

/* Hero background stat (scroll-animated) */
.hero-stat {
  position: absolute;
  right: 8vw;
  bottom: 10vh;
  z-index: 2;
  text-align: right;
  opacity: 0.12;
  transform: translateX(10px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.hero-stat.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-stat-number {
  display: block;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 120px;
  line-height: 1;
  color: var(--accent-loss);
}

.hero-stat-caption {
  display: block;
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  max-width: 220px;
  text-align: right;
  line-height: 1.5;
}

/* ─── FEATURE SECTIONS (shared) ─── */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.feature-image-col {
  position: relative;
  overflow: hidden;
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
  min-height: 480px;
}

.feature-copy-col {
  padding: 80px 64px 80px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg-section);
}

/* Walk-in: image left, copy right */
.feature-walkin .feature-copy-col {
  padding: 80px 8vw 80px 64px;
  background-color: var(--bg-section);
}

/* Commission: copy left, image right */
.feature-reverse {
  background-color: var(--bg-primary);
}

.feature-reverse .feature-copy-col {
  padding: 80px 64px 80px 8vw;
  background-color: var(--bg-primary);
  order: 1;
}

.feature-reverse .feature-image-col {
  order: 2;
}

/* Analytics: image left, copy right — alternates back */
.feature-analytics .feature-copy-col {
  padding: 80px 8vw 80px 64px;
  background-color: var(--bg-section);
}

.feature-analytics {
  background-color: var(--bg-section);
}

/* ─── LOSS STAT (terracotta — walk-in + commission sections only) ─── */
.loss-stat {
  margin-bottom: 32px;
}

.loss-stat-number {
  display: block;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  color: var(--accent-loss);
  margin-bottom: 10px;
}

.stat-caption {
  display: block;
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ─── UI CALLOUT (shared) ─── */
.ui-callout {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  padding: 20px;
  margin-top: 40px;
}

.ui-callout-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.ui-callout-label {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.ui-callout-time {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text-secondary);
}

.ui-callout-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ─── WAIT DISPLAY (walk-in callout) ─── */
.wait-display {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.wait-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  color: var(--text-primary);
}

.wait-unit {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.wait-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 6px;
}

.wait-chairs,
.wait-queue {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-secondary);
}

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

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

.queue-name {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
}

.queue-status {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 12px;
}

.queue-status--active {
  color: var(--accent);
}

.queue-status--waiting {
  color: var(--text-secondary);
}

/* ─── BARBER ROWS (commission callout) ─── */
.barber-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.barber-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.barber-name {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
}

.barber-services {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text-secondary);
}

.barber-total {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

.barber-floor-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  margin-top: 4px;
}

.barber-floor-label {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.barber-floor-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
}

/* ─── PRICING SECTION ─── */
.pricing-section {
  background-color: var(--bg-primary);
  padding: 120px 0;
}

.pricing-inner {
  padding: 0 8vw;
}

.pricing-label {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-headline {
  text-align: center;
  font-size: 44px;
  margin-bottom: 80px;
}

/* Recovery grid */
.recovery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.recovery-col--leak {
  border-right: 1px solid var(--border);
  padding-right: 80px;
}

.recovery-row {
  padding-bottom: 32px;
}

.recovery-row-label {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.5;
}

.recovery-row-source {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 12px;
  line-height: 1.5;
}

.recovery-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  color: var(--text-primary);
}

.recovery-per-year {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.recovery-divider {
  height: 1px;
  background-color: var(--border);
  margin: 24px 0;
}

.recovery-total-row {
  padding-top: 8px;
}

.recovery-total-label {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.recovery-total-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  color: var(--text-primary);
}

/* Right column — cost */
.recovery-col--cost {
  display: flex;
  flex-direction: column;
}

.recovery-product-name {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.recovery-product-desc {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.recovery-cost-number {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}

.recovery-monthly-note {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.exclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exclusion-list li {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ─── PRICING TIERS ─── */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 64px;
}

.tier-card {
  background-color: var(--bg-surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  box-shadow: none;
}

.tier-card--featured {
  background-color: var(--bg-section);
}

.tier-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.tier-badge {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.tier-name {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.tier-desc {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
}

.tier-price {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 40px;
  color: var(--text-primary);
  line-height: 1;
}

.tier-per-month {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 16px;
  color: var(--text-secondary);
  margin-left: 2px;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tier-features li {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}

.tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--border);
}

.tier-card .btn-cta--tier {
  margin-top: auto;
  text-align: center;
  display: block;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Bottom CTA block in pricing */
.pricing-cta-block {
  display: flex;
  justify-content: center;
  padding-top: 16px;
}

/* ─── CTA BAND ─── */
.cta-band {
  background-color: var(--bg-section);
  padding: 100px 8vw;
}

.cta-band-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cta-band-headline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  color: var(--text-primary);
  max-width: 640px;
  margin-bottom: 16px;
}

.cta-band-support {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ─── LEAD FORM ─── */
.lead-form-wrapper {
  width: 100%;
  max-width: 640px;
  margin-top: 40px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  width: 100%;
}

.form-field--submit {
  align-items: center;
}

.form-label {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-input,
.form-textarea {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  color: var(--text-primary);
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 15px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 200ms ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
}

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

.form-submit {
  font-size: 15px;
  padding: 16px 48px;
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Lead success state */
.lead-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 12px;
}

.lead-success-headline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--text-primary);
}

.lead-success-body {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-secondary);
}

/* ─── REVEAL ON SCROLL ─── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-stat {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── FOOTER ─── */
.site-footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 48px 8vw;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-wordmark {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}

.footer-nav a {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.footer-nav a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

.footer-tagline-row {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border);
}

.footer-tagline {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--text-secondary);
  line-height: 1.3;
}

.footer-legal {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-legal-text {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 800px;
}

.footer-copyright {
  font-family: 'Oswald', 'Georgia', serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.6;
}

.footer-copyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 200ms ease;
}

.footer-copyright a:hover {
  color: var(--text-primary);
  opacity: 1;
}

/* ─── RESPONSIVE: 900px ─── */
@media (max-width: 900px) {
  .hero-headline {
    font-size: 48px;
  }

  .section-headline {
    font-size: 36px;
  }

  .pricing-headline {
    font-size: 36px;
  }

  .cta-band-headline {
    font-size: 36px;
  }

  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-img {
    min-height: 320px;
    max-height: 420px;
  }

  .feature-reverse .feature-copy-col {
    order: 1;
  }

  .feature-reverse .feature-image-col {
    order: 2;
  }

  .feature-copy-col,
  .feature-walkin .feature-copy-col,
  .feature-analytics .feature-copy-col {
    padding: 64px 8vw;
  }

  .feature-reverse .feature-copy-col {
    padding: 64px 8vw;
  }

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

  .recovery-col--leak {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 48px;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-stat {
    right: 5vw;
    bottom: 6vh;
  }

  .hero-stat-number {
    font-size: 80px;
  }

  .loss-stat-number {
    font-size: 56px;
  }

  .recovery-number {
    font-size: 36px;
  }

  .recovery-cost-number {
    font-size: 56px;
  }

  .recovery-total-number {
    font-size: 28px;
  }

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

/* ─── RESPONSIVE: 640px ─── */
@media (max-width: 640px) {
  .hero-headline {
    font-size: 40px;
  }

  .hero-subheadline {
    font-size: 15px;
  }

  .hero-stat {
    position: static;
    transform: none;
    opacity: 1;
    display: block;
    margin-top: 32px;
    text-align: left;
  }

  .hero-stat-number {
    font-size: 64px;
  }

  .hero-content {
    padding: 80px 6vw 60px;
  }

  .hero {
    align-items: flex-start;
  }

  .hero-overlay {
    background: rgba(13, 11, 9, 0.78);
  }

  .section-headline {
    font-size: 30px;
  }

  .loss-stat-number {
    font-size: 48px;
  }

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-inner {
    padding: 0 6vw;
  }

  .pricing-headline {
    font-size: 28px;
    margin-bottom: 48px;
  }

  .cta-band {
    padding: 72px 6vw;
  }

  .cta-band-headline {
    font-size: 30px;
  }

  .site-footer {
    padding: 40px 6vw;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-tagline {
    font-size: 20px;
  }

  .tier-card {
    padding: 32px 20px;
  }

  .tier-card .btn-cta--tier {
    font-size: 11px;
    padding: 14px 12px;
  }

  .recovery-number {
    font-size: 30px;
  }

  .recovery-cost-number {
    font-size: 48px;
  }

  .nav-inner {
    padding: 0 6vw;
  }

  .btn-cta {
    font-size: 13px;
    padding: 14px 22px;
  }

  .pricing-cta-block .btn-cta {
    width: 100%;
    text-align: center;
    font-size: 12px;
    padding: 16px 12px;
  }
}
