:root {
  --green-950: #062619;
  --green-900: #0a3121;
  --green-800: #12432f;
  --green-700: #1d5a40;
  --gold-500: #c4922f;
  --gold-300: #e2c27f;
  --mineral-200: #d9d1c2;
  --mineral-100: #ece7dc;
  --cream-100: #f4f0e6;
  --cream-50: #faf8f2;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #10251c;
  --muted: #5b685f;
  --line: rgba(6, 38, 25, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --content: min(1240px, calc(100vw - 64px));
  --header-height: 88px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

abbr[title] {
  text-decoration-color: rgba(196, 146, 47, 0.75);
  text-underline-offset: 3px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-950);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 10px max(32px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 242, 0.97);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  width: 178px;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.site-nav a {
  position: relative;
  color: var(--green-950);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  min-height: calc(100svh - var(--header-height));
  color: var(--white);
  background: var(--green-950);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(64px, 8vw, 118px) clamp(34px, 3.8vw, 58px) clamp(58px, 7vw, 98px) max(32px, calc((100vw - 1240px) / 2));
  overflow: hidden;
}

.hero__content::after {
  position: absolute;
  z-index: -1;
  right: -1px;
  bottom: 0;
  width: 34%;
  height: 1px;
  background: var(--gold-500);
  content: "";
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--gold-300);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__eyebrow > span {
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold-300);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 4.35vw, 4.55rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 > span {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  max-width: 600px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.62;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 54px;
  margin-top: 38px;
  padding: 0 21px;
  color: var(--green-950);
  background: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button-link:hover {
  background: var(--gold-300);
  transform: translateY(-2px);
}

.button-link > span {
  font-size: 1.05rem;
}

.hero__location {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__location span {
  margin-inline: 5px;
  color: var(--gold-300);
}

.hero__visual {
  position: relative;
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  background: var(--green-900);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 38, 25, 0.07);
  content: "";
  pointer-events: none;
}

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

.hero__visual figcaption,
.territory__visual figcaption {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__statement {
  position: absolute;
  z-index: 4;
  bottom: 44px;
  left: 0;
  width: min(350px, calc(100% - 40px));
  padding: 22px 27px;
  color: var(--green-950);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(10px);
}

.hero__statement span {
  display: block;
  margin-bottom: 4px;
  color: #7e5b17;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__statement strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.45;
}

.value-strip {
  color: var(--green-950);
  background: var(--paper);
}

.value-strip dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--content);
  margin: 0 auto;
}

.value-strip dl > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  min-height: 118px;
  padding: 24px 26px 24px 0;
}

.value-strip dl > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.value-strip dt {
  color: #87631d;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.value-strip dd {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 750;
  line-height: 1.4;
}

.section {
  width: var(--content);
  margin-inline: auto;
  padding-block: clamp(100px, 12vw, 172px);
}

.section-number {
  display: block;
  margin-bottom: 28px;
  color: #87631d;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.section-number--light {
  color: var(--gold-300);
}

.portfolio {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 132px);
  align-items: start;
}

.portfolio__intro {
  position: sticky;
  top: calc(var(--header-height) + 56px);
}

.portfolio h2,
.channel-model h2,
.development h2,
.expert-partner h2,
.territory h2,
.conviction h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.55rem, 4.85vw, 5rem);
  font-weight: 620;
  letter-spacing: -0.058em;
  line-height: 0.99;
  text-wrap: balance;
}

.portfolio__intro > p:last-child {
  max-width: 510px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.product-ledger {
  border-top: 1px solid var(--green-950);
}

.product-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 25px;
  padding: 34px 0 39px;
  border-bottom: 1px solid var(--line);
}

.product-row--with-partner {
  grid-template-columns: 42px minmax(0, 1fr) minmax(180px, 0.55fr);
}

.product-row__index {
  color: #87631d;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-row h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.product-row div > p {
  max-width: 530px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-row__partner {
  align-self: start;
  margin: 2px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold-500);
}

.product-row__partner[hidden] {
  display: none;
}

.product-row__partner > span:first-child {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-row__partner strong,
.product-row__partner > a {
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.4;
}

.product-row__partner > a {
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
}

.portfolio__note {
  grid-column: 2;
  max-width: 740px;
  margin: -74px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.65;
}

.channel-model {
  padding: clamp(100px, 11vw, 160px) max(32px, calc((100vw - 1240px) / 2));
  color: var(--white);
  background: var(--green-950);
}

.channel-model__header {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: 36px;
}

.channel-model h2 {
  max-width: 930px;
  color: var(--white);
}

.channel-model__header p {
  max-width: 680px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.69);
}

.business-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: clamp(74px, 8vw, 108px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  list-style: none;
}

.business-flow li {
  position: relative;
  display: flex;
  min-height: 220px;
  padding: 30px 24px 26px;
  flex-direction: column;
  justify-content: space-between;
}

.business-flow li + li {
  border-left: 1px solid var(--line-light);
}

.business-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -8px;
  display: grid;
  width: 16px;
  height: 16px;
  place-content: center;
  color: var(--gold-300);
  background: var(--green-950);
  content: "→";
  font-size: 0.76rem;
  transform: translateY(-50%);
}

.business-flow li > span {
  color: var(--gold-300);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.business-flow li > strong {
  max-width: 180px;
  font-size: clamp(1.06rem, 1.6vw, 1.38rem);
  line-height: 1.28;
}

.business-flow li > small {
  color: var(--green-950);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1.5;
}

.business-flow .business-flow__valenza {
  color: var(--green-950);
  background: var(--gold-500);
}

.business-flow .business-flow__valenza > span {
  color: var(--green-950);
}

.business-flow .business-flow__valenza::after {
  color: var(--green-950);
  background: var(--gold-500);
}

.channel-model__exclusivity {
  max-width: 760px;
  margin: 34px 0 0 auto;
  padding-left: 24px;
  border-left: 2px solid var(--gold-500);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 650;
}

.development {
  display: grid;
  grid-template-columns: minmax(290px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(64px, 10vw, 148px);
  align-items: start;
}

.development__intro {
  position: sticky;
  top: calc(var(--header-height) + 56px);
}

.development__intro > p:last-child {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--muted);
}

.support-rail {
  border-top: 1px solid var(--green-950);
}

.support-item {
  display: grid;
  grid-template-columns: 52px minmax(190px, 0.62fr) minmax(0, 1fr);
  gap: 25px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.support-item__number {
  color: #87631d;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.support-item h3 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.support-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.expert-partner {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  color: var(--white);
  background: var(--green-900);
}

.expert-partner__identity {
  display: flex;
  min-height: 590px;
  padding: clamp(70px, 9vw, 122px) clamp(32px, 7vw, 105px) clamp(70px, 9vw, 122px) max(32px, calc((100vw - 1240px) / 2));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-right: 1px solid var(--line-light);
}

.expert-partner__identity img {
  width: 150px;
  height: 150px;
  border: 1px solid var(--gold-500);
  object-fit: cover;
  box-shadow: 18px 18px 0 rgba(196, 146, 47, 0.16);
}

.expert-partner__identity p {
  margin: 44px 0 7px;
  color: var(--gold-300);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expert-partner__identity > a {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 6px;
}

.expert-partner__copy {
  padding: clamp(78px, 9vw, 128px) max(32px, calc((100vw - 1240px) / 2)) clamp(78px, 9vw, 128px) clamp(50px, 8vw, 118px);
}

.expert-partner h2 {
  max-width: 830px;
  color: var(--white);
  font-size: clamp(2.55rem, 4.5vw, 4.65rem);
}

.expert-partner__copy > p {
  max-width: 780px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.expertise-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
  margin-top: 50px;
  padding-top: 38px;
  border-top: 1px solid var(--line-light);
}

.expertise-columns h3 {
  margin: 0 0 20px;
  color: var(--gold-300);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.expertise-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-columns li {
  position: relative;
  padding: 12px 0 12px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.expertise-columns li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold-500);
  content: "";
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--white);
}

.territory {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  min-height: 780px;
  background: var(--cream-100);
}

.territory__visual {
  position: relative;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  background: var(--green-950);
}

.territory__visual::after {
  position: absolute;
  inset: 0;
  background: rgba(6, 38, 25, 0.04);
  content: "";
  pointer-events: none;
}

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

.territory__content {
  align-self: center;
  padding: clamp(74px, 9vw, 130px) max(32px, calc((100vw - 1240px) / 2)) clamp(74px, 9vw, 130px) clamp(50px, 7vw, 100px);
}

.territory h2 {
  max-width: 650px;
  font-size: clamp(2.55rem, 4.4vw, 4.6rem);
}

.territory__content > p:not(.territory__source) {
  max-width: 650px;
  margin: 31px 0 0;
  color: var(--muted);
}

.territory__facts {
  margin: 44px 0 0;
  border-top: 1px solid var(--green-950);
}

.territory__facts > div {
  display: grid;
  grid-template-columns: minmax(145px, 0.62fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.territory__facts dt {
  color: var(--green-950);
  font-size: 0.9rem;
  font-weight: 800;
}

.territory__facts dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.territory__source {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 0.63rem;
  line-height: 1.65;
}

.territory__source a {
  text-decoration-color: var(--gold-500);
  text-underline-offset: 3px;
}

.conviction {
  position: relative;
  display: grid;
  grid-template-columns: 1px minmax(0, 1fr) minmax(210px, 0.38fr);
  align-items: center;
  gap: clamp(45px, 7vw, 94px);
}

.conviction__rule {
  width: 1px;
  height: 100%;
  min-height: 310px;
  background: var(--gold-500);
}

.conviction h2 {
  max-width: 880px;
}

.conviction__content > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
}

.conviction__signature {
  margin: 0;
  padding: 36px 0 36px 32px;
  border-left: 1px solid var(--line);
  color: #7e5b17;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 32px;
  padding: 54px max(32px, calc((100vw - 1240px) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: var(--green-950);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand--footer {
  width: 166px;
  padding: 10px;
  background: var(--cream-50);
}

.site-footer p {
  margin: 0;
  line-height: 1.75;
}

.site-footer__legal {
  justify-self: end;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

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

@media (max-width: 1120px) {
  .portfolio,
  .development {
    gap: 68px;
  }

  .product-row {
    grid-template-columns: 35px minmax(0, 1fr);
  }

  .product-row__partner {
    grid-column: 2;
    margin-top: 2px;
  }

  .portfolio__note {
    margin-top: -46px;
  }

  .business-flow li {
    min-height: 200px;
    padding-inline: 18px;
  }

  .support-item {
    grid-template-columns: 42px minmax(160px, 0.62fr) minmax(0, 1fr);
  }

  .territory {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.9fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
    --content: min(100% - 40px, 760px);
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand {
    width: 154px;
  }

  .nav-toggle {
    z-index: 102;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    color: var(--green-950);
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform 220ms ease;
  }

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

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

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 40px 24px;
    visibility: hidden;
    background: var(--cream-50);
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 0s linear 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    width: 100%;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.15rem, 5vw, 1.75rem);
    letter-spacing: -0.025em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    min-height: 600px;
    padding: 76px max(20px, calc((100vw - 760px) / 2));
  }

  .hero h1 {
    max-width: 730px;
    font-size: clamp(3.35rem, 9vw, 5.4rem);
  }

  .hero__visual {
    min-height: 68vw;
    max-height: 720px;
  }

  .value-strip dl {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .value-strip dl > div {
    min-height: 106px;
    padding-inline: 24px;
    border-bottom: 1px solid var(--line);
  }

  .value-strip dl > div + div {
    border-left: 1px solid var(--line);
  }

  .value-strip dl > div:nth-child(3) {
    border-left: 0;
  }

  .portfolio,
  .development {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .portfolio__intro,
  .development__intro {
    position: static;
  }

  .portfolio__intro > p:last-child,
  .development__intro > p:last-child {
    max-width: 670px;
  }

  .portfolio__note {
    grid-column: 1;
    margin: -36px 0 0;
  }

  .channel-model {
    padding-inline: 24px;
  }

  .channel-model__header {
    grid-template-columns: 1fr;
  }

  .business-flow {
    grid-template-columns: 1fr;
  }

  .business-flow li {
    min-height: 145px;
  }

  .business-flow li + li {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .business-flow li:not(:last-child)::after {
    top: auto;
    right: 28px;
    bottom: -8px;
    transform: rotate(90deg);
  }

  .business-flow li > strong {
    max-width: 100%;
  }

  .channel-model__exclusivity {
    margin-left: 0;
  }

  .expert-partner,
  .territory {
    grid-template-columns: 1fr;
  }

  .expert-partner__identity {
    min-height: auto;
    padding: 78px max(20px, calc((100vw - 760px) / 2));
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .expert-partner__copy,
  .territory__content {
    width: var(--content);
    margin-inline: auto;
    padding: 88px 0;
  }

  .territory__visual {
    min-height: 65vw;
  }

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

  .conviction__signature {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100% - 40px);
  }

  .hero__content {
    min-height: 590px;
    padding-block: 64px;
  }

  .hero h1 {
    font-size: clamp(1.82rem, 8.45vw, 2.25rem);
  }

  .hero__lead {
    margin-top: 27px;
    font-size: 0.96rem;
  }

  .button-link {
    width: 100%;
    margin-top: 33px;
  }

  .hero__location {
    line-height: 1.7;
  }

  .hero__visual {
    min-height: 520px;
  }

  .hero__visual > img {
    object-position: 63% center;
  }

  .hero__statement {
    bottom: 40px;
    width: calc(100% - 28px);
  }

  .value-strip dl {
    grid-template-columns: 1fr;
  }

  .value-strip dl > div,
  .value-strip dl > div + div,
  .value-strip dl > div:nth-child(3) {
    border-left: 0;
  }

  .section {
    padding-block: 92px;
  }

  .portfolio h2,
  .channel-model h2,
  .development h2,
  .expert-partner h2,
  .territory h2,
  .conviction h2 {
    font-size: clamp(2rem, 9.15vw, 2.55rem);
  }

  .product-row {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 16px;
  }

  .product-row__partner {
    padding-left: 14px;
  }

  .support-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 17px;
  }

  .support-item p {
    grid-column: 2;
  }

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

  .territory__visual {
    min-height: 520px;
  }

  .territory__visual img {
    object-position: 61% center;
  }

  .territory__facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .conviction__rule {
    width: 72px;
    height: 1px;
    min-height: 0;
  }

  .conviction__signature {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 48px 20px;
  }

  .site-footer__legal {
    justify-self: start;
  }
}

@media (max-width: 360px) {
  .portfolio h2,
  .channel-model h2,
  .development h2,
  .expert-partner h2,
  .territory h2,
  .conviction h2 {
    font-size: 1.48rem;
    letter-spacing: -0.045em;
    line-height: 1.02;
  }
}

@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;
  }
}
