@import './variables.css';
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&display=swap');

/* ============================================
   BASE
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-white);
  margin: 0;
  padding-bottom: 60px; /* space for mobile sticky CTA bar */
}

@media (min-width: 640px) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-dark);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.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;
}

.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--color-primary);
  color: #fff;
  z-index: 100;
}

/* ============================================
   LAYOUT
   ============================================ */

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

@media (max-width: 639px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: 64px 0;
}

@media (max-width: 639px) {
  .section {
    padding: 40px 0;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

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

.btn-outline-dark {
  background: transparent;
  color: #fff;
  border-color: #666;
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn-outline-light:hover {
  background: var(--color-bg-warm);
  color: var(--color-text-primary);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--color-bg-white);
  border: 0.5px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
}

.card-body {
  padding: 16px 20px;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin: 0 0 8px;
}

.section-heading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin: 0 0 8px;
}

@media (max-width: 639px) {
  .section-heading {
    font-size: 20px;
  }
}

.section-subheading {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin: 0 0 32px;
  line-height: 1.6;
}

/* ============================================
   ICON CONTAINER
   ============================================ */

.icon-container {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-container svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.icon-container i {
  font-size: 15px;
  color: var(--color-primary);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  background: var(--color-dark);
  padding: 48px 0 40px;
}

@media (max-width: 639px) {
  .page-hero {
    padding: 32px 0 28px;
  }
}

.breadcrumb {
  font-size: 12px;
  color: #666;
  margin: 0 0 12px;
}

.breadcrumb a {
  color: #999;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #ccc;
}

.breadcrumb .sep {
  margin: 0 6px;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

@media (max-width: 639px) {
  .page-hero h1 {
    font-size: 26px;
  }
}

.page-hero p {
  font-size: 16px;
  color: var(--color-text-muted-on-dark);
  margin: 0;
  max-width: 600px;
  line-height: 1.6;
}

/* ============================================
   CTA STRIP
   ============================================ */

.cta-strip {
  background: var(--color-dark);
  padding: 48px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 639px) {
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-inner .btn {
    width: 100%;
  }
}

.cta-strip h2 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}

.cta-strip p {
  font-size: 14px;
  color: var(--color-text-muted-on-dark);
  margin: 0;
}

/* ============================================
   BRAND BAR
   ============================================ */

.brand-bar {
  background: #F5F3F0;
  border-bottom: 0.5px solid #E0DDD8;
  padding: 24px 0;
}
.ticker-label {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 20px;
}
.brand-bar-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.brand-bar-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.brand-bar-logos img {
  max-width: 130px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.brand-bar-logos a:hover img { opacity: 1; }
@media (max-width: 480px) {
  .brand-bar-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 0;
  }
}

/* ============================================
   EQUIPMENT CARD
   ============================================ */

.equipment-card {
  transition: opacity 0.2s;
}

.equipment-card.hidden {
  opacity: 0;
  display: none;
}

.equipment-card .card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.equipment-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-card .badge-popular {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(28, 28, 28, 0.75);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ============================================
   FILTER PILLS
   ============================================ */

.filter-pill {
  background: #fff;
  border: 0.5px solid #D0CDC6;
  color: #666;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: #999;
  color: #333;
}

.filter-pill.active {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}

/* ============================================
   TESTIMONIAL CARD
   ============================================ */

.testimonial-card {
  background: #fff;
  border: 0.5px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 10px 10px 0;
  padding: 20px;
}

.testimonial-card blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-primary);
  margin: 0 0 16px;
  line-height: 1.6;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th {
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  background: var(--color-dark);
  color: #fff;
}

.compare-table th:first-child {
  text-align: left;
  background: var(--color-bg-warm);
  color: var(--color-text-primary);
}

.compare-table td {
  padding: 11px 16px;
  text-align: center;
  border-bottom: 0.5px solid var(--color-border);
}

.compare-table td:first-child {
  text-align: left;
  color: var(--color-text-primary);
}

.compare-table tr:nth-child(even) td {
  background: var(--color-bg-warm);
}

.compare-table .check {
  color: var(--color-primary);
}

.compare-table .dash {
  color: #ccc;
}

/* ============================================
   PLACEHOLDER IMAGES
   ============================================ */

.img-placeholder {
  background: #E8E6E1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  text-align: center;
  padding: 8px;
}

/* ============================================
   HOMEPAGE — HERO
   ============================================ */

#hero-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: #3a3a3a center/cover no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide:not(.hero-slide-active) { display: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 88px 0;
}
.hero-heading {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 20px;
  max-width: 620px;
}
.hero-heading .accent { color: #C41E2A; }
.hero-subtext {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 639px) {
  #hero-section { min-height: 420px; }
  .hero-content { padding: 56px 0; }
}

/* ============================================
   HOMEPAGE — HERITAGE BAND
   ============================================ */

.heritage-band {
  background: #333333;
  padding: 56px 0;
  border-bottom: 3px solid #C41E2A;
}
#heritage-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.heritage-year-col {
  text-align: center;
  border-right: 1px solid #484848;
  padding-right: 56px;
}
.heritage-year {
  font-size: 72px;
  font-weight: 700;
  color: #C41E2A;
  margin: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.heritage-founded {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 8px 0 0;
}
.heritage-heading {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.4;
}
.heritage-body {
  font-size: 15px;
  color: #888;
  margin: 0;
  line-height: 1.75;
  max-width: 600px;
}
@media (max-width: 639px) {
  .heritage-band { padding: 40px 0; }
  #heritage-grid { grid-template-columns: 1fr; gap: 24px; }
  .heritage-year-col { border-right: none; border-bottom: 1px solid #2A2A2A; padding-right: 0; padding-bottom: 24px; }
}

/* ============================================
   HOMEPAGE — WHY GRID
   ============================================ */

#why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.why-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1C1C1C;
  line-height: 1.2;
  margin: 0 0 16px;
}
.why-intro {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
  margin: 0 0 28px;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 0.5px solid #E0DDD8;
}
.why-feature:last-child { border-bottom: none; }
.why-feature .icon-container { flex-shrink: 0; margin-top: 2px; }
.why-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0 0 4px;
}
.why-feature-body {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  #why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   HOMEPAGE — STATS STRIP
   ============================================ */

.stats-band {
  background: #282828;
  border-bottom: 1px solid #3a3a3a;
  padding: 18px 0;
}
#stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
}
.stat-number {
  font-size: 30px;
  font-weight: 700;
  color: #C41E2A;
  margin: 0;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: #888;
  margin: 4px 0 0;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: #3a3a3a;
  flex-shrink: 0;
}
@media (max-width: 639px) {
  #stats-strip { gap: 0; }
  .stat-item { padding: 0 20px; }
}

/* ============================================
   HOMEPAGE — SERVICES SECTION
   ============================================ */

.service-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #FDE8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon i {
  font-size: 22px;
  color: #C41E2A;
}
.service-heading {
  font-size: 19px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0 0 6px;
}
.service-body {
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.7;
  max-width: 680px;
}
.service-row-wrap {
  border-bottom: 0.5px solid #E0DDD8;
  position: relative;
}
.service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #C41E2A;
  text-decoration: none;
}
.service-arrow i { font-size: 14px; }
#services-section .service-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (hover: hover) {
  #services-section > div:has(.service-arrow:hover) .service-heading { color: #C41E2A; transition: color 0.15s; }
  #services-section > div:has(.service-arrow:hover) .service-arrow i { transform: translateX(3px); transition: transform 0.15s; }
}
@media (max-width: 639px) {
  .service-row {
    grid-template-columns: 44px 1fr auto;
    gap: 14px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .service-icon {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   EQUIPMENT PAGE — FEATURED CARDS
   ============================================ */

.featured-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.featured-card-photo {
  position: relative;
  min-height: 300px;
  background: #E8E6E1;
  overflow: hidden;
}
.featured-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.featured-card-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-brand-logo {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}
.featured-category {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 6px;
}
.featured-model {
  font-size: 22px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0 0 12px;
  line-height: 1.2;
}
.featured-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 639px) {
  .featured-card-inner { grid-template-columns: 1fr; }
  .featured-card-photo { min-height: 220px; }
  .featured-card-body { padding: 24px 20px; }
}

/* ============================================
   EQUIPMENT PAGE — BRANDS GRID
   ============================================ */

#brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.brand-card {
  display: flex;
  flex-direction: column;
}
.brand-card .card-body {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
}
.brand-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-wrap img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 16px 0 0;
}
.brand-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  margin: 10px 0 0;
}
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: auto;
  padding-top: 20px;
}
.brand-tag {
  font-size: 11px;
  font-weight: 500;
  color: #666;
  background: #F5F3F0;
  border: 0.5px solid #E0DDD8;
  border-radius: 20px;
  padding: 4px 10px;
}
@media (max-width: 639px) {
  #brands-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PARTS & SERVICE PAGE
   ============================================ */

#ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.ps-card {
  display: flex;
  flex-direction: column;
}
.ps-card-photo {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.ps-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ps-card-body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ps-heading {
  font-size: 20px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0;
}
.ps-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.75;
  margin: 0 0 20px;
}
.ps-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ps-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
@media (max-width: 639px) {
  #ps-grid { grid-template-columns: 1fr; }
  .ps-card-body { padding: 24px 20px; }
}

/* ============================================
   RENTAL PAGE
   ============================================ */

#rental-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.rental-category-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid #E0DDD8;
}
.rental-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.rental-card {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.rental-card-photo {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.rental-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rental-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rental-name {
  font-size: 13px;
  font-weight: 600;
  color: #1C1C1C;
  margin: 0;
}
.rental-btn {
  font-size: 12px;
  padding: 7px 12px;
}
@media (max-width: 639px) {
  .rental-card { width: 100%; }
  #rental-info-strip { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-focal-photo {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 639px) {
  .about-focal-photo { max-height: 260px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.h-captcha {
  margin: 16px 0 8px;
  display: flex;
  justify-content: center;
}

#contact-info-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-info-col {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.contact-info-heading {
  font-size: 12px;
  font-weight: 600;
  color: #1C1C1C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-info-primary {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  line-height: 1.4;
}
a.contact-info-primary:hover { color: #C41E2A; }
.contact-info-sub {
  font-size: 12px;
  color: #999;
}
#contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
#map-wrap {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  border: 0.5px solid #E0DDD8;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }
.form-label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.form-required { color: #C41E2A; }
.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #D4D1CC;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: #1C1C1C;
  background: #fff;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: #C41E2A;
  box-shadow: 0 0 0 3px rgba(196,30,42,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
@media (max-width: 639px) {
  #contact-info-grid { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-info-col { flex-wrap: nowrap; }
  #contact-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  #map-wrap { min-height: 280px; }
  #map-wrap iframe { min-height: 280px !important; }
}
