/* Basic layout */
/* Basic layout */
:root {
  --brand: #D4AF37; /* Antique gold */
  --brand-soft: #F6E7B4; /* Soft gold for subtle accents */
  --brand-2: #B8860B; /* Deeper bronze accent */
  --ink: #111827; /* Charcoal text */
  --muted: #6b7280; /* Muted gray */
  --bg: #F9FAF5; /* Warm ivory page background */
  --card: #f5f5f4; /* Soft warm card background */
  --radius: 16px;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --surface-dark: #050816; /* Rich near-black for header/footer */
  --border-subtle: rgba(15,23,42,0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.container {
  max-width: 1080px;
  margin-inline: auto;
  padding: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 22, .96); /* dark bar */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.45); /* gold border */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  color: #f9fafb;
  display: flex;
  align-items: center;
  gap: .5rem;
}

  .brand .logo {
    font-size: 1.25rem;
    color: var(--brand);
  }

.nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #e5e7eb;
  font-weight: 500;
}

  .nav a:hover {
    color: var(--brand);
  }

.nav .phone {
  color: var(--brand);
  font-weight: 600;
}

/* Hero */
.hero {
  padding: 3rem 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 55%), linear-gradient(180deg, #fefce8, transparent);
}

.hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.25rem;
  margin: 0 0 .5rem;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.cta-row {
  display: inline-flex;
  gap: .75rem;
}

/* Flowchart */
.flowchart h2 {
  text-align: center;
}

.flow-svg {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background: #fdfcf7;
}

.box {
  fill: #f9faf5;
  stroke: var(--border-subtle);
}

.box-title {
  font: 600 16px/1.2 system-ui;
}

.box-text {
  font: 400 12px/1.2 system-ui;
}

.arrow {
  stroke: var(--brand-2);
  stroke-width: 3;
}

.arrow-head {
  fill: var(--brand-2);
}

/* Service cards */
.services h2 {
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transition: transform .6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner,
.flip-card:focus-within .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .5rem;
}

.flip-front {
  border-top: 3px solid var(--brand);
}

  .flip-front h3 {
    margin: 0;
  }

  .flip-front ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
  }

.flip-back {
  transform: rotateY(180deg);
  padding: 0;
  overflow: hidden;
}

  .flip-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.note {
  color: var(--muted);
  margin-top: .5rem;
  text-align: center;
}

/* Locations */
.state-filter {
  margin: 1rem 0;
  display: flex;
  gap: .5rem;
  align-items: 1; /* NOTE: check in HTML; this was align-items: center */
}

.state-list {
  columns: 2;
}

.map-embed {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .75rem;
}

.city-card {
  display: block;
  padding: .75rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

  .city-card:hover {
    border-color: var(--brand);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    transform: translateY(-2px);
  }

.city-name {
  font-weight: 600;
}

.city-zip,
.city-service {
  color: var(--muted);
  font-size: .9rem;
}

.back {
  display: inline-block;
  margin: .5rem 0;
}

.city-cta {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px dashed rgba(212, 175, 55, 0.7);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.08);
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(15,23,42,0.6);
  background: var(--surface-dark);
  color: #e5e7eb;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: var(--brand-soft);
  text-decoration: none;
}

  .site-footer a:hover {
    text-decoration: underline;
  }

.tiny {
  color: #9ca3af;
  font-size: .85rem;
}
/* === Buttons – Gold & Black === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px; /* pill-style button */
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

/* Primary: solid gold */
.btn-primary {
  background-color: var(--brand); /* #D4AF37 from your :root */
  color: #111827; /* near-black text */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

  .btn-primary:hover,
  .btn-primary:focus-visible {
    background-color: #c79d1f; /* slightly darker gold */
    color: #020617;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
    text-decoration: none;
  }

/* Secondary: outlined gold */
.btn-secondary {
  background-color: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

  .btn-secondary:hover,
  .btn-secondary:focus-visible {
    background-color: rgba(212, 175, 55, 0.12);
    border-color: #c79d1f;
    color: #111827;
    text-decoration: none;
  }

/* Keep the row tidy */
.cta-row {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.image-thumb {
  width: 100%;
  max-width: 380px; /* adjust this number to taste */
  height: auto;
  border-radius: 0.75rem; /* optional: slightly rounded corners */
}
/* Two-image strip layout (no Bootstrap needed) */
.image-strip {
  padding: 2rem 1rem;
}

.image-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

/* Each image wrapper */
.image-strip-item {
  display: flex;
  justify-content: center;
}

/* The images themselves – keep them smaller */
.image-strip-img {
  width: 100%;
  max-width: 380px; /* adjust this number if you want larger/smaller */
  height: auto;
  border-radius: 0.75rem; /* optional: rounded corners */
}


