/* ==========================================================================
   BurnsBuilt.co — Styles
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  /* Brand palette — exact hex, do not improvise */
  --color-denim: #1e3045;            /* primary brand — headers, footer, dark copy */
  --color-steel: #4a7c9b;             /* accent — links, buttons, hover */
  --color-sand: #c2b28f;              /* warm secondary — borders, highlights */
  --color-cream: #f5f1ea;             /* light background — alternating sections */
  --color-white: #ffffff;
  --color-dark: #111d2b;              /* deepest shade — footer / dark hero */

  /* Derived tones */
  --color-denim-light: #2e4865;
  --color-steel-dark: #3a6681;
  --color-steel-light: #6d9cbb;
  --color-sand-light: #d8cba9;

  /* Semantic aliases (keep the rest of the CSS ergonomic) */
  --color-primary: var(--color-denim);
  --color-primary-dark: var(--color-dark);
  --color-primary-light: var(--color-denim-light);
  --color-accent: var(--color-steel);
  --color-accent-dark: var(--color-steel-dark);
  --color-accent-light: var(--color-steel-light);

  --color-text: var(--color-denim);
  --color-text-muted: #566577;
  --color-text-light: #8a94a8;

  --color-bg: var(--color-white);
  --color-bg-alt: var(--color-cream);
  --color-bg-dark: var(--color-dark);

  --color-border: var(--color-sand);
  --color-success: #3a7a55;
  --color-error: #b84545;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --header-height: 72px;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(15, 23, 36, 0.06), 0 1px 2px rgba(15, 23, 36, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 36, 0.08), 0 2px 4px rgba(15, 23, 36, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 36, 0.12), 0 4px 8px rgba(15, 23, 36, 0.06);

  /* Transition */
  --transition: 180ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  margin: 0 0 var(--space-sm);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
p { margin: 0 0 var(--space-sm); }
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}
.section-title { margin-bottom: var(--space-xs); }
.section-lede { color: var(--color-text-muted); font-size: 1.0625rem; max-width: 640px; margin-bottom: var(--space-lg); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
section { padding: var(--space-2xl) 0; }
.section-alt { background: var(--color-bg-alt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-steel);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-steel-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background: var(--color-denim);
  color: var(--color-white);
}
.btn-accent:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-denim);
  border-color: var(--color-denim);
}
.btn-outline:hover {
  background: var(--color-denim);
  color: var(--color-white);
}
.btn-ghost { color: var(--color-text); }
.btn-ghost:hover { color: var(--color-primary); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-sand);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-img {
  display: block;
  height: 36px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--color-denim);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--color-steel); }
.nav-links a.active { color: var(--color-steel); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--color-steel);
  border-radius: 2px;
}
.nav-cta { margin-left: var(--space-sm); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-denim);
  position: relative;
  transition: transform var(--transition);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--color-denim);
  transition: transform var(--transition);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(74, 124, 155, 0.14), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}
.hero h1 { margin-bottom: var(--space-md); }
.hero-lede {
  font-size: 1.1875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 560px;
}
.hero-ctas { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.hero-meta-item { display: flex; align-items: center; gap: 0.5rem; }
.hero-meta-item::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7.5 13.5l-3-3 1.4-1.4 1.6 1.6 6.1-6.1 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7.5 13.5l-3-3 1.4-1.4 1.6 1.6 6.1-6.1 1.4 1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Hero illustration */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(194, 178, 143, 0.35), transparent 50%);
}
.hero-visual-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-visual-card.card-1 { top: 16%; left: 10%; color: var(--color-primary); }
.hero-visual-card.card-2 { bottom: 20%; right: 8%; color: var(--color-accent-dark); }
.hero-visual-card.card-3 { bottom: 10%; left: 16%; color: var(--color-text); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(30, 48, 69, 0.1);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-sm);
}
.service-icon.accent {
  background: rgba(194, 178, 143, 0.3);
  color: var(--color-denim);
}
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { color: var(--color-text-muted); margin-bottom: var(--space-sm); }
.service-card .link-arrow {
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.service-card .link-arrow::after { content: '→'; transition: transform var(--transition); }
.service-card .link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.why-item h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.why-item p { color: var(--color-text-muted); }
.why-number {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

/* ---------- Clickable service cards (entrepreneurs / portfolio) ---------- */
a.service-card,
.service-card-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
a.service-card h3,
.service-card-link h3 { color: var(--color-text); }
a.service-card:hover h3,
.service-card-link:hover h3 { color: var(--color-primary); }
a.service-card .link-arrow,
.service-card-link .link-arrow {
  margin-top: auto;
  padding-top: var(--space-sm);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
a.service-card .link-arrow::after,
.service-card-link .link-arrow::after { content: '↗'; transition: transform var(--transition); }
a.service-card:hover .link-arrow::after,
.service-card-link:hover .link-arrow::after { transform: translate(2px, -2px); }

/* ---------- Portfolio / Our Work ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.portfolio-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  color: inherit;
  text-decoration: none;
}
.portfolio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.portfolio-preview {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.75rem;
  color: #fff;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.portfolio-preview::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.12), transparent 50%);
}
.portfolio-preview > span { position: relative; z-index: 1; }
.portfolio-preview.pv-bearcat { background: linear-gradient(135deg, #4a7c9b, #1e3045); }
.portfolio-preview.pv-msm { background: linear-gradient(135deg, #c2b28f, #1e3045); }
.portfolio-preview.pv-lndmrk { background: linear-gradient(135deg, #111d2b, #4a7c9b); }
.portfolio-body { padding: var(--space-md); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.portfolio-body h3 { margin: 0; font-size: 1.125rem; color: var(--color-text); }
.portfolio-card:hover .portfolio-body h3 { color: var(--color-primary); }
.portfolio-body p { margin: 0; color: var(--color-text-muted); font-size: 0.9375rem; flex: 1; }
.portfolio-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  align-self: flex-start;
  padding: 0.25rem 0.625rem;
  background: rgba(74, 124, 155, 0.14);
  color: var(--color-steel-dark);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.portfolio-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}
.portfolio-footer {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
}
.portfolio-card[href] .portfolio-footer::after {
  content: ' ↗';
  transition: transform var(--transition);
  display: inline-block;
}
.portfolio-card[href]:hover .portfolio-footer::after { transform: translate(2px, -2px); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.testimonial-quote {
  font-size: 1.0625rem;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}
.testimonial-quote::before { content: '"'; color: var(--color-accent); font-weight: 700; }
.testimonial-quote::after { content: '"'; color: var(--color-accent); font-weight: 700; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.875rem;
}
.author-name { font-weight: 600; }
.author-title { color: var(--color-text-muted); font-size: 0.875rem; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(194, 178, 143, 0.28), transparent 70%);
}
.cta-band h2 { color: #fff; margin-bottom: var(--space-sm); }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto var(--space-md); font-size: 1.0625rem; }
.cta-band .btn-accent:hover { box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25); }

/* ---------- About Page ---------- */
.about-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--color-bg-alt);
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}
.founder-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.founder-photo.accent {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
}
.founder-card h3 { margin-bottom: 0.25rem; }
.founder-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}
.founder-card p { color: var(--color-text-muted); }
.tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}
.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: var(--color-bg-alt);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.story-block { max-width: 760px; margin: 0 auto; }
.story-block p { font-size: 1.0625rem; color: var(--color-text-muted); margin-bottom: var(--space-sm); }

.differentiators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.differentiator {
  padding: var(--space-md);
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.differentiator h4 { margin-bottom: 0.5rem; }
.differentiator p { color: var(--color-text-muted); margin: 0; font-size: 0.9375rem; }

/* ---------- Services Page ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--color-primary);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
}
.pricing-tier {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.pricing-card h3 { margin-bottom: var(--space-sm); }
.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}
.price-note {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  flex: 1;
}
.pricing-features li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--color-border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.75rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(58, 122, 85, 0.15);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%233a7a55' d='M7.5 13.5l-3-3 1.4-1.4 1.6 1.6 6.1-6.1 1.4 1.4z'/%3E%3C/svg%3E") center/12px no-repeat, rgba(58, 122, 85, 0.15);
  -webkit-mask: none;
}
.pricing-features li::after {
  content: '✓';
  position: absolute;
  left: 3px; top: 0.5rem;
  width: 18px; height: 18px;
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
  line-height: 18px;
}
.pricing-features li::before { display: none; }

.included-list {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}
.included-list h3 { margin-bottom: var(--space-sm); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: var(--space-sm);
}
.included-grid li {
  list-style: none;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.included-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.form-group { margin-bottom: var(--space-sm); }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.375rem;
}
.form-group label .required { color: var(--color-error); }
.form-control {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74, 124, 155, 0.2);
}
.form-control.is-invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(184, 69, 69, 0.14);
}
textarea.form-control { min-height: 140px; resize: vertical; font-family: inherit; }
.form-error {
  display: none;
  color: var(--color-error);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}
.form-control.is-invalid + .form-error { display: block; }
.form-status {
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(58, 122, 85, 0.12);
  color: var(--color-success);
  border: 1px solid rgba(58, 122, 85, 0.25);
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-md); }
.info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.info-card h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.info-card p { margin: 0; font-size: 1.0625rem; font-weight: 600; }
.info-card a { color: var(--color-text); }
.info-card a:hover { color: var(--color-primary); }

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Page hero (simple) ---------- */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--color-bg-alt);
  text-align: left;
}
.page-hero .eyebrow { color: var(--color-accent); }
.page-hero p { color: var(--color-text-muted); font-size: 1.125rem; max-width: 640px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-dark);
  color: rgba(245, 241, 234, 0.72);
  padding: var(--space-xl) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-brand .logo-img { height: 54px; margin-bottom: var(--space-sm); }
.footer-brand p { color: rgba(245, 241, 234, 0.6); max-width: 320px; margin-top: var(--space-sm); }
.site-footer h5 {
  color: var(--color-sand);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; color: rgba(245, 241, 234, 0.72); font-size: 0.9375rem; }
.footer-links a { color: rgba(245, 241, 234, 0.72); font-size: 0.9375rem; }
.footer-links a:hover { color: var(--color-white); }
.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(245, 241, 234, 0.5);
  font-size: 0.875rem;
  flex-wrap: wrap;
}
.site-footer .logo { color: var(--color-white); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  :root { --space-2xl: 5rem; }
  .hero-grid { gap: var(--space-lg); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-cream);
    border-bottom: 1px solid var(--color-sand);
    padding: var(--space-sm);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.875rem 0.5rem;
    border-bottom: 1px solid var(--color-sand);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { margin: var(--space-xs) 0 0; width: 100%; }
  .nav-links .btn { width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .cta-band { padding: var(--space-lg) var(--space-md); }
}

@media (max-width: 375px) {
  .container { padding: 0 var(--space-sm); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .pricing-card, .service-card { padding: var(--space-md); }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
