:root {
  --white: #fff;
  --warm: #fcfaf2;
  --warm-strong: #fdf4dc;
  --ink: #292724;
  --muted: #6e6a64;
  --line: #e1ded6;
  --line-strong: #bbb6ac;
  --number: #dcd6ca;
  --brand-yellow: #f4b000;
  --brand-orange: #ef7b00;
  --brand-red: #e10018;
  --brand-deep-red: #86121f;
  --max-width: 1240px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Yu Gothic", "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.86;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 9px 14px;
  color: var(--white);
  background: var(--brand-deep-red);
  transform: translateY(-150%);
}

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

.kicker,
.hero-kicker,
.service-tag,
.phase small {
  font-family: Arial, "Helvetica Neue", sans-serif;
  letter-spacing: .18em;
}

.kicker {
  color: #6d645b;
  font-size: .7rem;
  font-weight: 700;
}

.kicker::after {
  display: block;
  width: 46px;
  height: 1px;
  margin-top: 14px;
  background: var(--brand-yellow);
  content: "";
}

.section {
  padding: 120px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 66px;
}

.section-title,
.hero h1,
.support-item h3,
.service-row h3,
.phase h3,
.external h2,
.about h2,
.resource h3,
.cta-panel h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: .025em;
}

.section-title {
  margin: 0;
  font-size: clamp(1.8rem, 2.65vw, 2.7rem);
  line-height: 1.35;
}

.muted-text {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid #9f9a91;
  border-radius: 2px;
  background: var(--white);
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn.primary {
  box-shadow: 0 7px 15px rgba(0, 0, 0, .05);
}

.btn.primary::before {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--brand-yellow);
  content: "";
}

.btn:hover {
  transform: translateY(-3px);
  border-color: #6f6b64;
  box-shadow: 0 9px 18px rgba(0, 0, 0, .08);
}

.link-pending {
  cursor: default;
  pointer-events: none;
}

@media (hover: hover) {
  .about-button.link-pending,
  .final-cta .btn.link-pending {
    pointer-events: auto;
  }
}

.about-button:focus-visible,
.final-cta .btn:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: flex;
  height: var(--header-height);
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .96);
  transition: border-color .22s ease, box-shadow .22s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .045);
}

.header-inner {
  display: flex;
  width: min(1400px, calc(100% - 40px));
  margin-inline: auto;
  gap: 30px;
  align-items: center;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  letter-spacing: .08em;
  transition: opacity .2s ease;
}

.brand:hover,
.footer .brand:hover {
  opacity: .82;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.site-nav {
  display: flex;
  margin-left: auto;
  gap: 26px;
  align-items: center;
  font-size: .77rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  transition: opacity .2s ease;
}

.site-nav > .site-nav-pending {
  display: inline-flex;
  min-height: 44px;
  padding: 10px 0;
  align-items: center;
  color: inherit;
  cursor: default;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-red);
  content: "";
  transition: width .18s ease;
}

.site-nav a:not(.nav-contact):hover::after {
  width: 100%;
}

.site-nav a:not(.nav-contact):hover {
  opacity: .68;
}

.site-nav .nav-contact {
  padding: 9px 16px;
  border: 1px solid #aaa69d;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.is-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  width: 0;
  height: 2px;
  background: var(--brand-red);
}

/* Left index */
.page-index {
  position: fixed;
  top: 50%;
  left: 38px;
  z-index: 650;
  display: grid;
  gap: 16px;
  color: #b7b2aa;
  font-size: .78rem;
  transform: translateY(-50%);
}

.page-index a {
  display: grid;
  grid-template-columns: 26px 32px;
  gap: 8px;
  min-height: 24px;
  align-items: center;
  font-weight: 700;
}

.page-index span {
  text-align: right;
}

.page-index i {
  display: block;
  height: 1px;
  background: #c9c5bd;
}

.page-index a.active {
  color: var(--brand-red);
}

.page-index a.active i {
  background: var(--brand-red);
}

/* Hero */
.hero {
  display: flex;
  min-height: 680px;
  padding: 105px 0 110px;
  align-items: center;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 110px;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 30px;
  color: var(--brand-red);
  font-size: .7rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: clamp(2.05rem, 3.2vw, 3.4rem);
  line-height: 1.34;
  letter-spacing: .015em;
}

.hero-copy-line {
  display: block;
  white-space: nowrap;
}

.hero p {
  max-width: 720px;
  margin: 0 0 13px;
  font-size: .96rem;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-diagram {
  position: relative;
  height: 520px;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #d9d6cf;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.circle-large {
  width: 430px;
  height: 430px;
}

.circle-medium {
  width: 310px;
  height: 310px;
}

.circle-small {
  width: 190px;
  height: 190px;
}

.diagram-axis {
  position: absolute;
  background: #c8c4bd;
}

.diagram-axis-vertical {
  top: 38px;
  bottom: 36px;
  left: 50%;
  width: 1px;
}

.diagram-axis-horizontal {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  transform: translateY(-50%);
}

.hero-node {
  position: absolute;
  z-index: 2;
  padding: 11px 19px;
  border: 1px solid #bcb8b0;
  background: var(--white);
  font-size: .83rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-node-center {
  top: 50%;
  left: 50%;
  min-width: 168px;
  border-color: var(--brand-yellow);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hero-node-top {
  top: 38px;
  left: 50%;
  border-color: var(--brand-yellow);
  transform: translateX(-50%);
}

.hero-node-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.hero-node-right {
  top: 50%;
  right: 0;
  border-color: var(--brand-red);
  transform: translateY(-50%);
}

.hero-node-bottom {
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}

/* Consultation */
.consultation {
  background: var(--warm);
}

.consultation .section-head {
  margin-bottom: 66px;
}

.consult-list {
  padding-left: 0;
}

.consult-row {
  position: relative;
  max-width: 1040px;
  min-height: 158px;
  padding: 45px 0 44px 120px;
  border-top: 1px solid var(--line);
}

.consult-row:first-child {
  border-top: 0;
}

.consult-row:nth-child(1) {
  margin-left: 0;
}

.consult-row:nth-child(2) {
  margin-left: 11%;
}

.consult-row:nth-child(3) {
  margin-left: 2%;
}

.consult-row:nth-child(4) {
  margin-left: 12%;
}

.consult-row:nth-child(5) {
  margin-left: 0;
}

.consult-row:nth-child(6) {
  margin-left: 11%;
}

.consult-number,
.support-number,
.service-number {
  color: var(--number);
  font-family: "Baskerville", "Iowan Old Style", "Times New Roman", serif;
  font-size: 3.75rem;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.consult-number {
  position: absolute;
  top: 28px;
  left: 0;
}

.consult-row p {
  max-width: 920px;
  margin: 0;
  font-size: .93rem;
}

/* Support style */
.support {
  background: var(--white);
}

.support-stage {
  position: relative;
  display: flex;
  padding-left: 66px;
  margin-top: 30px;
  flex-direction: column;
  gap: 132px;
}

.support-stage::before {
  position: absolute;
  top: 0;
  bottom: 4px;
  left: 10px;
  width: 1px;
  background: var(--brand-orange);
  content: "";
}

.support-item {
  position: relative;
  max-width: 1000px;
}

.support-item:nth-child(2) {
  margin-left: 9%;
}

.support-item:nth-child(3) {
  margin-left: 18%;
}

.support-item-top {
  display: flex;
  gap: 22px;
  align-items: center;
}

.support-icon {
  display: block;
  width: 62px;
  height: 46px;
  margin-bottom: 11px;
  fill: none;
  stroke: #4f4b46;
  stroke-width: 1;
  stroke-linecap: butt;
}

.support-icon .n {
  fill: var(--white);
}

.support-item h3 {
  margin: 22px 0 12px;
  font-size: 1.2rem;
  line-height: 1.86;
  letter-spacing: .035em;
}

.support-item p {
  max-width: 950px;
  margin: 0;
  font-size: .93rem;
}

/* Services */
.services {
  background: var(--warm-strong);
}

.services .section-head {
  margin-bottom: 66px;
}

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

.service-row {
  display: grid;
  grid-template-columns: 120px 135px 1fr 34px;
  gap: 20px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  padding-top: 0;
}

.service-tag {
  padding-top: 9px;
  color: #9c6d52;
  font-size: .7rem;
  font-weight: 700;
}

.service-row h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.86;
  letter-spacing: .035em;
}

.service-row p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.service-arrow {
  color: var(--brand-red);
  font-size: 1.2rem;
  line-height: 1.86;
  transition: transform .18s ease;
}

/* SERVICES：サービス名と矢印だけの控えめなhover。
   行全体は動かさない。
   下層ページへ接続し、サービス名を <a class="service-link"> にした時点で有効になる。
   現状はSERVICES内にアンカーがないため発火しない。 */
.service-link {
  display: inline-block;
  color: inherit;
  transform-origin: left center;
  transition: transform .18s ease, text-shadow .18s ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-2px) scale(1.02);
  text-shadow: 0 2px 6px rgba(0, 0, 0, .1);
  outline: none;
}

.service-row:has(.service-link:hover) .service-arrow,
.service-row:has(.service-link:focus-visible) .service-arrow {
  transform: translateX(3px);
}

/* Process */
.process {
  background: var(--white);
}

.process-track {
  position: relative;
  padding-top: 70px;
  margin-top: 30px;
}

.process-track::before {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  height: 1px;
  background: #aa9e90;
  content: "";
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
}

.phase {
  position: relative;
  text-align: center;
}

.phase::before {
  position: absolute;
  top: -56px;
  left: 50%;
  width: 14px;
  height: 14px;
  border: 1px solid var(--brand-orange);
  border-radius: 50%;
  background: var(--white);
  content: "";
  transform: translateX(-50%);
}

.phase small {
  display: block;
  margin: -106px 0 82px;
  color: #a66443;
  font-size: .7rem;
  font-weight: 700;
}

.phase h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.86;
  letter-spacing: .035em;
}

.phase p {
  margin: 0;
  font-size: .93rem;
}

.process-summary {
  max-width: 1010px;
  margin-top: 100px;
}

.process-summary p {
  margin: 1em 0;
}

.process-summary .btn {
  margin-top: 30px;
}

/* External IT planning office */
.external {
  background: var(--warm);
}

.external-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.external h2,
.about h2 {
  margin: 20px 0 28px;
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  line-height: 1.42;
}

.about h2 {
  margin-bottom: 22px;
}

.external p {
  max-width: 680px;
  margin: 1em 0;
  font-size: .93rem;
}

.external-button {
  margin-top: 26px;
}

.external-diagram {
  display: grid;
  min-height: 330px;
  padding: 48px 34px;
  border: 1px solid var(--line);
  place-items: center;
}

.relation {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 56px 1.15fr 56px 1fr;
  align-items: center;
}

.rel-box {
  padding: 20px 10px;
  border: 1px solid #bbb5ab;
  background: var(--white);
  text-align: center;
}

.rel-box.core {
  border-top: 3px solid var(--brand-yellow);
  box-shadow: inset 0 3px 7px rgba(0, 0, 0, .04);
  font-weight: 800;
}
.rel-lines {
  width: 56px;
  height: 28px;
}

.rel-arrows {
  display: block;
  width: 56px;
  height: 28px;
  fill: none;
  stroke: #a26b00;
  stroke-width: 1;
}

.rel-arrows .head {
  fill: #a26b00;
  stroke: none;
}

/* About */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 90px;
  align-items: center;
}

.about p {
  max-width: 720px;
  margin: 1em 0;
  font-size: .93rem;
}

.about-button {
  margin-top: 22px;
}

.about-radial {
  position: relative;
  min-height: 360px;
  max-width: 480px;
  margin: 0 auto;
}

.about-radial-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  width: 62px;
  height: 62px;
  border: 1px solid #8f8a82;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  place-items: center;
  transform: translate(-50%, -50%);
}

.radial-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 1px;
  height: 122px;
  background: #d2cec6;
  transform-origin: top center;
}

.radial-ray i {
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-yellow);
  transform: translateX(-50%);
}

.rr1 { transform: rotate(0deg); }
.rr2 { transform: rotate(45deg); }
.rr3 { transform: rotate(90deg); }
.rr4 { transform: rotate(135deg); }
.rr5 { transform: rotate(180deg); }
.rr6 { transform: rotate(225deg); }
.rr7 { transform: rotate(270deg); }
.rr8 { transform: rotate(315deg); }

.rr2 i,
.rr5 i,
.rr8 i {
  background: var(--brand-red);
}

.rr3 i,
.rr6 i {
  background: var(--brand-orange);
}

/* Resources and insights */
.resources {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
  background: var(--warm);
}

.resources::before,
.resources::after {
  position: absolute;
  border: 1px solid #e7dfd2;
  border-radius: 50%;
  opacity: .55;
  content: "";
}

.resources::before {
  top: 42px;
  left: 7%;
  width: 360px;
  height: 360px;
}

.resources::after {
  top: 72px;
  right: 12%;
  width: 175px;
  height: 175px;
}

.resources .section-head,
.resource-grid {
  position: relative;
  z-index: 2;
}

.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #a99383;
}

.resource {
  position: relative;
  min-height: 300px;
  padding: 46px 58px 54px 0;
}

.resource:first-child {
  margin-right: 12px;
}

.resource + .resource {
  padding-left: 58px;
  margin-left: 12px;
  border-left: 1px solid var(--line);
}

.resource h3 {
  margin: 12px 0 16px;
  font-size: 1.2rem;
  line-height: 1.86;
  letter-spacing: .035em;
}

.resource-title-link {
  display: inline-block;
  color: inherit;
  transform-origin: left center;
  transition: transform .18s ease, text-shadow .18s ease, color .18s ease;
}

.resource-title-link:hover,
.resource-title-link:focus-visible {
  color: var(--ink);
  text-shadow: 0 3px 7px rgba(0, 0, 0, .13), 0 1px 1px rgba(0, 0, 0, .08);
  transform: translateY(-2px) scale(1.045);
}

.resource p {
  max-width: 560px;
  margin: 1em 0;
  font-size: .93rem;
}

.resource-arrow-link {
  position: absolute;
  right: 18px;
  bottom: 38px;
  color: var(--brand-red);
  font-size: 1.35rem;
  line-height: 1;
}

.resource:first-child .resource-arrow-link {
  right: 38px;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: var(--warm-strong);
  border-top: 1px solid rgba(120, 105, 80, .08);
}

/* 装飾のみ。画面右端から円弧の一部だけ見える大きな円 */
.final-cta::before {
  position: absolute;
  top: 50%;
  right: -380px;
  width: 520px;
  height: 520px;
  border: 1px solid #e7dfd2;
  border-radius: 50%;
  opacity: .68;
  transform: translateY(-50%);
  content: "";
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.cta-panel {
  max-width: 1000px;
  margin-inline: auto;
  padding: 54px;
  border-top: 3px solid var(--brand-red);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.cta-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 2.3vw, 2.3rem);
  line-height: 1.4;
}

.cta-panel p {
  margin: 0;
}

.cta-actions {
  display: flex;
  margin-top: 36px;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  padding: 58px 0 32px;
  background: var(--brand-deep-red);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 70px;
  padding-bottom: 42px;
  align-items: start;
}

.footer .brand small,
.footer-message {
  color: rgba(255, 255, 255, .78);
}

.footer-message {
  margin: 14px 0 0;
  font-size: .9rem;
}

.footer-related {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  font-size: .7rem;
  line-height: 1.6;
}

.footer-related-label {
  color: rgba(255, 255, 255, .58);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .08em;
}

.footer-related a {
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
}

.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--white);
  font-size: .74rem;
  font-weight: 700;
}

.footer-nav-main {
  justify-content: flex-end;
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .24);
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .82);
  font-size: .72rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-policy {
  display: flex;
  gap: 24px;
  font-weight: 700;
}

.footer a {
  transition: opacity .2s ease;
}

.footer a:hover {
  opacity: .68;
}

/* Motion */
.reveal {
  transform: translateY(14px);
  transition: transform .6s ease;
}

.reveal.visible {
  transform: none;
}

/* Responsive */
/* 幅が足りないとCTAパネルへ近づくため、装飾円は表示しない */
@media (max-width: 1320px) {
  .final-cta::before {
    display: none;
  }
}

@media (max-width: 1280px) {
  .page-index {
    display: none;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(var(--max-width), calc(100% - 34px));
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 66px;
  }

  .site-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    padding: 24px 28px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .site-header.is-open .site-nav a {
    min-height: 44px;
  }

  .site-header.is-open .site-nav > .site-nav-pending {
    display: flex;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-grid,
  .external-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-diagram {
    height: 390px;
  }

  .consult-row,
  .consult-row:nth-child(n) {
    margin-left: 0;
  }

  .support-stage {
    padding-left: 44px;
    gap: 82px;
  }

  .support-stage::before {
    left: 7px;
  }

  .support-item,
  .support-item:nth-child(2),
  .support-item:nth-child(3) {
    margin-left: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 7.2vw, 2.6rem);
    line-height: 1.35;
  }

  .hero-copy-line {
    white-space: normal;
  }

  .service-row {
    grid-template-columns: 70px 1fr 24px;
    gap: 20px;
    padding: 48px 0;
  }

  .service-number {
    grid-row: 1 / 3;
  }

  .service-tag {
    grid-column: 2;
  }

  .service-row > div {
    grid-column: 2;
    grid-row: 2;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-left: 30px;
  }

  .process-track {
    padding-top: 0;
  }

  .process-track::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .phase {
    padding-left: 26px;
    text-align: left;
  }

  .phase::before {
    top: 9px;
    left: -30px;
    transform: none;
  }

  .phase small {
    margin: 0 0 10px;
  }

  .relation {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rel-lines {
    width: 28px;
    height: 48px;
    margin-inline: auto;
  }

  .rel-arrows {
    display: none;
  }

  .rel-lines::before {
    display: block;
    width: 1px;
    height: 48px;
    margin-inline: auto;
    background: #a26b00;
    content: "";
  }

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

  .resource:first-child {
    margin-right: 0;
  }

  .resource + .resource {
    padding-left: 0;
    margin-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .resources {
    padding-top: 120px;
  }

  .resource:first-child .resource-arrow-link,
  .resource:last-child .resource-arrow-link {
    right: 10px;
  }

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

  .footer-nav-main {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .about-radial {
    min-height: 300px;
    max-width: 340px;
  }

  .radial-ray {
    height: 94px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 0;
    padding: 105px 0 110px;
  }

  .resources::before {
    top: 30px;
    left: 4%;
    width: 250px;
    height: 250px;
  }

  .resources::after {
    top: 62px;
    right: 4%;
    width: 120px;
    height: 120px;
  }

  .hero-diagram {
    height: 330px;
  }

  .circle-large {
    width: 300px;
    height: 300px;
  }

  .circle-medium {
    width: 220px;
    height: 220px;
  }

  .circle-small {
    width: 140px;
    height: 140px;
  }

  .hero-node {
    padding: 8px 10px;
    font-size: .7rem;
  }

  .hero-node-center {
    min-width: 130px;
  }

  .consult-row {
    min-height: 130px;
    padding: 45px 0 44px 82px;
  }

  .consult-number {
    top: 28px;
    font-size: 3.75rem;
  }

  .service-row {
    gap: 12px;
  }

  .resource {
    min-height: 300px;
    padding-right: 0;
  }

  .cta-panel {
    padding: 54px;
  }

  .final-cta {
    padding: 115px 0;
  }
}

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

  .reveal {
    transform: none !important;
  }
}
