/* ==========================================================
   ELITE AUTO REPAIR & BODY SHOP — main.css
   ========================================================== */

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul { list-style: none; }

a { color: inherit; }

/* ── CSS VARIABLES ─────────────────────────────────────── */
:root {
  --green:     #7EC832;
  --yellow:    #F5C518;
  --dark:      #1A1A1A;
  --bg:        #FFFFFF;
  --bg-alt:    #F9F9F9;
  --text:      #1A1A1A;
  --muted:     #6B7280;
  --surface:   #F3F4F6;
  --whatsapp:  #25D366;
  --nav-h:     72px;
  --max-w:     1100px;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.6rem;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 48px;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-green {
  background: var(--green);
  color: #111;
  border-color: var(--green);
}
.btn-green:hover {
  background: #6bb029;
  border-color: #6bb029;
  color: #111;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: #fff;
}

/* ── NAV ────────────────────────────────────────────────── */
#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--green);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover {
  color: var(--green);
}

/* Services dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.65;
  transition: transform 0.2s;
}

.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  padding-top: 8px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-top: 2px solid var(--green);
  border-radius: 0 0 6px 6px;
  min-width: 215px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  /* 150ms delay on hide so cursor can travel into the dropdown */
  transition: opacity 0.18s 0.15s, transform 0.18s 0.15s, visibility 0.18s 0.15s;
  pointer-events: none;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  /* No delay when showing */
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}

.dropdown li a {
  display: block;
  padding: 0.7rem 1.25rem;
  color: #d4d4d4;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.dropdown li + li {
  border-top: 1px solid #2e2e2e;
}

.dropdown li:last-child a {
  border-radius: 0 0 6px 6px;
}

.dropdown li a:hover {
  background: #2a2a2a;
  color: var(--green);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-phone {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--green);
}

.nav-right .btn {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  min-height: 38px;
}

/* Hamburger button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.28s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ── MOBILE MENU ────────────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  right: 0;
  bottom: 0;
  left: 0;
  background: #1a1a1a;
  z-index: 999;
  overflow-y: auto;
  flex-direction: column;
  padding: 1.5rem 2rem 3rem;
}

#mobile-menu.open {
  display: flex;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links > li {
  border-bottom: 1px solid #2a2a2a;
}

.mobile-nav-links > li > a {
  display: block;
  padding: 0.95rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-nav-links > li > a:hover {
  color: var(--green);
}

.mobile-sub-links {
  padding: 0 0 0.85rem 1rem;
}

.mobile-sub-links a {
  display: block;
  padding: 0.45rem 0;
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-sub-links a:hover {
  color: var(--green);
}

.mobile-nav-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-ctas .btn {
  width: 100%;
}

/* ── SHARED SECTION LAYOUT ──────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

section {
  padding: 5rem 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}

.section-title .accent { color: var(--green); }

.section-sub {
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 560px;
  line-height: 1.65;
}

/* Dark-background section overrides */
.on-dark .section-title  { color: #fff; }
.on-dark .section-sub    { color: rgba(255, 255, 255, 0.7); }

/* ── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 4rem 2rem 3.5rem;
  border-bottom: 2px solid var(--green);
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.page-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 580px;
  margin-top: 0.85rem;
}

.page-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 600px) {
  .page-hero             { padding: 3rem 1.25rem 2.5rem; }
  .page-hero-actions .btn { width: 100%; }
}

/* ── FOOTER SHARED ──────────────────────────────────────── */
#footer {
  background: var(--dark);
  border-top: 2px solid #2e2e2e;
}

.footer-map-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.footer-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.footer-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-body { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .footer-body { grid-template-columns: 2fr 1.2fr 1.1fr 1.1fr; }
}

.footer-logo-img {
  height: 52px;
  width: auto;
  margin-bottom: 0.85rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-social-links a:hover { color: var(--green); }

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-list li,
.footer-list a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-list a:hover { color: #d4d4d4; }

.footer-col-title--spaced {
  margin-top: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 1.25rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: #555;
}

.footer-bottom a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #888; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-center      { display: none; }
  .nav-phone       { display: none; }
  .nav-right .btn  { display: none; }
  .nav-toggle      { display: flex; }

  /* Hamburger left · logo centered · phone icon right */
  #nav {
    justify-content: space-between;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    padding: 8px;
    transition: color 0.2s;
  }

  .nav-phone-icon:hover { color: var(--green); }
}

@media (max-width: 600px) {
  section  { padding: 3.5rem 1.25rem; }
  #nav     { padding: 0 1.25rem; }
  .footer-body { padding: 2.5rem 1.25rem 2rem; }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
#trust-bar {
  background: var(--dark);
  border-bottom: 1px solid #2e2e2e;
  padding: 0.9rem 2rem;
}

.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.trust-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 1.75rem;
}

.trust-sep {
  width: 1px;
  height: 14px;
  background: #3a3a3a;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .trust-item  { padding: 0 1rem; font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .trust-sep   { display: none; }
  .trust-item  { text-align: center; padding: 0.3rem 0.75rem; white-space: normal; }
}

/* ── SERVICES OVERVIEW ──────────────────────────────────── */
#services-overview {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}

/* Photo area — dark placeholder until real image is added.
   To activate: add style="background-image: url('...')" to .card-img */
.card-img {
  height: 220px;
  background: linear-gradient(150deg, #252b30 0%, #14191d 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

/* Gradient overlay — kept for photo legibility; invisible on placeholder */
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0, 0, 0, 0.52) 100%);
  pointer-events: none;
}

/* Per-card image hooks — add background-image here when photos are ready */
.card-img--quick      { background-image: url('../images/quick-services.jpg'); }
.card-img--mechanical { background-image: url('../images/mechanical.jpg'); }
.card-img--body       { background-image: url('../images/body-work.jpg'); }

/* Card body */
.card-body {
  padding: 1.5rem 1.6rem 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.card-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.card-desc {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.2s, color 0.2s;
}

.card-link:hover {
  gap: 0.65rem;
  color: #5ea020;
}

@media (max-width: 860px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── REVIEWS ────────────────────────────────────────────── */
#reviews {
  background: var(--bg);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-alt);
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.reviews-badge:hover {
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(126, 200, 50, 0.15);
}

.badge-stars {
  color: var(--yellow);
  font-size: 1.15rem;
  letter-spacing: 1px;
  line-height: 1;
}

.badge-info {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.badge-score {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.badge-count {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.review-card:hover {
  border-color: #d0d0d0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
}

.review-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 1.5px;
  line-height: 1;
}

.review-text {
  font-size: 0.925rem;
  color: var(--text);
  line-height: 1.72;
  flex: 1;
}

.review-text::before { content: '\201C'; }
.review-text::after  { content: '\201D'; }

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e4e4e4;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.reviews-cta {
  text-align: center;
  margin-top: 2.75rem;
}

.reviews-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.reviews-all-link:hover {
  gap: 0.7rem;
  color: #5ea020;
}

@media (max-width: 860px) {
  .reviews-header    { align-items: flex-start; }
  .reviews-grid      { grid-template-columns: 1fr; }
}


/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 90vh;
  background-image: url('../images/shop.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 2rem;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--green);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.hero-subtitle .dot {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0.4rem;
}

.hero-blurb {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  max-width: 460px;
  margin-top: 0.15rem;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.hero-ctas .btn {
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: 0.15rem;
  transition: opacity 0.2s;
}

.hero-rating:hover { opacity: 0.85; }

.hero-rating-stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}

.hero-rating-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* Right column — form panel */
.hero-right {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 2rem 2rem 1.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
  min-width: 0;
}

.hero-form-heading {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.3rem;
}

.hero-form-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Mobile: single column, left on top */
@media (max-width: 860px) {
  #hero {
    padding: 3.5rem 1.5rem 3.5rem;
    align-items: flex-start;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-blurb { max-width: 100%; }

  .hero-right { padding: 1.5rem 1.5rem 1.25rem; }

  /* Reduce form height on tablet — less dead space on stack */
  .hero-right iframe { height: 480px !important; }
}

@media (max-width: 600px) {
  #hero { padding: 2.5rem 1.25rem 2.5rem; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .hero-right { padding: 1.25rem 1rem 1rem; }
  .hero-right iframe { height: 440px !important; }
}

/* ── MOBILE HERO: stacked image + content (≤768px) ──────── */
/* Desktop defaults */
.hero-img-mobile   { display: none; }
.hero-content-wrap { width: 100%; }

/* Phone icon hidden above 960px — shown via the 960px breakpoint above */
@media (min-width: 961px) { .nav-phone-icon { display: none; } }

@media (max-width: 768px) {
  /* Strip background-image; replace with real <img> above a dark content block */
  #hero {
    background-image: none;
    padding: 0;
    min-height: auto;
    display: block;
  }

  #hero::before { display: none; }

  .hero-img-mobile {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center 60%;
  }

  .hero-content-wrap {
    background: var(--dark);
    padding: 2.5rem 1.25rem 3rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0;
  }

  .hero-blurb { max-width: 100%; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-right { padding: 1.25rem 1rem 1rem; }
  .hero-right iframe { height: 440px !important; }
}

/* Keep hero padding zeroed — prevent 600px block from re-adding it */
@media (max-width: 600px) {
  #hero { padding: 0; }
}
