/* =========================================================
   Wefco Rubber Manufacturing Co., Inc.
   Static stylesheet – designed for cPanel hosting
   ========================================================= */

:root {
  --navy: #0f3a63;
  --navy-deep: #0a2944;
  --navy-soft: #185c95;
  --steel: #5a7892;
  --pale-blue: #eaf1f8;
  --pale-blue-2: #d1deea;
  --amber: #f7941d;
  --amber-dark: #d97a06;
  --ink: #1a2530;
  --muted: #5b6b7a;
  --line: #d8e1ea;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --shadow-sm: 0 1px 2px rgba(15, 58, 99, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 58, 99, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 58, 99, 0.12);
  --radius: 6px;
  --radius-lg: 12px;
  --container: 1180px;
  --header-h: 88px;
}

* { box-sizing: border-box; }

html {
  scroll-padding-top: calc(var(--header-h) + 24px);
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--navy-soft); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--amber); }

h1, h2, h3, h4 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--navy-deep);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; color: #2a3744; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--amber-dark);
  margin-bottom: .5rem;
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #cfe0ef;
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.topbar a { color: #ffffff; }
.topbar a:hover { color: var(--amber); }
.topbar .left span { margin-right: 18px; opacity: .9; }
.topbar .left span:last-child { margin-right: 0; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-footer .brand img.footer-logo {
  height: 64px;
  width: auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-deep);
}
.nav a:hover { background: var(--pale-blue); color: var(--navy-deep); }
.nav a.active { color: var(--amber-dark); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--amber);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.cta-call:hover { background: var(--amber-dark); color: #fff; }
.cta-call svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--navy-deep);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(247,148,29,.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.08), transparent 50%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero .eyebrow { color: #ffd9a3; }
.hero h1 { color: #fff; }
.hero p {
  color: #d6e4f0;
  font-size: 1.1rem;
  max-width: 560px;
}
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--amber); color: #fff; }
.btn-primary:hover { background: var(--amber-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-outline {
  background: #fff;
  color: var(--navy-deep);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy-soft); color: var(--navy-soft); }

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta .stat .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-meta .stat .lbl {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #b9cee0;
  margin-top: 6px;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(15, 41, 68, .85);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .85rem;
  backdrop-filter: blur(4px);
}

/* ---------- Page heading (inner pages) ---------- */
.page-head {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(247,148,29,.18), transparent 55%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { color: #fff; margin-bottom: 10px; }
.page-head p { color: #d6e4f0; max-width: 640px; margin: 0; }
.crumbs {
  font-size: .85rem;
  color: #a8c0d6;
  margin-bottom: 14px;
}
.crumbs a { color: #cfe0ef; }
.crumbs a:hover { color: #fff; }
.crumbs span { margin: 0 8px; opacity: .6; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { color: var(--muted); }

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #c5d6e6;
}
.feature .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--pale-blue);
  color: var(--navy-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature .icon svg { width: 22px; height: 22px; }
.feature h3 { color: var(--navy-deep); margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Categories (Products preview) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.cat-card .ph {
  height: 160px;
  background: linear-gradient(135deg, var(--pale-blue) 0%, #c4d6e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-soft);
}
.cat-card .ph svg { width: 56px; height: 56px; opacity: .85; }
.cat-card .body { padding: 18px 22px 22px; }
.cat-card h3 { margin: 0 0 4px; color: var(--navy-deep); }
.cat-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.cat-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 12px; font-weight: 700; color: var(--amber-dark);
  font-size: .9rem;
}

/* ---------- Product list pages ---------- */
.layout-2col {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 18px 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--steel);
  margin: 14px 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.sidebar h4:first-child { margin-top: 0; }
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: .92rem;
}
.sidebar li a:hover { background: var(--pale-blue); color: var(--navy-deep); }

.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.product-table th, .product-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.product-table th {
  background: var(--bg-soft);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
}
.product-table tr:last-child td { border-bottom: none; }
.product-table tr:hover td { background: var(--bg-soft); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-tile:hover {
  border-color: var(--amber);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.product-tile .thumb {
  background: #f4f6f8;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  padding: 16px;
}
.product-tile .thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.product-tile .tile-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-tile .tag {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: #fff3e0;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.product-tile h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: var(--navy-deep);
}
.product-tile p { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.product-tile .learn {
  margin-top: 12px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--amber-dark);
}

/* ---------- Product detail page ---------- */
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.detail-gallery.auto-gallery {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.detail-gallery .gallery-item,
.detail-gallery .auto-marque {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.detail-gallery .gallery-item img {
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}
.detail-gallery .auto-marque {
  padding: 14px 10px 10px;
  background: #f8fafc;
}
.detail-gallery .auto-marque img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}
.detail-gallery .auto-marque figcaption {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  text-align: center;
}
.detail-info { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-size: 1.02rem;
  margin: 0 0 10px;
  color: var(--navy-deep);
}
.info-card p, .info-card li { font-size: .92rem; color: var(--muted); }
.info-card p { margin: 0 0 8px; }
.info-card ul { margin: 0; padding-left: 18px; }
.info-card.highlight {
  background: linear-gradient(135deg, #f0f6ff 0%, #fff8ee 100%);
  border-color: var(--amber);
}
.info-card.highlight h3 { color: var(--navy-deep); }
.info-card .btn { width: 100%; margin-top: 10px; text-align: center; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-md);
}
.cta-banner h2 { color: #fff; margin: 0; }
.cta-banner p { color: rgba(255,255,255,.92); margin: 6px 0 0; }
.cta-banner .btn-outline { background: #fff; color: var(--amber-dark); border-color: #fff; }
.cta-banner .btn-outline:hover { background: var(--navy-deep); color: #fff; }

/* ---------- Catalog row ---------- */
.catalog-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.catalog-row img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ---------- Order / Profile content ---------- */
.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.content-card + .content-card { margin-top: 22px; }
.content-card h2 { margin-top: 0; }
.content-card h3 { margin-top: 22px; color: var(--navy-deep); }
.content-card ul { padding-left: 1.1rem; }

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.order-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.order-card .icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--pale-blue);
  color: var(--navy-soft);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.order-card .icon svg { width: 22px; height: 22px; }
.order-card h3 { margin: 0 0 4px; color: var(--navy-deep); }
.order-card .v { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.order-card .sub { color: var(--muted); font-size: .9rem; margin-top: 2px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}
.contact-info {
  background: var(--navy-deep);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-info h2 { color: #fff; }
.contact-info .row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-info .icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  color: var(--amber);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info .icon svg { width: 18px; height: 18px; }
.contact-info .lbl {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #a8c0d6;
}
.contact-info .v { font-weight: 600; color: #fff; }
.contact-info a { color: #fff; }
.contact-info a:hover { color: var(--amber); }

form.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form .field { margin-bottom: 16px; }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy-deep);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(24,92,149,.15);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .actions { display: flex; gap: 12px; margin-top: 8px; }

.shippers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.shipper {
  flex: 1 1 140px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: center;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: .04em;
  transition: border-color .15s ease, color .15s ease;
}
.shipper:hover { border-color: var(--amber); color: var(--amber-dark); }

.map-embed {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #cfe0ef;
  padding: 56px 0 24px;
  margin-top: 24px;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.site-footer h4 {
  color: #fff;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: #cfe0ef; font-size: .92rem; }
.site-footer a:hover { color: var(--amber); }
.site-footer p { color: #a8c0d6; font-size: .92rem; }
.site-footer .brand-block .brand-name { color: #fff; }
.site-footer .brand-block .brand-sub { color: #a8c0d6; }
.site-footer .legal {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .85rem;
  color: #a8c0d6;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; }
  .features, .cat-grid, .product-grid, .order-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-2col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .catalog-row { grid-template-columns: 1fr; }
  .site-footer .grid { grid-template-columns: repeat(2, 1fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-gallery.auto-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 12px 16px;
    align-items: stretch;
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 12px 14px; }
  .nav-toggle { display: inline-flex; }
  .cta-call { display: none; }
  .features, .cat-grid, .product-grid, .order-grid { grid-template-columns: 1fr; }
  .contact-form .row2 { grid-template-columns: 1fr; }
  .topbar .left span { display: block; margin: 2px 0; }
  .site-footer .grid { grid-template-columns: 1fr; }
  .site-header { position: relative; }
}
