/*
Theme Name: Wilmer Child
Theme URI: https://staport.ma/
Description: Bespoke STAPORT corporate website.
Author: STAPORT
Version: 2.0.0
Text Domain: wilmer
Template: wilmer
*/

:root {
  --navy: #06243d;
  --navy-2: #0a3559;
  --blue: #0b79bd;
  --blue-bright: #1fa4e7;
  --sky: #dceef8;
  --silver: #aeb9c2;
  --silver-light: #edf1f4;
  --ink: #101b24;
  --muted: #667785;
  --white: #ffffff;
  --line: rgba(9, 50, 82, 0.14);
  --container: min(1320px, calc(100vw - 64px));
  --shadow: 0 28px 70px rgba(6, 36, 61, 0.15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.staport-site {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Arial Nova", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
.staport-site img { display: block; max-width: 100%; }
.staport-site a { color: inherit; }
.staport-site button, .staport-site input, .staport-site textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--blue-bright);
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(6, 36, 61, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  animation: headerDrop 0.35s ease both;
}

@keyframes headerDrop { from { transform: translateY(-100%); } }

.header-inner {
  width: var(--container);
  height: 98px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.site-header.is-sticky .header-inner { height: 76px; border-color: transparent; }

.brand {
  display: flex;
  align-items: center;
  width: 222px;
  height: 72px;
  text-decoration: none;
  overflow: hidden;
}

.brand img {
  width: 210px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-nav { justify-self: center; }
.site-nav ul { display: flex; align-items: center; gap: clamp(19px, 2vw, 38px); margin: 0; padding: 0; list-style: none; }
.site-nav a {
  position: relative;
  display: block;
  padding: 36px 0 32px;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .25s ease;
}
.site-header.is-sticky .site-nav a { padding: 25px 0; }
.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 0;
  height: 2px;
  background: var(--blue-bright);
  content: "";
  transition: width .25s ease;
}
.site-header.is-sticky .site-nav a::after { bottom: 17px; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease;
}
.header-cta:hover { background: var(--blue); border-color: var(--blue); }
.header-cta svg { width: 17px; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.35); background: transparent; color: white; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: .25s ease; }

.hero {
  position: relative;
  min-height: 900px;
  height: 100vh;
  max-height: 1060px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; }
.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,27,49,.96) 0%, rgba(4,37,64,.85) 35%, rgba(5,37,62,.28) 72%, rgba(4,25,42,.22) 100%), linear-gradient(0deg, rgba(2,20,36,.72) 0%, transparent 43%);
  content: "";
}
.hero-gridlines {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding-top: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow::before { width: 36px; height: 2px; background: currentColor; content: ""; }
.hero .eyebrow { color: #8bd3f8; }
.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(66px, 8.2vw, 132px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .84;
  text-transform: uppercase;
}
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.82); }
.hero-lede { max-width: 650px; margin: 32px 0 36px; color: rgba(255,255,255,.75); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 26px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .25s ease;
}
.button:hover { background: var(--blue-bright); border-color: var(--blue-bright); transform: translateY(-2px); }
.button--ghost { background: transparent; border-color: rgba(255,255,255,.4); }
.button--ghost:hover { background: rgba(255,255,255,.1); border-color: white; }
.button svg { width: 18px; }
.hero-stats {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(710px, 54vw);
  background: rgba(5,37,62,.84);
  border-top: 1px solid rgba(255,255,255,.2);
  border-left: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
}
.hero-stat { min-height: 160px; padding: 28px 32px; border-right: 1px solid rgba(255,255,255,.16); }
.hero-stat strong { display: block; font-size: clamp(38px, 4vw, 58px); line-height: 1; }
.hero-stat span { display: block; margin-top: 13px; color: #b9c8d3; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.section { padding: 120px 0; }
.container { width: var(--container); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 1fr 1.2fr; align-items: end; gap: 60px; margin-bottom: 60px; }
.section-kicker { margin: 0 0 10px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.section h2 {
  margin: 0;
  color: var(--navy);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(46px, 5.3vw, 82px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: .98;
  text-transform: uppercase;
}
.section-head > p { max-width: 610px; margin: 0; color: var(--muted); font-size: 17px; }

.about { position: relative; overflow: hidden; background: var(--white); }
.about::before { position: absolute; right: -2vw; top: 55px; color: rgba(7,43,75,.035); content: "STAPORT"; font-family: Impact, sans-serif; font-size: 17vw; line-height: 1; }
.about-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(60px, 8vw, 135px); }
.about-visual { position: relative; min-height: 650px; }
.about-visual .image-main { position: absolute; inset: 0 65px 0 0; width: calc(100% - 65px); height: 100%; object-fit: cover; }
.about-visual .image-float { position: absolute; right: 0; bottom: 46px; width: 48%; height: 260px; object-fit: cover; border: 10px solid white; box-shadow: var(--shadow); }
.since-card { position: absolute; top: 40px; right: 0; width: 180px; padding: 24px; background: var(--navy); color: var(--white); }
.since-card strong { display: block; color: var(--blue-bright); font-size: 43px; line-height: 1; }
.since-card span { display: block; margin-top: 9px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.about-copy { position: relative; z-index: 1; }
.about-copy h2 { max-width: 720px; }
.about-copy .lead { margin: 30px 0 18px; color: var(--navy); font-size: 20px; line-height: 1.5; }
.about-copy p:not(.section-kicker):not(.lead) { color: var(--muted); }
.about-signature { display: grid; grid-template-columns: auto 1fr; gap: 25px; align-items: center; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-signature .mark { display: grid; width: 64px; height: 64px; place-items: center; background: var(--sky); color: var(--blue); }
.about-signature svg { width: 30px; }
.about-signature strong { display: block; color: var(--navy); }
.about-signature span { color: var(--muted); font-size: 13px; }

.services { background: var(--silver-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; min-height: 390px; padding: 42px 38px; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.56); transition: color .35s ease, transform .35s ease, box-shadow .35s ease; }
.service-card::before { position: absolute; inset: auto 0 0; height: 0; background: var(--navy); content: ""; transition: height .35s ease; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { color: white; transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card:hover::before { height: 100%; }
.service-number { display: flex; justify-content: space-between; align-items: flex-start; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.service-icon { width: 58px; height: 58px; padding: 12px; color: var(--blue); border: 1px solid rgba(11,121,189,.28); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin: 80px 0 16px; color: var(--navy); font-size: 23px; line-height: 1.15; text-transform: uppercase; transition: color .35s ease; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; transition: color .35s ease; }
.service-card:hover h3 { color: white; }
.service-card:hover p { color: #bdcbd5; }

.capacity { position: relative; overflow: hidden; background: var(--navy); color: white; }
.capacity::before { position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(135deg, transparent 45%, #fff 45%, #fff 46%, transparent 46%); background-size: 44px 44px; content: ""; }
.capacity .section-head { position: relative; }
.capacity h2, .capacity .section-head > p { color: white; }
.capacity .section-head > p { color: #aebdca; }
.capacity-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(255,255,255,.17); }
.capacity-item { padding: 38px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.17); }
.capacity-item:last-child { border: 0; }
.capacity-item strong { display: block; color: var(--white); font-size: clamp(38px, 4vw, 62px); line-height: 1; }
.capacity-item span { display: block; margin-top: 13px; color: #91abc0; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.projects { background: white; }
.projects-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 245px; gap: 16px; }
.project-card { position: relative; grid-column: span 4; margin: 0; overflow: hidden; background: var(--navy); cursor: zoom-in; }
.project-card:nth-child(1), .project-card:nth-child(6) { grid-column: span 8; }
.project-card:nth-child(1) { grid-row: span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .4s; }
.project-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,25,43,.9), transparent 62%); content: ""; }
.project-card:hover img { transform: scale(1.045); opacity: .84; }
.project-card figcaption { position: absolute; z-index: 2; right: 26px; bottom: 22px; left: 26px; color: white; }
.project-card small { color: #7fd1fa; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-card h3 { margin: 5px 0 0; font-size: clamp(17px, 2vw, 26px); text-transform: uppercase; }

.partners { padding: 85px 0; overflow: hidden; background: var(--silver-light); }
.partners-heading { width: var(--container); margin: 0 auto 35px; text-align: center; }
.partners-heading .section-kicker { margin: 0; }
.partner-track-wrap { position: relative; overflow: hidden; }
.partner-track-wrap::before, .partner-track-wrap::after { position: absolute; z-index: 2; top: 0; bottom: 0; width: 12vw; content: ""; pointer-events: none; }
.partner-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--silver-light), transparent); }
.partner-track-wrap::after { right: 0; background: linear-gradient(-90deg, var(--silver-light), transparent); }
.partner-track { display: flex; width: max-content; gap: 20px; animation: partners 35s linear infinite; }
.partner { display: grid; width: 205px; height: 120px; place-items: center; padding: 18px 24px; background: white; border: 1px solid var(--line); }
.partner img { max-width: 150px; max-height: 78px; filter: grayscale(1); opacity: .72; transition: .25s ease; }
.partner:hover img { filter: grayscale(0); opacity: 1; }
@keyframes partners { to { transform: translateX(calc(-50% - 10px)); } }

.vision { position: relative; min-height: 660px; display: flex; align-items: center; overflow: hidden; background: var(--navy); color: white; }
.vision-bg { position: absolute; inset: 0; }
.vision-bg img { width: 100%; height: 100%; object-fit: cover; }
.vision-bg::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,31,53,.97), rgba(4,31,53,.8) 48%, rgba(4,31,53,.24)); content: ""; }
.vision-inner { position: relative; z-index: 1; width: var(--container); margin: 0 auto; }
.vision-copy { max-width: 770px; }
.vision h2 { color: white; font-size: clamp(50px, 6vw, 90px); }
.vision p:not(.section-kicker) { max-width: 660px; color: #c1ced8; font-size: 18px; }
.vision .button { margin-top: 20px; }

.contact { padding: 0; background: white; }
.contact-grid { display: grid; grid-template-columns: .83fr 1.17fr; }
.contact-info { padding: 105px max(45px, calc((100vw - 1320px) / 2)); padding-right: 70px; background: var(--navy); color: white; }
.contact-info h2 { color: white; }
.contact-info > p { color: #aebdca; }
.contact-list { margin: 45px 0 0; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-list svg { width: 22px; color: var(--blue-bright); }
.contact-list span { display: block; color: #7f9bb0; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-list a, .contact-list strong { color: white; font-style: normal; font-weight: 600; text-decoration: none; }
.contact-form-wrap { padding: 105px max(45px, calc((100vw - 1320px) / 2)); padding-left: 80px; }
.contact-form-wrap h3 { margin: 0 0 10px; color: var(--navy); font-size: 31px; text-transform: uppercase; }
.contact-form-wrap > p { margin-top: 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 35px; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; border: 1px solid #ced7de; border-radius: 0; padding: 15px 16px; outline: none; color: var(--ink); background: #f8fafb; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,121,189,.11); }
.contact-form .button { margin-top: 22px; border: 0; cursor: pointer; }
.form-notice { margin: 0 0 22px; padding: 13px 16px; border-left: 3px solid #24a06b; background: #e8f7f0; color: #136441; }
.form-notice--error { border-color: #ca4e4e; background: #fff0f0; color: #8e2d2d; }

.site-footer { background: #041b2e; color: white; }
.footer-main { width: var(--container); margin: 0 auto; padding: 70px 0 45px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 80px; }
.footer-brand img { width: 210px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 410px; margin: 22px 0 0; color: #8ba0af; }
.footer-col h3 { margin: 0 0 18px; color: white; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { margin: 9px 0; color: #8ba0af; }
.footer-col a { text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--blue-bright); }
.footer-bottom { width: var(--container); margin: 0 auto; padding: 20px 0 25px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: #738b9c; font-size: 12px; }

.lightbox { position: fixed; z-index: 2000; inset: 0; display: none; align-items: center; justify-content: center; padding: 40px; background: rgba(2,18,31,.94); }
.lightbox.is-open { display: flex; }
.lightbox figure { max-width: min(1180px, 92vw); max-height: 88vh; margin: 0; }
.lightbox img { max-height: 79vh; margin: auto; object-fit: contain; }
.lightbox figcaption { padding-top: 13px; color: white; text-align: center; }
.lightbox-close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); background: transparent; color: white; font-size: 25px; cursor: pointer; }

.js [data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Demo commerce plugins inject modal shells even when the page has no shop. */
#qode-quick-view-for-woocommerce-pop-up,
#qode-wishlist-for-woocommerce-modal,
#photoswipe-fullscreen-dialog,
.qqvfw,
.qwfw-m,
.pswp,
script[type="text/template"] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  :root { --container: min(100% - 42px, 940px); }
  .header-inner { grid-template-columns: 220px 1fr auto; }
  .site-nav ul { gap: 17px; }
  .site-nav a { font-size: 10px; }
  .header-cta { display: none; }
  .hero-stats { width: 68vw; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .capacity-grid { grid-template-columns: repeat(5, 1fr); }
  .about-grid { gap: 55px; }
  .about-visual { min-height: 570px; }
  .contact-info, .contact-form-wrap { padding: 85px 45px; }
}

@media (max-width: 780px) {
  :root { --container: calc(100vw - 34px); }
  .header-inner { height: 78px; grid-template-columns: 1fr auto; }
  .site-header.is-sticky .header-inner { height: 68px; }
  .brand { width: 178px; height: 60px; }
  .brand img { width: 170px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(4,27,46,.99); opacity: 0; visibility: hidden; transition: .25s ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav ul { flex-direction: column; gap: 3px; }
  .site-nav a, .site-header.is-sticky .site-nav a { padding: 10px; font-size: 20px; }
  .site-nav a::after { display: none; }
  .menu-toggle { position: relative; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 790px; height: 100svh; max-height: none; }
  .hero-inner { padding-top: 100px; justify-content: center; }
  .hero h1 { font-size: clamp(54px, 16.5vw, 90px); }
  .hero-lede { margin: 25px 0 28px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: max-content; gap: 10px; }
  .hero-stats { right: auto; left: 0; width: 100%; }
  .hero-stat { min-height: 112px; padding: 19px 16px; }
  .hero-stat strong { font-size: 36px; }
  .hero-stat span { font-size: 8px; }
  .section { padding: 82px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .section h2 { font-size: clamp(42px, 13vw, 65px); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 520px; order: 2; }
  .about-visual .image-main { right: 35px; width: calc(100% - 35px); }
  .about-visual .image-float { height: 190px; }
  .since-card { width: 140px; padding: 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .service-card h3 { margin-top: 55px; }
  .capacity-grid { grid-template-columns: repeat(2, 1fr); }
  .capacity-item:nth-child(even) { border-right: 0; }
  .capacity-item:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.17); }
  .projects-gallery { grid-auto-rows: 220px; }
  .project-card, .project-card:nth-child(1), .project-card:nth-child(6) { grid-column: 1 / -1; grid-row: span 1; }
  .vision { min-height: 600px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info, .contact-form-wrap { padding: 75px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 51px; }
  .hero-actions { width: 100%; }
  .button { width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stat { padding: 17px 10px; }
  .hero-stat strong { font-size: 31px; }
  .about-visual { min-height: 430px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
