/* ============================================================
   RR Towing & Recovery — Main Stylesheet
   Black / Red / Silver · Montserrat + Open Sans
   ============================================================ */

:root {
  --black: #0a0a0a;
  --black-2: #141414;
  --black-3: #1d1d1f;
  --red: #d40000;
  --red-dark: #a80000;
  --red-bright: #ff1a1a;
  --silver: #c7c9cc;
  --silver-light: #e8e9eb;
  --silver-dark: #8a8d91;
  --white: #ffffff;
  --gray-bg: #f4f5f6;
  --gray-border: #e0e1e3;
  --font-head: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.35);
  --container: 1200px;
  --transition: 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #2b2b2e;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--black);
  color: var(--silver);
  font-size: 13.5px;
  border-bottom: 3px solid var(--red);
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 40px; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: var(--silver); }
.topbar a:hover { color: var(--white); }
.topbar .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar .topbar-right .phone { color: var(--white); font-weight: 700; font-size: 15px; }
.topbar .topbar-right .phone i { color: var(--red-bright); margin-right: 6px; }

/* ============ HEADER / NAV ============ */
.site-header {
  background: var(--black);
  position: sticky; top: 0; z-index: 1001;  /* above .nav-overlay (1000) so hamburger stays clickable */
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  border-bottom: 1px solid #232326;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 20px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 52px; width: auto; }

.main-nav > ul { display: flex; list-style: none; gap: 6px; align-items: center; }
.main-nav a {
  display: block; padding: 10px 14px; font-family: var(--font-head);
  font-weight: 600; font-size: 14.5px; color: var(--silver-light);
  border-radius: 6px; text-transform: uppercase; letter-spacing: 0.4px;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.main-nav .nav-cta {
  background: var(--red); color: var(--white) !important; padding: 12px 20px;
  border-radius: 6px;
}
.main-nav .nav-cta:hover { background: var(--red-dark); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 300px;
  max-height: min(70vh, 620px); overflow-y: auto;
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: 8px; box-shadow: var(--shadow-dark);
  padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); z-index: 999;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown ul { display: block; list-style: none; }
.dropdown li { margin: 0; }
.dropdown a {
  text-transform: none; font-size: 13.5px; padding: 8px 18px; border-radius: 0;
  color: var(--black); white-space: nowrap;
}
.dropdown a:hover { background: #f7f7f7; color: var(--red); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px 8px; z-index: 1002; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--silver-light); margin: 5px 0; border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ FLOATING CALL BUTTON ============ */
.call-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 1500;
  display: flex; align-items: center; gap: 12px;
  background: var(--red); color: var(--white) !important;
  font-family: var(--font-head); font-weight: 700;
  font-size: 16px; letter-spacing: 0.4px;
  padding: 16px 26px; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(212,0,0,0.45);
  text-decoration: none; animation: callPulse 2.2s infinite;
  transition: transform 0.25s ease, background 0.25s ease;
}
.call-float:hover { background: var(--red-dark); transform: translateY(-3px); color: var(--white); }
.call-float i { font-size: 20px; }
.call-float .float-phone { display: flex; flex-direction: column; line-height: 1.15; }
.call-float .float-phone small { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; }
@keyframes callPulse {
  0% { box-shadow: 0 8px 28px rgba(212,0,0,0.45); }
  50% { box-shadow: 0 8px 34px rgba(255,26,26,0.75); }
  100% { box-shadow: 0 8px 28px rgba(212,0,0,0.45); }
}

/* ============ HERO ============ */
.hero {
  position: relative; color: var(--white);
  background: var(--black);
  padding: 110px 0 120px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.45; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.92) 30%, rgba(10,10,10,0.45) 70%, rgba(10,10,10,0.2));
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block; font-family: var(--font-head); font-size: 13px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 16px;
}
.hero h1 {
  color: var(--white); font-size: clamp(34px, 5vw, 58px);
  font-weight: 800; max-width: 750px; margin-bottom: 20px;
}
.hero h1 span { color: var(--red-bright); }
.hero p { font-size: 19px; max-width: 640px; color: var(--silver-light); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-badges .badge { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--silver-light); }
.hero-badges .badge i { color: var(--red-bright); font-size: 20px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 15px; padding: 15px 32px; border-radius: 6px;
  border: none; cursor: pointer; text-align: center;
  transition: all var(--transition); letter-spacing: 0.4px; text-transform: uppercase;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--silver); }
.btn-outline:hover { border-color: var(--red-bright); color: var(--red-bright); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-silver { background: var(--silver); color: var(--black); }
.btn-silver:hover { background: var(--silver-light); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* ============ SECTIONS ============ */
.section { padding: 90px 0; }
.section-alt { background: var(--gray-bg); }
.section-dark { background: var(--black); color: var(--silver-light); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head .kicker {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.section-head p { color: #5a5a5e; font-size: 17px; }
.section-dark .section-head p { color: var(--silver); }

/* ============ SERVICE CARDS ============ */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--silver-dark); }
.service-card .card-img { height: 200px; overflow: hidden; position: relative; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .card-img img { transform: scale(1.05); }
.service-card .card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card h3 a { color: var(--black); }
.service-card h3 a:hover { color: var(--red); }
.service-card p { font-size: 14.5px; color: #5a5a5e; flex: 1; }
.service-card .card-link { margin-top: 16px; font-family: var(--font-head); font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: 1px; }

/* ============ LOCATION LIST ============ */
.location-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.location-list a {
  display: block; padding: 16px 18px; background: var(--white);
  border: 1px solid var(--gray-border); border-radius: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 14.5px;
  color: var(--black); transition: all var(--transition);
}
.location-list a:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-2px); }

/* ============ FEATURES ============ */
.feature-box {
  text-align: center; padding: 36px 24px; background: var(--white);
  border: 1px solid var(--gray-border); border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-box:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-box .icon {
  width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--black); color: var(--red-bright); font-size: 28px;
  display: flex; align-items: center; justify-content: center;
}
.feature-box h3 { font-size: 17px; margin-bottom: 10px; }
.feature-box p { font-size: 14.5px; color: #5a5a5e; }

/* ============ STEPS ============ */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { text-align: center; position: relative; padding: 0 12px; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 44px;
  color: transparent; -webkit-text-stroke: 2px var(--red);
  display: block; margin-bottom: 10px;
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: #5a5a5e; }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(120deg, var(--black) 0%, var(--black-2) 55%, #2a0a0a 100%);
  color: var(--white); padding: 80px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,0,0,0.35) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3vw, 36px); max-width: 560px; margin-bottom: 10px; }
.cta-band p { color: var(--silver); max-width: 560px; }
.cta-band .phone-big { font-family: var(--font-head); font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--white); }
.cta-band .phone-big span { color: var(--red-bright); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--black); color: var(--white); padding: 70px 0 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,10,10,0.95) 40%, rgba(212,0,0,0.25));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 46px); margin-bottom: 14px; }
.page-hero p { color: var(--silver); max-width: 720px; font-size: 17px; }

/* Breadcrumbs */
.breadcrumbs { font-size: 13.5px; color: var(--silver); margin-bottom: 18px; }
.breadcrumbs a { color: var(--silver); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs span.sep { margin: 0 8px; color: var(--silver-dark); }
.breadcrumbs .current { color: var(--red-bright); }

/* ============ CONTENT ============ */
.content-block { max-width: 860px; }
.content-block h2 { font-size: 27px; margin: 44px 0 16px; }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { font-size: 21px; margin: 30px 0 12px; }
.content-block p { margin-bottom: 18px; }
.content-block ul, .content-block ol { margin: 0 0 20px 24px; }
.content-block li { margin-bottom: 8px; }
.content-block ul li::marker { color: var(--red); }

/* Sidebar layout */
.with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

.sidebar-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 24px;
}
.sidebar-card h3 {
  font-size: 17px; text-transform: uppercase; letter-spacing: 1px;
  padding-bottom: 12px; margin-bottom: 14px; border-bottom: 2px solid var(--red);
}
.sidebar-card ul { list-style: none; }
.sidebar-card li { margin-bottom: 4px; }
.sidebar-card li a { display: block; padding: 8px 10px; border-radius: 6px; color: #3a3a3e; font-size: 14.5px; }
.sidebar-card li a:hover { background: #f7f7f7; color: var(--red); }
.sidebar-cta { background: var(--black); color: var(--white); border: none; text-align: center; }
.sidebar-cta h3 { color: var(--white); border-color: var(--red); }
.sidebar-cta .big-phone { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--red-bright); display: block; margin: 10px 0; }
.sidebar-cta p { color: var(--silver); font-size: 14px; margin-bottom: 16px; }

/* ============ FAQ ============ */
.faq-item {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: 8px; margin-bottom: 14px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-family: var(--font-head);
  font-weight: 600; font-size: 16.5px; color: var(--black);
  list-style: none; position: relative; padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--red);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item[open] summary { border-bottom: 1px solid var(--gray-border); }
.faq-item .faq-body { padding: 18px 24px; font-size: 15.5px; color: #4a4a4e; }

/* ============ CONTACT FORM ============ */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.form-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13.5px; margin-bottom: 7px; color: var(--black); text-transform: uppercase; letter-spacing: 0.5px; }
.form-group label .req { color: var(--red); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--gray-border);
  border-radius: 6px; font-family: var(--font-body); font-size: 15px;
  background: #fcfcfc; transition: all var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(212,0,0,0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-status { display: none; padding: 14px 18px; border-radius: 6px; margin-bottom: 18px; font-size: 14.5px; font-weight: 600; }
.form-status.success { display: block; background: #e8f7ee; color: #1a7f3d; border: 1px solid #bfe8cf; }
.form-status.error { display: block; background: #fdeaea; color: #b00000; border: 1px solid #f5c2c2; }

.contact-info-card { background: var(--black); color: var(--silver-light); border-radius: var(--radius); padding: 36px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; font-size: 17px; }
.contact-info-card .info-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-info-card .info-item i { color: var(--red-bright); font-size: 20px; margin-top: 2px; }
.contact-info-card .info-item strong { display: block; color: var(--white); font-family: var(--font-head); margin-bottom: 2px; }
.contact-info-card .info-item a { color: var(--silver-light); }
.contact-info-card .info-item a:hover { color: var(--red-bright); }
.hours-table { width: 100%; font-size: 14px; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid #2a2a2c; }
.hours-table td:last-child { text-align: right; color: var(--silver); }

/* ============ FOOTER ============ */
.site-footer { background: var(--black); color: var(--silver); padding: 70px 0 0; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 48px; }
.site-footer h4 {
  color: var(--white); font-size: 15.5px; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 20px;
}
.site-footer .footer-about .logo { margin-bottom: 16px; }
.site-footer .footer-about .logo img { height: 46px; }
.site-footer .footer-about p { margin-bottom: 16px; color: #9a9da1; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul a { color: #9a9da1; }
.site-footer ul a:hover { color: var(--red-bright); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; color: #9a9da1; }
.footer-contact li i { color: var(--red-bright); margin-top: 4px; }
.footer-contact li a { color: #9a9da1; }
.footer-contact li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #232326; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #7c7f83;
}
.footer-bottom a { color: #9a9da1; }
.footer-bottom a:hover { color: var(--red-bright); }
.footer-bottom .legal-links { display: flex; gap: 18px; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius); padding: 30px;
}
.testimonial-card .stars { color: #f5a623; font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; font-style: italic; color: #4a4a4e; margin-bottom: 16px; }
.testimonial-card .who { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--black); }
.testimonial-card .where { font-size: 13px; color: var(--silver-dark); }

/* ============ PAGE SPECIFIC ============ */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-split img { border-radius: var(--radius); box-shadow: var(--shadow-dark); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.numbers-band { background: var(--red); color: var(--white); padding: 44px 0; }
.numbers-band .grid { grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.numbers-band .num { font-family: var(--font-head); font-size: 42px; font-weight: 800; }
.numbers-band .label { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.9; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .location-list { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
    background: var(--white); box-shadow: var(--shadow-dark);
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1); padding: 90px 20px 30px; overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { padding: 14px; font-size: 15px; color: var(--black); }
  .main-nav a:hover { background: #f7f7f7; color: var(--red); }
  .dropdown { position: static; box-shadow: none; border: none; opacity: 1; visibility: visible; transform: none; padding: 0 0 0 16px; min-width: 0; max-height: none; overflow-y: visible; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000; display: none; backdrop-filter: blur(2px); }
  .nav-overlay.show { display: block; }
  .grid-3, .grid-2, .hero-split, .contact-grid, .with-sidebar { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 90px; }
  .form-row { grid-template-columns: 1fr; }
  .call-float { bottom: 16px; right: 16px; padding: 14px 20px; font-size: 15px; }
}

@media (max-width: 480px) {
  .call-float { left: 16px; right: 16px; justify-content: center; border-radius: 12px; }
  .call-float .float-phone { flex-direction: row; align-items: baseline; gap: 8px; }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .location-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .numbers-band .grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .topbar-right .email { display: none; }
  .hero h1 { font-size: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Print */
@media print {
  .topbar, .site-header, .site-footer, .cta-band, .sidebar-card, .btn { display: none !important; }
}
