/* =========================================================
   Tulsa Truck Park — Design System
   Brand: rust badge, cream field, charcoal type
   ========================================================= */

:root {
  --brown-900: #1a120c;
  --brown-800: #2b1f16;
  --brown-700: #3d2b1f;
  --brown-600: #4a3224;
  --brown-500: #6b4a32;
  --rust: #b85a2a;
  --rust-hover: #9a4a22;
  --rust-deep: #8b4513;
  --rust-soft: #f0dcc8;
  --cream: #f3e9d8;
  --cream-light: #faf6f0;
  --cream-dark: #e8d9c0;
  --ink: #1a120c;
  --ink-muted: #5c4f43;
  --ink-faint: #8a7d70;
  --white: #ffffff;
  --success: #3d6b2a;
  --border: rgba(61, 43, 31, 0.12);
  --border-strong: rgba(61, 43, 31, 0.22);
  --shadow-sm: 0 1px 3px rgba(26, 18, 12, 0.08);
  --shadow-md: 0 8px 28px rgba(26, 18, 12, 0.12);
  --shadow-lg: 0 20px 50px rgba(26, 18, 12, 0.18);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
/* Offset sticky header when jumping to in-page anchors */
:target,
#book-now,
#amenities,
#location,
#tulsa-truck-parking,
#faq {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-light);
  min-height: 100dvh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--rust); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--rust-hover); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.85rem, 3vw + 0.5rem, 2.75rem); text-transform: uppercase; }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); }
p { text-wrap: pretty; max-width: 65ch; }
.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;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-sm { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.section-dark {
  background: var(--brown-800);
  color: var(--cream);
}
.section-dark p, .section-dark li { color: var(--cream-dark); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-header { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 40rem; }
.section-header .eyebrow + h2 { margin-top: 0.5rem; }
.section-header p { margin-top: 0.85rem; color: var(--ink-muted); font-size: 1.05rem; }
.section-dark .section-header p { color: var(--cream-dark); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
}
.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--rust);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
/* Filled primary: always light text (beat a, .nav a, aria-current) */
a.btn-primary,
.btn-primary,
a.btn.btn-primary,
.nav a.btn-primary,
.nav a.btn.btn-primary,
.nav-cta a.btn-primary,
.nav-cta .btn-primary {
  background: var(--rust) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(184, 90, 42, 0.35);
}
a.btn-primary:hover,
.btn-primary:hover,
a.btn.btn-primary:hover,
.nav a.btn-primary:hover,
.nav a.btn.btn-primary:hover,
.nav a.btn-primary:focus,
.nav a.btn-primary[aria-current="page"],
.nav-cta a.btn-primary:hover {
  background: var(--rust-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(184, 90, 42, 0.45);
}
.nav a.btn-primary,
.nav-cta a.btn-primary {
  padding: 0.65rem 1.15rem;
  font-size: 0.95rem;
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(243, 233, 216, 0.45);
}
.btn-secondary:hover {
  background: rgba(243, 233, 216, 0.1);
  color: var(--white);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--brown-800);
  border-color: var(--brown-600);
}
.btn-outline:hover {
  background: var(--brown-800);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--rust);
  border-color: var(--rust);
}
.btn-ghost:hover {
  background: var(--rust);
  color: var(--white);
}
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1.15rem; }
.btn-block { width: 100%; }
.btn-phone {
  background: var(--cream);
  color: var(--brown-800);
}
.btn-phone:hover {
  background: var(--white);
  color: var(--brown-900);
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--brown-900);
  color: var(--cream-dark);
  font-size: 0.875rem;
  padding: 0.45rem 0;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}
.topbar a {
  color: var(--cream);
  font-weight: 500;
}
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.topbar svg { flex-shrink: 0; opacity: 0.85; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { color: var(--ink); }
/* Badge is already circular — contain full art (no crop) */
.logo img {
  width: 68px;
  height: 68px;
  border-radius: 0;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(26, 18, 12, 0.18));
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
/* Text links only — never style the Book Now .btn */
.nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown-700);
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav a:not(.btn):hover,
.nav a:not(.btn)[aria-current="page"] {
  color: var(--rust);
  background: var(--rust-soft);
}
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--brown-800);
}
.nav-toggle:hover { background: var(--cream); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--brown-800);
  color: var(--cream);
  overflow: hidden;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 18, 12, 0.88) 0%, rgba(43, 31, 22, 0.72) 45%, rgba(26, 18, 12, 0.35) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(184, 90, 42, 0.18), transparent 55%),
    url("../images/yard-drone.webp") center / cover no-repeat;
  z-index: 0;
}
/* Overlay sits above video + image */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(26, 18, 12, 0.88) 0%, rgba(43, 31, 22, 0.72) 45%, rgba(26, 18, 12, 0.4) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 40px,
      rgba(0, 0, 0, 0.03) 40px,
      rgba(0, 0, 0, 0.03) 41px
    );
  pointer-events: none;
}
/* Vimeo background — desktop only */
.hero-video {
  display: none;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 cover */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
@media (min-width: 900px) {
  .hero-video {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
  }
  /* Image still underneath as poster while video loads */
  .hero-bg {
    background-color: var(--brown-800);
    background-image:
      linear-gradient(105deg, rgba(26, 18, 12, 0.2) 0%, transparent 50%),
      url("../images/yard-drone.webp");
    background-size: cover;
    background-position: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none !important; }
}

/* Photo gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 180px 180px 180px;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--brown-700);
}
.gallery-item:first-child {
  grid-row: 1 / span 2;
}
.gallery-item.gallery-wide {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: 220px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
@media (max-width: 720px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    auto-rows: 160px;
  }
  .gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }
  .gallery-item.gallery-wide {
    min-height: 180px;
  }
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(3.5rem, 10vw, 6rem) 0;
  max-width: 40rem;
}
.hero .eyebrow { color: var(--cream-dark); }
.hero .eyebrow::before { background: var(--rust); }
.hero h1 {
  color: var(--white);
  margin: 0.75rem 0 1rem;
}
.hero h1 em {
  font-style: normal;
  color: #f0b080;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--cream-dark);
  margin-bottom: 1.75rem;
  max-width: 36ch;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(243, 233, 216, 0.18);
  max-width: 28rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--cream-dark);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--rust);
  color: var(--white);
  padding: 1rem 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2rem;
  text-align: center;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-item svg { opacity: 0.9; }

/* ---------- Cards / grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  height: 100%;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rust-soft);
  color: var(--rust);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.5rem; color: var(--brown-800); }
.card p { color: var(--ink-muted); font-size: 0.98rem; }

/* Pricing cards */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.price-card:hover {
  border-color: var(--rust);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--rust);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fffaf5 0%, var(--white) 40%);
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: 0.85rem;
  right: -2rem;
  background: var(--rust);
  color: white;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 2.5rem;
  transform: rotate(35deg);
}
.price-tier {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--brown-800);
  line-height: 1;
}
.price-amount span {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.price-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0.75rem 0 1.25rem;
  flex: 1;
}
.price-card .btn { margin-top: auto; }

/* Feature list */
.feature-list {
  display: grid;
  gap: 0.85rem;
}
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-muted);
}
.feature-list .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rust-soft);
  color: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.feature-list strong { color: var(--ink); font-weight: 600; }

/* Nearby services */
.service-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  transition: border-color 0.2s;
}
.service-chip:hover { border-color: var(--rust); }
.service-name {
  font-weight: 600;
  color: var(--brown-800);
  font-size: 0.98rem;
}
.service-dist {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--rust);
  white-space: nowrap;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  background: var(--brown-700);
  aspect-ratio: 4 / 3;
  position: relative;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-body .eyebrow { margin-bottom: 0.65rem; }
.split-body h2 { margin-bottom: 1rem; }
.split-body > p { color: var(--ink-muted); margin-bottom: 1.25rem; }
.split-body .btn { margin-top: 0.5rem; }

/* FAQ */
.faq-list { display: grid; gap: 0.65rem; max-width: 48rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--brown-800);
  cursor: pointer;
  list-style: none;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-answer {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* CTA banner */
.cta-banner {
  background:
    linear-gradient(135deg, var(--brown-800) 0%, var(--brown-600) 55%, #6b3a22 100%);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.cta-banner p {
  color: var(--cream-dark);
  max-width: 36ch;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--brown-800);
  color: var(--cream);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 20%, rgba(184, 90, 42, 0.28), transparent 50%),
    repeating-linear-gradient(-12deg, transparent, transparent 40px, rgba(0,0,0,0.04) 40px, rgba(0,0,0,0.04) 41px);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  color: var(--white);
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
}
.page-hero p {
  color: var(--cream-dark);
  font-size: 1.1rem;
  max-width: 48ch;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-700);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(184, 90, 42, 0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* Contact info cards */
.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--rust-soft);
  color: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.contact-card p, .contact-card a {
  color: var(--ink-muted);
  font-size: 0.98rem;
}
.contact-card a:hover { color: var(--rust); }

/* Directions steps */
.steps { display: grid; gap: 1rem; counter-reset: step; }
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.25rem;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rust);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.step p { color: var(--ink-muted); font-size: 0.95rem; }

/* Footer */
.site-footer {
  background: var(--brown-900);
  color: var(--cream-dark);
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(243, 233, 216, 0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand .logo {
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--cream);
  margin-bottom: 1.15rem;
}
.footer-brand .logo:hover { color: var(--white); }
.footer-brand .logo img {
  width: 128px;
  height: 128px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}
.footer-brand .logo-text {
  font-size: 1.35rem;
  text-align: center;
}
.footer-brand .logo-text span {
  color: var(--cream-dark);
  margin-top: 0.2rem;
}
.footer-brand p {
  color: var(--cream-dark);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  opacity: 0.9;
  max-width: 28ch;
  margin-inline: auto;
}
.footer-brand .btn {
  align-self: center;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col a {
  color: var(--cream-dark);
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.footer-bottom a { color: var(--cream-dark); }
.footer-bottom a:hover { color: var(--white); }

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--brown-900);
  border-top: 1px solid rgba(243, 233, 216, 0.12);
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  gap: 0.5rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}
.mobile-cta .btn { flex: 1; padding: 0.8rem 0.75rem; font-size: 0.95rem; }
.mobile-cta a.btn-primary,
.mobile-cta a.btn-primary:hover {
  color: var(--white);
}
.cta-actions a.btn-primary,
.cta-actions a.btn-primary:hover {
  color: var(--white);
}

/* Utility */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.text-muted { color: var(--ink-muted); }
.section-dark .text-muted { color: var(--cream-dark); }
.mx-auto { margin-inline: auto; }
.prose { max-width: 65ch; }
.prose p + p { margin-top: 1rem; }
.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 1rem 0;
  color: var(--ink-muted);
}
.prose li + li { margin-top: 0.4rem; }
.lead {
  font-size: 1.15rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* SEO / GEO — citable answer blocks */
.answer-block {
  max-width: 68ch;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.answer-block p {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: none;
}
.answer-block p + p { margin-top: 0.85rem; }
.answer-block strong { color: var(--ink); font-weight: 600; }

/* About / keyword section: text + logo columns */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
}
.about-split .answer-block {
  margin-bottom: 0;
  max-width: 40rem;
}
/* Tighter, cleaner title → body rhythm */
.about-split .answer-block h2 {
  margin: 0 0 0.65rem;
  line-height: 1.05;
  letter-spacing: 0.015em;
}
.about-split .answer-block p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-muted);
}
.about-split .answer-block p + p {
  margin-top: 1.15rem;
}
/* Mobile first: logo above text */
.about-split-logo {
  order: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-split-logo img {
  width: min(220px, 58vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(26, 18, 12, 0.14));
}
@media (min-width: 800px) {
  .about-split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
  }
  .about-split .answer-block {
    max-width: none;
  }
  .about-split-logo {
    order: 0; /* text left, logo right */
    justify-content: flex-end;
  }
  .about-split-logo img {
    width: 400px;
    height: 400px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 32px rgba(26, 18, 12, 0.16));
  }
}
.section-dark .answer-block p { color: var(--cream-dark); }
.section-dark .answer-block strong { color: var(--cream); }

.content-section h2 { margin-bottom: 0.75rem; }
.content-section h3 {
  margin: 1.5rem 0 0.5rem;
  color: var(--brown-800);
}
.content-section p {
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
  max-width: 68ch;
}
.content-section ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 1.25rem;
  color: var(--ink-muted);
  max-width: 68ch;
}
.content-section ol {
  list-style: decimal;
  padding-left: 1.35rem;
  margin: 0.75rem 0 1.25rem;
  color: var(--ink-muted);
  max-width: 68ch;
}
.content-section li + li { margin-top: 0.35rem; }
.content-section a { font-weight: 500; }
.content-section .legal-meta {
  font-size: 0.95rem;
  color: var(--ink-faint);
  margin-bottom: 1.5rem;
}
.legal-doc {
  max-width: 48rem;
}
.legal-doc h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  text-transform: none;
  letter-spacing: 0.01em;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p,
.legal-doc li {
  font-size: 1rem;
  line-height: 1.7;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--cream-dark);
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.breadcrumb a { color: var(--cream); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.7; margin: 0 0.35rem; }

.page-hero .answer-block p {
  color: var(--cream-dark);
  font-size: 1.08rem;
}
.page-hero .answer-block strong { color: var(--white); }

/* Map embed */
.map-frame {
  border: 0;
  border-radius: var(--radius-lg);
  width: 100%;
  height: 360px;
  box-shadow: var(--shadow-md);
  filter: grayscale(0.15) contrast(1.05);
}

/* Table */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 1rem;
}
.rates-table th {
  text-align: left;
  background: var(--brown-800);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.9rem 1.15rem;
}
.rates-table td {
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-muted);
}
.rates-table tr:last-child td { border-bottom: none; }
.rates-table td:first-child {
  font-weight: 600;
  color: var(--brown-800);
}
.rates-table .price-cell {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rust);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { max-height: 320px; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream-light);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1rem 1rem;
    box-shadow: var(--shadow-md);
    gap: 0.15rem;
  }
  .nav.is-open a:not(.btn) {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
  }
  .nav.is-open .nav-cta {
    margin: 0.5rem 0 0;
  }
  .nav.is-open .nav-cta .btn {
    width: 100%;
    color: #ffffff !important;
    background: var(--rust) !important;
  }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
  .site-header .container { position: relative; }
}

@media (max-width: 720px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.7rem; }
  .topbar { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  /* Keep wordmark readable; badge stays large enough to recognize */
  .logo img {
    width: 58px;
    height: 58px;
  }
  .logo-text {
    font-size: 1.05rem;
  }
  .logo-text span {
    display: none; /* hide tagline only; keep brand name */
  }
  .footer-brand .logo img {
    width: 112px;
    height: 112px;
  }
  .price-card.featured::before {
    font-size: 0.7rem;
    right: -2.2rem;
  }
}

@media (max-width: 400px) {
  .hero-actions .btn { width: 100%; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
