:root {
  color-scheme: light;
  --ink: #312b29;
  --muted: #746c67;
  --paper: #fbf7ef;
  --panel: #fffdf8;
  --line: #ece0cf;
  --blue: #404597;
  --cyan: #25a2d5;
  --green: #8fc929;
  --red: #ef4938;
  --orange: #f18611;
  --deep: #111018;
  --night: #171527;
  --gold: #f3c35b;
  --warm: #f7ead7;
  --sage: #e9f1df;
  --shadow: 0 28px 80px rgba(49, 43, 41, .16);
  --soft-shadow: 0 14px 40px rgba(49, 43, 41, .1);
  --heading-font: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f5e5d0 0, #fff8ee 26%, var(--paper) 58%, #fff 100%);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
  padding: 14px clamp(20px, 4.4vw, 68px);
  background: rgba(23, 21, 39, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(49, 43, 41, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform .22s ease, opacity .22s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand img {
  width: clamp(178px, 17vw, 252px);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2.1vw, 30px);
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .22s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-cta,
.primary-btn,
.ghost-btn,
.journey-card a,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta {
  padding: 0 22px;
  background: #fff;
  color: var(--deep);
  box-shadow: 0 10px 24px rgba(49, 43, 41, .16);
  transition: transform .22s ease, box-shadow .22s ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: clamp(34px, 5vw, 74px);
  width: min(1280px, calc(100% - 40px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 98px) 0 64px;
  align-items: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px -24px 34px;
  z-index: -2;
  border-radius: 46px;
  background:
    radial-gradient(circle at 72% 28%, rgba(214, 209, 188, .42), transparent 30%),
    radial-gradient(circle at 92% 42%, rgba(234, 178, 151, .34), transparent 26%),
    linear-gradient(100deg, #3b3645 0%, #706d70 45%, #c8beb0 100%);
  box-shadow: 0 28px 80px rgba(49, 43, 41, .2);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 10px;
  z-index: -1;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green), var(--red));
  opacity: .86;
}

.hero-bg {
  position: absolute;
  inset: 42px -80px auto auto;
  width: min(620px, 52vw);
  height: 420px;
  pointer-events: none;
}

.tile {
  position: absolute;
  border-radius: 28px;
  opacity: .07;
  transform: rotate(-3deg);
  animation: drift 10s ease-in-out infinite;
}

.tile-sea {
  inset: 12px auto auto 0;
  width: 190px;
  height: 140px;
  background: var(--blue);
}

.tile-mountain {
  inset: 54px auto auto 155px;
  width: 210px;
  height: 150px;
  background: var(--cyan);
  animation-delay: -2s;
}

.tile-city {
  inset: 8px 74px auto auto;
  width: 180px;
  height: 148px;
  background: var(--green);
  animation-delay: -4s;
}

.tile-camera {
  inset: 120px 0 auto auto;
  width: 190px;
  height: 140px;
  background: var(--red);
  animation-delay: -6s;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, .7);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

.zh-display {
  display: grid;
  gap: 12px;
  max-width: 650px;
  font-family: "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  line-height: 1.15;
}

.zh-display span {
  display: inline-block;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: .02em;
  text-shadow: none;
}

.zh-display em {
  display: block;
  max-width: 620px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(18px, 1.8vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .03em;
}

.hero-copy > p:not(.eyebrow):not(.hero-slogan) {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.82;
}

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

.primary-btn {
  padding: 0 26px;
  background: #fff;
  color: var(--deep);
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0, 0, 0, .22);
  transition: transform .22s ease, box-shadow .22s ease;
}

.ghost-btn {
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transition: transform .22s ease, background .22s ease;
}

.header-cta:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(49, 43, 41, .22);
}

.ghost-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .16);
}

.hero-stage {
  position: relative;
  min-height: 590px;
}

.stage-card,
.mini-card {
  position: absolute;
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
}

.planner-card {
  top: 42px;
  right: 0;
  width: 420px;
  min-height: 430px;
  padding: 26px;
  border-radius: 34px;
  animation: floatCard 6s ease-in-out infinite;
}

.planner-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.planner-head span {
  color: var(--muted);
  font-size: 13px;
}

.planner-head strong {
  color: var(--blue);
}

.planner-map {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(64, 69, 151, .88), rgba(37, 162, 213, .84)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,.16) 18px 20px);
}

.planner-map::before,
.planner-map::after {
  content: "";
  position: absolute;
  border: 2px dashed rgba(255, 255, 255, .55);
  border-color: rgba(255, 255, 255, .55) transparent transparent transparent;
  border-radius: 50%;
}

.planner-map::before {
  width: 260px;
  height: 160px;
  left: 54px;
  top: 64px;
  transform: rotate(-14deg);
}

.planner-map::after {
  width: 180px;
  height: 112px;
  right: 22px;
  top: 94px;
  transform: rotate(22deg);
}

.pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
  animation: pulsePin 2.6s ease-in-out infinite;
}

.pin-a {
  left: 70px;
  top: 84px;
}

.pin-b {
  left: 210px;
  top: 148px;
  animation-delay: .4s;
}

.pin-c {
  right: 58px;
  top: 74px;
  animation-delay: .8s;
}

.planner-rows {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.planner-rows span {
  width: var(--w);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(49, 43, 41, .16), rgba(49, 43, 41, .06));
}

.mascot-card {
  left: 0;
  bottom: 24px;
  width: 255px;
  height: 300px;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(255, 246, 230, .92) 100%);
  animation: floatMascot 5.4s ease-in-out infinite;
}

.mascot-card img {
  width: 285px;
  max-width: none;
  transform: translate(-16px, -4px);
}

.mini-card {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 30px;
  transition: transform .22s ease;
}

.mini-card:hover {
  transform: translateY(-4px) rotate(-1deg);
}

.mini-card strong {
  color: var(--red);
  font-size: 30px;
  line-height: 1;
}

.mini-card span {
  color: var(--muted);
  font-size: 13px;
}

.mini-left {
  left: 190px;
  top: 12px;
}

.mini-right {
  right: 28px;
  bottom: 30px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto 84px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.metrics article {
  min-height: 188px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metrics article:last-child {
  border-right: 0;
}

.metrics span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.metrics strong {
  display: block;
  margin: 18px 0 10px;
  font-size: 22px;
}

.metrics p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 104px;
}

.method,
.journeys,
.experiences,
.honors,
.brands {
  position: relative;
  z-index: 1;
}

.method::before,
.journeys::before,
.experiences::before,
.honors::before,
.brands::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.method {
  padding-top: 94px;
  padding-bottom: 74px;
}

.method::before {
  top: 0;
  bottom: -72px;
  background: linear-gradient(180deg, #fffaf2 0%, #f8efe2 100%);
  border-top: 1px solid rgba(226, 211, 187, .72);
  border-bottom: 1px solid rgba(226, 211, 187, .72);
}

.section-grid,
.brand-layout,
.contact-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 6vw, 90px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(23px, 2.85vw, 42px);
  line-height: 1.18;
  letter-spacing: 0;
}

.method-copy p,
.section-head > p,
.visual-panel li span,
.journey-card p,
.experience-card p,
.brand-stack p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

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

.process article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.process article:hover,
.journey-card:hover,
.brand-stack article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.process article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border-radius: 38px;
  background: rgba(239, 73, 56, .12);
  transform: rotate(10deg);
}

.process article:nth-child(2)::after {
  background: rgba(37, 162, 213, .14);
}

.process article:nth-child(3)::after {
  background: rgba(143, 201, 41, .16);
}

.process em {
  color: var(--red);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.process h3,
.journey-card h3,
.brand-stack h3 {
  margin: 18px 0 12px;
  font-size: 26px;
}

.process p {
  color: var(--muted);
  line-height: 1.75;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  width: min(1380px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  clip-path: none;
  border-radius: 0;
  background: linear-gradient(135deg, #0d567a 0%, #103451 58%, #102033 100%);
  box-shadow: var(--shadow);
}

.visual-image,
.visual-panel {
  min-width: 0;
}

.visual-image {
  overflow: hidden;
  border-radius: 0;
}

.visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.visual-panel {
  align-self: stretch;
  display: grid;
  align-content: center;
  height: 100%;
  padding: clamp(38px, 5.4vw, 76px);
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(70, 176, 215, .22), transparent 34%),
    linear-gradient(135deg, #123d5a 0%, #102f49 56%, #142238 100%);
  color: #fff;
}

.visual-panel h2 {
  margin-bottom: 28px;
}

.visual-panel ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.visual-panel li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(214, 239, 250, .2);
}

.visual-panel li strong {
  color: #fff;
}

.visual-panel li span {
  color: rgba(255, 255, 255, .68);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 36px;
}

.section-head > p {
  max-width: 450px;
  margin-bottom: 0;
}

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

.journeys {
  margin-top: 0;
  padding-top: 112px;
  padding-bottom: 84px;
}

.journeys::before {
  top: 0;
  bottom: 0;
  background: #fffdf9;
  border-top: 1px solid rgba(226, 211, 187, .64);
}

.journey-card {
  position: relative;
  min-height: 370px;
  padding: 30px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.journey-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -60px auto;
  width: 190px;
  height: 190px;
  border-radius: 62px;
  transform: rotate(12deg);
  opacity: .18;
}

.card-blue::before {
  background: var(--blue);
}

.card-green::before {
  background: var(--green);
}

.card-red::before {
  background: var(--red);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.card-top span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card-top b {
  color: rgba(49, 43, 41, .12);
  font-size: 52px;
}

.journey-card a {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 0 20px;
  border: 1px solid currentColor;
  color: var(--deep);
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.journey-card a:hover {
  background: var(--deep);
  color: #fff;
  transform: translateY(-2px);
}

.experiences {
  padding-top: 18px;
  padding-bottom: 112px;
}

.experiences::before {
  top: -1px;
  bottom: 0;
  background:
    linear-gradient(180deg, #fffdf9 0%, #f7f8f4 100%);
  border-bottom: 1px solid rgba(226, 211, 187, .64);
}

.honors {
  padding-top: 108px;
  padding-bottom: 82px;
}

.honors::before {
  top: 0;
  bottom: 0;
  background: linear-gradient(180deg, #f4ebdd 0%, #fbf7ef 100%);
  border-top: 1px solid rgba(226, 211, 187, .76);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partner-card {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 20px 22px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 10px 28px rgba(49, 43, 41, .06);
  color: #423936;
}

.partner-card img {
  max-width: 170px;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) contrast(.9);
  opacity: .78;
}

.partner-card strong {
  color: rgba(49, 43, 41, .68);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 22px;
}

.experience-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--deep);
  box-shadow: var(--soft-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.experience-card:first-child {
  min-height: 520px;
}

.experience-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: .86;
  transition: transform .6s ease, opacity .3s ease;
}

.experience-card:hover img {
  transform: scale(1.04);
  opacity: .72;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 20, .06) 18%, rgba(24, 20, 20, .82) 100%);
}

.experience-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  color: #fff;
}

.experience-card span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 14px 0 10px;
  font-size: 28px;
}

.experience-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.brands {
  padding-top: 10px;
  padding-bottom: 116px;
}

.brands::before {
  top: -1px;
  bottom: 0;
  background: #fbf7ef;
  border-bottom: 1px solid rgba(226, 211, 187, .76);
}

.brand-layout {
  align-items: start;
  padding: clamp(34px, 5vw, 60px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(64, 69, 151, .1), transparent 32%),
    linear-gradient(315deg, rgba(143, 201, 41, .15), transparent 32%),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-stack {
  display: grid;
  gap: 16px;
}

.brand-stack article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(236, 224, 207, .9);
  transition: transform .25s ease, box-shadow .25s ease;
}

.brand-dot {
  width: 18px;
  height: 56px;
  border-radius: 999px;
}

.dot-blue {
  background: var(--cyan);
}

.dot-green {
  background: var(--green);
}

.dot-red {
  background: var(--red);
}

.brand-stack h3 {
  margin-top: 0;
}

.brand-stack p {
  margin-bottom: 0;
}

.contact {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto 96px;
}

.contact-card {
  align-items: start;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 24px;
  background:
    linear-gradient(135deg, #171527, #211d28 72%, #2b2025);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-copy .section-label,
.contact-copy p {
  color: rgba(255, 255, 255, .78);
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
}

.contact-info a {
  width: fit-content;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 18px;
  background: rgba(255, 253, 248, .96);
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(49, 43, 41, .2);
}

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

.lead-form span {
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #e3d6c7;
  border-radius: 12px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  outline-color: var(--cyan);
  padding: 14px 15px;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form button {
  width: 100%;
  border: 0;
  background: var(--deep);
  color: #fff;
  cursor: pointer;
  font: inherit;
  transition: transform .22s ease, background .22s ease;
}

.lead-form button:hover {
  transform: translateY(-2px);
  background: #000;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.form-status[data-state="success"] {
  color: #2f7d32;
}

.form-status[data-state="error"] {
  color: var(--red);
}

.lead-form [aria-invalid="true"] {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239, 73, 56, .12);
}

.subpage {
  background:
    linear-gradient(180deg, rgba(255, 248, 238, .78), rgba(251, 247, 239, .96) 40%, #fff 100%);
}

.sub-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 120px) 0 clamp(58px, 7vw, 96px);
}

.sub-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: 0;
}

.philosophy-page h1,
.philosophy-page h2,
.philosophy-page h3 {
  font-family: var(--heading-font);
  font-weight: 800;
}

.philosophy-page .sub-hero h1 {
  max-width: 860px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.14;
}

.philosophy-page h2 {
  font-size: clamp(22px, 2.45vw, 36px);
  line-height: 1.22;
}

.philosophy-page .sub-cta h2 {
  font-size: clamp(24px, 2.7vw, 38px);
}

.philosophy-page .sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(58px, 7vw, 88px);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}

.philosophy-page .sub-hero > p:last-child {
  max-width: 760px;
}

.service-panel {
  display: grid;
  gap: 0;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-panel span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.service-panel span:last-child {
  border-bottom: 0;
}

.philosophy-page .sub-section {
  position: relative;
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(58px, 7vw, 88px);
  margin-bottom: clamp(26px, 4vw, 44px);
}

.philosophy-page .sub-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 2px;
  background: var(--red);
}

.service-type-section {
  padding-top: clamp(42px, 5vw, 58px);
  padding-bottom: clamp(42px, 5vw, 58px);
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 0 0 100vmax rgba(255, 253, 248, .9);
  clip-path: inset(0 -100vmax);
}

.service-type-section .sub-copy {
  gap: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .54);
}

.service-type-section .sub-copy p {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.service-type-section .sub-copy strong {
  color: var(--ink);
  font-size: 18px;
}

.service-type-section .sub-copy span {
  color: var(--muted);
}

@media (min-width: 1041px) {
  .service-type-section {
    grid-template-columns: .82fr 1.18fr;
  }

  .service-type-section .sub-copy span {
    white-space: nowrap;
  }
}

.budget-flow-section {
  background: #f7f1e8;
  box-shadow: 0 0 0 100vmax #f7f1e8;
  clip-path: inset(0 -100vmax);
}

.budget-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.budget-flow article {
  position: relative;
  min-height: 230px;
  padding: 26px 22px 26px 0;
  border-right: 1px solid var(--line);
}

.budget-flow article + article {
  padding-left: 22px;
}

.budget-flow article:last-child {
  border-right: 0;
}

.budget-flow span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.budget-flow h3 {
  margin: 20px 0 10px;
  font-size: 21px;
}

.budget-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.ground-service-section {
  background: #fffdf8;
  box-shadow: 0 0 0 100vmax #fffdf8;
  clip-path: inset(0 -100vmax);
}

.ground-service-section .sub-copy {
  padding-left: 0;
  border-left: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.service-tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.philosophy-page .safety-strip {
  padding: clamp(42px, 5vw, 58px) 0 clamp(50px, 6vw, 72px);
  border: 0;
  border-radius: 0;
  background: #fffaf1;
  box-shadow: 0 0 0 100vmax #fffaf1;
  clip-path: inset(0 -100vmax);
}

.sub-hero > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.78;
}

.sub-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 104px;
}

.two-column {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.sub-copy {
  display: grid;
  gap: 18px;
}

.sub-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.86;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.detail-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .92);
  box-shadow: var(--soft-shadow);
}

.detail-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.detail-grid h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.inspiration-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.inspiration-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.inspiration-grid div {
  padding: 24px;
}

.inspiration-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.inspiration-grid h3 {
  margin: 14px 0 10px;
  font-size: 24px;
}

.inspiration-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.inspiration-page h1,
.inspiration-page h2,
.inspiration-page h3 {
  font-family: var(--heading-font);
  font-weight: 800;
}

.inspiration-page .sub-hero {
  padding-bottom: clamp(58px, 7vw, 88px);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}

.inspiration-page .sub-hero h1 {
  max-width: 880px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.14;
}

.inspiration-page h2 {
  font-size: clamp(22px, 2.45vw, 36px);
  line-height: 1.22;
}

.inspiration-page .sub-section {
  position: relative;
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(58px, 7vw, 88px);
  margin-bottom: clamp(26px, 4vw, 44px);
}

.inspiration-page .sub-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 2px;
  background: var(--red);
}

.inspiration-feature-section {
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 0 0 100vmax rgba(255, 253, 248, .9);
  clip-path: inset(0 -100vmax);
}

.inspiration-feature-grid article {
  border-radius: 0;
  box-shadow: none;
}

.inspiration-feature-grid img {
  aspect-ratio: 16 / 10;
}

.inspiration-feature-grid span {
  color: var(--red);
}

.inspiration-tags-section {
  background: #fffdf8;
  box-shadow: 0 0 0 100vmax #fffdf8;
  clip-path: inset(0 -100vmax);
}

.inspiration-tag-list {
  align-content: start;
}

.inspiration-tag-list span {
  background: #fff;
  font-weight: 800;
}

.destination-section {
  background: #f7f1e8;
  box-shadow: 0 0 0 100vmax #f7f1e8;
  clip-path: inset(0 -100vmax);
}

.destination-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.destination-list article {
  min-height: 210px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.destination-list article:nth-child(3n) {
  border-right: 0;
}

.destination-list article:nth-child(3n + 2),
.destination-list article:nth-child(3n + 3) {
  padding-left: 24px;
}

.destination-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.destination-list h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.destination-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.inspiration-process-section {
  background: #fffdf8;
  box-shadow: 0 0 0 100vmax #fffdf8;
  clip-path: inset(0 -100vmax);
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-list p {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.76;
}

.process-list strong {
  color: var(--ink);
  font-size: 18px;
}

.process-list span {
  color: var(--muted);
}

.inspiration-page .sub-cta h2 {
  font-size: clamp(24px, 2.7vw, 38px);
}

.cases-page h1,
.cases-page h2,
.cases-page h3 {
  font-family: var(--heading-font);
  font-weight: 800;
}

.cases-page .sub-hero {
  padding-bottom: clamp(58px, 7vw, 88px);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}

.cases-page .sub-hero h1 {
  max-width: 900px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.14;
}

.cases-page h2 {
  font-size: clamp(22px, 2.45vw, 36px);
  line-height: 1.22;
}

.cases-page .sub-section {
  position: relative;
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(58px, 7vw, 88px);
  margin-bottom: clamp(26px, 4vw, 44px);
}

.cases-page .sub-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 2px;
  background: var(--red);
}

.case-category-section {
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 0 0 100vmax rgba(255, 253, 248, .9);
  clip-path: inset(0 -100vmax);
}

.case-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.case-category-grid article {
  min-height: 210px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-category-grid article:nth-child(3n) {
  border-right: 0;
}

.case-category-grid article:nth-child(3n + 2),
.case-category-grid article:nth-child(3n + 3) {
  padding-left: 24px;
}

.case-category-grid span,
.destination-list span,
.case-showcase-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.case-category-grid h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.case-category-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.case-showcase-section {
  background: #fffdf8;
  box-shadow: 0 0 0 100vmax #fffdf8;
  clip-path: inset(0 -100vmax);
}

.case-showcase-grid {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.case-showcase-card {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--soft-shadow);
}

.case-showcase-card img {
  width: 100%;
  height: 360px;
  min-height: 0;
  object-fit: cover;
}

.case-showcase-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 42px);
}

.case-showcase-card h3 {
  margin: 16px 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.case-showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.case-showcase-card dl {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}

.case-showcase-card dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.case-showcase-card dt,
.case-showcase-card dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.case-showcase-card dt {
  color: var(--ink);
  font-weight: 900;
}

.case-method-section {
  background: #f7f1e8;
  box-shadow: 0 0 0 100vmax #f7f1e8;
  clip-path: inset(0 -100vmax);
}

.review-archive-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
  background: #fffdf8;
  box-shadow: 0 0 0 100vmax #fffdf8;
  clip-path: inset(0 -100vmax);
}

.archive-panel {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
}

.archive-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.84;
}

.archive-panel p + p {
  margin-top: 24px;
}

.archive-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 26px 0;
}

.archive-metrics article {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf8;
}

.archive-metrics strong {
  display: block;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.archive-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cases-page .sub-cta h2 {
  font-size: clamp(24px, 2.7vw, 38px);
}

.about-page h1,
.about-page h2,
.about-page h3 {
  font-family: var(--heading-font);
  font-weight: 800;
}

.about-page .sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-bottom: clamp(58px, 7vw, 88px);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}

.about-page .sub-hero h1 {
  max-width: 880px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.14;
}

.about-hero-copy > p:not(.section-label) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.82;
}

.about-hero-image {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.about-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-page h2 {
  font-size: clamp(22px, 2.45vw, 36px);
  line-height: 1.22;
}

.about-page .sub-section {
  position: relative;
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(58px, 7vw, 88px);
  margin-bottom: clamp(26px, 4vw, 44px);
}

.about-page .sub-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 2px;
  background: var(--red);
}

.company-facts-section,
.client-type-section,
.privacy-section {
  background: rgba(255, 253, 248, .9);
  box-shadow: 0 0 0 100vmax rgba(255, 253, 248, .9);
  clip-path: inset(0 -100vmax);
}

.company-facts-grid,
.client-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.company-facts-grid article,
.client-type-grid article {
  min-height: 160px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-facts-grid article:nth-child(3n),
.client-type-grid article:nth-child(3n) {
  border-right: 0;
}

.company-facts-grid article:nth-child(3n + 2),
.company-facts-grid article:nth-child(3n + 3),
.client-type-grid article:nth-child(3n + 2),
.client-type-grid article:nth-child(3n + 3) {
  padding-left: 24px;
}

.company-facts-grid span,
.client-type-grid span,
.brand-portfolio-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.company-facts-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.about-method-section,
.brand-portfolio-section {
  background: #f7f1e8;
  box-shadow: 0 0 0 100vmax #f7f1e8;
  clip-path: inset(0 -100vmax);
}

.about-resource-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background: #fffdf8;
  box-shadow: 0 0 0 100vmax #fffdf8;
  clip-path: inset(0 -100vmax);
}

.about-resource-copy p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.86;
}

.about-resource-image {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.about-resource-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.client-type-grid article {
  min-height: 210px;
}

.client-type-grid h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.client-type-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.brand-portfolio-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.brand-portfolio-list {
  display: grid;
  gap: 16px;
}

.brand-portfolio-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .62);
}

.brand-portfolio-list h3 {
  margin: 12px 0 8px;
  font-size: 24px;
}

.brand-portfolio-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.privacy-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.privacy-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.privacy-grid article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.privacy-grid span {
  color: var(--muted);
  line-height: 1.76;
}

.about-team-section {
  padding-top: 0;
  background: #fffdf8;
  box-shadow: 0 0 0 100vmax #fffdf8;
  clip-path: inset(0 -100vmax);
}

.about-team-section::before {
  display: none;
}

.about-team-section img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.about-page .sub-cta h2 {
  font-size: clamp(24px, 2.7vw, 38px);
}

.about-redesign {
  background:
    linear-gradient(180deg, #fffdf8 0%, #f8f0e6 39%, #fffdf8 72%),
    #fffdf8;
}

.about-redesign h1,
.about-redesign h2,
.about-redesign h3 {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: 0;
}

.about-studio-hero {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(360px, 1.02fr);
  gap: clamp(34px, 5.5vw, 78px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 7vw, 94px) 0 clamp(54px, 7vw, 86px);
}

.about-studio-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.1;
}

.about-studio-copy > p:not(.section-label) {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.86;
}

.about-hero-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
  padding-left: 18px;
  border-left: 3px solid var(--red);
}

.about-hero-facts span {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  color: var(--muted);
  line-height: 1.5;
}

.about-hero-facts strong {
  color: var(--ink);
  font-size: 18px;
}

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

.about-hero-media > img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(35, 31, 32, .16);
}

.mascot-badge {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: -30px;
  display: grid;
  place-items: center;
  width: clamp(118px, 12vw, 156px);
  height: clamp(118px, 12vw, 156px);
  border: 1px solid rgba(223, 193, 154, .9);
  border-radius: 28px;
  background: rgba(255, 253, 248, .95);
  box-shadow: var(--soft-shadow);
}

.mascot-badge img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.credential-section,
.about-operating-section,
.brand-system-section,
.trust-principles-section,
.partner-section,
.about-team-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(52px, 7vw, 92px);
}

.credential-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, 1.08fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(223, 193, 154, .75);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 253, 248, .94), rgba(245, 235, 222, .84));
  box-shadow: 0 26px 70px rgba(35, 31, 32, .08);
}

.credential-copy h2,
.operating-copy h2,
.brand-system-head h2,
.trust-principles-section h2,
.partner-head h2,
.about-team-strip h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.18;
}

.credential-copy > p:not(.section-label),
.operating-copy > p,
.partner-head p,
.about-team-strip p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.84;
}

.credential-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid rgba(223, 193, 154, .8);
}

.credential-list div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(223, 193, 154, .8);
}

.credential-list dt {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.credential-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.55;
}

.credential-docs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: end;
}

.credential-docs figure {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 12px 12px 46px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(35, 31, 32, .11);
}

.credential-docs figure:nth-child(1) {
  transform: rotate(-1.5deg);
}

.credential-docs figure:nth-child(2) {
  transform: translateY(26px) rotate(1.2deg);
}

.credential-docs img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  background: #f9f5ee;
  filter: saturate(.88) contrast(.96);
}

.credential-docs figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: var(--ink);
  font-weight: 900;
}

.about-operating-section {
  display: grid;
  grid-template-columns: minmax(360px, .94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.operating-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
}

.operating-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.operating-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(223, 193, 154, .95);
  border-radius: 999px;
  background: rgba(255, 253, 248, .75);
  color: var(--ink);
  font-weight: 900;
}

.brand-system-section {
  padding: clamp(34px, 5vw, 60px) 0;
  border-top: 1px solid rgba(35, 31, 32, .12);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}

.brand-system-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.brand-system-board {
  display: grid;
  grid-template-columns: 1.16fr .92fr .92fr;
  gap: 18px;
}

.brand-system-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 26px;
  background: rgba(255, 253, 248, .82);
  box-shadow: inset 0 0 0 1px rgba(223, 193, 154, .72);
}

.brand-system-card img {
  width: min(220px, 75%);
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.brand-system-card:not(.brand-eyetrips) img {
  width: min(260px, 90%);
  height: 112px;
}

.brand-system-card h3 {
  margin: auto 0 12px;
  color: var(--ink);
  font-size: 28px;
}

.brand-system-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.brand-eyetrips {
  background: #fff;
  box-shadow: 0 24px 64px rgba(35, 31, 32, .1);
}

.trust-principles-section {
  padding-top: 10px;
}

.trust-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(35, 31, 32, .14);
}

.trust-principles article {
  min-height: 260px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid rgba(35, 31, 32, .14);
  border-bottom: 1px solid rgba(35, 31, 32, .14);
}

.trust-principles article + article {
  padding-left: 28px;
}

.trust-principles article:last-child {
  border-right: 0;
}

.trust-principles span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.trust-principles h3 {
  margin: 22px 0 14px;
  color: var(--ink);
  font-size: 24px;
}

.trust-principles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.partner-section {
  padding: clamp(34px, 5vw, 58px);
  border-radius: 30px;
  background: #111019;
  color: #fff;
  box-shadow: 0 30px 80px rgba(35, 31, 32, .16);
}

.partner-section .section-label,
.partner-section h2 {
  color: #fff;
}

.partner-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .72fr);
  gap: 28px;
  align-items: end;
}

.partner-head p {
  color: rgba(255, 255, 255, .68);
}

.partner-logo-wall {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
}

.partner-logo-cell {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 18px;
  background: rgba(255, 255, 255, .94);
}

.partner-logo-cell img {
  max-width: 100%;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1) contrast(.92);
  opacity: .72;
}

.custom-page {
  padding-bottom: 1px;
  overflow: hidden;
  background: #fffdf8;
}

.custom-entry,
.custom-scope {
  position: relative;
  isolation: isolate;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.custom-entry::before,
.custom-scope::before {
  content: "";
  position: absolute;
  inset: 0 -100vw;
  z-index: -1;
  pointer-events: none;
}

.custom-entry {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(390px, .78fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  padding: clamp(60px, 8vw, 112px) 0 clamp(68px, 8vw, 118px);
}

.custom-entry::before {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(248, 239, 226, .96)),
    radial-gradient(circle at 86% 14%, rgba(239, 73, 56, .07), transparent 30%);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}

.custom-entry-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: clamp(38px, 5.3vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.custom-entry-copy > p:not(.section-label) {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.92;
}

.custom-entry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.custom-entry-points span {
  padding: 10px 14px;
  border: 1px solid rgba(35, 31, 32, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.custom-contact-note {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(35, 31, 32, .14);
}

.custom-contact-note strong {
  color: var(--ink);
  font-size: 17px;
}

.custom-contact-note span {
  color: var(--muted);
  font-size: 14px;
}

.custom-form {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(35, 31, 32, .13);
  border-radius: 24px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 24px 70px rgba(35, 31, 32, .13);
}

.custom-form-head {
  margin-bottom: 20px;
}

.custom-form-head h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
}

.custom-form-head p:not(.section-label) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.custom-scope {
  padding: clamp(62px, 7vw, 96px) 0 clamp(86px, 8vw, 122px);
}

.custom-scope::before {
  background:
    linear-gradient(180deg, #eef4ef 0%, #fbfdf9 50%, #eef5f7 100%),
    radial-gradient(circle at 10% 16%, rgba(37, 162, 213, .06), transparent 30%);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
}

.custom-scope-head {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .86fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(35, 31, 32, .14);
}

.custom-scope-head h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.16;
}

.custom-scope-head > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.custom-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(35, 31, 32, .14);
}

.custom-scope-grid article {
  min-height: 280px;
  padding: clamp(26px, 3vw, 36px);
  border-right: 1px solid rgba(35, 31, 32, .14);
  border-bottom: 1px solid rgba(35, 31, 32, .14);
  background: rgba(255, 253, 248, .44);
}

.custom-scope-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

.custom-scope-grid h3 {
  margin: 28px 0 16px;
  color: var(--ink);
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 800;
}

.custom-scope-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.about-team-strip {
  display: grid;
  grid-template-columns: minmax(330px, .85fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.about-team-strip img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
}

.about-clean {
  overflow: hidden;
  background: #fffdf8;
}

.about-clean h1,
.about-clean h2,
.about-clean h3 {
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: 0;
}

.about-clean-hero,
.about-wide-photo,
.about-identity,
.about-license-row,
.about-service-system,
.about-brand-supply,
.about-brands-clean,
.about-partners-clean,
.about-office-close {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.about-clean-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(62px, 8vw, 104px) 0 42px;
}

.about-clean-hero::before,
.about-wide-photo::before,
.about-identity::before,
.about-service-system::before,
.about-brand-supply::before {
  content: "";
  position: absolute;
  inset: 0 -100vw;
  z-index: -1;
  pointer-events: none;
}

.about-clean-hero::before {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 1), rgba(255, 253, 248, .98)),
    radial-gradient(circle at 82% 10%, rgba(239, 73, 56, .05), transparent 32%);
  border-bottom: 1px solid rgba(35, 31, 32, .08);
}

.about-clean-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
}

.about-clean-intro p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.16vw, 18px);
  line-height: 1.92;
  padding-top: 22px;
  border-top: 1px solid rgba(35, 31, 32, .14);
  text-wrap: pretty;
}

.about-wide-photo {
  margin-bottom: 0;
  padding: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 5 / 3;
  background: transparent;
}

.about-wide-photo::before {
  inset: 0 -100vw;
  background: #fffdf8;
}

.about-wide-photo img {
  display: block;
  width: 100%;
  height: 125%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-10%);
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(35, 31, 32, .12);
}

.about-capability-image::after,
.about-service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .04), rgba(35, 31, 32, .08)),
    linear-gradient(90deg, rgba(35, 31, 32, .08), transparent 34%, transparent 68%, rgba(35, 31, 32, .05));
}

.about-identity {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 7vw, 96px);
  padding: clamp(66px, 7vw, 98px) 0 clamp(72px, 8vw, 108px);
  border-bottom: 0;
}

.about-identity::before {
  background:
    linear-gradient(180deg, #f4ecdf 0%, #fbf5ea 52%, #f4ecdf 100%),
    radial-gradient(circle at 8% 20%, rgba(239, 73, 56, .06), transparent 30%);
  border-top: 1px solid rgba(35, 31, 32, .18);
  border-bottom: 1px solid rgba(35, 31, 32, .16);
}

.about-identity h2,
.about-license-row h2,
.about-capability h2,
.about-principles h2,
.about-service-head h2,
.about-brand-supply-head h2,
.about-brands-clean h2,
.about-partners-clean h2,
.about-office-close h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3.15vw, 44px);
  line-height: 1.18;
}

.about-identity-copy p:not(.section-label),
.about-capability-copy p,
.about-service-head > p,
.about-brand-supply-head > p,
.about-partners-head p,
.about-office-close p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.86;
}

.about-identity-list {
  margin: 0;
  border-top: 1px solid rgba(35, 31, 32, .14);
}

.about-identity-list div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(35, 31, 32, .14);
}

.about-identity-list dt {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-identity-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.about-credential-stack {
  display: grid;
  gap: 30px;
}

.about-license-row {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(440px, 1.2fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: clamp(46px, 6vw, 76px) 0;
}

.about-license-previews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-license-previews figure {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(35, 31, 32, .18);
}

.about-license-previews img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #f6f2ea;
  border: 1px solid rgba(35, 31, 32, .12);
  filter: saturate(.82) contrast(.94) brightness(1.02);
}

.about-license-previews figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
}

.about-service-system {
  position: relative;
  isolation: isolate;
  padding: clamp(62px, 7vw, 94px) 0;
  border-bottom: 0;
}

.about-service-system::before {
  background:
    linear-gradient(90deg, rgba(238, 244, 239, .98), rgba(250, 252, 247, .94) 62%, rgba(238, 244, 239, .98)),
    linear-gradient(180deg, #eef4ef, #fafcf7);
  border-top: 1px solid rgba(35, 31, 32, .14);
  border-bottom: 1px solid rgba(35, 31, 32, .14);
}

.about-service-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
}

.about-service-head > p {
  max-width: 620px;
  justify-self: end;
}

.about-service-body {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
  margin-top: clamp(34px, 5vw, 54px);
}

.about-service-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f6f0e7;
}

.about-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(1.08) contrast(.96) brightness(1.03);
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(35, 31, 32, .14);
  border-left: 1px solid rgba(35, 31, 32, .14);
  background: rgba(255, 253, 248, .64);
}

.about-service-grid article {
  min-height: 215px;
  padding: clamp(24px, 3vw, 32px);
  border-right: 1px solid rgba(35, 31, 32, .14);
  border-bottom: 1px solid rgba(35, 31, 32, .14);
}

.about-service-grid span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.about-service-grid h3 {
  margin: 22px 0 14px;
  color: var(--ink);
  font-size: 24px;
}

.about-service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.about-brand-supply {
  position: relative;
  isolation: isolate;
  padding: clamp(62px, 7vw, 94px) 0;
  border-bottom: 0;
}

.about-brand-supply::before {
  background:
    linear-gradient(180deg, #eef5f7 0%, #fbfdfe 54%, #eef5f7 100%),
    radial-gradient(circle at 90% 8%, rgba(37, 162, 213, .08), transparent 30%);
  border-top: 1px solid rgba(35, 31, 32, .14);
  border-bottom: 1px solid rgba(35, 31, 32, .14);
}

.about-clean .sub-cta {
  margin-top: clamp(54px, 7vw, 86px);
}

.about-brand-supply-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(35, 31, 32, .14);
}

.about-brand-supply-head > p {
  max-width: 660px;
  justify-self: end;
}

.about-brand-supply-board {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  padding-top: 34px;
}

.about-brand-cards {
  display: grid;
  gap: 14px;
}

.about-brand-cards article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 152px;
  padding: 20px;
  border: 1px solid rgba(35, 31, 32, .12);
  background: rgba(255, 253, 248, .78);
}

.about-brand-cards img {
  width: 182px;
  height: 118px;
  object-fit: contain;
  object-position: left center;
}

.about-brand-cards article:nth-child(2) img {
  justify-self: center;
  object-position: center;
}

.about-brand-cards h3,
.about-supply-panel h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
}

.about-brand-cards p,
.about-supply-panel p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.about-supply-panel {
  display: grid;
  gap: 22px;
}

.about-supply-logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-top: 1px solid rgba(35, 31, 32, .12);
  border-left: 1px solid rgba(35, 31, 32, .12);
}

.about-supply-logos img {
  width: 100%;
  height: 124px;
  padding: 22px 16px;
  object-fit: contain;
  border-right: 1px solid rgba(35, 31, 32, .12);
  border-bottom: 1px solid rgba(35, 31, 32, .12);
  filter: grayscale(1) contrast(.9);
  opacity: .66;
}

.about-office-close {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  padding: clamp(48px, 6vw, 78px) 0;
}

.about-office-close img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.08) contrast(.96) brightness(1.03);
}

@media (max-width: 980px) {
  .about-clean-hero,
  .about-identity,
  .about-license-row,
  .about-capability,
  .about-service-head,
  .about-service-body,
  .about-brand-supply-head,
  .about-brand-supply-board,
  .about-brands-clean,
  .about-partners-head,
  .about-office-close {
    grid-template-columns: 1fr;
  }

  .about-service-head > p {
    justify-self: start;
  }

  .about-brand-supply-head > p {
    justify-self: start;
  }

  .about-service-grid article {
    min-height: 0;
  }

  .about-supply-logos,
  .about-partner-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 680px) {
  .about-clean-hero,
  .about-wide-photo,
  .about-identity,
  .about-license-row,
  .about-capability,
  .about-service-system,
  .about-brand-supply,
  .about-brands-clean,
  .about-partners-clean,
  .about-office-close {
    width: min(100% - 32px, 1180px);
  }

  .about-clean-title h1 {
    font-size: clamp(40px, 14vw, 56px);
  }

  .about-wide-photo {
    aspect-ratio: 5 / 3;
  }

  .about-wide-photo img {
    height: 125%;
  }

  .about-identity-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-license-previews {
    grid-template-columns: 1fr;
  }

  .about-license-previews img {
    height: 220px;
  }

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

  .about-service-image img {
    min-height: 300px;
  }

  .about-brand-cards article {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .about-supply-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-brand-lines article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-partner-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .about-studio-hero,
  .credential-section,
  .about-operating-section,
  .about-team-strip {
    grid-template-columns: 1fr;
  }

  .about-hero-media,
  .about-hero-media > img {
    min-height: 0;
    height: auto;
  }

  .about-hero-media > img {
    aspect-ratio: 16 / 10;
  }

  .credential-docs figure:nth-child(2) {
    transform: rotate(1.2deg);
  }

  .brand-system-head,
  .partner-head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brand-system-board {
    grid-template-columns: 1fr;
  }

  .brand-system-card {
    min-height: 240px;
  }

  .trust-principles {
    grid-template-columns: 1fr;
  }

  .trust-principles article,
  .trust-principles article + article,
  .trust-principles article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .partner-logo-wall {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 680px) {
  .about-studio-hero,
  .credential-section,
  .about-operating-section,
  .brand-system-section,
  .trust-principles-section,
  .partner-section,
  .about-team-strip {
    width: min(100% - 32px, 1180px);
    margin-bottom: 54px;
  }

  .about-studio-copy h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .about-hero-facts {
    padding-left: 14px;
  }

  .mascot-badge {
    right: 16px;
    bottom: -22px;
    width: 104px;
    height: 104px;
    border-radius: 22px;
  }

  .credential-section,
  .partner-section {
    padding: 24px;
    border-radius: 22px;
  }

  .credential-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .credential-docs {
    grid-template-columns: 1fr;
  }

  .credential-docs figure,
  .credential-docs figure:nth-child(1),
  .credential-docs figure:nth-child(2) {
    transform: none;
  }

  .credential-docs img {
    height: 220px;
  }

  .brand-system-card {
    min-height: 220px;
    border-radius: 22px;
  }

  .partner-logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logo-cell {
    min-height: 78px;
  }
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-list span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  font-weight: 800;
}

.sub-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 96px;
  padding: clamp(30px, 5vw, 56px);
  border-radius: 24px;
  background: var(--deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.sub-cta .section-label,
.sub-cta h2 {
  color: #fff;
}

.sub-cta h2 {
  max-width: 760px;
}

.sub-contact {
  margin-bottom: 104px;
}

.philosophy-page {
  padding-bottom: 1px;
}

.philosophy-hero,
.philosophy-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.philosophy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) 0 82px;
}

.philosophy-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

.philosophy-hero-copy > p:not(.section-label) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.82;
}

.philosophy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.philosophy-points span,
.resource-tags span,
.budget-steps span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .88);
  color: var(--ink);
  font-weight: 800;
}

.philosophy-points span {
  padding: 10px 14px;
}

.philosophy-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.philosophy-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.philosophy-section {
  padding-bottom: 92px;
}

.philosophy-section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.philosophy-section-head h2 {
  max-width: 720px;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-type-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.service-type-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red);
}

.service-type-grid article:nth-child(2)::before {
  background: var(--cyan);
}

.service-type-grid article:nth-child(3)::before {
  background: var(--green);
}

.service-type-grid span {
  color: rgba(49, 43, 41, .3);
  font-size: 42px;
  font-weight: 900;
}

.service-type-grid h3 {
  margin: 28px 0 12px;
  font-size: 26px;
}

.service-type-grid p,
.service-type-grid b {
  display: block;
  margin: 0;
  line-height: 1.72;
}

.service-type-grid p {
  color: var(--muted);
}

.service-type-grid b {
  margin-top: 18px;
  color: var(--ink);
}

.budget-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.budget-feature-plain {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .86);
  box-shadow: var(--soft-shadow);
}

.budget-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.budget-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.budget-steps span {
  padding: 13px 14px;
}

.ground-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.ground-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.82;
}

.resource-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.resource-tags span {
  padding: 10px 13px;
}

.ground-image {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.ground-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.safety-strip {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--soft-shadow);
}

.safety-strip h2 {
  max-width: 620px;
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(8px, -10px, 0) rotate(1deg);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatMascot {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes pulsePin {
  0%, 100% {
    box-shadow: 0 8px 22px rgba(0, 0, 0, .2), 0 0 0 0 rgba(255, 255, 255, .42);
  }
  50% {
    box-shadow: 0 8px 22px rgba(0, 0, 0, .2), 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

.site-footer {
  padding: 0;
  background: #171527;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.25fr;
  align-items: start;
  gap: clamp(34px, 6vw, 86px);
  padding: 70px clamp(20px, 6vw, 90px);
  background: #171527;
}

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

.footer-contact img {
  width: 210px;
  margin: -4px 0 14px;
}

.footer-contact strong {
  color: #ff795f;
  font-size: 16px;
  padding-left: .35em;
}

.footer-contact a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding-left: .35em;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 19px;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
}

.footer-trust p {
  max-width: 31em;
}

.footer-col a[data-cooperation-type] {
  cursor: pointer;
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.payment-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.modal-open {
  overflow: hidden;
}

.cooperation-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(13, 12, 18, .72);
  backdrop-filter: blur(10px);
}

.cooperation-modal[aria-hidden="true"] {
  display: none;
}

.cooperation-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: min(88vh, 780px);
  overflow: auto;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(226, 211, 187, .9);
  border-radius: 18px;
  background: #fbf7ef;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
}

.cooperation-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(31, 29, 28, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cooperation-dialog h2 {
  margin: 8px 42px 12px 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

.cooperation-intro {
  max-width: 560px;
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.8;
}

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

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

.cooperation-form span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.cooperation-form input,
.cooperation-form textarea {
  width: 100%;
  border: 1px solid rgba(191, 158, 115, .42);
  border-radius: 12px;
  background: rgba(255, 253, 248, .92);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
  outline: none;
}

.cooperation-form input {
  height: 48px;
  padding: 0 16px;
}

.cooperation-form textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px 16px;
}

.cooperation-form input:focus,
.cooperation-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 68, 49, .12);
}

.cooperation-form [aria-invalid="true"] {
  border-color: var(--accent);
}

.cooperation-wide,
.cooperation-form button,
.cooperation-status {
  grid-column: 1 / -1;
}

.cooperation-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.cooperation-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 90px);
  background: #11101d;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  line-height: 1.7;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(236, 224, 207, .92);
    border-radius: 24px;
    background: rgba(255, 253, 248, .98);
    box-shadow: var(--soft-shadow);
    color: var(--deep);
    font-size: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .site-nav a:hover {
    background: #fff4e8;
  }

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

  .hero,
  .visual-band,
  .sub-hero,
  .section-grid,
  .brand-layout,
  .contact-card,
  .two-column,
  .sub-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 520px;
  }

  .planner-card {
    right: 8%;
  }

  .metrics,
  .process,
  .journey-grid,
  .experience-grid,
  .detail-grid,
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-card:first-child {
    grid-column: 1 / -1;
  }

  .visual-image img {
    height: 420px;
  }

  .visual-image,
  .visual-image img {
    border-radius: 0;
  }

  .visual-panel {
    border-radius: 0;
  }

  .section-head {
    display: block;
  }

  .section-head > p {
    margin-top: 18px;
  }

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

  .partner-grid,
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    display: grid;
  }

  .philosophy-hero,
  .budget-feature,
  .ground-layout,
  .safety-strip {
    grid-template-columns: 1fr;
  }

  .service-type-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-section-head {
    display: block;
  }

  .ground-image img {
    aspect-ratio: 16 / 9;
  }

  .philosophy-page .sub-cta h2 {
    white-space: normal;
  }

  .philosophy-page .sub-hero {
    grid-template-columns: 1fr;
  }

  .service-panel {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 0;
  }

  .service-panel span {
    padding: 12px 10px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }

  .service-panel span:last-child {
    border-right: 0;
  }

  .budget-flow {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 0;
  }

  .budget-flow article {
    min-height: auto;
    padding: 22px;
    border-bottom: 1px solid var(--line);
  }

  .budget-flow article + article {
    padding-left: 22px;
  }

  .budget-flow article:nth-child(2n) {
    border-right: 0;
  }

  .philosophy-page .sub-section {
    padding-top: 46px;
    padding-bottom: 62px;
    margin-bottom: 28px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand img {
    width: 154px;
  }

  .header-cta {
    display: none;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero,
  .metrics,
  .section,
  .visual-band,
  .contact,
  .sub-hero,
  .sub-section,
  .sub-cta {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-stage {
    min-height: 620px;
  }

  .planner-card {
    top: 0;
    right: 0;
    width: 100%;
  }

  .mascot-card {
    left: 0;
    bottom: 34px;
    width: 220px;
    height: 270px;
  }

  .mascot-card img {
    width: 258px;
    transform: translate(-18px, -4px);
  }

  .mini-left {
    left: auto;
    right: 18px;
    top: 382px;
  }

  .mini-right {
    right: 18px;
    bottom: 24px;
  }

  .hero-actions a,
  .lead-form button {
    width: 100%;
  }

  .metrics,
  .process,
  .journey-grid,
  .experience-grid,
  .detail-grid,
  .inspiration-grid {
    grid-template-columns: 1fr;
  }

  .experience-card,
  .experience-card:first-child {
    grid-column: auto;
    min-height: 390px;
  }

  .metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics article:last-child {
    border-bottom: 0;
  }

  .section,
  .honors,
  .experiences,
  .brands,
  .sub-section {
    padding-bottom: 82px;
  }

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

  .visual-band {
    margin-bottom: 82px;
    border-radius: 0;
  }

  .visual-image,
  .visual-image img {
    border-radius: 0;
  }

  .visual-panel {
    border-radius: 0;
  }

  .visual-panel li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .brand-layout,
  .contact-card,
  .sub-cta {
    padding: 24px;
    border-radius: 30px;
  }

  .sub-hero {
    padding: 56px 0 52px;
  }

  .sub-hero h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.12;
  }

  .detail-grid article {
    min-height: auto;
  }

  .sub-cta .primary-btn {
    width: 100%;
  }

  .brand-stack article {
    grid-template-columns: 1fr;
  }

  .brand-dot {
    width: 56px;
    height: 12px;
  }

  .footer-main {
    padding: 48px 24px;
  }

  .footer-bottom {
    padding: 24px;
  }

  .safety-strip {
    padding: 24px;
    margin-bottom: 76px;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-panel span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

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

  .budget-flow article {
    border-right: 0;
  }

  .service-type-section .sub-copy p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .philosophy-page .sub-cta h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .philosophy-page .sub-hero {
    padding-bottom: 52px;
  }

  .philosophy-page .sub-section {
    padding-top: 40px;
    padding-bottom: 54px;
    margin-bottom: 22px;
  }

  .philosophy-page .sub-section::before {
    width: 54px;
  }

  .ground-service-section .sub-copy {
    padding-left: 0;
  }
}

@media (max-width: 1040px) {
  .case-category-grid,
  .destination-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-category-grid article,
  .case-category-grid article:nth-child(3n),
  .case-category-grid article:nth-child(3n + 2),
  .case-category-grid article:nth-child(3n + 3),
  .destination-list article,
  .destination-list article:nth-child(3n),
  .destination-list article:nth-child(3n + 2),
  .destination-list article:nth-child(3n + 3) {
    padding: 22px;
    border-right: 1px solid var(--line);
  }

  .case-category-grid article:nth-child(2n),
  .destination-list article:nth-child(2n) {
    border-right: 0;
  }

  .cases-page .sub-section,
  .inspiration-page .sub-section {
    padding-top: 46px;
    padding-bottom: 62px;
    margin-bottom: 28px;
  }

  .case-showcase-card,
  .about-page .sub-hero,
  .about-resource-section,
  .brand-portfolio-section,
  .privacy-section,
  .review-archive-section {
    grid-template-columns: 1fr;
  }

  .company-facts-grid,
  .client-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-facts-grid article,
  .company-facts-grid article:nth-child(3n),
  .company-facts-grid article:nth-child(3n + 2),
  .company-facts-grid article:nth-child(3n + 3),
  .client-type-grid article,
  .client-type-grid article:nth-child(3n),
  .client-type-grid article:nth-child(3n + 2),
  .client-type-grid article:nth-child(3n + 3) {
    padding: 22px;
    border-right: 1px solid var(--line);
  }

  .company-facts-grid article:nth-child(2n),
  .client-type-grid article:nth-child(2n) {
    border-right: 0;
  }

  .about-page .sub-section {
    padding-top: 46px;
    padding-bottom: 62px;
    margin-bottom: 28px;
  }

  .case-showcase-card img {
    height: 320px;
    max-height: none;
  }
}

@media (max-width: 680px) {
  .cases-page .sub-hero,
  .about-page .sub-hero,
  .inspiration-page .sub-hero {
    padding-bottom: 52px;
  }

  .cases-page .sub-section,
  .about-page .sub-section,
  .inspiration-page .sub-section {
    padding-top: 40px;
    padding-bottom: 54px;
    margin-bottom: 22px;
  }

  .cases-page .sub-section::before,
  .about-page .sub-section::before,
  .inspiration-page .sub-section::before {
    width: 54px;
  }

  .case-category-grid,
  .company-facts-grid,
  .client-type-grid,
  .destination-list {
    grid-template-columns: 1fr;
  }

  .case-category-grid article,
  .case-category-grid article:nth-child(2n),
  .case-category-grid article:nth-child(3n),
  .company-facts-grid article,
  .company-facts-grid article:nth-child(2n),
  .company-facts-grid article:nth-child(3n),
  .client-type-grid article,
  .client-type-grid article:nth-child(2n),
  .client-type-grid article:nth-child(3n),
  .destination-list article,
  .destination-list article:nth-child(2n),
  .destination-list article:nth-child(3n) {
    border-right: 0;
  }

  .case-showcase-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .case-showcase-card img {
    height: 240px;
  }

  .archive-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-list p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-team-section img {
    max-height: 360px;
  }

  .cases-page .sub-cta h2,
  .about-page .sub-cta h2,
  .inspiration-page .sub-cta h2 {
    font-size: clamp(24px, 8vw, 32px);
  }
}

@media (max-width: 980px) {
  .custom-entry,
  .custom-scope-head {
    grid-template-columns: 1fr;
  }

  .custom-form {
    max-width: 620px;
  }

  .custom-scope-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .custom-scope-grid article {
    min-height: 0;
    border-left: 1px solid rgba(35, 31, 32, .14);
  }
}

@media (max-width: 680px) {
  .cooperation-modal {
    padding: 14px;
  }

  .cooperation-dialog {
    border-radius: 16px;
  }

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

  .custom-entry,
  .custom-scope {
    width: min(100% - 32px, 1180px);
  }

  .custom-entry {
    padding: 46px 0 58px;
  }

  .custom-entry-copy h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .custom-form {
    padding: 22px;
    border-radius: 20px;
  }

  .custom-scope {
    padding: 52px 0 72px;
  }

  .custom-scope-head {
    padding-bottom: 26px;
  }

  .custom-scope-grid article {
    padding: 24px 0;
    border-left: 0;
    border-right: 0;
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
