:root {
  --forest: #043c20;
  --forest-deep: #032f19;
  --green: #07552b;
  --teal: #0a7f78;
  --gold: #f4b43d;
  --gold-deep: #d69219;
  --mint: #e8f8ee;
  --cream: #fffdf7;
  --paper: #f7f3e8;
  --ink: #173a29;
  --body: #496858;
  --line: #cfe1d5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(4, 60, 32, 0.13);
  --shell: min(1180px, calc(100vw - 48px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--cream) 91%, transparent);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(4, 60, 32, 0.1);
  box-shadow: 0 8px 28px rgba(4, 60, 32, 0.07);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand-copy strong span {
  color: var(--forest);
}

.brand-copy strong {
  color: var(--teal);
}

.brand-copy small {
  margin-top: 7px;
  color: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  min-width: 88px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font-weight: 800;
}

.menu-lines {
  display: grid;
  gap: 5px;
}

.menu-lines i {
  display: block;
  width: 16px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--teal);
  border-color: var(--teal);
}

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest-deep);
}

.button-gold:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--forest-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero {
  overflow: hidden;
  padding: 52px 0 72px;
  background:
    radial-gradient(circle at 2% 18%, rgba(244, 180, 61, 0.14), transparent 26%),
    linear-gradient(180deg, var(--cream), #f8f6ed);
}

.hero-grid {
  display: grid;
  min-height: 620px;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: 58px;
}

.hero-copy {
  padding-block: 28px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 36px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #73d0ac;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 730px;
  font-size: clamp(3.45rem, 5.4vw, 5.8rem);
}

h2 {
  font-size: clamp(2.5rem, 4.7vw, 4.9rem);
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.12;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--body);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin: 34px 0 0;
  padding: 0;
  color: var(--body);
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}

.proof-list li {
  position: relative;
  padding-left: 15px;
}

.proof-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.hero-media::before {
  position: absolute;
  z-index: 0;
  inset: 26px -120px -28px 54px;
  background: var(--mint);
  content: "";
}

.hero-media picture {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: 2px 120px 2px 2px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  display: grid;
  max-width: 355px;
  gap: 5px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: 0 16px 45px rgba(4, 60, 32, 0.2);
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 21px;
}

.hero-note span {
  color: var(--body);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.signal-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.signal-grid {
  display: grid;
  min-height: 86px;
  align-items: center;
  grid-template-columns: 1.8fr repeat(4, auto);
  gap: 28px;
}

.signal-grid p {
  margin: 0;
  color: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signal-grid p:not(:first-child) {
  position: relative;
  padding-left: 18px;
}

.signal-grid p:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.section {
  padding: 116px 0;
}

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 72px;
  align-items: end;
}

.split-heading h2 {
  max-width: 760px;
}

.split-heading > p {
  margin: 0 0 7px;
  color: var(--body);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-card-photo {
  min-height: 675px;
  grid-template-rows: 330px 1fr;
}

.card-media {
  overflow: hidden;
  background: var(--forest);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .card-media img {
  transform: scale(1.025);
}

.card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
}

.card-number,
.point-index {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.card-copy > p:not(.card-number):not(.card-meta) {
  margin: 16px 0 0;
  color: var(--body);
}

.card-meta {
  margin: 22px 0 26px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-copy .text-link {
  margin-top: auto;
}

.product-card-brief {
  position: relative;
  min-height: 430px;
  grid-column: 1 / -1;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  background: var(--mint);
}

.brief-mark {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 100%;
  place-items: center;
  background:
    linear-gradient(130deg, transparent 48%, rgba(244, 180, 61, 0.55) 48.2%, rgba(244, 180, 61, 0.55) 49.2%, transparent 49.4%),
    var(--forest);
}

.brief-mark::before,
.brief-mark::after {
  position: absolute;
  width: 72%;
  height: 3px;
  transform: rotate(-10deg);
  background: var(--teal);
  content: "";
}

.brief-mark::before {
  top: 24%;
  left: -10%;
}

.brief-mark::after {
  right: -12%;
  bottom: 23%;
  background: var(--gold);
}

.brief-mark img {
  position: relative;
  z-index: 1;
  width: 145px;
  padding: 17px;
  border-radius: 28px;
  background: var(--cream);
}

.product-card-brief .card-copy {
  justify-content: center;
  padding: 52px clamp(36px, 6vw, 86px);
}

.product-card-brief .card-copy > p:not(.card-number):not(.card-meta) {
  max-width: 720px;
}

.portfolio-line {
  display: grid;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  grid-template-columns: 190px 1fr;
  gap: 24px;
}

.portfolio-line > p {
  margin: 8px 0 0;
  color: var(--forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-chips span {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--body);
  font-size: 13px;
  font-weight: 700;
}

.advantage {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.advantage::before {
  position: absolute;
  top: -400px;
  right: -340px;
  width: 780px;
  height: 780px;
  border: 2px solid rgba(244, 180, 61, 0.28);
  border-radius: 50%;
  content: "";
}

.advantage::after {
  position: absolute;
  right: -140px;
  bottom: -370px;
  width: 660px;
  height: 660px;
  border: 2px solid rgba(10, 127, 120, 0.55);
  border-radius: 50%;
  content: "";
}

.advantage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: 90px;
}

.advantage-copy {
  align-self: start;
  position: sticky;
  top: 130px;
}

.advantage-copy h2 {
  max-width: 620px;
}

.advantage-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 30px 0 34px;
  color: #b9d3c5;
}

.advantage-points {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.advantage-points article {
  display: grid;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 56px 1fr;
  gap: 24px;
}

.advantage-points h3 {
  color: var(--white);
}

.advantage-points p:not(.point-index) {
  margin: 12px 0 0;
  color: #b9d3c5;
}

.point-index {
  color: var(--gold);
}

.process {
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.process-heading h2 {
  max-width: 820px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(4, 60, 32, 0.22);
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list li {
  min-height: 350px;
  padding: 30px 28px 38px;
  border-right: 1px solid rgba(4, 60, 32, 0.22);
}

.process-list li:first-child {
  border-left: 1px solid rgba(4, 60, 32, 0.22);
}

.process-list span {
  display: block;
  margin-bottom: 82px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.process-list h3 {
  font-size: 26px;
}

.process-list p {
  margin: 16px 0 0;
  color: var(--body);
  font-size: 15px;
}

.decision-section {
  background: var(--white);
}

.decision-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.decision-title h2 {
  max-width: 590px;
}

.decision-panel {
  padding: 46px 48px;
  border-top: 5px solid var(--gold);
  background: var(--mint);
}

.decision-panel > p {
  margin: 0 0 25px;
  color: var(--body);
}

.decision-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-panel li {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid rgba(4, 60, 32, 0.15);
  grid-template-columns: 42px 1fr;
  gap: 10px;
  color: var(--forest);
  font-weight: 750;
}

.decision-panel li span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.inquiry {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.inquiry::before {
  position: absolute;
  top: 70px;
  left: -260px;
  width: 570px;
  height: 570px;
  border: 2px solid rgba(244, 180, 61, 0.24);
  border-radius: 50%;
  content: "";
}

.inquiry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 92px;
  align-items: start;
}

.inquiry-copy h2 {
  max-width: 560px;
}

.inquiry-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 0;
  color: #b9d3c5;
}

.contact-block {
  display: grid;
  gap: 7px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-block a {
  width: fit-content;
  color: var(--white);
  font-weight: 800;
}

.contact-block address {
  margin-top: 13px;
  color: #b9d3c5;
  font-style: normal;
}

.inquiry-form {
  display: grid;
  gap: 20px;
  padding: 44px;
  border-top: 5px solid var(--gold);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form label > span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b8cdc0;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.inquiry-form textarea {
  min-height: 132px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(10, 127, 120, 0.18);
}

.form-submit {
  justify-self: start;
}

.inquiry-form .button-gold:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--body);
  font-size: 12px;
}

.form-status:not(:empty) {
  padding: 11px 13px;
  border-left: 3px solid var(--teal);
  background: var(--mint);
  color: var(--forest);
  font-weight: 750;
}

.site-footer {
  padding: 64px 0 26px;
  background: #022515;
  color: #b9d3c5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.9fr;
  gap: 60px;
}

.brand-footer {
  width: fit-content;
  color: var(--white);
}

.brand-footer .brand-copy strong span {
  color: var(--white);
}

.footer-brand p {
  max-width: 370px;
  margin: 18px 0 0;
  font-size: 14px;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.footer-contact p {
  margin: 5px 0 0;
  font-size: 14px;
}

.footer-bottom {
  display: grid;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 0.55fr 1.45fr;
  gap: 50px;
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.not-found {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
  background: var(--forest);
  color: var(--white);
}

.not-found-card {
  width: min(680px, 100%);
  padding: clamp(34px, 8vw, 72px);
  border-top: 5px solid var(--gold);
  background: var(--cream);
  color: var(--ink);
}

.not-found-card > img {
  width: 76px;
  margin-bottom: 32px;
}

.not-found-card h1 {
  font-size: clamp(3.2rem, 10vw, 6rem);
}

.not-found-card > p:not(.eyebrow) {
  margin: 24px 0 30px;
  color: var(--body);
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .header-inner {
    min-height: 76px;
  }

  .menu-button {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    padding: 24px max(20px, calc((100vw - 900px) / 2));
    transform: translateY(-12px);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 20px 45px rgba(4, 60, 32, 0.14);
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

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

  .primary-nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .button {
    margin-top: 14px;
  }

  .menu-button[aria-expanded="true"] .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] .menu-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    padding-top: 40px;
  }

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

  .hero-grid {
    gap: 36px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-media {
    min-height: 560px;
  }

  .signal-grid {
    min-height: 0;
    padding-block: 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-grid p:first-child {
    grid-column: 1 / -1;
  }

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

  .product-card-brief {
    grid-column: auto;
  }

  .advantage-grid {
    gap: 56px;
  }

  .advantage-copy {
    position: static;
  }

  .process-heading,
  .decision-grid {
    grid-template-columns: 1fr;
  }

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

  .process-list li {
    border-bottom: 1px solid rgba(4, 60, 32, 0.22);
  }

  .process-list li:nth-child(3) {
    border-left: 1px solid rgba(4, 60, 32, 0.22);
  }

  .decision-grid {
    gap: 48px;
  }

  .inquiry-grid {
    gap: 56px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
  }

  body {
    font-size: 16px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero {
    padding: 22px 0 52px;
  }

  .hero-grid {
    min-height: 0;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.5rem);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .proof-list {
    display: grid;
    gap: 8px;
  }

  .hero-media {
    min-height: 480px;
  }

  .hero-media picture {
    border-radius: 2px 68px 2px 2px;
  }

  .hero-media::before {
    inset: 22px -50px -20px 36px;
  }

  .hero-note {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .signal-grid {
    gap: 12px;
  }

  .section {
    padding: 82px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-card-photo {
    min-height: 0;
    grid-template-rows: 280px auto;
  }

  .card-copy {
    padding: 28px 24px 32px;
  }

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

  .brief-mark {
    min-height: 240px;
  }

  .product-card-brief .card-copy {
    padding: 34px 24px 40px;
  }

  .portfolio-line {
    grid-template-columns: 1fr;
  }

  .advantage-grid {
    gap: 48px;
  }

  .advantage-points article {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .process-heading {
    gap: 16px;
  }

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

  .process-list li,
  .process-list li:nth-child(3) {
    min-height: 0;
    border-left: 1px solid rgba(4, 60, 32, 0.22);
  }

  .process-list span {
    margin-bottom: 40px;
  }

  .decision-panel,
  .inquiry-form {
    padding: 32px 24px;
  }

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

  .form-submit {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    display: none;
  }

  .menu-button {
    min-width: 76px;
  }

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

  .hero-note span {
    font-size: 11px;
  }

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

  .signal-grid p:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .eyebrow span,
  .proof-list li::before,
  .signal-grid p:not(:first-child)::before {
    background: CanvasText;
  }

  .button,
  .product-card,
  .inquiry-form,
  .decision-panel {
    border: 2px solid CanvasText;
  }
}
