/*
Theme Name: MSH Brick Paver
Theme URI: https://mshbrickpaver.com
Author: MSH Brick Paver Inc.
Description: Custom theme for MSH Brick Paver Inc. - Bradenton & Sarasota Florida
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: msh-brick-paver
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --cream: #f7f4ef;
  --light: #edeae3;
  --white: #ffffff;
  --border: #ddd8ce;
  --gold: #9a7a1e;
  --gold-light: #b8972a;
  --gold-dim: rgba(154,122,30,0.08);
  --dark: #1c1a17;
  --charcoal: #3d3a34;
  --muted: #6b6560;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--charcoal); overflow-x: hidden; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; line-height: 1.1; color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
h3 { font-size: 1.3rem; font-weight: 400; }
h2 em, h1 em { font-style: italic; color: var(--gold-light); }
p { line-height: 1.8; color: var(--charcoal); }

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content:''; display:block; width:26px; height:1px; background:var(--gold); }
.section-intro { font-size: 0.95rem; font-weight: 300; color: var(--charcoal); line-height: 1.85; max-width: 580px; margin-bottom: 52px; }
.gold-divider { width: 48px; height: 2px; background: var(--gold); margin: 0 0 28px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px) { .container { padding: 0 20px; } }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: #fff;
  padding: 15px 34px; font-family: var(--sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  display: inline-block; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: #fff; }
.btn-outline {
  background: transparent; color: var(--dark);
  padding: 15px 34px; font-family: var(--sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  display: inline-block; border: 1px solid rgba(28,26,23,0.3);
  transition: border-color 0.2s, color 0.2s; cursor: pointer; text-decoration: none;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white {
  background: #fff; color: var(--dark);
  padding: 15px 34px; font-family: var(--sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  display: inline-block; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; text-decoration: none;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ── NAVIGATION ── */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(247,244,239,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  height: 72px; display: flex; align-items: center;
}
#masthead .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.site-branding a { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; letter-spacing: 0.1em; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.site-branding a span { color: var(--gold); font-size: 1.45rem; font-weight: 700; }
.main-navigation ul { display: flex; align-items: center; gap: 4px; }
.main-navigation ul li a { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 8px 12px; transition: color 0.2s; display: block; }
.main-navigation ul li a:hover { color: var(--gold-light); }
.main-navigation ul li.menu-cta a { background: var(--gold); color: #fff !important; font-weight: 700; }
.main-navigation ul li.menu-cta a:hover { background: var(--gold-light); }

/* Dropdown */
.main-navigation ul li { position: relative; }
.main-navigation ul li ul { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); min-width: 220px; padding: 8px 0; z-index: 200; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.main-navigation ul li:hover > ul { display: block; }
.main-navigation ul li ul li a { padding: 10px 20px; font-size: 0.7rem; color: var(--muted); white-space: nowrap; }
.main-navigation ul li ul li a:hover { color: var(--gold-light); background: var(--gold-dim); }

/* Mobile nav */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: 0.3s; }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; overflow-y: auto; padding: 24px; border-top: 1px solid var(--border); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta { color: var(--gold) !important; margin-top: 16px; font-weight: 700; }

/* ── PHONE STRIP ── */
.phone-strip { background: var(--dark); padding: 13px 40px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.phone-strip p { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.phone-strip a { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--gold-light); text-decoration: none; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gold); display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; }
.trust-item { padding: 16px 20px; display: flex; align-items: center; gap: 10px; justify-content: center; }
.trust-item .ti { font-size: 1rem; }
.trust-item p { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; line-height: 1.4; }
.trust-item p strong { display: block; font-size: 0.82rem; }
.trust-div { width: 1px; height: 34px; background: rgba(255,255,255,0.3); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 40px 80px; text-align: center; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.35); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(20,18,14,0.1) 0%, rgba(20,18,14,0.65) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 880px; }
.hero-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 24px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 36px; height: 1px; background: var(--gold-light); }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero h1 em { color: var(--gold-light); }
.hero p { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 40px; line-height: 1.85; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero { min-height: 50vh; display: flex; align-items: flex-end; padding: 144px 0 56px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.28); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,18,14,0.82) 0%, rgba(20,18,14,0.15) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.8); line-height: 1.8; }

/* ── STATS ── */
.stats-section { background: var(--light); padding: 60px 0; }
.stats-row { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.stat-box { background: var(--white); padding: 34px 20px; text-align: center; border-bottom: 2px solid transparent; transition: border-color 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.stat-box:hover { border-color: var(--gold); }
.stat-num { font-family: var(--serif); font-size: 2.7rem; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ── PROJECT GRID ── */
.projects-section { padding: 88px 0; }
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.proj { position: relative; overflow: hidden; cursor: pointer; }
.proj img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; filter: brightness(0.82); }
.proj:hover img { transform: scale(1.06); filter: brightness(0.6); }
.proj.span2 { grid-column: span 2; }
.proj.h1 { aspect-ratio: 4/3; }
.proj.h2 { aspect-ratio: 16/9; }
.proj-lbl { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 20px 18px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.proj:hover .proj-lbl { opacity: 1; }
.proj-lbl h3 { color: #fff; margin-bottom: 2px; }
.proj-lbl p { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); }

/* ── SERVICE CARDS ── */
.services-section { background: var(--light); padding: 88px 0; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 2px; }
.svc-card { overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; display: block; }
.svc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; filter: brightness(0.65); }
.svc-card:hover img { transform: scale(1.05); filter: brightness(0.42); }
.svc-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 22px 20px; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, transparent 100%); pointer-events: none; }
.svc-label h3 { color: #fff; margin-bottom: 2px; }
.svc-label p { font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.svc-arrow { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: var(--gold); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: #fff; font-size: 0.95rem; pointer-events: none; }
.svc-card:hover .svc-arrow { opacity: 1; }

/* ── FEATURES ── */
.features-section { padding: 88px 0; }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px,1fr)); gap: 18px; }
.feat-item { padding: 28px 24px; border: 1px solid var(--border); transition: border-color 0.3s, background 0.3s; }
.feat-item:hover { border-color: var(--gold); background: var(--gold-dim); }
.feat-icon { font-size: 1.55rem; margin-bottom: 15px; display: block; }
.feat-item h3 { color: var(--dark); margin-bottom: 9px; }
.feat-item p { font-size: 0.83rem; line-height: 1.8; color: var(--muted); }

/* ── PROCESS ── */
.process-section { background: var(--light); padding: 88px 0; }
.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; border: 1px solid var(--border); }
.process-step { padding: 32px 24px; border-right: 1px solid var(--border); background: var(--white); }
.process-step:last-child { border-right: none; }
.step-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 12px; }
.process-step h3 { color: var(--dark); margin-bottom: 8px; font-size: 1.08rem; }
.process-step p { font-size: 0.79rem; line-height: 1.7; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 88px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(295px,1fr)); gap: 18px; }
.testi-card { background: var(--white); padding: 28px; border-left: 3px solid var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 13px; letter-spacing: 2px; }
.testi-card blockquote { font-family: var(--serif); font-style: italic; font-size: 1.05rem; line-height: 1.7; color: var(--dark); margin-bottom: 15px; }
.testi-card cite { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); font-style: normal; }

/* ── CTA BAND ── */
.cta-band { background: var(--dark); padding: 80px 0; text-align: center; }
.cta-band .section-label { justify-content: center; color: var(--gold-light); }
.cta-band .section-label::before { background: var(--gold-light); }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band h2 em { color: var(--gold-light); }
.cta-band p { color: rgba(255,255,255,0.6); margin-bottom: 32px; font-size: 0.93rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── WARRANTY BAND ── */
.warranty-band { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 26px 48px; display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.wb-item { display: flex; align-items: center; gap: 13px; }
.wb-icon { font-size: 1.7rem; }
.wb-item h4 { font-family: var(--serif); font-size: 1.08rem; font-weight: 400; color: var(--dark); }
.wb-item p { font-size: 0.73rem; color: var(--muted); }

/* ── SERVICE DETAIL ── */
.service-detail-section { padding: 88px 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: start; }
.service-detail-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.9); }
.service-list { list-style: none; margin-top: 18px; }
.service-list li { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.87rem; color: var(--charcoal); }
.service-list li::before { content: '◆'; color: var(--gold); font-size: 0.43rem; margin-top: 6px; flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-section { background: var(--light); padding: 88px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; filter: brightness(0.85); }
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }

/* ── CONTACT FORM ── */
.contact-section { padding: 88px 0; }
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 68px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1/-1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea { background: var(--white); border: 1px solid var(--border); color: var(--dark); padding: 13px 15px; font-family: var(--sans); font-size: 0.87rem; outline: none; width: 100%; transition: border-color 0.2s; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 26px; }
.ci-icon { font-size: 1.25rem; line-height: 1; margin-top: 2px; }
.ci-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-value { font-family: var(--serif); font-size: 1.25rem; color: var(--dark); }
.ci-sub { font-size: 0.76rem; color: var(--muted); line-height: 1.6; }
.map-embed { background: var(--light); border: 1px solid var(--border); height: 220px; display: flex; align-items: center; justify-content: center; margin-top: 26px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: brightness(0.88); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); width: 108px; height: 108px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.about-badge .big { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.about-badge .small { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 20px; }
.blog-card { background: var(--white); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; filter: brightness(0.88); transition: filter 0.3s; }
.blog-card:hover img { filter: brightness(1); }
.blog-card-body { padding: 24px; }
.blog-meta { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-card h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.2rem; line-height: 1.3; }
.blog-card p { font-size: 0.82rem; line-height: 1.7; color: var(--muted); margin-bottom: 14px; }
.blog-read { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.blog-read:hover { color: var(--gold-light); }

/* ── FOOTER ── */
#colophon { background: var(--dark); border-top: 1px solid #333; padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .logo-text { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: #f5f3ef; }
.footer-brand .logo-sub { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--gold-light); margin-bottom: 18px; }
.footer-brand p { font-size: 0.82rem; line-height: 1.8; color: #8a8680; max-width: 260px; }
.footer-col h4 { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: #8a8680; text-decoration: none; font-size: 0.82rem; margin-bottom: 9px; line-height: 1.6; transition: color 0.2s; }
.footer-col a:hover { color: #f5f3ef; }
.footer-col .gold-link { color: var(--gold-light) !important; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.7rem; color: #8a8680; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.fade-up { animation: fadeUp 0.75s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── WORDPRESS SPECIFIC ── */
.wp-block-image { margin: 0; }
.aligncenter { text-align: center; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* ── RESPONSIVE ── */
@media(max-width:1000px) {
  .main-navigation { display: none; }
  .menu-toggle { display: flex; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-div { display: none; }
  .stats-row { grid-template-columns: repeat(3,1fr); }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .proj.span2 { grid-column: span 1; }
  .proj.h2 { aspect-ratio: 4/3; }
  .service-detail-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .warranty-band { gap: 28px; padding: 22px 20px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media(max-width:540px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .proj-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .hero { padding: 100px 20px 60px; }
  .page-hero { padding: 120px 0 44px; }
}
