:root {
  --page-bg: #e8e9eb;
  --surface: #ffffff;
  --surface-muted: #f7f8fa;
  --ink: #1a1a1a;
  --ink-muted: #666666;
  --ink-soft: #cccccc;
  --dark: #0a0a0a;
  --dark-border: #1a1a1a;
  --line: #e0e0e0;
  --line-soft: #f4f5f5;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --section-pad: 80px;
  --content-max: 1440px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background: var(--page-bg);
  color: var(--ink);
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--section-pad);
  padding-right: var(--section-pad);
}

.rule {
  height: 1px;
  background: var(--line);
}

.rule-dark {
  background: var(--dark-border);
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-tight {
  padding-top: 0;
  padding-bottom: 0;
}

.section-light {
  background: var(--surface);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--ink-soft);
}

.section-title {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.02;
  text-transform: uppercase;
}

.title-56 {
  font-size: 56px;
}

.title-52 {
  font-size: 52px;
}

.title-48 {
  font-size: 48px;
}

.title-40 {
  font-size: 40px;
}

.section-subtitle {
  margin: 24px 0 0;
  max-width: 980px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-muted);
}

.site-header {
  background: var(--dark);
  color: #fff;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 82px;
}

.brand {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.topnav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  gap: 22px;
  border: 1px solid #ffffff33;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  min-height: 48px;
}

.topnav a {
  font-size: 16px;
  font-weight: 500;
  color: #cccccc;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.topnav a:hover,
.topnav a.is-active {
  color: #ffffff;
}

.since {
  color: #cccccc;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  min-height: 640px;
  align-items: end;
}

.hero-section {
  padding-top: 40px;
}

.hero-section .hero {
  min-height: auto;
  align-items: start;
}

.hero-section .hero-media {
  min-height: 640px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
}

.hero-copy .section-title {
  color: #fff;
}

.hero-copy .section-subtitle {
  margin: 0;
  color: #cccccc;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-light {
  color: var(--ink);
  background: #fff;
}

.btn-dark {
  color: #fff;
  background: var(--ink);
}

.btn-outline {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero-media {
  border-radius: var(--radius-lg);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 28px;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.kpi-value {
  margin: 0;
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 300;
  line-height: 0.88;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
}

.kpi-label {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: #ffffffef;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards-row .card {
  min-height: 276px;
}

.card-line {
  border-bottom: 1px solid var(--line-soft);
}

.card-label {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.card-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-weight: 500;
}

.card-text {
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
}

.card-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.tile {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tile h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
}

.tile p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-muted);
}

.banner {
  width: 100%;
  border-radius: var(--radius-md);
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner.catalog {
  background-image: url('../images/generated-1773148020459.jpg');
}

.banner.landing {
  background-image: url('../images/generated-1773148184352.jpg');
}

.values .tile {
  border-bottom: 1px solid var(--line-soft);
}

.editorial .eyebrow {
  color: #6b7b6b;
  letter-spacing: 1.5px;
}

.editorial .section-title {
  color: #1e3322;
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 400;
}

.editorial .tile h3 {
  color: #1e3322;
  font-size: 26px;
  font-weight: 400;
}

.editorial .tile p {
  color: #6b7b6b;
  font-size: 16px;
  line-height: 1.6;
}

.footer {
  background: var(--surface-muted);
  padding-top: 80px;
  padding-bottom: 80px;
}

.footer-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  min-width: 236px;
}

.footer-brand-line {
  display: block;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 300px));
  gap: 48px;
  flex: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  margin: 0;
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  margin: 0;
  font-size: 13px;
  color: var(--ink);
}

.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 24px;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url('../images/generated-1773149087422.jpg');
  background-size: cover;
  background-position: center;
}

.contact-map-wrap.has-map {
  background-image: none !important;
  background-color: var(--surface-muted);
}

.contact-map {
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius-md);
  background-image: url('https://images.unsplash.com/photo-1652946337061-0a8f8e302a27?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w4NDM0ODN8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NzMxNDkxMTN8&ixlib=rb-4.1.0&q=80&w=1080');
  background-size: cover;
  background-position: center;
}

.contact-map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius-md);
  background: #fff;
}

.contact-map-embed {
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  position: relative;
}

.contact-map-embed::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.02) 0,
      rgba(0, 0, 0, 0.02) 1px,
      transparent 1px,
      transparent 80px
    );
  pointer-events: none;
}

.contact-map-wrap.has-map .contact-map-embed::before {
  display: none;
}

.contact-map-embed > ymaps,
.contact-map-embed > div,
.contact-map-embed iframe {
  width: 100% !important;
  max-width: 100%;
}

.contact-map-fallback {
  min-height: 420px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  color: var(--ink-muted);
  padding: 24px;
}

.contact-map-label {
  margin-bottom: 16px;
}

.contact-copy {
  max-width: 820px;
}

.contact-grid {
  margin-top: 36px;
}

.contact-tile {
  padding: 0 0 22px;
  gap: 10px;
}

.contact-tile h3 {
  margin: 0;
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
}

.contact-tile p {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e6e8eb;
  border-radius: var(--radius-md);
  background: #fff;
}

.product-image {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  background-color: var(--surface-muted);
  background-size: cover;
  background-position: center;
}

.product-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.product-meta,
.product-desc {
  margin: 0;
  font-size: 13px;
  color: var(--ink-muted);
}

.product-meta {
  font-size: 14px;
  font-weight: 500;
}

.product-card.is-hidden {
  display: none;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-filter-row {
  margin-top: 32px;
  margin-bottom: 28px;
}

.filter-chip {
  border-radius: var(--radius-pill);
  border: 1px solid #e0e0e0;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  cursor: pointer;
}

.filter-chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.certs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cert-card {
  min-height: 220px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

.cert-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.cert-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.25;
}

.page-content,
.woo-page {
  min-height: 50vh;
}

.wp-content-copy {
  margin-top: 28px;
  max-width: 920px;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

.page-rich-copy {
  max-width: 1100px;
}

.wp-content-copy p,
.wp-content-copy ul,
.wp-content-copy ol {
  margin: 0 0 16px;
}

.wp-content-copy h2,
.wp-content-copy h3 {
  margin: 32px 0 12px;
  color: var(--ink);
}

.wp-content-copy h2 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.wp-content-copy h3 {
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.wp-content-copy img {
  border-radius: var(--radius-md);
  height: auto;
}

.wp-content-copy figure {
  margin: 28px 0;
}

.breadcrumbs {
  margin-bottom: 16px;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.breadcrumbs-item:not(:last-child)::after {
  content: "/";
  color: var(--line-strong);
}

.breadcrumbs-item a,
.breadcrumbs-item span {
  color: inherit;
  text-decoration: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.news-card.has-media {
  grid-template-columns: minmax(280px, 36%) minmax(0, 1fr);
}

.news-card-media {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}

.news-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-card-title,
.news-card-title a {
  margin: 0;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(22px, 1.9vw, 34px);
  line-height: 1.01;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.news-card-excerpt {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.55;
  max-width: 100%;
}

.news-card .btn {
  align-self: flex-start;
  min-width: 180px;
}

.news-article {
  max-width: 900px;
  margin: 0 auto;
}

.news-article-title {
  max-width: 760px;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.news-article-excerpt {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.55;
}

.news-hero-image {
  margin-top: 24px;
  max-width: 760px;
}

.news-hero-image img {
  width: 100%;
  max-height: 460px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.news-copy {
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
}

.news-copy img {
  width: auto;
  max-width: 100%;
  max-height: 520px;
  margin: 0 auto;
}

.news-copy figure {
  max-width: 760px;
  margin: 22px 0;
}

.news-copy p {
  margin: 0 0 18px;
}

.news-copy ul,
.news-copy ol {
  margin: 0 0 20px 22px;
  line-height: 1.7;
}

.editorial-related {
  margin-top: 72px;
}

.editorial-related-title {
  margin-bottom: 24px;
}

.editorial-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news-card-compact {
  display: flex;
  flex-direction: column;
}

.news-card-compact.has-media {
  grid-template-columns: 1fr;
}

.news-card-compact .news-card-media {
  min-height: 190px;
}

.news-card-compact .news-card-body {
  gap: 12px;
}

.news-card-compact .news-card-title,
.news-card-compact .news-card-title a {
  font-size: 20px;
  line-height: 1.08;
}

.news-card-compact .news-card-excerpt {
  font-size: 14px;
  line-height: 1.55;
}

.navigation.pagination {
  margin-top: 36px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.navigation.pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.woo-content-wrap {
  margin-top: 32px;
}

.woo-page .woocommerce-message,
.woo-page .woocommerce-info,
.woo-page .woocommerce-error {
  margin: 0 0 24px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  padding: 16px 20px;
  list-style: none;
}

.woo-page form .form-row input.input-text,
.woo-page form .form-row textarea,
.woo-page form .form-row select,
.woo-page .quantity .qty {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
}

.woo-page .button,
.woo-page button.button,
.woo-page a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--ink);
  color: #fff;
}

.product-actions .button,
.product-actions button.button,
.product-actions .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--ink);
  color: #fff;
}

.woo-page table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
}

.woo-page table.shop_table th,
.woo-page table.shop_table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 12px;
  text-align: left;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: start;
}

.product-gallery-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail-main-image img,
.product-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-summary-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.product-price {
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
}

.product-sku {
  margin: -4px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-muted);
}

.product-specs {
  display: grid;
  gap: 10px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
}

.product-spec-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.product-actions form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-marketplaces {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.product-marketplaces .eyebrow {
  margin: 0;
}

.marketplace-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.marketplace-grid .btn {
  min-width: 160px;
}

.marketplace-link {
  min-height: 60px;
}

.marketplace-link img {
  display: block;
  max-width: 132px;
  max-height: 28px;
  width: auto;
  height: auto;
}

.product-actions .quantity .qty {
  width: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
}

.product-docs {
  margin-top: 40px;
}

.product-docs-grid {
  margin-top: 16px;
}

.doc-link {
  display: block;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

@media (max-width: 1120px) {
  :root {
    --section-pad: 40px;
  }

  .topbar {
    flex-wrap: wrap;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand,
  .since {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .product-grid,
  .news-grid,
  .editorial-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-cols {
    width: 100%;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --section-pad: 20px;
  }

  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.08;
  }

  .title-56,
  .title-52,
  .title-48,
  .title-40 {
    font-size: 34px;
  }

  .topnav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
    row-gap: 8px;
  }

  .topnav a {
    font-size: 12px;
    white-space: normal;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .product-grid,
  .certs,
  .news-grid,
  .editorial-related-grid {
    grid-template-columns: 1fr;
  }

  .news-card-title,
  .news-card-title a {
    font-size: 22px;
  }

  .news-article-title {
    font-size: 30px;
  }

  .news-article-excerpt {
    font-size: 16px;
  }

  .news-copy {
    font-size: 15px;
    line-height: 1.68;
  }

  .wp-content-copy h2 {
    font-size: 24px;
  }

  .wp-content-copy h3 {
    font-size: 20px;
  }

  .card,
  .tile,
  .product-card,
  .cert-card {
    padding: 18px;
  }

  .hero-media {
    min-height: 420px;
    padding: 20px;
  }

  .banner {
    min-height: 180px;
  }

  .contact-map-wrap {
    padding: 12px;
  }

  .contact-tile p {
    font-size: 18px;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
