:root {
  --ink: #111415;
  --muted: #5f6764;
  --surface: #ffffff;
  --paper: #f6f3ed;
  --paper-strong: #ece6db;
  --forest: #0f2d24;
  --forest-2: #173f34;
  --copper: #b9894b;
  --line: #dedbd2;
  --danger: #9f2a2a;
  --success: #1f6f4a;
  --shadow: 0 18px 48px rgba(17, 20, 21, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(185, 137, 75, 0.68);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(222, 219, 210, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 160ms ease, background 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(17, 20, 21, 0.08);
}

.nav {
  width: min(100% - 32px, var(--container));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--forest);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.brand__text {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand__text strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #333938;
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-menu a {
  position: relative;
  padding: 8px 0;
}

.nav-menu a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--forest);
  border-radius: 4px;
  padding: 10px 14px !important;
  background: var(--forest);
  color: #fff;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  background: var(--forest-2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
  transition: transform 160ms ease;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 12, 0.88) 0%, rgba(10, 12, 12, 0.7) 36%, rgba(10, 12, 12, 0.28) 75%),
    linear-gradient(180deg, rgba(10, 12, 12, 0.12), rgba(10, 12, 12, 0.5));
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 74px;
}

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

.hero .eyebrow {
  color: #f3c985;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 small {
  display: block;
}

.hero h1 small {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 850;
  line-height: 1.28;
}

.hero__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--copper);
  color: #15100b;
}

.button--primary:hover {
  background: #d2a15f;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.quick-contact {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.quick-contact__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(222, 219, 210, 0.9);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(17, 20, 21, 0.12);
}

.quick-contact strong {
  font-size: 1.02rem;
}

.quick-contact span {
  color: var(--muted);
}

.button--full {
  width: 100%;
}

.button.is-loading {
  opacity: 0.76;
  pointer-events: none;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 840px;
  margin: 48px 0 0;
}

.hero__proof div {
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
}

.hero__proof dt {
  font-size: 1.05rem;
  font-weight: 900;
}

.hero__proof dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.trust-strip {
  background: var(--forest);
  color: #fff;
}

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

.trust-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.section {
  padding: 92px 0;
}

.section--intro {
  padding-bottom: 60px;
}

.section--soft {
  background: var(--paper);
}

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

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section-heading {
  max-width: 680px;
}

.section-heading--center {
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 3.18rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: start;
}

.split--reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  align-items: center;
}

.split--media {
  align-items: center;
}

.intro-copy {
  color: #343a38;
  font-size: 1.03rem;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 18px;
}

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

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

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

.product-card,
.step-card,
.capability-list article,
.problem-card,
.benefit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-card {
  min-height: 460px;
  padding: 24px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-card__media,
.media-card {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 45, 36, 0.12), rgba(185, 137, 75, 0.16)),
    #f3efe6;
  background-position: center;
  background-size: cover;
}

.product-card__media {
  height: 156px;
  margin: -4px -4px 22px;
}

.product-card__media img,
.media-card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__media span,
.media-card__placeholder {
  position: relative;
  z-index: 1;
}

.product-card__media span {
  border: 1px solid rgba(15, 45, 36, 0.16);
  border-radius: 4px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-card__media.has-image span {
  display: none;
}

.product-card:hover {
  border-color: rgba(185, 137, 75, 0.58);
  box-shadow: 0 18px 46px rgba(17, 20, 21, 0.1);
  transform: translateY(-3px);
}

.product-card__label {
  display: inline-flex;
  border: 1px solid rgba(185, 137, 75, 0.36);
  border-radius: 4px;
  padding: 5px 9px;
  color: #7a5628;
  background: #fbf4e9;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-card h3,
.step-card h3,
.capability-list h3 {
  margin: 20px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.product-card p,
.step-card p,
.capability-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: #343a38;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 20px;
}

.product-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--forest);
}

.product-card .text-link {
  margin-top: 22px;
  color: var(--forest);
}

.product-card .text-link:hover {
  color: var(--copper);
}

.soft-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.soft-list span {
  border: 1px solid rgba(15, 45, 36, 0.14);
  border-radius: 4px;
  padding: 7px 10px;
  background: #fff;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 850;
}

.problem-card,
.benefit-card {
  min-height: 230px;
  padding: 24px;
}

.problem-card span,
.benefit-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 4px;
  background: var(--forest);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.problem-card h3,
.benefit-card h3 {
  margin: 20px 0 0;
  font-size: 1.22rem;
  line-height: 1.24;
}

.problem-card p,
.benefit-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.media-card {
  min-height: 440px;
  margin: 0;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(17, 20, 21, 0.08);
}

.media-card--small {
  min-height: 260px;
  box-shadow: none;
}

.media-card__placeholder {
  display: grid;
  gap: 8px;
  max-width: 300px;
  padding: 24px;
  text-align: center;
}

.media-card__placeholder span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-card__placeholder strong {
  color: var(--forest);
  font-size: 1.12rem;
  line-height: 1.24;
}

.media-card__placeholder small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.media-card.has-image .media-card__placeholder {
  opacity: 0;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 72px;
  align-items: center;
}

.factory-layout h2 {
  margin: 0;
  font-size: 3.18rem;
  font-weight: 900;
  line-height: 1.08;
}

.factory-layout > div > p:not(.eyebrow) {
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #f3c985;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link--button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0 18px;
  align-items: start;
  border-color: rgba(255, 255, 255, 0.12);
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.capability-list span {
  grid-row: span 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 4px;
  background: #fff;
  color: var(--forest);
  font-weight: 900;
}

.capability-list h3 {
  margin: 0;
}

.capability-list p {
  color: rgba(255, 255, 255, 0.72);
}

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

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

.step-card {
  min-height: 260px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #fbfaf6);
}

.step-card span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 4px;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
}

.quote-panel {
  border-left: 4px solid var(--forest);
  padding: 8px 0 8px 28px;
}

.quote-panel p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.28rem;
  line-height: 1.16;
}

.quote-panel span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.7fr);
  gap: 64px;
  align-items: center;
}

.price-list {
  display: grid;
  gap: 12px;
}

.price-list div {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}

.price-list strong {
  font-size: 1.04rem;
}

.price-list span {
  color: var(--muted);
}

.evidence-grid {
  display: grid;
  gap: 18px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(380px, 1fr);
  gap: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

summary:hover {
  color: var(--forest);
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: start;
}

.contact-copy h2 {
  margin: 0;
  font-size: 3.18rem;
  font-weight: 900;
  line-height: 1.08;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  max-width: 500px;
  margin-top: 32px;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-align: left;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.contact-method span {
  color: rgba(255, 255, 255, 0.7);
}

.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

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

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

.form-grid__wide {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: #252b29;
  font-size: 0.94rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d9d7cf;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 13px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #b8b2a4;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(15, 45, 36, 0.12);
  outline: 0;
}

.quote-form .button {
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-warning {
  color: #8a5a17;
}

.footer {
  background: #0b0d0d;
  color: #fff;
  padding: 38px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand--footer .brand__mark {
  background: #fff;
  color: var(--forest);
}

.brand--footer .brand__text span,
.footer p {
  color: rgba(255, 255, 255, 0.64);
}

.footer p {
  max-width: 520px;
  margin: 16px 0 0;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 6px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.footer-contact strong,
.footer-contact a {
  color: #fff;
}

.footer-contact a {
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer__links a:hover {
  color: #fff;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
}

.floating-cta__button {
  min-width: 72px;
  min-height: 52px;
  border: 0;
  border-radius: 4px;
  background: #0068ff;
  color: #fff;
  box-shadow: 0 14px 36px rgba(0, 104, 255, 0.32);
  font-weight: 900;
}

.floating-cta__button:hover {
  background: #0758cf;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 3.85rem;
  }

  .section-heading h2,
  .factory-layout h2,
  .contact-copy h2 {
    font-size: 2.65rem;
  }

  .quote-panel p {
    font-size: 2rem;
  }

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

  .factory-layout,
  .contact-layout,
  .faq-layout,
  .price-panel,
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px 10px;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero {
    min-height: 680px;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(10, 12, 12, 0.8) 0%, rgba(10, 12, 12, 0.68) 58%, rgba(10, 12, 12, 0.72) 100%),
      linear-gradient(90deg, rgba(10, 12, 12, 0.54), rgba(10, 12, 12, 0.18));
  }

  .hero__inner {
    padding: 72px 0 48px;
  }

  .hero__proof,
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }

  .trust-strip span,
  .trust-strip span:last-child {
    min-height: 54px;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 68px 0;
  }

  .section--intro {
    padding-bottom: 42px;
  }

  .quick-contact {
    margin-top: 0;
    background: var(--paper);
    padding: 18px 0 0;
  }

  .quick-contact__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-contact .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: min(100% - 24px, var(--container));
  }

  .brand__text span {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.45rem;
    line-height: 1.04;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero h1 small {
    font-size: 1.08rem;
  }

  .section-heading h2,
  .factory-layout h2,
  .contact-copy h2 {
    font-size: 2.18rem;
  }

  .quote-panel p {
    font-size: 1.55rem;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .product-grid,
  .step-grid,
  .problem-grid,
  .benefit-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .step-card {
    min-height: auto;
  }

  .capability-list article {
    grid-template-columns: 1fr;
  }

  .capability-list span {
    margin-bottom: 16px;
  }

  .quote-form {
    padding: 18px;
  }

  .contact-method {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-card {
    min-height: 320px;
  }

  body {
    padding-bottom: 76px;
  }

  .floating-cta {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 120;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    background: rgba(11, 13, 13, 0.94);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar button,
  .mobile-contact-bar a {
    display: inline-flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 4px;
    padding: 12px 10px;
    font-size: 0.94rem;
    font-weight: 900;
    text-align: center;
  }

  .mobile-contact-bar button {
    background: #0068ff;
    color: #fff;
  }

  .mobile-contact-bar a {
    background: #fff;
    color: var(--forest);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
