/* ============================================================
   SOAR — Global Stylesheet — Redtail Minimalist
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@1,700&display=swap');

/* ── Custom Properties ── */
:root {
  /* Palette — Dark Edition */
  --canvas:           #111418;
  --canvas-alt:       #1A1F26;
  --canvas-surface:   #222A33;
  --obsidian:         #0D1015;
  --slate:            #1A1F26;
  --rust:             #D96B27;
  --rust-hover:       #C05A1A;
  --rust-glow:        rgba(217, 107, 39, 0.15);
  --rust-glow-border: rgba(217, 107, 39, 0.3);
  --rust-pale:        rgba(217, 107, 39, 0.08);
  --text:             #F0F2F5;
  --text-muted:       rgba(240, 242, 245, 0.55);
  --text-light:       #F0F2F5;
  --text-muted-light: rgba(240, 242, 245, 0.55);
  --border:           rgba(255, 255, 255, 0.07);
  --border-dark:      rgba(255, 255, 255, 0.07);
  --border-accent:    rgba(217, 107, 39, 0.3);

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Playfair Display', serif;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 72px;
  --radius:     6px;
  --radius-lg:  14px;
  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
p  { font-size: 1rem; color: var(--text-muted); }

/* ── Layout Helpers ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.section { padding: 5rem 0; background: var(--canvas); }
.section--alt { background: var(--canvas-alt); }
.section--light { background: var(--canvas-alt); }

/* ── Dark Card System ── */
.dark-card {
  background: var(--canvas-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.dark-card:hover {
  border-color: var(--rust-glow-border);
  box-shadow: 0 0 0 1px rgba(217, 107, 39, 0.35), 0 0 24px rgba(217, 107, 39, 0.22);
}

/* Icon chip — rust-tinted square */
.icon-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--rust-pale);
  color: var(--rust);
  flex-shrink: 0;
}
.icon-chip svg { width: 20px; height: 20px; }

/* Rust placeholder box (replaces emoji in store cards) */
.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
  background: var(--rust-pale);
  border-radius: 8px 8px 0 0;
  color: var(--rust);
  font-size: 2.5rem;
}

/* focus-visible for interactive cards */
a.dark-card:focus-visible,
.dark-card a:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

/* ── Text Utilities ── */
.text-rust   { color: var(--rust); }
.text-muted  { color: var(--text-muted); }
.text-light  { color: var(--text-light); }
/* Legacy alias */
.text-gold   { color: var(--rust); }

/* Serif italic accent — mixed headline typography */
.headline-serif {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rust);
  font-weight: 700;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease,
              color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}
.btn-primary:hover {
  background: var(--rust-hover);
  border-color: var(--rust-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(217, 107, 39, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--rust);
  color: var(--rust);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--rust);
  border: 1px solid rgba(217, 107, 39, 0.45);
}
.btn-ghost:hover {
  border-color: var(--rust);
  background: rgba(217, 107, 39, 0.06);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--text-light);
  color: var(--obsidian);
  border-color: var(--text-light);
}
.btn-light:hover {
  background: var(--canvas-alt);
  border-color: var(--canvas-alt);
  transform: translateY(-2px);
}
.btn-light-outline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(247, 248, 250, 0.35);
}
.btn-light-outline:hover {
  border-color: var(--text-light);
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
/* Legacy aliases */
.btn-dark {
  background: var(--obsidian);
  color: var(--text-light);
  border-color: var(--obsidian);
}
.btn-dark:hover {
  background: var(--slate);
  border-color: var(--slate);
  transform: translateY(-2px);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(17, 20, 24, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: border-color 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: rgba(217, 107, 39, 0.22);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}
.nav__logo span { color: var(--text-light); }
.nav__logo img { height: 32px; width: auto; }

.nav__links {
  display: none;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) { .nav__links { display: flex; } }

.nav__links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted-light);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--rust); }
.nav__links a:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }

.nav__cta { display: none; }
@media (min-width: 1024px) { .nav__cta { display: inline-flex; } }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
@media (min-width: 1024px) { .nav__hamburger { display: none; } }
.nav__hamburger:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-muted-light);
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--text-light); }
.nav__mobile a:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

/* ── Hero Section — "The Perch" ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--canvas);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Grain texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 6rem;
  position: relative;
  z-index: 1;
}

/* Left column */
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rust);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}

.hero__subline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.hero__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Right column */
.hero__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__hawk-glow {
  position: absolute;
  width: 621px;
  height: 621px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 210, 130, 0.18) 0%, transparent 50%),
    radial-gradient(circle, rgba(217, 107, 39, 0.48) 0%, rgba(185, 65, 18, 0.22) 45%, transparent 72%);
  pointer-events: none;
  filter: blur(22px);
}

.hero__hawk {
  width: 100%;
  max-width: 552px;
  height: auto;
  position: relative;
  z-index: 1;
  user-select: none;
  display: block;
  margin: 0 auto;
}

/* Mobile — stack columns */
@media (max-width: 767px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: calc(var(--nav-height) + 3rem);
    padding-bottom: 4rem;
  }
  .hero__right {
    order: -1;
  }
  .hero__hawk {
    max-width: 260px;
    margin: 0 auto;
  }
  .hero__hawk-glow {
    width: 345px;
    height: 345px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .hero__hawk { max-width: 360px; }
}

/* ── Pain Points — "The High-Angle View" ── */
.pain-section {
  /* inherits background: var(--canvas) from .section */
}

.pain-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pain-card__icon {
  /* icon-chip handles sizing and color */
}
.pain-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin: 0;
}
.pain-card p {
  margin: 0;
  line-height: 1.7;
}

/* ── Process — "The Stoop" ── */
.process-section { background: var(--canvas-alt); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

/* Decorative connecting line between steps */
.process-steps::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(33.33% + 1.5rem);
  right: calc(33.33% + 1.5rem);
  border-top: 1px dashed rgba(217, 107, 39, 0.28);
  pointer-events: none;
}

.process-step {
  padding: 2.5rem 2rem;
  position: relative;
}

/* Large decorative step number */
.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--rust);
  opacity: 0.14;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-step__phase {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.process-step p { margin: 0; line-height: 1.7; }

/* Vertical separator between steps on desktop */
.process-step + .process-step {
  border-left: 1px solid var(--border);
}

@media (max-width: 767px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::after { display: none; }
  .process-step + .process-step {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

/* ── Capabilities — "The Talon" ── */
.capabilities-section { background: var(--canvas); }

.capability-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.capability-card__icon {
  /* icon-chip handles sizing */
}
.capability-card__body { flex: 1; }
.capability-card__body h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.capability-card__body p { margin: 0; line-height: 1.7; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rust);
  margin-bottom: 0.85rem;
}
.section-header h2 { margin-bottom: 0.9rem; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ── Grid Utilities ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: linear-gradient(180deg, var(--slate) 0%, var(--obsidian) 100%);
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rust);
  opacity: 0.45;
}
.page-hero h1 { color: var(--text-light); }
.page-hero p { color: var(--text-muted-light); max-width: 560px; margin: 1rem auto 0; }

/* ── Final CTA — "The Landing" ── */
.cta-final {
  position: relative;
  background: var(--canvas-alt);
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

/* Hawk spread watermark */
.cta-final__backdrop {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.cta-final__backdrop img {
  width: min(900px, 120%);
  height: auto;
  opacity: 0.055;
  filter: brightness(2);
  user-select: none;
}

/* Rust glow behind text */
.cta-final::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(217, 107, 39, 0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.cta-final .container {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-final p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Legacy — kept for inner pages that still use .cta-banner */
.cta-banner {
  background: var(--obsidian);
  padding: 5rem 0;
  text-align: center;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rust);
  opacity: 0.45;
}
.cta-banner h2 { color: var(--text-light); margin-bottom: 0.75rem; }
.cta-banner p  { color: var(--text-muted-light); margin-bottom: 2rem; }

/* ── Cards (generic) ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--rust);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(200, 88, 30, 0.07);
}

/* ── Product Card ── */
.product-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.product-card .product-placeholder {
  border-radius: 8px 8px 0 0;
}
.product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.product-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}
.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.product-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

/* ── Service Icon Card ── */
.service-card { text-align: center; }
.service-card__icon {
  width: 56px; height: 56px;
  background: var(--rust-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--rust);
}
.service-card h3 { margin-bottom: 0.5rem; }
.service-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 1rem;
}

/* ── Bento Services Grid — signature layout for the "What We Do" section ── */
.bento-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  grid-auto-flow: dense;
  gap: 1.5rem;
}
.bento-services .service-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  text-align: left;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--canvas-surface) 0%, var(--canvas-alt) 100%);
}
.bento-services .service-card--featured .service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 0 1.5rem;
  border-radius: 16px;
}
.bento-services .service-card--featured h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.bento-services .service-card--wide { grid-column: span 2; grid-row: span 1; }
.bento-services .service-card--small { grid-column: span 1; grid-row: span 1; }
.service-card__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-card__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
}
@media (max-width: 1023px) {
  .bento-services { grid-template-columns: repeat(2, 1fr); }
  .bento-services .service-card--featured { grid-column: span 2; grid-row: span 1; }
  .bento-services .service-card--wide { grid-column: span 2; }
  .bento-services .service-card--small { grid-column: span 1; }
}
@media (max-width: 639px) {
  .bento-services { grid-template-columns: 1fr; }
  .bento-services .service-card--featured,
  .bento-services .service-card--wide,
  .bento-services .service-card--small { grid-column: span 1; grid-row: auto; }
}

/* ── Testimonial ── */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

/* Large decorative opening quote mark */
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--rust);
  opacity: 0.4;
  display: block;
  margin-bottom: -0.5rem;
}

.testimonial__quote {
  font-style: italic;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--rust);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Testimonials Bento — one featured quote, two stacked ── */
.testimonials-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.testimonials-bento__stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonials-bento__stack .testimonial { flex: 1; }
.testimonial--featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial--featured::before { font-size: 5rem; }
.testimonial--featured .testimonial__quote {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .testimonials-bento { grid-template-columns: 1fr; }
}

/* ── Blog Card ── */
.blog-card { overflow: hidden; }
.blog-card__body { display: flex; flex-direction: column; gap: 0.75rem; }
.blog-card__meta {
  font-size: 0.78rem;
  color: var(--rust);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.4;
}
.blog-card__excerpt {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Footer ── */
.footer {
  background: var(--obsidian);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 767px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand p {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}
.footer__col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--rust); }
.footer__col a:focus-visible { outline: 2px solid var(--rust); outline-offset: 2px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Store Sub-nav ── */
.store-subnav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.store-subnav a {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
  background: transparent;
}
.store-subnav a:hover,
.store-subnav a.active {
  border-color: var(--rust);
  color: var(--rust);
  background: var(--rust-pale);
}

/* ── Form ── */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: #1A1F26;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(200, 88, 30, 0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── Prose (blog articles) ── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.75rem; }
.prose p  { margin-bottom: 1.25rem; font-size: 1.05rem; line-height: 1.8; }
.prose ul { margin: 0 0 1.25rem 1.5rem; list-style: disc; }
.prose ul li { color: var(--text-muted); margin-bottom: 0.5rem; font-size: 1.05rem; }
.prose strong { color: var(--text); font-weight: 600; }

/* ── Scroll Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Stagger entrance timing for card grids — 60ms rhythm per item */
:is(.grid-2, .grid-3, .grid-4, .bento-services, .testimonials-bento, .testimonials-bento__stack) > .reveal:nth-child(1) { transition-delay: 0ms; }
:is(.grid-2, .grid-3, .grid-4, .bento-services, .testimonials-bento, .testimonials-bento__stack) > .reveal:nth-child(2) { transition-delay: 60ms; }
:is(.grid-2, .grid-3, .grid-4, .bento-services, .testimonials-bento, .testimonials-bento__stack) > .reveal:nth-child(3) { transition-delay: 120ms; }
:is(.grid-2, .grid-3, .grid-4, .bento-services, .testimonials-bento, .testimonials-bento__stack) > .reveal:nth-child(4) { transition-delay: 180ms; }

/* ── Utility ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--canvas-alt);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-strip__grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.stat-item__sup {
  font-size: 0.46em;
  color: var(--rust);
  font-weight: 800;
  margin-top: 0.2em;
  margin-left: 0.06em;
}
.stat-item__label {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.65rem;
  font-weight: 500;
}

/* ── CTA Rust variant ── */
.cta-rust {
  background: linear-gradient(148deg, #D96B27 0%, #A03D10 100%);
}
.cta-rust::before {
  top: 0; left: 0; right: 0; bottom: 0;
  height: 100%;
  background: radial-gradient(ellipse at 50% -10%, rgba(255, 220, 150, 0.25) 0%, transparent 60%);
  opacity: 1;
}
.cta-rust h2 { color: #fff; }
.cta-rust p { color: rgba(255, 255, 255, 0.82); }
.cta-rust .headline-serif { color: rgba(255, 240, 205, 0.95); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
