@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --orange: #111111;
  --orange-dark: #000000;
  --red: #a61d22;
  --red-dark: #861519;
  --blue: #adc8d8;
  --blue-dark: #7aa8bc;
  --peach: #f09e78;
  --cream: #fdf8f2;
  --white: #ffffff;
  --grey-light: #f5f0ea;
  --grey: #8a8a8a;
  --text: #2c2c2c;
  --text-light: #555;
  --shadow: 0 4px 24px rgba(166,29,34,0.08);
  --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; font-weight: 400; color: var(--text); background: var(--cream); line-height: 1.7; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; color: var(--red); line-height: 1.25; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }

/* ── TOP BAR ── */
.topbar { background: var(--red); color: #fff; font-size: 0.85rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--orange); }
.topbar a:hover { color: #fff; }

/* ── HEADER ── */
header { background: var(--white); box-shadow: 0 2px 16px rgba(166,29,34,0.1); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 46px; height: 46px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.logo-text span:first-child { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--red); line-height: 1.1; }
.logo-text span:last-child { font-size: 0.75rem; color: var(--orange); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 4px; }
nav a { color: var(--text); font-weight: 500; font-size: 0.88rem; padding: 8px 12px; border-radius: var(--radius); transition: all 0.2s; }
nav a:hover, nav a.active { color: var(--red); background: var(--grey-light); }
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-toggle::after { content: '▾'; font-size: 0.7rem; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(166,29,34,0.15); min-width: 220px; padding: 8px 0; z-index: 999; border: 1px solid var(--grey-light); }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 18px; font-size: 0.85rem; border-radius: 0; color: var(--text); }
.dropdown-menu a:hover { background: var(--grey-light); color: var(--red); }
.dropdown-menu.locations-menu { min-width: 480px; display: none; flex-wrap: wrap; }
.dropdown:hover .dropdown-menu.locations-menu { display: flex; }
.dropdown-menu.locations-menu a { width: 50%; }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 9px 18px !important; border-radius: var(--radius) !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--red) !important; color: var(--white) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--red); margin: 5px 0; transition: all 0.3s; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, var(--red) 0%, #c42228 50%, #8b1518 100%); color: var(--white); padding: 80px 0 70px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero h1 { font-size: 3rem; font-weight: 900; color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; max-width: 500px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 1rem; transition: all 0.25s; cursor: pointer; border: 2px solid transparent; text-decoration: none; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-teal { background: var(--orange); color: var(--white); }
.btn-teal:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.hero-image-stack { position: relative; }
.hero-img-main { width: 100%; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); height: 380px; object-fit: cover; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--orange); color: var(--white); border-radius: 10px; padding: 14px 20px; font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow); }

/* ── TRUST BAR ── */
.trust-bar { background: #1a0a0b; color: var(--white); padding: 20px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.trust-item { font-size: 0.88rem; opacity: 0.85; }
.trust-item strong { display: block; font-size: 1.5rem; color: var(--orange); font-family: 'Playfair Display', serif; }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--red) 0%, #c42228 100%); color: var(--white); padding: 60px 0 50px; text-align: center; }
.page-hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; opacity: 0.88; max-width: 640px; margin: 0 auto; color: #fff; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; opacity: 0.75; margin-bottom: 14px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: var(--white); }

/* ── SECTIONS ── */
section { padding: 72px 0; }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-title { font-size: 2.1rem; margin-bottom: 16px; color: var(--red); }
.section-intro { color: var(--text-light); font-size: 1.05rem; max-width: 640px; margin-bottom: 40px; }

/* ── CONTENT GRID ── */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.content-grid.reverse { grid-template-columns: 1fr 2fr; }
.content-grid .img-col img { border-radius: 10px; box-shadow: var(--shadow); width: 100%; }

/* ── IMAGE GRIDS ── */
.img-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0; }
.img-grid-3 img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 220px; object-fit: cover; }
.img-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 36px 0; }
.img-grid-2 img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: 260px; object-fit: cover; }
.img-caption { text-align: center; font-size: 0.8rem; color: var(--grey); margin-top: 8px; font-style: italic; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--white); border-radius: 10px; padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--orange); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 36px rgba(166,29,34,0.13); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--red); }
.card p { font-size: 0.92rem; color: var(--text-light); }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 28px; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start; background: var(--white); border-radius: 10px; padding: 24px; box-shadow: var(--shadow); }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--red); color: var(--orange); font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-body h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--red); }
.step-body p { font-size: 0.92rem; color: var(--text-light); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card { background: var(--white); border-radius: 10px; padding: 30px 22px; text-align: center; box-shadow: var(--shadow); border: 2px solid transparent; transition: all 0.2s; position: relative; }
.price-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.price-card.featured { border-color: var(--red); }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--red); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.price-label { font-size: 0.82rem; color: var(--grey); font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--red); font-weight: 700; margin-bottom: 4px; }
.price-amount span { font-size: 1rem; }
.price-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.price-card .btn { width: 100%; justify-content: center; }

/* ── CALLOUT ── */
.callout { background: linear-gradient(135deg, var(--red), #c42228); color: var(--white); border-radius: 12px; padding: 40px 48px; text-align: center; margin: 48px 0; }
.callout h2 { color: var(--white); margin-bottom: 14px; }
.callout p { opacity: 0.88; max-width: 560px; margin: 0 auto 28px; }
.callout .btn { margin: 0 8px; }

/* Section backgrounds */
.bg-teal-light { background: rgba(173,200,216,0.15); }
.bg-navy { background: var(--red); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

/* ── FAQ ── */
.faq, .faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 24px; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--red); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--orange); }
.faq-q.open::after { content: '−'; }
.faq-a { display: none; padding: 0 24px 20px; color: var(--text-light); font-size: 0.93rem; }
.faq-a.open { display: block; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #ddd; border-radius: var(--radius); font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(0,0,0,0.12); }
.form-group textarea { height: 140px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-block { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border-radius: 10px; padding: 20px; box-shadow: var(--shadow); }
.info-icon { width: 44px; height: 44px; background: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.info-block h4 { font-size: 0.88rem; color: var(--grey); margin-bottom: 4px; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }
.info-block p, .info-block a { font-size: 1rem; color: var(--text); font-weight: 500; }

/* ── HELP LINKS ── */
.help-links { display: flex; flex-direction: column; gap: 14px; }
.help-link { display: flex; align-items: center; justify-content: space-between; background: var(--white); border-radius: 10px; padding: 18px 22px; box-shadow: var(--shadow); text-decoration: none; color: var(--text); border-left: 4px solid var(--orange); transition: all 0.2s; }
.help-link:hover { transform: translateX(4px); border-left-color: var(--red); color: var(--text); }
.help-link-name { font-weight: 600; }
.help-link-desc { font-size: 0.85rem; color: var(--grey); margin-top: 2px; }
.help-link-arrow { font-size: 1.2rem; color: var(--orange); }

/* ── LOCATION MAP ── */
.location-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ── SITEMAP ── */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap-section h3 { font-size: 1rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); color: var(--red); }
.sitemap-section ul { list-style: none; }
.sitemap-section ul li { margin-bottom: 8px; }
.sitemap-section ul li a { font-size: 0.9rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.sitemap-section ul li a::before { content: '→'; color: var(--orange); }
.sitemap-section ul li a:hover { color: var(--red); }

/* ── FOOTER ── */
footer { background: #1a0a0b; color: rgba(255,255,255,0.72); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; margin: 14px 0 20px; line-height: 1.65; }
.footer-col h4 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-tel { color: var(--orange); font-size: 1.1rem; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; } .mt-md { margin-top: 32px; } .mt-lg { margin-top: 52px; }
.mb-sm { margin-bottom: 16px; } .mb-md { margin-bottom: 32px; } .mb-lg { margin-bottom: 52px; }
.text-teal { color: var(--orange); } .text-gold { color: var(--orange); } .text-navy { color: var(--red); }
ul.check-list { list-style: none; }
ul.check-list li { padding: 5px 0 5px 28px; position: relative; font-size: 0.95rem; color: var(--text-light); }
ul.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.highlight-box { background: rgba(242,150,33,0.08); border-left: 4px solid var(--orange); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 28px 0; }
.highlight-box p { font-size: 0.95rem; color: var(--text); }
.warning-box { background: rgba(166,29,34,0.07); border-left: 4px solid var(--red); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 28px 0; }
.warning-box p { font-size: 0.95rem; color: var(--text); }

/* ── BREADCRUMB STRIP ── */
.breadcrumb-strip { background: var(--grey-light); padding: 10px 0; border-bottom: 1px solid rgba(166,29,34,0.08); }
.breadcrumb-strip nav { font-size: 0.85rem; color: var(--grey); }
.breadcrumb-strip a { color: var(--orange); }
.breadcrumb-strip span { margin: 0 6px; }

/* ── ESTIMATE TOOL ── */
.estimate-tool { background: var(--white); border-radius: 16px; box-shadow: 0 8px 48px rgba(166,29,34,0.12); overflow: hidden; border: 1px solid rgba(242,150,33,0.15); }
.estimate-header { background: linear-gradient(135deg, var(--red), #c42228); color: #fff; padding: 32px 36px; }
.estimate-header h2 { color: #fff; font-size: 1.7rem; margin-bottom: 6px; }
.estimate-header p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.estimate-body { padding: 36px; }
.estimate-step { display: none; }
.estimate-step.active { display: block; }
.step-indicator { display: flex; gap: 6px; margin-bottom: 28px; align-items: flex-start; }
.step-dot-wrap { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.step-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--grey-light); color: var(--grey); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; transition: all 0.3s; }
.step-dot.done { background: var(--orange); color: #fff; }
.step-dot.active-dot { background: var(--red); color: #fff; transform: scale(1.15); }
.step-connector { flex: 1; height: 2px; background: var(--grey-light); margin-top: 15px; transition: background 0.3s; }
.step-connector.done { background: var(--orange); }
.step-dot-label { font-size: 0.68rem; color: var(--grey); text-align: center; max-width: 60px; line-height: 1.2; }
.estimate-q { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--red); margin-bottom: 22px; font-weight: 700; }
.option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.option-btn { background: var(--grey-light); border: 2px solid transparent; border-radius: 10px; padding: 18px 12px; text-align: center; cursor: pointer; transition: all 0.2s; font-family: 'Source Sans 3', sans-serif; font-size: 0.88rem; color: var(--text); }
.option-btn:hover { border-color: var(--orange); background: rgba(242,150,33,0.07); }
.option-btn.selected { border-color: var(--red); background: rgba(166,29,34,0.06); color: var(--red); font-weight: 600; }
.option-btn .opt-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.option-btn .opt-label { display: block; font-weight: 600; margin-bottom: 3px; }
.option-btn .opt-sub { display: block; font-size: 0.77rem; color: var(--grey); }
.estimate-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; }
.estimate-result { background: linear-gradient(135deg, rgba(242,150,33,0.08), rgba(166,29,34,0.05)); border-radius: 12px; padding: 32px; text-align: center; border: 2px solid rgba(242,150,33,0.3); margin-bottom: 24px; }
.estimate-price-range { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: var(--red); font-weight: 900; margin: 8px 0; }
.estimate-price-label { font-size: 0.85rem; color: var(--grey); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.estimate-includes { text-align: left; margin: 20px 0; list-style: none; }
.estimate-includes li { padding: 6px 0 6px 26px; position: relative; font-size: 0.92rem; color: var(--text-light); }
.estimate-includes li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.estimate-disclaimer { font-size: 0.8rem; color: var(--grey); text-align: center; margin-top: 12px; }
.progress-bar-track { background: var(--grey-light); border-radius: 4px; height: 6px; margin-bottom: 16px; }
.progress-bar-fill { background: linear-gradient(90deg, var(--orange), var(--red)); height: 6px; border-radius: 4px; transition: width 0.4s ease; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .dropdown-menu.locations-menu { min-width: 360px; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .hero-image-stack { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .content-grid, .content-grid.reverse { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .img-grid-3 { grid-template-columns: 1fr; }
  .img-grid-2 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: repeat(2, 1fr); }
  .estimate-body { padding: 20px; }
  .estimate-header { padding: 24px 20px; }
  nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); padding: 80px 24px 24px; overflow-y: auto; z-index: 999; align-items: flex-start; gap: 4px; }
  nav.open { display: flex; }
  nav a { font-size: 1.05rem; width: 100%; padding: 14px 16px; }
  .dropdown-menu { position: static; display: flex !important; flex-direction: column; box-shadow: none; border: none; background: var(--grey-light); border-radius: var(--radius); margin-top: 4px; }
  .dropdown-menu.locations-menu { min-width: unset; }
  .dropdown-menu.locations-menu a { width: 100%; }
  .hamburger { display: block; z-index: 1001; position: relative; }
  .topbar .container { flex-direction: column; align-items: flex-start; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 48px 0; }
  .page-hero h1 { font-size: 1.9rem; }
  .callout { padding: 30px 24px; }
  .callout .btn { display: block; margin: 8px 0; }
  .hero-badge { display: none; }
}
