/* ============================================
   Texas Mail Center — Main Stylesheet
   Mobile-first responsive, SEO-optimized
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-maroon: #8B1A3A;
  --color-maroon-dark: #6B1430;
  --color-maroon-light: #A52050;
  --color-cream: #FDF8F4;
  --color-warm-gray: #F5F0EC;
  --color-text: #2D2A26;
  --color-text-light: #5A554F;
  --color-white: #FFFFFF;
  --color-border: #E5DDD6;
  --color-accent: #C4813D;

  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --header-height: 70px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
}

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

a {
  color: var(--color-maroon);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-maroon-light);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
}

.section--alt {
  background: var(--color-warm-gray);
}

.section--maroon {
  background: var(--color-maroon);
  color: var(--color-white);
}

.section--maroon h2,
.section--maroon h3 {
  color: var(--color-white);
}

.section--maroon a {
  color: var(--color-cream);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--color-maroon-dark);
  color: var(--color-cream);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar a:hover {
  color: var(--color-white);
}

/* --- Header --- */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

/* --- Navigation --- */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-maroon);
  transition: transform 0.3s;
}

.main-nav {
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.main-nav.is-open {
  max-height: 500px;
}

.main-nav ul {
  list-style: none;
  padding: 0.5rem 0;
}

.main-nav li {
  border-bottom: 1px solid var(--color-border);
}

.main-nav li:last-child {
  border-bottom: none;
}

.main-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-maroon);
  background: var(--color-cream);
}

.site-header .header-cta {
  display: none;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.1s;
  line-height: 1.4;
}

.btn:active {
  transform: translateY(1px);
}

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

.btn--primary:hover {
  background: var(--color-maroon-light);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-maroon);
  border: 2px solid var(--color-maroon);
}

.btn--outline:hover {
  background: var(--color-maroon);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-maroon);
}

.btn--white:hover {
  background: var(--color-cream);
  color: var(--color-maroon);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--color-maroon-dark) 0%, var(--color-maroon) 60%, var(--color-maroon-light) 100%);
  color: var(--color-white);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: url('../images/redstamp-1024x1024.png') center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2rem;
  max-width: 600px;
}

.hero .lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 540px;
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* --- Hero Social Proof Bar --- */
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

/* --- Blog Card Date --- */
.blog-card__date {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
}

/* --- Service Cards --- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-maroon);
  font-size: 1.5rem;
}

.card h3 a {
  color: var(--color-text);
}

.card h3 a:hover {
  color: var(--color-maroon);
}

.card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.card .btn {
  margin-top: 1rem;
}

/* --- Feature List --- */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.6rem 0 0.6rem 1.75rem;
  position: relative;
  color: var(--color-text-light);
}

.feature-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--color-maroon);
  font-size: 0.85rem;
  top: 0.7rem;
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat__number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* --- Testimonial / Quote --- */
.testimonial {
  border-left: 4px solid var(--color-maroon);
  padding: 1.25rem 1.5rem;
  background: var(--color-cream);
  border-radius: 0 6px 6px 0;
  margin: 1.5rem 0;
}

.testimonial p {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
}

/* --- Process Steps --- */
.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 2rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-maroon);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.step h3 {
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- Form Success Message --- */
.form-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--color-maroon);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.form-success h3 {
  color: var(--color-maroon);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.form-success p {
  color: var(--color-text-light);
  max-width: 420px;
  margin: 0 auto 0.5rem;
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-maroon);
  box-shadow: 0 0 0 3px rgba(139,26,58,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- Contact Info Block --- */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info li:last-child {
  border-bottom: none;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-cream);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-maroon);
  font-size: 1rem;
}

.contact-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.contact-info a {
  font-size: 1.05rem;
  font-weight: 600;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-maroon-dark), var(--color-maroon));
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
}

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

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: rgba(255,255,255,0.7);
}

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

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-maroon);
}

.breadcrumbs span {
  margin: 0 0.4rem;
  color: var(--color-border);
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--color-warm-gray);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header .lead {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 600px;
}

/* --- Content Layout --- */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.sidebar-cta {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1.5rem;
}

.sidebar-cta h3 {
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* --- About page --- */
.timeline {
  border-left: 3px solid var(--color-maroon);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--color-maroon);
  border-radius: 50%;
  border: 2px solid var(--color-white);
}

.timeline-item strong {
  display: block;
  color: var(--color-maroon);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.85rem; }

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  .hero { padding: 4.5rem 0; }
  .hero h1 { font-size: 2.5rem; }

  .stats { grid-template-columns: repeat(4, 1fr); }

  .section { padding: 4rem 0; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }

  .content-with-sidebar {
    grid-template-columns: 1fr 320px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  h1 { font-size: 2.8rem; }

  .nav-toggle { display: none; }

  .main-nav {
    display: block;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    transition: none;
  }

  .main-nav ul {
    display: flex;
    gap: 0.25rem;
    padding: 0;
  }

  .main-nav li {
    border: none;
  }

  .main-nav a {
    padding: 0.5rem 0.85rem;
    border-radius: 4px;
  }

  .site-header .header-cta {
    display: inline-block;
  }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }

  .hero { padding: 5rem 0; }
  .hero h1 { font-size: 3rem; }
  .hero .lead { font-size: 1.15rem; }

  .hero::after {
    width: 450px;
    height: 450px;
    opacity: 0.1;
  }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* --- SVG Icons (inline) --- */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

/* --- Skip Link (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 200;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* --- Floating Quick Quote Button --- */
.quick-quote-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  background: var(--color-maroon);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(139,26,58,0.35);
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-quote-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.quick-quote-float:hover {
  background: var(--color-maroon-light);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* --- Footer Email Signup --- */
.footer-signup {
  margin-top: 1.25rem;
}

.footer-signup p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.7);
}

.footer-signup-form {
  display: flex;
  gap: 0;
}

.footer-signup-form input[type="email"] {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

.footer-signup-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.footer-signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-maroon-light);
  background: rgba(255,255,255,0.15);
}

.footer-signup-form button {
  padding: 0.55rem 1rem;
  background: var(--color-maroon);
  color: var(--color-white);
  border: 1px solid var(--color-maroon);
  border-radius: 0 4px 4px 0;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-signup-form button:hover {
  background: var(--color-maroon-light);
}

.footer-signup-form button:disabled {
  opacity: 0.7;
  cursor: default;
}

/* --- Footer Social Links --- */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s;
}

.footer-social a svg {
  display: block;
}

.footer-social a:hover {
  background: var(--color-maroon);
  color: var(--color-white);
}

/* --- Google Map Embed --- */
.map-embed {
  margin-top: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

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

/* --- FAQ Page (Accordion) --- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--color-text);
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-item h3 button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  text-align: left;
  line-height: 1.4;
}

.faq-item h3 button:hover {
  color: var(--color-maroon);
}

.faq-item h3 button::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-maroon);
  margin-left: 1rem;
  transition: transform 0.2s;
}

.faq-item h3 button[aria-expanded="true"]::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.is-open {
  max-height: 300px;
}

.faq-answer p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  padding-bottom: 1.25rem;
}

/* --- Honeypot (spam protection) --- */
.form-hp {
  display: none !important;
}

/* --- Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1.5rem;
}

.review-card .stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.review-card p {
  font-style: italic;
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text);
}

/* --- Blog List --- */
.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin-bottom: 0.5rem;
}

.blog-card h3 a {
  color: var(--color-text);
}

.blog-card h3 a:hover {
  color: var(--color-maroon);
}

.blog-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* --- Order Online Button (header) --- */
.header-order {
  display: none;
  margin-left: 0.5rem;
}

/* --- Responsive additions --- */
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-embed iframe {
    height: 300px;
  }
}

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

  .header-order {
    display: inline-block;
  }
}

/* --- Print --- */
@media print {
  .site-header, .top-bar, .site-footer, .cta-banner, .nav-toggle, .quick-quote-float {
    display: none;
  }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}
