:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --dark: #101b2d;
  --primary: #0d66c2;
  --primary-dark: #09467f;
  --accent: #f4b942;
  --text: #172033;
  --muted: #66758a;
  --border: #dbe4ef;
  --shadow: 0 24px 70px rgba(16, 27, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  line-height: 1.6;
}

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

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

.topbar {
  background: linear-gradient(90deg, #0a1322, #0d1c30);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 9px 0;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.topbar-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.85;
}

.topbar-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.topbar-item-whatsapp {
  color: #6fe0a3;
}

.topbar-item-whatsapp:hover {
  color: #8bffbc;
  background: rgba(37, 211, 102, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 239, 0.85);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero,
.section,
.subpage-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0 56px;
}

.page-hero {
  min-height: calc(100vh - 84px);
}

.hero-copy p,
.subpage-hero p,
.section-copy p,
.info-card p,
.product-row p {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(13, 102, 194, 0.24);
}

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

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

.hero-media,
.image-card,
.panel,
.info-card,
.product-row,
.gallery-card,
.contact-info,
.contact-form,
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-media {
  padding: 16px;
  border-radius: 34px;
}

.hero-slider {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 24px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 24px;
}

.hero-slider-dots {
  position: absolute;
  bottom: 18px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-dots button.is-active {
  background: #fff;
  transform: scale(1.25);
}

.section {
  padding: 40px 0;
}

.quality-showcase {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 2fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 24px;
}

.experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 38px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, var(--primary), var(--dark));
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.experience-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.05);
}

.experience-number {
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.experience-card h2 {
  max-width: 250px;
  margin: 22px 0 12px;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.experience-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.65;
}

.experience-line {
  width: 56px;
  height: 3px;
  margin-top: 26px;
  background: #fff;
  border-radius: 999px;
}

.certificates {
  padding: 34px;
  background: linear-gradient(135deg, #fff, #f5f7f9);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.certificates-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.certificates-heading .eyebrow {
  margin-bottom: 0;
  white-space: nowrap;
}

.certificates-heading h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  text-align: right;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.certificate-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 10px 10px 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.certificate-card:hover {
  z-index: 1;
  border-color: rgba(13, 91, 82, 0.35);
  box-shadow: 0 18px 34px rgba(20, 42, 55, 0.13);
  transform: translateY(-7px);
}

.certificate-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: top;
  background: #f4f4f2;
  border-radius: 11px;
}

.certificate-card span,
.certificate-card strong {
  display: block;
}

.certificate-card span {
  padding: 14px 5px 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.certificate-card strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.84rem;
}

.lightbox-open {
  overflow: hidden;
}

.certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  visibility: hidden;
  background: rgba(7, 18, 23, 0.88);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.certificate-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.certificate-lightbox-content {
  max-width: min(92vw, 760px);
  max-height: 90vh;
  padding: 12px 12px 18px;
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}

.certificate-lightbox.is-open .certificate-lightbox-content {
  transform: translateY(0) scale(1);
}

.certificate-lightbox-content img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(90vh - 75px);
  margin: 0 auto;
  border-radius: 12px;
}

.certificate-lightbox-content p {
  margin: 14px 0 0;
  color: var(--text);
  font-weight: 700;
  text-align: center;
}

.certificate-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.certificate-lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.image-card,
.panel {
  padding: 28px;
  border-radius: 30px;
}

.image-card {
  background: var(--dark);
}

.image-band {
  padding-top: 0;
}

.image-band img {
  width: 100%;
  background: var(--dark);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

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

.info-card {
  min-height: 220px;
  padding: 30px;
  border-radius: 28px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
  border-color: rgba(13, 102, 194, 0.36);
  transform: translateY(-6px);
}

.subpage-hero {
  padding: 86px 0 48px;
}

.subpage-hero h1 {
  max-width: 900px;
}

.subpage-hero p {
  max-width: 760px;
}

.founder-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.founder-hero-image img {
  width: 230px;
  height: 280px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.founder-caption {
  max-width: 230px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.product-row {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 24px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-row:hover {
  border-color: rgba(13, 102, 194, 0.32);
  box-shadow: 0 26px 54px rgba(16, 27, 45, 0.14);
  transform: translateY(-6px);
}

.product-row-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(13, 102, 194, 0.09);
  border-radius: 12px;
  transition: background 0.22s ease, color 0.22s ease;
}

.product-row:hover .product-row-index {
  color: #fff;
  background: var(--primary);
}

.product-row h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-row p {
  flex-grow: 1;
  margin-bottom: 20px;
  font-size: 0.94rem;
}

.product-row-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-row-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease;
}

.product-row:hover .product-row-link svg {
  transform: translateX(4px);
}

.product-detail-hero {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.product-detail-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.product-content {
  max-width: 760px;
}

.product-content-wide {
  max-width: none;
}

.product-content p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-content p:last-child {
  margin-bottom: 0;
}

.brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.brand-chips span {
  padding: 8px 16px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(13, 102, 194, 0.08);
  border-radius: 999px;
}

.other-products {
  padding-top: 0;
}

.other-products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.other-products-list a {
  padding: 10px 18px;
  font-weight: 700;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.other-products-list a:hover {
  color: var(--primary);
  border-color: rgba(13, 102, 194, 0.4);
  transform: translateY(-2px);
}

.factory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.factory-item {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.factory-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.factory-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(10, 19, 34, 0.88));
  transition: opacity 0.3s ease;
}

.factory-item span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}

.factory-item:hover img {
  transform: scale(1.08);
}

.factory-cta {
  margin-top: 30px;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
}

.gallery-card.large {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery-card.large img {
  height: 100%;
  min-height: 742px;
}

.gallery-card figcaption {
  padding: 18px 22px;
  color: var(--muted);
  font-weight: 700;
}

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

.contact-card {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.contact-card:hover {
  border-color: rgba(13, 102, 194, 0.32);
  box-shadow: 0 26px 54px rgba(16, 27, 45, 0.14);
  transform: translateY(-6px);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--primary);
  background: rgba(13, 102, 194, 0.09);
  border-radius: 14px;
  transition: background 0.22s ease, color 0.22s ease;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card:hover .contact-card-icon {
  color: #fff;
  background: var(--primary);
}

.contact-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-card a {
  display: block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.map-frame {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-info,
.contact-form {
  max-width: 480px;
  padding: 34px;
  border-radius: 30px;
}

.contact-info address {
  margin-bottom: 22px;
  color: var(--muted);
  font-style: normal;
}

.contact-info a {
  display: block;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--text);
  font: inherit;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 16px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13, 102, 194, 0.11);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(560px circle at 12% 0%, rgba(13, 102, 194, 0.22), transparent 60%),
    #0a1322;
}

.footer-top {
  padding: 64px max(20px, calc((100% - 1180px) / 2)) 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand img {
  width: 148px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-contact-item svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 7px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  flex-shrink: 0;
}

.footer-contact-item:hover {
  color: #fff;
}

.footer-contact-item:hover svg {
  color: #fff;
  background: var(--primary);
}

.footer-bottom-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px;
  }

  .hero,
  .split,
  .contact-layout,
  .gallery,
  .founder-hero {
    grid-template-columns: 1fr;
  }

  .founder-hero-image img {
    width: 180px;
    height: 220px;
  }

  .founder-caption {
    max-width: 180px;
  }

  .page-hero {
    min-height: auto;
  }

  .hero-slider,
  .hero-slider img,
  .gallery-card img,
  .gallery-card.large img {
    min-height: 0;
    height: 360px;
  }

  .quality-showcase,
  .card-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 300px;
  }

  .certificate-card img {
    height: 290px;
  }

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

  .topbar-inner {
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .navbar,
  .hero,
  .section,
  .subpage-hero {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 138px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .section,
  .subpage-hero {
    padding: 58px 0;
  }

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

  .certificates {
    padding: 24px;
  }

  .certificates-heading {
    display: block;
  }

  .certificates-heading .eyebrow {
    margin-bottom: 10px;
  }

  .certificates-heading h2 {
    text-align: left;
  }

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

  .certificate-card img {
    height: 270px;
  }

  .factory-item {
    aspect-ratio: 16 / 10;
  }

  .map-frame iframe {
    height: 320px;
  }

  .topbar-item span {
    display: none;
  }

  .topbar-item {
    padding: 8px;
  }

  .footer-top {
    padding: 48px 20px 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand img {
    margin: 0 auto 18px;
  }

  .footer-brand p {
    max-width: none;
    margin: 0 auto;
  }

  .footer-links,
  .footer-contact {
    justify-items: center;
  }

  .footer-bottom-inner {
    text-align: center;
  }
}
