:root {
  --ink: #0a0b0d;
  --ink-soft: #15181d;
  --peach: #e7553e;
  --peach-deep: #bd392b;
  --silver: #a8adb2;
  --silver-light: #e2e3e1;
  --blue: #123a59;
  --blue-bright: #2d6f92;
  --ivory: #f6f1e8;
  --white: #fffdf8;
  --line: rgba(10, 11, 13, 0.17);
  --page: min(100% - 64px, 1480px);
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
.display-brand,
.brand-lockup,
.footer-brand > span {
  text-wrap: balance;
}

::selection {
  color: var(--white);
  background: var(--peach-deep);
}

.skip-nav {
  position: absolute;
  z-index: 100;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--peach);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  color: var(--white);
  background: rgba(10, 11, 13, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--page);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-lockup {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 13px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

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

.site-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 0;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 17px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: -3px;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0 10px 12px;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-label {
  font-size: 13px;
  letter-spacing: 0.12em;
}

.menu-lines {
  display: grid;
  gap: 6px;
  width: 30px;
}

.menu-lines i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(68px, 9vw, 132px) max(32px, calc((100vw - 1480px) / 2));
  padding-bottom: 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(18, 58, 89, 0.2), transparent 34%),
    var(--ink);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 44%;
  background: rgba(255, 255, 255, 0.15);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow {
  color: var(--peach-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f58c78;
}

.display-brand {
  margin-top: 18px;
  color: var(--white);
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-size: clamp(88px, 17vw, 270px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
  white-space: nowrap;
}

.hero h1 {
  max-width: 980px;
  margin-top: 42px;
  font-size: clamp(23px, 2.2vw, 38px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.45;
}

.hero-line {
  margin-top: 14px;
  color: var(--peach);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(27px, 3vw, 48px);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.hero-intro {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 16px;
  line-height: 1.9;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(250px, 35vw, 510px);
  margin-top: clamp(54px, 8vw, 110px);
  overflow: hidden;
  background: #282b2f;
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.78) contrast(1.04);
}

.visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 13, 0.42), transparent 45%),
    linear-gradient(0deg, rgba(10, 11, 13, 0.56), transparent 43%);
}

.visual-note {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-index {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.65fr;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-index > div {
  min-height: 100px;
  padding: 22px 28px 24px 0;
}

.hero-index > div + div {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-index span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.hero-index strong {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.breadcrumb {
  display: flex;
  width: var(--page);
  margin: 0 auto;
  padding: 26px 0;
  gap: 12px;
  color: #65696d;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(96px, 11vw, 176px) 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-mark {
  margin-bottom: 36px;
  color: var(--peach-deep);
  font-family: Georgia, serif;
  font-size: 17px;
  letter-spacing: 0.12em;
}

.section-mark.light {
  color: #f58c78;
}

.section-heading h2,
.creative-statement h2,
.section-head-row h2,
.insight-lead h2,
.access-copy h2,
.trust-title-wrap h2,
.faq-heading h2,
.disclosure-brand h2 {
  font-family: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.17;
}

.about {
  display: grid;
  grid-template-columns: 100px minmax(380px, 0.92fr) 1fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: start;
}

.about .section-heading h2 {
  margin-top: 26px;
  font-size: clamp(40px, 5.8vw, 88px);
}

.about-copy {
  padding-top: 72px;
}

.about-copy .lead {
  max-width: 680px;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.68;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 58px;
  color: #595d60;
  font-size: 14px;
}

.business {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) 1.35fr;
  gap: clamp(50px, 9vw, 160px);
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  color: var(--white);
  background: var(--blue);
  border-top: 0;
}

.business-intro {
  position: sticky;
  top: calc(var(--header-height) + 50px);
  align-self: start;
}

.business-intro h2 {
  margin-top: 22px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(47px, 6vw, 86px);
  line-height: 1.08;
}

.business-intro > p:last-child {
  max-width: 440px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.64);
}

.business-list {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.business-list article {
  display: grid;
  grid-template-columns: 118px 0.8fr 1fr;
  gap: 28px;
  padding: 36px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.business-list span {
  color: #8bbbd2;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.business-list h3 {
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.45;
}

.business-list p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.creative {
  display: grid;
  grid-template-columns: 100px 0.84fr 1.16fr;
  gap: clamp(28px, 5vw, 88px);
}

.creative-statement h2 {
  margin-top: 25px;
  font-size: clamp(55px, 7vw, 104px);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.principle-grid article {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.principle-grid span {
  color: var(--peach-deep);
  font-family: Georgia, serif;
  font-size: 13px;
}

.principle-grid h3 {
  margin-top: 56px;
  font-size: 25px;
  font-weight: 600;
}

.principle-grid p {
  margin-top: 16px;
  color: #5c6063;
  font-size: 14px;
}

.section-head-row {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) 1fr;
  gap: clamp(48px, 10vw, 180px);
  align-items: end;
}

.section-head-row h2 {
  margin-top: 20px;
  font-size: clamp(44px, 5vw, 76px);
}

.section-head-row > p {
  max-width: 700px;
  color: #565a5d;
  font-size: 16px;
}

.project-stage {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 1fr;
  min-height: 440px;
  margin-top: 72px;
  color: var(--white);
  background: var(--ink);
}

.project-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 42%, rgba(231, 85, 62, 0.34) 42% 58%, transparent 58%),
    linear-gradient(30deg, #0f1c26, #161719 62%);
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.project-placeholder::before,
.project-placeholder::after {
  position: absolute;
  content: "";
}

.project-placeholder::before {
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.21);
}

.project-placeholder::after {
  right: 31px;
  bottom: 29px;
  content: attr(data-label);
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.22em;
}

.project-placeholder.secondary {
  background:
    linear-gradient(150deg, transparent 44%, rgba(45, 111, 146, 0.46) 44% 60%, transparent 60%),
    linear-gradient(20deg, #191a1e, #0c1115);
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.project-rule {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 38px;
}

.project-rule span {
  margin-bottom: 42px;
  color: var(--peach);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.project-rule p {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 15px;
}

.project-rule p:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.insight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 10vw, 168px);
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  color: var(--white);
  background: var(--ink);
  border-top: 0;
}

.insight-lead h2 {
  margin-top: 24px;
  font-size: clamp(50px, 7vw, 104px);
}

.insight-big {
  margin-top: 56px;
  color: var(--silver-light);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.5;
}

.insight-notes article {
  padding: 34px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.insight-notes article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.insight-notes h3 {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
}

.insight-notes p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.section-head-row.compact {
  align-items: start;
}

.news-list {
  margin-top: 72px;
  border-top: 1px solid var(--ink);
}

.news-list article {
  display: grid;
  grid-template-columns: 170px 1fr 110px;
  gap: 46px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease;
}

.news-list article:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.34);
}

.news-list time,
.news-list > article > span {
  color: #707477;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.news-list > article > span {
  text-align: right;
}

.news-list h3 {
  font-size: clamp(20px, 2.1vw, 29px);
  font-weight: 600;
  line-height: 1.45;
}

.news-list p {
  max-width: 780px;
  margin-top: 12px;
  color: #585c5f;
  font-size: 14px;
}

.access {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(54px, 10vw, 170px);
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  color: var(--white);
  background: var(--blue);
  border-top: 0;
}

.access-copy h2 {
  max-width: 600px;
  margin-top: 24px;
  font-size: clamp(45px, 5.5vw, 82px);
}

.access-copy > p:last-child {
  max-width: 540px;
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.66);
}

.access-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.access-grid article {
  display: grid;
  grid-template-columns: 92px 0.7fr 1.25fr;
  gap: 24px;
  padding: 35px 0 39px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.access-grid span {
  color: #8bbbd2;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.access-grid h3 {
  font-size: 23px;
  font-weight: 500;
}

.access-grid p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.trust {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(52px, 10vw, 170px);
}

.trust-title-wrap h2 {
  margin-top: 24px;
  font-size: clamp(44px, 5vw, 73px);
}

.trust-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  padding-top: 46px;
  border-top: 1px solid var(--ink);
  color: #53575a;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 10vw, 174px);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 50px);
  align-self: start;
}

.faq-heading h2 {
  margin-top: 24px;
  font-size: clamp(44px, 5vw, 72px);
}

.faq-heading > p:last-child {
  max-width: 400px;
  margin-top: 28px;
  color: #666a6c;
}

.faq-list {
  counter-reset: faq;
  border-top: 1px solid var(--ink);
}

.faq-list article {
  position: relative;
  padding: 30px 0 34px 62px;
  border-bottom: 1px solid var(--line);
  counter-increment: faq;
}

.faq-list article::before {
  position: absolute;
  top: 35px;
  left: 0;
  color: var(--peach-deep);
  content: counter(faq, decimal-leading-zero);
  font-family: Georgia, serif;
  font-size: 12px;
}

.faq-list h3 {
  font-size: 21px;
  font-weight: 600;
}

.faq-list p {
  max-width: 760px;
  margin-top: 12px;
  color: #595d60;
  font-size: 14px;
}

.disclosure {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(55px, 10vw, 180px);
  width: 100%;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1480px) / 2));
  padding-left: max(32px, calc((100vw - 1480px) / 2));
  color: var(--white);
  background: var(--ink);
  border-top: 0;
}

.disclosure-brand img {
  width: 56px;
  height: 56px;
  margin-bottom: 48px;
  object-fit: contain;
}

.disclosure-brand h2 {
  margin-top: 22px;
  font-size: clamp(45px, 5.2vw, 78px);
}

.disclosure-brand > p:last-child {
  max-width: 450px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.57);
}

.disclosure-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.disclosure-list > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.disclosure-list dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.disclosure-list dd {
  font-size: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 48px max(32px, calc((100vw - 1480px) / 2));
  color: var(--white);
  background: #050607;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand > span {
  font-family: "Songti SC", "STSong", serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-brand p,
.footer-copy {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.footer-brand p {
  margin-top: 5px;
}

.footer-copy {
  text-align: right;
}

.footer-copy p + p {
  margin-top: 4px;
}

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 48px, 1480px);
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 12px max(24px, calc((100vw - 1480px) / 2)) 20px;
    background: rgba(10, 11, 13, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a::after {
    right: 12px;
    left: 12px;
  }

  .js .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: visibility 180ms ease, opacity 180ms ease, transform 180ms ease;
  }

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

  .about,
  .creative {
    grid-template-columns: 70px 0.86fr 1.14fr;
    gap: 34px;
  }

  .business,
  .insight,
  .access,
  .disclosure {
    gap: 64px;
  }

  .business-list article,
  .access-grid article {
    grid-template-columns: 84px 0.9fr 1.2fr;
    gap: 18px;
  }

  .project-stage {
    grid-template-columns: 1.15fr 0.75fr 0.9fr;
  }
}

@media (max-width: 880px) {
  :root {
    --page: calc(100% - 40px);
    --header-height: 72px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-lockup {
    font-size: 17px;
  }

  .brand-lockup img {
    width: 34px;
    height: 34px;
  }

  .hero {
    padding-top: 70px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .display-brand {
    font-size: clamp(76px, 22vw, 155px);
  }

  .hero-index {
    grid-template-columns: 1fr;
  }

  .hero-index > div {
    min-height: 0;
    padding: 17px 0 18px;
  }

  .hero-index > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .about,
  .creative {
    grid-template-columns: 55px 1fr;
  }

  .about-copy,
  .principle-grid {
    grid-column: 2;
  }

  .about-copy {
    padding-top: 10px;
  }

  .business,
  .insight,
  .access,
  .trust,
  .faq,
  .disclosure,
  .section-head-row {
    grid-template-columns: 1fr;
  }

  .business-intro,
  .faq-heading {
    position: static;
  }

  .business-list article,
  .access-grid article {
    grid-template-columns: 80px 0.78fr 1.22fr;
  }

  .project-stage {
    grid-template-columns: 1fr 0.72fr;
  }

  .project-placeholder.secondary {
    display: none;
  }

  .trust-body {
    padding-top: 30px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .site-nav {
    grid-template-columns: 1fr;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .display-brand {
    margin-top: 14px;
    font-size: 22vw;
    letter-spacing: -0.09em;
  }

  .hero h1 {
    margin-top: 34px;
    font-size: 22px;
  }

  .hero-line {
    font-size: 28px;
  }

  .hero-intro {
    font-size: 14px;
  }

  .hero-visual {
    height: 250px;
    margin-top: 46px;
  }

  .visual-note {
    right: 14px;
    bottom: 12px;
    max-width: 210px;
    text-align: right;
  }

  .section {
    padding: 86px 0;
  }

  .business,
  .insight,
  .access,
  .disclosure {
    padding: 86px 16px;
  }

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

  .about .section-mark,
  .creative .section-mark {
    margin-bottom: 0;
  }

  .about-copy,
  .principle-grid {
    grid-column: 1;
  }

  .copy-columns,
  .principle-grid,
  .trust-body {
    grid-template-columns: 1fr;
  }

  .about-copy .lead {
    font-size: 20px;
  }

  .copy-columns {
    margin-top: 36px;
  }

  .business-list article,
  .access-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .principle-grid article {
    min-height: 220px;
  }

  .principle-grid h3 {
    margin-top: 40px;
  }

  .section-head-row {
    gap: 38px;
  }

  .project-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-top: 50px;
  }

  .project-placeholder {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .project-rule {
    padding: 38px 28px;
  }

  .insight-big {
    margin-top: 35px;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-list > article > span {
    text-align: left;
  }

  .news-list article:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .faq-list article {
    padding-left: 42px;
  }

  .disclosure-list > div {
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 40px 16px;
  }

  .footer-copy {
    text-align: left;
  }
}

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

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