:root {
  --green: #07845f;
  --green-dark: #006448;
  --green-soft: #e9f5f1;
  --signal: #65d8b4;
  --navy: #21394f;
  --navy-deep: #132b40;
  --ink: #253b4e;
  --muted: #607080;
  --line: #d9e4e1;
  --paper: #ffffff;
  --off-white: #f7faf9;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-size: 64px 64px;
  background-image:
    linear-gradient(rgba(7, 132, 95, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 132, 95, 0.045) 1px, transparent 1px);
}

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

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

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

button,
select {
  cursor: pointer;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: white;
  background: var(--navy-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(19, 43, 64, 0.08);
}

.header-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.header-mark {
  width: 39px;
  height: 47px;
  object-fit: contain;
}

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

.header-brand-copy small {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 700;
}

.header-brand-copy strong {
  color: var(--navy-deep);
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 21px;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 34px 0 32px;
  color: #405668;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.is-active {
  color: var(--navy-deep);
}

.header-contact {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: 8px;
  padding: 0 23px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.mobile-nav {
  display: none;
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--navy-deep);
  background: rgba(247, 250, 249, 0.92);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 670px;
  height: 390px;
  border: 42px solid var(--navy);
  border-right: 0;
  border-bottom: 0;
  border-radius: 100% 0 0;
  transform: rotate(-7deg);
  pointer-events: none;
}

.page-hero-inner {
  min-height: 485px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 90px;
  align-items: center;
  padding: 82px 0 92px;
}

.page-eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--green-dark);
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-eyebrow::before,
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green);
}

.page-hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(46px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.34;
  text-wrap: balance;
}

.page-hero h1 span {
  display: inline-block;
  color: var(--green-dark);
  white-space: nowrap;
}

.page-hero h1 .phrase-nowrap {
  display: inline;
  color: inherit;
  white-space: nowrap;
}

.page-lead {
  max-width: 760px;
  margin: 27px 0 0;
  color: #506578;
  font-size: 17px;
  line-height: 2;
}

.page-index {
  position: relative;
  z-index: 1;
  min-height: 250px;
  display: grid;
  align-content: space-between;
  padding: 30px;
  color: white;
  background: var(--navy-deep);
  border-top: 3px solid var(--signal);
}

.page-index small,
.page-index strong,
.page-index span {
  display: block;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
}

.page-index small {
  color: var(--signal);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.page-index strong {
  margin: 27px 0;
  font-size: 28px;
  line-height: 1.5;
}

.page-index span {
  color: #a9bcc8;
  font-size: 11px;
}

.section {
  padding: 104px 0;
  background: var(--paper);
}

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

.section-dark {
  color: white;
  background: var(--navy-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 56px;
  align-items: start;
  margin-bottom: 62px;
}

.section-heading h2,
.content-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.5;
}

.section-dark .section-label {
  color: var(--signal);
}

.section-dark .section-label::before {
  background: var(--signal);
}

.section-dark .section-heading h2 {
  color: white;
}

.section-intro {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
}

.section-dark .section-intro {
  color: #b8c8d1;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 88px;
  align-items: start;
}

.content-heading {
  position: sticky;
  top: 130px;
}

.content-heading p {
  margin: 24px 0 0;
  color: var(--muted);
}

.prose {
  color: #405668;
}

.prose .opening {
  margin-top: 0;
  color: var(--navy-deep);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8;
}

.prose p {
  margin: 0 0 26px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: white;
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-secondary {
  color: var(--navy-deep);
  background: white;
  border-color: #b7c9c4;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--green-dark);
  border-color: var(--green);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.value-grid,
.service-summary-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-item,
.service-summary,
.article-card {
  min-width: 0;
  padding: 36px 30px 40px;
}

.value-item + .value-item,
.service-summary + .service-summary,
.article-card + .article-card {
  border-left: 1px solid var(--line);
}

.value-number,
.service-number,
.article-meta {
  color: var(--green-dark);
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.value-icon,
.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 30px 0 20px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid #b9dbd1;
  border-radius: 2px;
}

.value-item h3,
.service-summary h3,
.article-card h2,
.article-card h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 21px;
  line-height: 1.6;
}

.value-item p,
.service-summary p,
.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-detail-list {
  border-top: 1px solid var(--line);
}

.service-detail {
  display: grid;
  grid-template-columns: 110px minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: 44px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.service-detail-number {
  color: var(--green-dark);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.service-detail-title .service-icon {
  margin-top: 0;
}

.service-detail h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 27px;
  line-height: 1.55;
}

.service-detail-copy > p {
  margin: 0 0 24px;
  color: #405668;
}

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

.check-list li {
  position: relative;
  padding-left: 25px;
  color: #405668;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 12px;
  height: 6px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}

.process-list {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: process;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 54px;
  left: 37px;
  width: 1px;
  background: #b9d8d0;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 34px;
  padding: 28px 0;
}

.process-item > span {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: white;
  border: 1px solid #a9d1c5;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.process-item > div {
  padding: 6px 0 28px;
  border-bottom: 1px solid var(--line);
}

.process-item h2 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: 24px;
}

.process-item p {
  margin: 0;
  color: var(--muted);
}

.process-output {
  display: inline-block;
  margin-top: 15px;
  padding: 4px 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 700;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--line);
}

.profile-table th,
.profile-table td {
  padding: 21px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.profile-table th {
  width: 180px;
  color: var(--green-dark);
  background: var(--off-white);
  font-size: 13px;
  font-weight: 700;
}

.representative-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.representative-band h2 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: 28px;
}

.representative-band p {
  margin: 0;
  color: var(--muted);
}

.article-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 34px;
  gap: 30px;
  align-items: center;
  padding: 32px;
  background: white;
  transition: background 180ms ease;
}

.article-row:hover,
.article-row:focus-visible {
  background: var(--off-white);
}

.article-row time,
.article-row .category {
  display: block;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 11px;
}

.article-row time {
  color: var(--muted);
}

.article-row .category {
  margin-top: 6px;
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
}

.article-row h2 {
  margin: 0 0 8px;
  color: var(--navy-deep);
  font-size: 20px;
  line-height: 1.6;
}

.article-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.article-row > .icon {
  color: var(--green-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 58px;
  align-items: start;
}

.contact-form {
  padding: 40px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 4px;
}

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

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 700;
}

.required,
.optional {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  border-radius: 2px;
  font-size: 10px;
  line-height: 1.6;
}

.required {
  color: white;
  background: var(--green);
}

.optional {
  color: var(--muted);
  background: #edf1f2;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: white;
  border: 1px solid #b8c8c4;
  border-radius: 2px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 190px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 132, 95, 0.12);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #405668;
  font-size: 13px;
  cursor: pointer;
}

.consent-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--green);
}

.consent-label a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.form-actions .button {
  width: 100%;
}

.form-error {
  margin: 0;
  padding: 12px 14px;
  color: #a1222d;
  background: #fff4f5;
  border: 1px solid #e6a5ab;
  font-size: 13px;
}

.contact-panel {
  position: sticky;
  top: 126px;
  padding: 34px;
  color: white;
  background: var(--navy-deep);
  border-top: 3px solid var(--signal);
}

.contact-panel h2 {
  margin: 12px 0;
  font-size: 23px;
}

.contact-panel p {
  margin: 0;
  color: #b9cad3;
  font-size: 14px;
}

.direct-list {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
}

.direct-list a,
.direct-list address {
  min-width: 0;
  display: block;
  padding: 15px 16px;
  color: white;
  background: var(--navy-deep);
  font-size: 13px;
  font-style: normal;
  overflow-wrap: anywhere;
}

.policy-content {
  max-width: 860px;
}

.policy-content section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.policy-content h2 {
  margin: 0 0 12px;
  color: var(--navy-deep);
  font-size: 22px;
}

.policy-content p,
.policy-content li {
  color: #405668;
}

.policy-content ul {
  margin: 0;
  padding-left: 1.4em;
}

.cta-band {
  color: white;
  background: var(--green-dark);
}

.cta-inner {
  min-height: 245px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  padding: 54px 0;
}

.cta-band .section-label {
  margin-bottom: 12px;
  color: var(--signal);
}

.cta-band .section-label::before {
  background: var(--signal);
}

.cta-band h2 {
  margin: 0;
  color: white;
  font-size: 33px;
  line-height: 1.55;
}

.cta-band p {
  margin: 13px 0 0;
  color: #c7ded6;
  font-size: 14px;
}

.cta-band .button {
  min-width: 210px;
  color: var(--green-dark);
  background: white;
  border-color: white;
}

.site-footer {
  color: #a8bac5;
  background: #0f2537;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(2, minmax(160px, 0.55fr));
  gap: 60px;
  padding: 62px 0 48px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.footer-brand img {
  width: 31px;
  height: 37px;
  object-fit: contain;
}

.footer-company p {
  margin: 18px 0 0;
  font-size: 12px;
  line-height: 1.9;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: var(--signal);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #c5d1d8;
  font-size: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: white;
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  font-size: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

:focus-visible {
  outline: 3px solid rgba(7, 132, 95, 0.28);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-contact {
    display: none;
  }

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

  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    padding: 0 20px;
    background: rgba(247, 250, 249, 0.98);
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    color: #405668;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
  }

  .mobile-nav a:first-child {
    border-left: 1px solid var(--line);
  }

  .mobile-nav a.is-active {
    color: var(--green-dark);
    background: var(--green-soft);
  }

  .mobile-nav .contact-link {
    color: white;
    background: var(--green);
  }

  .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 48px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 190px;
  }

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

  .page-hero-inner {
    gap: 42px;
    padding: 66px 0 72px;
  }

  .page-index {
    min-height: 200px;
  }

  .content-heading,
  .contact-panel {
    position: static;
  }

  .value-grid,
  .service-summary-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .value-item + .value-item,
  .service-summary + .service-summary,
  .article-card + .article-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-detail {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .service-detail-copy {
    grid-column: 2;
  }

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, var(--max-width));
  }

  .header-brand {
    min-width: 0;
  }

  .header-mark {
    width: 34px;
    height: 41px;
  }

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

  .mobile-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 16px;
  }

  .mobile-nav a {
    min-height: 40px;
    padding: 0 4px;
  }

  .page-hero::after {
    right: -280px;
    bottom: -270px;
  }

  .page-hero-inner {
    padding: 54px 0 62px;
  }

  .page-hero h1 {
    font-size: 36px;
    line-height: 1.43;
  }

  .page-lead {
    font-size: 15px;
  }

  .page-index {
    min-height: 180px;
    padding: 25px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 42px;
  }

  .section-heading h2,
  .content-heading h2 {
    font-size: 31px;
  }

  .split-layout {
    gap: 40px;
  }

  .prose .opening {
    font-size: 20px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 0;
  }

  .service-detail-copy {
    grid-column: auto;
  }

  .process-list::before {
    left: 25px;
  }

  .process-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
  }

  .process-item > span {
    width: 52px;
    height: 52px;
  }

  .profile-table,
  .profile-table tbody,
  .profile-table tr,
  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
  }

  .profile-table th {
    padding: 14px 16px 7px;
    border-bottom: 0;
  }

  .profile-table td {
    padding: 8px 16px 18px;
  }

  .representative-band,
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .representative-band .button,
  .cta-inner .button {
    width: 100%;
  }

  .article-row {
    grid-template-columns: 1fr 28px;
    gap: 14px;
    padding: 25px 20px;
  }

  .article-row > div:first-child {
    grid-column: 1 / -1;
  }

  .article-row > div:nth-child(2) {
    grid-column: 1;
  }

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

  .field-full {
    grid-column: auto;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .footer-bottom {
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .mobile-nav a {
    font-size: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
