/* =================================================================
   BEE'S KEYS — Design System
   Built from BeesKeys_Brand_Standards + Website_Design_Specification
   Mobile-first, no yellow, problem-first, Since 1950
================================================================= */

/* CSS Variables — Brand Standards */
:root {
  /* Colors */
  --bk-red: #B91C1C;        /* Bee's Red primary */
  --bk-red-dark: #8B1414;
  --bk-black: #111111;      /* Near-black */
  --bk-gray: #78716C;       /* Warm gray support */
  --bk-gray-dark: #44403C;
  --bk-cream: #F5F0E8;      /* Warm off-white */
  --bk-cream-dark: #E8DFD0;
  --bk-white: #FFFFFF;
  --bk-border: #E2DDD5;

  /* Typography */
  --ff-display: 'Libre Caslon Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --ff-body: 'Karla', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

  /* Type scale — mobile defaults, scale up in media queries */
  --fs-h1: 1.875rem;        /* 30px mobile */
  --fs-h2: 1.5rem;          /* 24px mobile */
  --fs-h3: 1.25rem;         /* 20px mobile */
  --fs-body: 1rem;          /* 16px minimum */
  --fs-small: 0.875rem;
  --fs-fine: 0.8125rem;

  /* Layout */
  --site-max-width: 1200px;
  --content-max-width: 720px;
  --border-radius: 6px;
  --transition: 0.2s ease;
}

/* Reset and base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--bk-black);
  background: var(--bk-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Bottom padding for sticky mobile call button */
  padding-bottom: 64px;
}

/* Remove sticky CTA padding on desktop */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }
}

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

a {
  color: var(--bk-red);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover, a:focus {
  color: var(--bk-red-dark);
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--bk-black);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

h1 { font-size: var(--fs-h1); letter-spacing: -0.015em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin-bottom: var(--space-sm); }

/* Type scale — tablet */
@media (min-width: 768px) {
  :root {
    --fs-h1: 2.25rem;
    --fs-h2: 1.875rem;
    --fs-h3: 1.375rem;
  }
}

/* Type scale — desktop */
@media (min-width: 1024px) {
  :root {
    --fs-h1: 3rem;
    --fs-h2: 2.25rem;
    --fs-h3: 1.5rem;
  }
}

/* =====================================================
   LAYOUT
===================================================== */
.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-md); }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-lg); }
}

.section {
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .section { padding: var(--space-xl) 0; }
}

.section--cream { background: var(--bk-cream); }
.section--white { background: var(--bk-white); }
.section--dark { background: var(--bk-black); color: var(--bk-white); }
.section--dark h2, .section--dark h3 { color: var(--bk-white); }

/* =====================================================
   TOP UTILITY BAR
===================================================== */
.utility-bar {
  background: var(--bk-black);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-fine);
  padding: 0.5rem 0;
}

.utility-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}

.utility-bar a {
  color: var(--bk-white);
  font-weight: 600;
}

.utility-bar__address {
  color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 768px) {
  .utility-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* =====================================================
   HEADER & NAVIGATION
===================================================== */
.header {
  background: var(--bk-white);
  border-bottom: 3px solid var(--bk-red);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bk-black);
}

.logo__tag {
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bk-gray);
  font-weight: 500;
}

@media (min-width: 768px) {
  .logo__name { font-size: 1.375rem; }
  .logo__tag { font-size: 0.75rem; }
}

/* Desktop nav */
.nav-links {
  display: none;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-links a {
  display: block;
  padding: 0.625rem 0.5rem;
  font-size: 0.875rem;
  color: var(--bk-black);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  border-bottom-color: var(--bk-red);
  color: var(--bk-red);
}

@media (min-width: 1024px) {
  .nav-links { display: block; }
}

/* Header phone — desktop */
.header__phone {
  display: none;
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--bk-red);
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .header__phone { display: block; }
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--bk-black);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bk-white);
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 1rem;
  overflow-y: auto;
}

.mobile-menu[data-open="true"] {
  display: flex;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--bk-border);
  margin-bottom: 1rem;
}

.mobile-menu__close {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--bk-black);
}

.mobile-menu ul {
  list-style: none;
}

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

.mobile-menu ul a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  color: var(--bk-black);
  font-weight: 600;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.mobile-menu__cta {
  display: block;
  margin-top: auto;
  padding: 1.125rem;
  background: var(--bk-red);
  color: var(--bk-white);
  text-align: center;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1.125rem;
}

.mobile-menu__cta:hover { color: var(--bk-white); }

/* =====================================================
   HERO
===================================================== */
.hero {
  background: var(--bk-black);
  color: var(--bk-white);
  padding: var(--space-lg) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .hero {
    padding: var(--space-xl) 0;
  }
  .hero__grid {
    grid-template-columns: 1fr 360px;
    gap: var(--space-xl);
    align-items: start;
  }
}

.hero__eyebrow {
  font-size: var(--fs-fine);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bk-red);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hero__eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--bk-red);
}

.hero h1 {
  color: var(--bk-white);
  font-size: 1.75rem;
  line-height: 1.18;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) { .hero h1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 2.75rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 3.25rem; } }

.hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
  max-width: 520px;
  line-height: 1.6;
}

.hero__sub strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero__sub { font-size: 1.0625rem; }
}

.hero__neighborhoods {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero__tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: var(--fs-fine);
  font-weight: 500;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 640px) {
  .hero__proof { grid-template-columns: repeat(4, 1fr); }
}

.proof-item {
  text-align: center;
}

.proof-item__num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bk-red);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .proof-item__num { font-size: 1.75rem; }
}

.proof-item__label {
  font-size: var(--fs-fine);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}

/* Hero situation selector */
.situation-card {
  background: var(--bk-white);
  color: var(--bk-black);
  border-radius: var(--border-radius);
  overflow: hidden;
  border-top: 3px solid var(--bk-red);
}

.situation-card__header {
  padding: 1.125rem 1.25rem 0.875rem;
  border-bottom: 1px solid var(--bk-border);
}

.situation-card__header p {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--bk-black);
}

.situation-card__header span {
  font-size: 0.8125rem;
  color: var(--bk-gray);
}

.situation-list {
  list-style: none;
}

.situation-list li {
  border-bottom: 1px solid var(--bk-border);
}

.situation-list li:last-child {
  border-bottom: none;
}

.situation-list a {
  display: grid;
  grid-template-columns: 8px 1fr minmax(96px, 128px) 14px;
  align-items: start;
  column-gap: 0.875rem;
  padding: 1rem 1.25rem;
  color: var(--bk-black);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.35;
  transition: background var(--transition);
  min-height: 56px;
}

.situation-list a:hover {
  background: var(--bk-cream);
  color: var(--bk-red);
}

.situation-list a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bk-red);
  margin-top: 0.5em;
  align-self: start;
}

.situation-list a span {
  display: block;
  font-size: 0.8125rem;
  color: var(--bk-gray);
  font-weight: 400;
  text-align: right;
  align-self: start;
}

.situation-list a::after {
  content: "›";
  color: var(--bk-red);
  font-size: 1.25rem;
  align-self: center;
  justify-self: end;
}

.situation-card__footer {
  padding: 1rem 1.25rem;
  background: var(--bk-cream);
  text-align: center;
}

.situation-card__footer p {
  font-size: 0.75rem;
  color: var(--bk-gray-dark);
  margin-bottom: 0.25rem;
}

.situation-card__footer a {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bk-red);
  display: block;
  line-height: 1;
}

.situation-card__footer small {
  display: block;
  font-size: 0.6875rem;
  color: var(--bk-gray);
  margin-top: 0.375rem;
}

/* =====================================================
   TRUST BAR
===================================================== */
.trust-bar {
  background: var(--bk-cream);
  border-bottom: 1px solid var(--bk-cream-dark);
  padding: 0.875rem 0;
}

.trust-bar__inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.trust-bar__inner::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) {
  .trust-bar__inner {
    justify-content: space-around;
    overflow-x: visible;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bk-gray-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bk-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bk-white);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* =====================================================
   SECTION HEADERS
===================================================== */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bk-red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.section-intro {
  font-size: 1rem;
  color: var(--bk-gray-dark);
  margin-bottom: var(--space-md);
  max-width: 640px;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .section-intro { font-size: 1.0625rem; }
}

/* =====================================================
   SERVICES GRID
===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--bk-white);
  border: 1px solid var(--bk-border);
  border-top: 3px solid var(--bk-border);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card--featured {
  border-top-color: var(--bk-red);
}

.service-card__volume {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--bk-gray);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.service-card h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bk-black);
  margin-bottom: 0.375rem;
  line-height: 1.35;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--bk-gray-dark);
  line-height: 1.55;
  margin-bottom: 0.875rem;
  flex-grow: 1;
}

.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bk-red);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.service-card__link::after {
  content: "→";
  transition: transform var(--transition);
}

.service-card:hover .service-card__link::after {
  transform: translateX(3px);
}

/* =====================================================
   SPECIALTY KEYS FEATURE STRIP
===================================================== */
.specialty-strip {
  background: var(--bk-black);
  color: var(--bk-white);
  padding: var(--space-lg) 0;
  position: relative;
}

.specialty-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .specialty-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  .specialty-strip { padding: var(--space-xl) 0; }
}

.specialty-strip h2 {
  color: var(--bk-white);
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) { .specialty-strip h2 { font-size: 2rem; } }
@media (min-width: 1024px) { .specialty-strip h2 { font-size: 2.5rem; } }

.specialty-strip__intro {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
  line-height: 1.65;
}

.specialty-strip__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 1rem;
  list-style: none;
  margin-bottom: var(--space-md);
}

.specialty-strip__list li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 1rem;
  position: relative;
}

.specialty-strip__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bk-red);
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  transition: background var(--transition), transform var(--transition);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
}

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

.btn--primary:hover {
  background: var(--bk-red-dark);
  color: var(--bk-white);
  transform: translateY(-1px);
}

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

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* =====================================================
   STORY BLOCK (Since 1950)
===================================================== */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .story {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

.story__image img {
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.story__content h2 {
  margin-bottom: var(--space-md);
}

.story__content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bk-gray-dark);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .story__content p { font-size: 1.0625rem; }
}

/* =====================================================
   CALLOUTS (Homeowner, Commercial)
===================================================== */
.callout {
  border-radius: var(--border-radius);
  padding: var(--space-md);
  text-align: center;
}

@media (min-width: 768px) {
  .callout { padding: var(--space-lg); }
}

.callout--cream {
  background: var(--bk-cream);
  border: 1px solid var(--bk-cream-dark);
  color: var(--bk-black);
}

.callout--dark {
  background: var(--bk-black);
  color: var(--bk-white);
}

.callout--dark h2 { color: var(--bk-white); }

.callout h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .callout h2 { font-size: 1.875rem; }
}

.callout p {
  max-width: 620px;
  margin: 0 auto var(--space-sm);
  line-height: 1.65;
}

.callout__partners {
  font-size: 0.875rem;
  color: var(--bk-gray-dark);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.callout--dark .callout__partners { color: rgba(255, 255, 255, 0.6); }

/* =====================================================
   SERVICE AREA
===================================================== */
.area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .area-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-lg);
  }
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.area-tag {
  background: var(--bk-white);
  border: 1px solid var(--bk-cream-dark);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--bk-black);
  font-weight: 500;
}

.area-map {
  background: var(--bk-cream);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--bk-cream-dark);
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.area-map__pin {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
  color: var(--bk-red);
}

.area-map__address {
  font-weight: 700;
  color: var(--bk-black);
  margin-bottom: 0.25rem;
}

.area-map__note {
  font-size: 0.875rem;
  color: var(--bk-gray);
}

/* =====================================================
   FAQ
===================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bk-black);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  min-height: 56px;
}

.faq-item__question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--bk-red);
  font-weight: 400;
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[data-open="true"] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--bk-gray-dark);
  line-height: 1.7;
}

.faq-item[data-open="true"] .faq-item__answer {
  display: block;
}

.faq-item__answer p {
  margin-bottom: 0.75rem;
}

.faq-item__answer p:last-child { margin-bottom: 0; }

/* =====================================================
   CTA BAND
===================================================== */
.cta-band {
  background: var(--bk-red);
  color: var(--bk-white);
  padding: var(--space-lg) 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--bk-white);
  margin-bottom: 0.5rem;
}

.cta-band p {
  font-size: 1.0625rem;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.9);
}

.cta-band__phone {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--bk-white);
  display: inline-block;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) { .cta-band__phone { font-size: 2.5rem; } }

.cta-band__hours {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-band a { color: var(--bk-white); }

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--bk-black);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: var(--space-lg); }
}

.footer h4 {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bk-white);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer p, .footer li, .footer__contact {
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer a:hover {
  color: var(--bk-white);
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer__contact strong {
  color: var(--bk-white);
  font-size: 1.125rem;
  display: block;
  margin: 0.25rem 0;
}

.footer__contact .small-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* =====================================================
   STICKY MOBILE CALL CTA
===================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bk-red);
  color: var(--bk-white);
  padding: 0.875rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  z-index: 40;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sticky-cta:hover {
  background: var(--bk-red-dark);
  color: var(--bk-white);
}

@media (min-width: 1024px) {
  .sticky-cta { display: none; }
}

/* =====================================================
   SERVICE PAGES — content layout
===================================================== */
.page-header {
  background: var(--bk-black);
  color: var(--bk-white);
  padding: var(--space-lg) 0;
}

.breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--bk-white);
}

.page-header h1 {
  color: var(--bk-white);
  margin-bottom: var(--space-sm);
}

.page-lede {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-lede { font-size: 1.125rem; }
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p, .page-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bk-gray-dark);
}

@media (min-width: 768px) {
  .page-content p, .page-content li { font-size: 1.0625rem; }
}

.page-content ul, .page-content ol {
  margin-left: 1.25rem;
  margin-bottom: var(--space-md);
}

.page-content li {
  margin-bottom: 0.5rem;
}

.coverage-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

@media (min-width: 640px) {
  .coverage-table { grid-template-columns: 1fr 1fr; }
}

.coverage-cell {
  padding: var(--space-md);
  border-radius: var(--border-radius);
  border: 1px solid var(--bk-border);
}

.coverage-cell--yes {
  background: var(--bk-cream);
  border-color: var(--bk-cream-dark);
}

.coverage-cell--no {
  background: var(--bk-white);
}

.coverage-cell h3 {
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.coverage-cell--yes h3 { color: var(--bk-red); }

.process-steps {
  list-style: none;
  counter-reset: step;
  margin-left: 0 !important;
}

.process-steps li {
  counter-increment: step;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.25rem !important;
}

.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: var(--bk-red);
  color: var(--bk-white);
  font-family: var(--ff-display);
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* Cross-links between services */
.cross-links {
  background: var(--bk-cream);
  border-radius: var(--border-radius);
  padding: var(--space-md);
  margin-top: var(--space-lg);
}

.cross-links h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cross-links ul {
  list-style: none;
  margin-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cross-links a {
  font-weight: 600;
}

/* Brand safes grid (safes-dallas.html) */
.brand-safes {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-lg);
}

@media (min-width: 768px) {
  .brand-safes {
    grid-template-columns: 1fr 1fr;
  }
}

.brand-safes__group {
  background: var(--bk-cream);
  border-radius: var(--border-radius);
  padding: var(--space-md);
}

.brand-safes__group h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.brand-safes__group ul {
  list-style: none;
  margin-left: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.brand-safes__group li {
  line-height: 1.5;
}

.brand-safes__group strong {
  color: var(--bk-red);
  display: block;
  margin-bottom: 0.125rem;
}

/* Accessibility — focus styles */
*:focus-visible {
  outline: 3px solid var(--bk-red);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bk-red);
  color: var(--bk-white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  color: var(--bk-white);
}

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

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-xl);
  }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

@media (max-width: 480px) {
  .form-row--two { grid-template-columns: 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bk-black);
}

.form-required {
  color: var(--bk-red);
  font-weight: 400;
  font-size: 0.875rem;
}

.form-input {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--bk-black);
  background: var(--bk-white);
  border: 1.5px solid var(--bk-border);
  border-radius: var(--border-radius);
  padding: 0.75rem 0.875rem;
  width: 100%;
  transition: border-color var(--transition);
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--bk-red);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.12);
}

.form-input::placeholder {
  color: var(--bk-gray);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-submit {
  align-self: flex-start;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* Info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-block {
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--bk-border);
}

.contact-info-block:first-child { padding-top: 0; }
.contact-info-block:last-child { border-bottom: none; }

.contact-info-block h3 {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bk-gray);
  margin-bottom: 0.5rem;
}

.contact-info-block p { margin-bottom: 0.375rem; }
.contact-info-block p:last-child { margin-bottom: 0; }

.hours-table {
  width: 100%;
  font-size: 0.9375rem;
  border-collapse: collapse;
}

.hours-table td {
  padding: 0.3rem 0;
  color: var(--bk-gray-dark);
  line-height: 1.5;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--bk-black);
}

/* =====================================================
   VEHICLE COMPATIBILITY GRID
===================================================== */
.vehicle-notice {
  background: var(--bk-black);
  color: rgba(255,255,255,0.9);
  border-left: 4px solid var(--bk-red);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.vehicle-notice strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 640px) {
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .vehicle-grid { grid-template-columns: repeat(4, 1fr); }
}

.vehicle-make {
  background: var(--bk-white);
  border: 1px solid var(--bk-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.vehicle-make__btn {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--bk-black);
  background: var(--bk-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  min-height: 48px;
  transition: background var(--transition);
}

.vehicle-make__btn:hover {
  background: var(--bk-cream);
  color: var(--bk-red);
}

.vehicle-make__btn::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bk-red);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.vehicle-make[data-open="true"] .vehicle-make__btn {
  background: var(--bk-black);
  color: var(--bk-white);
}

.vehicle-make[data-open="true"] .vehicle-make__btn::after {
  transform: rotate(45deg);
  color: var(--bk-red);
}

.vehicle-make__models {
  display: none;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: var(--bk-gray-dark);
  line-height: 1.65;
  border-top: 1px solid var(--bk-border);
  background: var(--bk-white);
}

.vehicle-make[data-open="true"] .vehicle-make__models {
  display: block;
}

.vehicle-footer-note {
  font-size: 0.9375rem;
  color: var(--bk-gray-dark);
  text-align: center;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--bk-border);
}

/* =====================================================
   VEHICLES WE DON'T SERVICE PAGE
===================================================== */
.no-service-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--bk-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.no-service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.375rem;
  padding: 0.875rem 1.125rem;
  border-bottom: 1px solid var(--bk-border);
  background: var(--bk-white);
}

.no-service-row:last-child { border-bottom: none; }
.no-service-row:nth-child(even) { background: var(--bk-cream); }

@media (min-width: 640px) {
  .no-service-row {
    grid-template-columns: 200px 1fr;
    gap: 1.25rem;
    align-items: baseline;
  }
}

.no-service-make {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--bk-black);
}

.no-service-reason {
  font-size: 0.875rem;
  color: var(--bk-gray-dark);
  line-height: 1.55;
}

.warranty-tip {
  background: var(--bk-cream);
  border: 1px solid var(--bk-cream-dark);
  border-left: 4px solid var(--bk-red);
  border-radius: var(--border-radius);
  padding: var(--space-md) var(--space-md);
  margin: var(--space-lg) 0;
}

.warranty-tip h3 {
  font-family: var(--ff-body);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bk-black);
  margin-bottom: 0.875rem;
  line-height: 1.4;
}

.warranty-tip p {
  font-size: 0.9375rem;
  color: var(--bk-gray-dark);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.warranty-tip p:last-child { margin-bottom: 0; }

.warranty-tip ul {
  margin: 0.625rem 0 0.875rem 1.25rem;
}

.warranty-tip li {
  font-size: 0.9375rem;
  color: var(--bk-gray-dark);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.warranty-tip strong {
  color: var(--bk-black);
  font-weight: 700;
}

/* Updated logo dimensions for horizontal lockup */
.logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
}

/* =====================================================
   HERO COVERAGE LINE (replaces neighborhood tags)
===================================================== */
.hero__coverage {
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* =====================================================
   MAP EMBED — static fallback + production iframe slot
===================================================== */
.map-embed-wrap {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--bk-cream);
  border: 1px solid var(--bk-cream-dark);
}

.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .map-embed-wrap iframe { height: 260px; }
}

.map-static-fallback {
  display: block;
  text-decoration: none;
  height: 100%;
  min-height: 240px;
  background: var(--bk-cream);
  transition: background var(--transition);
}

.map-static-fallback:hover {
  background: var(--bk-cream-dark);
}

.map-static-fallback__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 240px;
  gap: 0.375rem;
  /* Subtle grid pattern to suggest a map */
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  background-color: #EDE8E0;
  position: relative;
}

.map-static-fallback__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(237,232,224,0) 40%, rgba(237,232,224,0.7) 100%);
  pointer-events: none;
}

.map-static-fallback__pin {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  position: relative;
}

.map-static-fallback__address {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bk-black);
  line-height: 1.4;
  position: relative;
  background: rgba(255,255,255,0.9);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.map-static-fallback__cross {
  font-size: 0.8125rem;
  color: var(--bk-gray-dark);
  position: relative;
}

.map-static-fallback__cta {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bk-white);
  background: var(--bk-red);
  border: none;
  border-radius: 4px;
  padding: 0.625rem 1.25rem;
  transition: background var(--transition);
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}

.map-static-fallback:hover .map-static-fallback__cta {
  background: var(--bk-red-dark);
  color: var(--bk-white);
}

/* Contact page map — taller */
.contact-map-embed {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: var(--space-sm);
  border: 1px solid var(--bk-border);
}

.map-static-fallback--contact .map-static-fallback__inner {
  min-height: 200px;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.map-directions-link {
  display: block;
  text-align: center;
  padding: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bk-red);
  background: var(--bk-cream);
  border-top: 1px solid var(--bk-border);
  transition: background var(--transition);
}
.map-directions-link:hover {
  background: var(--bk-cream-dark);
  color: var(--bk-red);
}

/* =====================================================
   CONTACT FORM PLACEHOLDER NOTICE
===================================================== */
.form-placeholder-notice {
  background: var(--bk-cream);
  border: 1.5px solid var(--bk-cream-dark);
  border-left: 4px solid var(--bk-red);
  border-radius: var(--border-radius);
  padding: 1.125rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--bk-gray-dark);
  line-height: 1.6;
}

.form-placeholder-notice strong {
  display: block;
  color: var(--bk-black);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.form-placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
