/* ============================================================
   City Garage — Auckland CBD Workshop
   Mobile-first stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@600;700;800;900&display=swap');

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

:root {
  /* Brand — from logo and live crawl */
  --green: #2BAF3D;
  --green-dark: #1E8A2E;
  --green-light: #E8F5EA;
  --navy: #1A2332;
  --navy-light: #243040;
  --red: #C62828;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F7F5;
  --gray-100: #F0F0ED;
  --gray-200: #E0E0DC;
  --gray-300: #CCCCCC;
  --gray-500: #777777;
  --gray-700: #444444;
  --charcoal: #2D2D2D;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Sizing */
  --container: 1200px;
  --header-height: 72px;
  --radius: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

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

h1 { font-size: 2rem; letter-spacing: -0.02em; }
h2 { font-size: 1.625rem; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

.section { padding: 56px 0; }
.section--gray { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--green { background: var(--green); color: var(--white); }
.section--green h2, .section--green h3 { color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--gray-500);
  margin-top: 12px;
  font-size: 1rem;
}

.section--dark .section-header p { color: rgba(255,255,255,0.7); }

.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.section--dark .label { color: var(--green); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  min-height: 48px;
  text-align: center;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}
.btn--primary:hover { background: var(--green-dark); }

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

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover { background: var(--gray-100); }

.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { background: var(--navy-light); }

.btn--phone {
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  padding: 14px 24px;
}
.btn--phone:hover { background: var(--green-dark); }

.btn--phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-height);
  transition: box-shadow 0.2s;
}

.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.header-logo img {
  height: 44px;
  width: auto;
}

/* Desktop nav — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  background: var(--green-light);
}

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

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.nav-dropdown-trigger:hover { color: var(--green); background: var(--green-light); }

.nav-dropdown-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9375rem;
  border-radius: var(--radius);
}

/* Header phone button — hidden on mobile (we show icon instead) */
.header-phone-btn {
  display: none;
}

/* Mobile phone icon */
.header-phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
}

.header-phone-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--charcoal);
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--green); }

.mobile-menu .sub-link {
  padding-left: 20px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.mobile-menu-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 50, 0.75) 0%,
    rgba(26, 35, 50, 0.65) 50%,
    rgba(26, 35, 50, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 40px 0 60px;
  width: 100%;
}

.hero-content .label { color: var(--green); }

.hero h1 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 560px;
}

.hero p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero .btn-group { margin-top: 8px; }

/* Page hero (shorter, for inner pages) */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 48px) 0 48px;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 50, 0.8) 0%,
    rgba(26, 35, 50, 0.7) 100%
  );
}

.page-hero .hero-content { padding: 0; }

.page-hero h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 520px;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(43, 175, 61, 0.1);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green);
}

.service-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--green);
  margin-top: 16px;
}

.service-card .card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.service-card:hover .card-link svg { transform: translateX(4px); }

/* --- Feature Section (Why City Garage) --- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--dark .feature-icon { background: rgba(43,175,61,0.2); }

.feature-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.section--dark .feature-icon svg { color: var(--green); }

.feature-text h3 {
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.55;
}

.section--dark .feature-text p { color: rgba(255,255,255,0.65); }

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.review-stars svg {
  width: 18px;
  height: 18px;
  color: #F5A623;
}

.review-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 16px;
  font-style: normal;
}

.review-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.review-source {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Google rating summary */
.google-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  justify-content: center;
}

.google-rating-score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}

.google-rating-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* --- Trust Badges --- */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0;
}

.trust-badge img {
  height: 56px;
  width: auto;
  opacity: 0.85;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 56px 0;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 12px;
}

.cta-banner p {
  margin-bottom: 24px;
  font-size: 1.0625rem;
}

.section--green .cta-banner p { color: rgba(255,255,255,0.9); }

/* --- Content Sections (inner pages) --- */
.content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.content-block--reverse .content-img { order: -1; }

.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.content-text h2 { margin-bottom: 16px; }
.content-text h3 { margin-bottom: 12px; }

.content-text p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.content-text ul {
  margin: 16px 0;
}

.content-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* Service detail list */
.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.service-detail {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.service-detail h3 {
  margin-bottom: 8px;
  font-size: 1.0625rem;
}

.service-detail p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* --- About Page --- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.about-value {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-value-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-value-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.about-value h4 {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.about-value p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact-info-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

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

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.contact-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.contact-value a {
  color: var(--green);
  font-weight: 500;
}

/* Hours table */
.hours-table {
  width: 100%;
  font-size: 0.9375rem;
}

.hours-table tr td {
  padding: 6px 0;
}

.hours-table tr td:first-child {
  font-weight: 500;
  color: var(--navy);
  width: 120px;
}

.hours-table tr td:last-child {
  color: var(--gray-700);
}

.hours-table tr.today td {
  color: var(--green);
  font-weight: 600;
}

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.contact-form h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
  min-height: 48px;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(43,175,61,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--green);
  margin-bottom: 16px;
}

.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--gray-500); }

/* Map embed */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  margin-top: 24px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 0.8125rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.7;
}

/* --- Responsive: 480px+ --- */
@media (min-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* --- Responsive: 768px+ (Tablet) --- */
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.375rem; }

  .container { padding: 0 32px; }
  .section { padding: 72px 0; }

  .hero h1 { font-size: 2.75rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .content-block {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .content-block--reverse .content-img { order: -1; }

  .about-intro { grid-template-columns: 5fr 4fr; gap: 48px; }
  .about-values { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 36px 32px; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .service-list { grid-template-columns: repeat(2, 1fr); }
  .map-wrapper { height: 340px; }

  .page-hero { padding: calc(var(--header-height) + 64px) 0 64px; }
  .page-hero h1 { font-size: 2.5rem; }
}

/* --- Responsive: 1024px+ (Desktop) --- */
@media (min-width: 1024px) {
  /* Show desktop nav, hide mobile controls */
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .header-phone-icon { display: none; }
  .header-phone-btn { display: inline-flex; }
  .mobile-menu { display: none !important; }

  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.25rem; }

  .hero h1 { font-size: 3.25rem; }
  .hero p { font-size: 1.125rem; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .section { padding: 88px 0; }
}

/* --- Responsive: 1280px+ --- */
@media (min-width: 1280px) {
  .container { padding: 0 40px; }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* Schema markup hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
