:root {
  --green: #446360;
  --green-deep: #2b4946;
  --green-dark: #17312f;
  --lime: #bfd22f;
  --lime-hover: #cfdf48;
  --ink: #172321;
  --muted: #60706d;
  --paper: #ffffff;
  --soft: #f4f6f5;
  --line: #dce2df;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 14px;
  --shadow: 0 22px 55px rgba(14, 40, 37, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
svg { width: 1.35em; height: 1.35em; }
.shell { width: var(--shell); margin-inline: auto; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; transform: translateY(-150%); background: #fff; color: #111; padding: 12px 16px; }
.skip-link:focus { transform: none; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Poppins", Arial, sans-serif; line-height: 1.13; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 4.25vw, 3.85rem); }
h2 { font-size: clamp(1.85rem, 2.7vw, 2.75rem); }
h3 { font-size: 1.18rem; }
p { color: var(--muted); }

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { position: fixed; background: var(--green); box-shadow: 0 10px 30px rgba(12,35,33,.18); }
.header-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-brand { position: relative; z-index: 2; display: flex; flex: 0 0 96px; align-items: center; justify-content: center; width: 96px; height: 96px; }
.site-brand img { width: 96px; height: 96px; object-fit: contain; object-position: center; }
.custom-logo-link { display: block; }
.primary-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.primary-nav .menu { display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.primary-nav .menu a { position: relative; text-decoration: none; font-size: .8rem; font-weight: 700; letter-spacing: .01em; }
.primary-nav .menu a::after { content: ''; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.primary-nav .menu a:hover::after, .primary-nav .menu a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; color: #fff; }
.menu-toggle > span:not(.screen-reader-text) { display: block; width: 28px; height: 2px; margin: 6px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.button, .text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: #17211c;
  text-decoration: none;
  font-family: "Poppins", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .005em;
  box-shadow: 0 8px 20px rgba(15, 42, 39, .14);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { background: var(--lime-hover); border-color: var(--lime-hover); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(15,42,39,.22); }
.button--small { min-height: 40px; padding: 10px 16px; font-size: .67rem; }
.button--outline { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.68); box-shadow: none; backdrop-filter: blur(6px); }
.button--outline:hover, .button--outline:focus-visible { color: var(--ink); background: #fff; border-color: #fff; }
.button svg, .text-button svg, .inline-link svg { width: 17px; height: 17px; }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.text-button { min-height: 44px; background: transparent; border-color: var(--ink); color: var(--ink); padding: 10px 16px; }
.text-button:hover { background: var(--ink); color: #fff; }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; padding-top: 112px; color: #fff; background-color: var(--green-deep); background-image: var(--hero-image); background-size: cover; background-position: center 46%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,24,22,.92) 0%, rgba(9,31,29,.72) 45%, rgba(7,18,17,.18) 78%), linear-gradient(0deg, rgba(7,23,21,.82) 0%, transparent 38%); }
.hero-content { position: relative; z-index: 2; min-width: 0; padding-bottom: 66px; padding-left: 28px; }
.hero-content::before { content: ''; position: absolute; top: 5px; bottom: 72px; left: 0; width: 3px; border-radius: 999px; background: var(--lime); }
.hero-content h1 { width: 100%; max-width: 720px; margin-bottom: 22px; color: #fff; font-weight: 800; }
.hero-content h1 em { color: var(--lime); font-style: normal; }
.hero-content > p { max-width: 590px; margin-bottom: 28px; color: rgba(255,255,255,.86); font-size: 1.03rem; line-height: 1.65; }
.hero-applications { position: absolute; z-index: 3; bottom: -48px; left: 0; width: 100%; }
.hero-applications-grid { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); overflow: hidden; padding: 8px; background: rgba(31,55,52,.72); border: 1px solid rgba(255,255,255,.22); border-radius: 16px; box-shadow: 0 22px 48px rgba(8,32,29,.25); -webkit-backdrop-filter: blur(16px) saturate(120%); backdrop-filter: blur(16px) saturate(120%); }
.hero-applications-grid::before { content: ''; position: absolute; top: 0; right: 24px; left: 24px; height: 3px; border-radius: 0 0 4px 4px; background: var(--lime); }
.hero-applications a { min-height: 78px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 10px; color: #fff; text-decoration: none; font-family: "Poppins", Arial, sans-serif; font-size: .71rem; font-weight: 600; border-right: 1px solid rgba(255,255,255,.14); transition: color .2s ease, background .2s ease, border-radius .2s ease; }
.hero-applications a:last-child { border-right: 0; }
.hero-applications a:hover { color: var(--lime); background: rgba(255,255,255,.09); border-radius: 12px; }
.hero-applications svg { width: 27px; height: 27px; color: rgba(255,255,255,.92); stroke-width: 1.4; }

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .hero-applications-grid { background: rgba(43,73,70,.96); }
}

.section { padding: clamp(78px, 8vw, 116px) 0; }
.section--soft { background: var(--soft); }
.section--brand { color: #fff; background: var(--green); }
.section--brand p { color: rgba(255,255,255,.76); }
.split-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(48px, 7vw, 92px); align-items: center; }
.split-grid--reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.section-copy { max-width: 580px; }
.section-copy h2 { margin-bottom: 17px; }
.section-copy p { font-size: 1.02rem; }
.eyebrow { display: none; }
.section--brand .eyebrow { color: var(--lime); }
.accent-line { width: 52px; height: 3px; margin: 0 0 25px; border-radius: 999px; background: var(--lime); }
.image-frame { margin: 0; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow); }
.image-frame img { width: 100%; min-height: 440px; object-fit: cover; }
.problem-section { padding-top: calc(clamp(76px, 9vw, 132px) + 48px); }
.problem-section .image-frame img { object-position: center; }
.polyurea-section .image-frame img { min-height: 500px; }

.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px 28px; margin-top: 34px; }
.polyurea-section .section-copy > .button { margin-top: 34px; }
.benefit-grid > div { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.045); }
.benefit-grid svg { flex: 0 0 35px; width: 35px; height: 35px; color: var(--lime); }
.benefit-grid p { margin: 0; }
.benefit-grid strong, .benefit-grid span { display: block; }
.benefit-grid strong { margin-bottom: 5px; color: #fff; text-transform: uppercase; font-size: .76rem; letter-spacing: .035em; }
.benefit-grid span { font-size: .84rem; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-heading h2 { margin: 0; }
.inline-link { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; color: var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: .055em; font-size: .71rem; font-weight: 900; }
.inline-link:hover { color: #78870f; }
.applications-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.application-card { position: relative; min-height: 320px; overflow: hidden; border-radius: 14px; background: var(--green-deep); color: #fff; }
.application-card:first-child, .application-card:last-child { grid-column: span 2; }
.application-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.application-card:hover > img { transform: scale(1.055); }
.card-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,18,17,.94) 0%, rgba(7,19,18,.28) 70%); }
.application-card-content { position: absolute; inset: auto 0 0; padding: 24px; }
.application-card-content > svg { width: 39px; height: 39px; margin-bottom: 16px; color: #fff; }
.application-card h3 { margin: 0 0 7px; font-size: 1.45rem; }
.application-card p { max-width: 88%; margin: 0; color: rgba(255,255,255,.76); font-size: .88rem; }
.card-arrow { position: absolute; right: 20px; bottom: 22px; color: var(--lime); }

.works-section .check-list { display: grid; gap: 7px; padding: 0; margin: 26px 0 30px; list-style: none; }
.check-list li { position: relative; padding-left: 27px; color: #465652; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #88991b; font-weight: 900; }

.method-section { padding: 34px 0; background: #eef1ef; border-block: 1px solid var(--line); }
.method-grid { display: grid; grid-template-columns: 1.65fr repeat(5, 1fr); }
.method-intro, .method-step { min-height: 190px; padding: 32px 23px; border-right: 1px solid #d2d9d6; }
.method-intro { padding-left: 0; }
.method-grid > :last-child { border-right: 0; }
.method-intro h2 { max-width: 310px; margin: 0; font-size: clamp(1.65rem, 2.2vw, 2.25rem); }
.method-step > span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 24px; color: #5e6b09; background: rgba(191,210,47,.34); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.method-step h3 { margin-bottom: 10px; font-size: 1rem; }
.method-step p { margin: 0; font-size: .82rem; }

.projects-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.project-card a { text-decoration: none; }
.project-card img { width: 100%; aspect-ratio: 1.55; object-fit: cover; margin-bottom: 18px; }
.project-card h3, .project-card h2 { margin: 0 0 7px; font-size: 1.05rem; line-height: 1.25; }
.project-card p { margin: 0; color: #74817e; font-size: .82rem; }

.contact-cta { padding: 44px 0; color: #fff; background: var(--green); border-top: 1px solid rgba(255,255,255,.12); }
.contact-cta-inner { display: grid; grid-template-columns: auto minmax(280px,1fr) auto; align-items: center; gap: 24px; }
.cta-icon { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid rgba(255,255,255,.35); transform: rotate(45deg); }
.cta-icon svg { width: 34px; height: 34px; transform: rotate(-45deg); color: #fff; }
.contact-cta h2 { margin: 0 0 7px; font-size: clamp(1.45rem, 2.5vw, 2.25rem); }
.contact-cta p { margin: 0; color: rgba(255,255,255,.73); }
.contact-cta .st-photo-credits { margin-top: 24px; color: rgba(255,255,255,.48); font-size: .68rem; text-align: right; }
.st-photo-credits a { color: inherit; }

.site-footer { padding: 60px 0 18px; color: rgba(255,255,255,.77); background: #091918; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 54px; }
.footer-brand img { width: 142px; height: 120px; object-fit: cover; mix-blend-mode: screen; }
.footer-brand p { max-width: 230px; color: rgba(255,255,255,.54); }
.site-footer h2 { margin-bottom: 18px; color: #fff; font-size: .95rem; letter-spacing: 0; }
.site-footer ul { display: grid; gap: 7px; padding: 0; margin: 0; list-style: none; }
.site-footer a { display: block; color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.site-footer address { margin-bottom: 12px; font-style: normal; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 50px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.42); font-size: .72rem; }
.footer-bottom div { display: flex; gap: 10px; }

.content-page { min-height: 70vh; padding-top: 160px; padding-bottom: 100px; }
.page-builder-content { min-height: 70vh; }
.page-builder-content > p:empty { display: none; }
.empty-page-notice { min-height: 70vh; padding: 180px 0 100px; color: #fff; background: var(--green-deep); }
.empty-page-notice p { max-width: 650px; color: rgba(255,255,255,.76); }
.empty-page-notice a { display: inline-flex; padding: 11px 16px; color: var(--ink); background: var(--lime); text-decoration: none; font-weight: 800; }
.entry-content { max-width: 780px; }
.entry-content > * + * { margin-top: 1.4em; }
.page-hero { padding: 180px 0 90px; color: #fff; background: var(--green-deep); }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.76); font-size: 1.1rem; }
.project-content { padding-top: 70px; padding-bottom: 100px; }
.project-content > img { width: 100%; max-height: 680px; object-fit: cover; margin-bottom: 50px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 40px, 960px); }
  .primary-nav { gap: 14px; }
  .primary-nav .menu { gap: 14px; }
  .primary-nav .menu a { font-size: .74rem; }
  .method-grid { grid-template-columns: repeat(5, 1fr); }
  .method-intro { grid-column: 1 / -1; min-height: auto; padding: 48px 0 28px; border-right: 0; }
  .method-intro h2 { max-width: none; }
  .method-step { min-height: 190px; }
  .contact-cta-inner { grid-template-columns: auto 1fr; }
  .contact-cta .button-row { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 720px); }
  .header-inner { min-height: 96px; }
  .site-brand { flex-basis: 82px; width: 82px; height: 82px; }
  .site-brand img { width: 82px; height: 82px; }
  .menu-toggle { position: relative; z-index: 102; display: block; margin-left: auto; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; justify-content: center; gap: 30px; padding: 90px 28px 36px; visibility: hidden; opacity: 0; background: var(--green-deep); transform: translateY(-12px); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .primary-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .primary-nav .menu { flex-direction: column; gap: 18px; }
  .primary-nav .menu a { font-size: clamp(1.3rem, 5vw, 2rem); }
  .primary-nav .button { min-width: 240px; }
  .hero { min-height: 780px; padding-top: 96px; padding-bottom: 115px; background-position: 64% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,21,20,.9), rgba(7,21,20,.47)), linear-gradient(0deg, rgba(7,23,21,.94) 0%, transparent 50%); }
  .hero-content { padding-bottom: 30px; }
  .hero-applications { bottom: -96px; }
  .hero-applications-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-applications a { min-height: 70px; font-size: .68rem; }
  .hero-applications a:nth-child(3) { border-right: 0; }
  .hero-applications a:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero-applications svg { width: 25px; height: 25px; }
  .problem-section { padding-top: 170px; }
  .split-grid, .split-grid--reverse { grid-template-columns: 1fr; gap: 44px; }
  .section-copy { max-width: none; }
  .polyurea-section .image-frame { order: 2; }
  .applications-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .works-section .image-frame { order: -1; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-intro { grid-column: 1 / -1; }
  .method-step { min-height: 170px; }
  .method-step:nth-child(even) { border-right: 0; }
  .projects-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-icon { margin-inline: auto; }
  .contact-cta .button-row { grid-column: 1; justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 30px); }
  body { font-size: 16px; }
  h1 { font-size: clamp(1.9rem, 7.5vw, 2.15rem); line-height: 1.12; letter-spacing: -.035em; }
  h2 { font-size: clamp(1.65rem, 7vw, 2rem); line-height: 1.16; }
  .header-inner { min-height: 88px; }
  .site-brand { flex-basis: 76px; width: 76px; height: 76px; }
  .site-brand img { width: 76px; height: 76px; }
  .hero { display: block; min-height: 0; padding: 88px 0 0; background-position: 60% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(8,25,23,.55) 0%, rgba(8,25,23,.82) 48%, rgba(8,25,23,.97) 100%); }
  .hero > .hero-content.shell { width: calc(100% - 36px); margin-inline: 18px; padding-top: 82px; padding-right: 0; padding-bottom: 46px; padding-left: 0; text-align: center; }
  .hero-content::before { display: none; }
  .hero-content h1 { max-width: 100%; margin-right: auto; margin-bottom: 20px; margin-left: auto; }
  .hero-content > p { max-width: 390px; margin-right: auto; margin-bottom: 26px; margin-left: auto; font-size: .95rem; line-height: 1.62; }
  .hero .button-row { align-items: center; justify-content: center; flex-direction: column; width: 100%; }
  .hero .button { width: min(100%, 350px); min-height: 52px; padding-inline: 18px; }
  .hero-applications { position: relative; bottom: auto; left: auto; padding: 0 0 18px; }
  .hero-applications-grid { width: calc(100% - 24px); grid-template-columns: repeat(3, 1fr); margin-inline: 12px; padding: 6px; border-radius: 14px; box-shadow: 0 14px 32px rgba(8,32,29,.22); }
  .hero-applications a { min-height: 76px; flex-direction: column; gap: 6px; padding: 10px 4px; text-align: center; font-size: .66rem; }
  .hero-applications svg { width: 24px; height: 24px; }
  .section { padding: 66px 0; }
  .problem-section { padding-top: 70px; }
  .split-grid, .split-grid--reverse { gap: 32px; }
  .section-copy h2 { margin-bottom: 16px; }
  .section-copy p { font-size: .96rem; line-height: 1.65; }
  .accent-line { width: 48px; margin-bottom: 22px; }
  .image-frame { border-radius: 12px; box-shadow: 0 14px 34px rgba(14,40,37,.12); }
  .image-frame img, .polyurea-section .image-frame img { min-height: 285px; max-height: 360px; }
  .benefit-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 26px; }
  .benefit-grid > div { padding: 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(255,255,255,.055); }
  .benefit-grid svg { flex-basis: 30px; width: 30px; height: 30px; }
  .polyurea-section .section-copy > .button { width: 100%; margin-top: 24px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 26px; }
  .applications-grid { grid-template-columns: 1fr; gap: 12px; }
  .application-card:first-child, .application-card:last-child { grid-column: auto; }
  .application-card { min-height: 240px; border-radius: 12px; }
  .application-card-content { padding: 22px; }
  .application-card-content > svg { width: 32px; height: 32px; margin-bottom: 12px; }
  .application-card h3 { font-size: 1.3rem; }
  .application-card p { max-width: 84%; font-size: .84rem; }
  .method-section { padding: 62px 0; }
  .method-grid { width: calc(100% - 30px); grid-template-columns: 1fr; gap: 10px; }
  .method-intro { padding: 0 0 20px; text-align: center; }
  .method-intro h2 { max-width: 320px; margin-inline: auto; }
  .method-step { min-height: auto; padding: 20px 22px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
  .method-step > span { margin-bottom: 8px; }
  .method-step h3 { margin-bottom: 5px; }
  .method-step p { font-size: .86rem; }
  .projects-grid { grid-template-columns: 1fr; gap: 28px; }
  .project-card { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
  .project-card:last-child { padding-bottom: 0; border-bottom: 0; }
  .project-card img { aspect-ratio: 1.55; margin-bottom: 14px; border-radius: 10px; }
  .contact-cta { padding: 54px 0; }
  .contact-cta-inner { gap: 20px; }
  .contact-cta h2 { font-size: 1.55rem; }
  .contact-cta p { font-size: .94rem; line-height: 1.6; }
  .contact-cta .button-row { flex-direction: column; align-items: center; width: 100%; }
  .contact-cta .button { width: min(100%, 350px); }
  .contact-cta .st-photo-credits { margin-top: 30px; text-align: center; line-height: 1.5; }
  .site-footer { padding-top: 52px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand img, .footer-brand p { margin-inline: auto; }
  .site-footer ul { justify-items: center; }
  .footer-bottom { align-items: center; margin-top: 38px; }
  .footer-bottom div { justify-content: center; }
  .footer-bottom div { flex-wrap: wrap; }
}

@media (max-width: 380px) {
  :root { --shell: calc(100% - 24px); }
  h1 { font-size: 1.78rem; }
  .hero > .hero-content.shell { width: calc(100% - 28px); margin-inline: 14px; }
  .hero-content > p { font-size: .91rem; }
  .hero-applications a { padding-inline: 5px; font-size: .61rem; }
}

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