:root {
  --ink: #182033;
  --ink-soft: #39435a;
  --muted: #647087;
  --plum: #4e287c;
  --plum-dark: #2b173f;
  --violet: #8154bd;
  --lilac: #e8def5;
  --gold: #c99a54;
  --cream: #faf7f1;
  --sand: #f0e9de;
  --line: #dfd7ca;
  --white: #ffffff;
  --success: #16725f;
  --radius-button: 10px;
  --shadow: 0 24px 70px rgba(35, 21, 56, 0.12);
  --page-width: 1180px;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.locale-zh {
  --font-sans: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", system-ui, sans-serif;
}

.locale-zh .hero h1,
.locale-zh .hero-art-copy strong {
  letter-spacing: -0.055em;
}

.locale-zh .hero-art-points strong,
.locale-zh .hero-art-points small {
  letter-spacing: 0;
}

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

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #e4b86a;
  outline-offset: 3px;
}

.container {
  width: min(var(--page-width), calc(100% - 64px));
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--plum-dark);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(223, 215, 202, 0.9);
  background: rgba(250, 247, 241, 0.94);
  backdrop-filter: blur(14px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 64px));
  min-height: 78px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  width: 76px;
  height: 46px;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

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

.brand-kicker {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.brand strong {
  color: var(--plum);
  font-family: "Bodoni MT", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.065em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 30px);
  color: #31364a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.primary-navigation > a:not(.nav-cta) {
  position: relative;
  padding: 27px 0 23px;
}

.primary-navigation > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.primary-navigation > a:not(.nav-cta):hover::after,
.primary-navigation > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 8px 22px rgba(78, 40, 124, 0.2);
  transition: transform 0.18s ease, background 0.18s ease;
}

.nav-cta:hover {
  background: var(--plum-dark);
  transform: translateY(-1px);
}

.language-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 4px;
  color: #8d8992;
  font-size: 11px;
  font-weight: 600;
}

.language-nav > :not(:last-child)::after {
  margin-left: 8px;
  color: #c2bdc5;
  content: "/";
}

.language-nav a {
  color: inherit;
  transition: color 0.18s ease;
}

.language-nav a:hover {
  color: var(--plum);
}

.language-nav .is-active {
  color: var(--plum);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--plum-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(70px, 9vw, 126px) 0 0;
  background:
    radial-gradient(circle at 86% 8%, rgba(227, 210, 247, 0.88), transparent 29%),
    radial-gradient(circle at 68% 80%, rgba(230, 197, 135, 0.21), transparent 24%),
    linear-gradient(135deg, #fdfbf8 0%, #f4edf8 52%, #e8ddf2 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.36;
  content: "";
  background-image: linear-gradient(rgba(86, 53, 124, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(86, 53, 124, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.65;
}

.hero-glow-one {
  top: 52px;
  right: -180px;
  width: 490px;
  height: 490px;
  border: 1px solid rgba(93, 61, 134, 0.22);
}

.hero-glow-two {
  right: 80px;
  bottom: 30px;
  width: 270px;
  height: 270px;
  border: 38px solid rgba(255, 255, 255, 0.29);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  align-items: center;
  gap: clamp(40px, 8vw, 118px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 23px;
  color: var(--ink);
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.25;
}

.hero h1 em {
  color: var(--plum);
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-button);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button span {
  margin-left: 14px;
  font-size: 18px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 13px 30px rgba(78, 40, 124, 0.25);
}

.button-primary:hover {
  background: var(--plum-dark);
  box-shadow: 0 17px 35px rgba(43, 23, 63, 0.28);
}

.button-quiet {
  border-color: rgba(78, 40, 124, 0.25);
  color: var(--plum);
  background: rgba(255, 255, 255, 0.53);
}

.button-quiet:hover {
  border-color: var(--plum);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(24, 32, 51, 0.18);
}

.button-dark:hover {
  background: var(--plum-dark);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 650px;
  padding: 0;
  margin: 0;
  color: #465067;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.hero-notes li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-notes span {
  color: var(--gold);
  font-size: 8px;
}

.hero-art {
  position: relative;
  align-self: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(78, 40, 124, 0.17);
  border-radius: 6px 64px 6px 64px;
  background: #f8f4ee;
  box-shadow: 0 20px 46px rgba(42, 25, 69, 0.08);
  isolation: isolate;
}

.hero-art::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 32%);
}

.hero-art-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
}

.hero-art-copy {
  position: absolute;
  z-index: 1;
  top: 29px;
  right: 32px;
  left: 32px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(78, 40, 124, 0.18);
}

.art-label {
  display: block;
  margin-bottom: 7px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.hero-art-copy strong {
  color: var(--ink);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.4;
}

.hero-art-copy p {
  max-width: 360px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.hero-art-points {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-art-points li {
  position: absolute;
  display: grid;
  gap: 6px;
  width: clamp(164px, 38%, 232px);
  padding: 15px 16px 14px;
  border: 1px solid rgba(78, 40, 124, 0.15);
  border-top: 3px solid var(--plum);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 22px rgba(42, 25, 69, 0.06);
  backdrop-filter: blur(3px);
}

.hero-art-points li:nth-child(1) {
  top: 54%;
  left: 5.5%;
}

.hero-art-points li:nth-child(2) {
  top: 54%;
  right: 5.5%;
}

.hero-art-points li:nth-child(3) {
  top: 80%;
  left: 50%;
  width: clamp(196px, 52%, 286px);
  transform: translateX(-50%);
}

.hero-art-points span {
  color: var(--plum);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
}

.hero-art-points strong {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.015em;
  line-height: 1.4;
}

.hero-art-points small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 31px 0 28px;
  margin-top: 78px;
  border-top: 1px solid rgba(78, 40, 124, 0.16);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.hero-bottom p {
  margin: 0;
}

.hero-bottom a {
  color: var(--plum);
  white-space: nowrap;
}

.hero-bottom a span {
  margin-left: 9px;
}

.section {
  padding: clamp(74px, 10vw, 132px) 0;
}

.section-heading {
  margin-bottom: 49px;
}

.section-heading h2,
.company-facts h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(31px, 3.6vw, 51px);
  line-height: 1.35;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.split-heading > p {
  max-width: 390px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 15px;
}

.situations {
  background: var(--cream);
}

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

.situation-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 31px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.situation-card:hover {
  border-color: rgba(78, 40, 124, 0.38);
  box-shadow: 0 18px 40px rgba(32, 20, 51, 0.08);
  transform: translateY(-4px);
}

.situation-card.is-featured {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(145deg, var(--plum-dark), #6c449b);
}

.card-index,
.service-number {
  display: block;
  margin-bottom: auto;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
}

.situation-card h3 {
  margin: 48px 0 17px;
  color: inherit;
  font-size: 23px;
  line-height: 1.55;
}

.situation-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.situation-card.is-featured p {
  color: rgba(255, 255, 255, 0.78);
}

.situation-card a,
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
}

.situation-card a {
  color: var(--plum);
}

.situation-card.is-featured a {
  color: #f0d49d;
}

.services {
  color: var(--white);
  background: var(--ink);
}

.services .eyebrow,
.services h2 {
  color: var(--white);
}

.services h2 {
  font-size: clamp(34px, 4vw, 55px);
}

.services-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--plum);
  font-size: 14px;
  font-weight: 800;
}

.services .text-link {
  color: #ebc982;
}

.text-link span {
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.service-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 34px;
  background: #212b42;
}

.service-card:nth-child(2) {
  background: #29344f;
}

.service-card:nth-child(3) {
  background: #303c59;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-number {
  margin: 0;
  color: #e9c36f;
}

.service-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: #f0d49d;
  font-size: 22px;
}

.service-card h3 {
  margin: 62px 0 17px;
  color: var(--white);
  font-size: 27px;
  line-height: 1.44;
}

.service-card p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.85;
}

.service-card ul {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  list-style: none;
}

.service-card li::before {
  margin-right: 8px;
  color: var(--gold);
  content: "•";
}

.service-card a {
  color: #f1d49d;
}

.service-note {
  max-width: 900px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 11px;
  line-height: 1.8;
}

.why-us {
  background: #ede6dc;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
}

.why-lead > p:not(.eyebrow) {
  max-width: 450px;
  margin: 22px 0 32px;
  color: var(--ink-soft);
  font-size: 16px;
}

.strength-list {
  border-top: 1px solid rgba(24, 32, 51, 0.18);
}

.strength-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  padding: 25px 0 27px;
  border-bottom: 1px solid rgba(24, 32, 51, 0.18);
}

.strength-list > article > span {
  color: var(--plum);
  font-family: Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.strength-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.strength-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.flow {
  background: var(--white);
}

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

.flow-list li {
  position: relative;
  min-height: 230px;
  padding: 31px 34px 24px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list li:not(:last-child) {
  margin-right: 34px;
}

.flow-list li:not(:last-child)::after {
  position: absolute;
  top: 43px;
  right: 0;
  width: 1px;
  height: 138px;
  background: var(--line);
  content: "";
}

.flow-list span {
  display: block;
  margin-bottom: 31px;
  color: var(--plum);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.flow-list h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.company-facts {
  padding: clamp(64px, 8vw, 100px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 10%, rgba(174, 137, 218, 0.34), transparent 28%),
    linear-gradient(130deg, #2b173f, #47276b 56%, #35204d);
}

.company-facts .eyebrow,
.company-facts h2 {
  color: var(--white);
}

.company-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  align-items: center;
  gap: clamp(50px, 11vw, 160px);
}

.company-facts dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.company-facts dl > div {
  min-height: 113px;
  padding: 20px 20px 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.company-facts dl > div:nth-child(odd) {
  padding-right: 25px;
}

.company-facts dl > div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.company-facts dt {
  margin-bottom: 5px;
  color: #e5c887;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.company-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.75;
}

.faq-preview {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(44px, 8vw, 116px);
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  max-width: 320px;
  margin: 17px 0 28px;
  color: var(--muted);
  font-size: 15px;
}

.faq-items {
  border-top: 1px solid var(--line);
}

.faq-items details {
  border-bottom: 1px solid var(--line);
}

.faq-items summary {
  position: relative;
  padding: 21px 42px 21px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-items summary::-webkit-details-marker {
  display: none;
}

.faq-items summary::after {
  position: absolute;
  top: 21px;
  right: 5px;
  color: var(--plum);
  font-size: 20px;
  font-weight: 400;
  content: "+";
}

.faq-items details[open] summary::after {
  content: "−";
}

.faq-items p {
  max-width: 730px;
  margin: -2px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.contact-section {
  padding: clamp(75px, 10vw, 132px) 0;
  color: var(--white);
  background: #1d253a;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: clamp(54px, 9vw, 132px);
}

.contact-copy .eyebrow,
.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 400px;
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.contact-copy ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  list-style: none;
}

.contact-copy li::before {
  margin-right: 9px;
  color: var(--gold);
  content: "◆";
  font-size: 7px;
}

.contact-form {
  padding: clamp(24px, 4vw, 39px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.19);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label,
.consent {
  display: block;
  margin-bottom: 6px;
  color: #40495c;
  font-size: 12px;
  font-weight: 800;
}

.form-row label span {
  margin-left: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.form-row label b,
.consent b {
  margin-left: 7px;
  color: #b33a4d;
  font-size: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7d9df;
  border-radius: 2px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input,
select {
  min-height: 45px;
  padding: 9px 11px;
}

textarea {
  min-height: 110px;
  padding: 11px;
  resize: vertical;
}

textarea::placeholder {
  color: #99a0ad;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(129, 84, 189, 0.16);
}

.split-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 5px 0 22px;
  line-height: 1.45;
}

.consent input {
  width: 16px;
  min-height: 16px;
  margin: 1px 0 0;
  accent-color: var(--plum);
}

.submit-button {
  min-width: min(100%, 260px);
}

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
}

.form-note {
  margin: 2px 0 0;
  color: #7c8492;
  font-size: 10px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #121827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 50px;
  padding: 56px 0 44px;
}

.brand-footer strong {
  color: var(--white);
}

.brand-footer .brand-kicker {
  color: rgba(255, 255, 255, 0.58);
}

.footer-brand p {
  max-width: 240px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: #ebc982;
}

address {
  display: grid;
  align-content: start;
  gap: 7px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 13px;
  font-style: normal;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
}

@media (max-width: 1060px) {
  .header-shell,
  .container {
    width: min(var(--page-width), calc(100% - 44px));
  }

  .primary-navigation {
    gap: 16px;
  }

  .language-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(370px, 0.9fr);
    gap: 54px;
  }

  .hero-art {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .service-card {
    padding: 28px;
  }

  .company-facts-grid,
  .contact-grid {
    gap: 65px;
  }
}

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

  .header-shell,
  .container {
    width: min(var(--page-width), calc(100% - 32px));
  }

  .header-shell {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-navigation {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(250, 247, 241, 0.98);
    box-shadow: 0 13px 25px rgba(21, 18, 29, 0);
    transition: max-height 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
  }

  .primary-navigation.is-open {
    max-height: 440px;
    padding: 12px 16px 22px;
    border-bottom-color: var(--line);
    box-shadow: 0 13px 25px rgba(21, 18, 29, 0.12);
  }

  .primary-navigation > a:not(.nav-cta) {
    padding: 11px 0;
  }

  .primary-navigation > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    width: fit-content;
    margin-top: 7px;
  }

  .language-nav {
    display: flex;
    margin-top: 12px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .why-grid,
  .company-facts-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-art {
    width: min(100%, 620px);
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
  }

  .hero-bottom {
    margin-top: 50px;
  }

  .split-heading,
  .services-heading {
    display: grid;
    align-items: start;
    gap: 17px;
  }

  .split-heading > p {
    max-width: 530px;
  }

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

  .situation-card {
    min-height: 285px;
  }

  .situation-card h3 {
    margin-top: 33px;
  }

  .service-card {
    min-height: 390px;
  }

  .service-card h3 {
    margin-top: 43px;
  }

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

  .flow-list li,
  .flow-list li:not(:last-child) {
    min-height: auto;
    padding: 26px 0;
    margin-right: 0;
  }

  .flow-list li:not(:last-child)::after {
    display: none;
  }

  .flow-list span {
    margin-bottom: 12px;
  }

  .company-facts-grid,
  .contact-grid {
    gap: 45px;
  }

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

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

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }

  .desktop-only {
    display: none;
  }

  .brand-mark {
    width: 70px;
    height: 42px;
  }

  .brand strong {
    font-size: 21px;
  }

  .hero h1 {
    font-size: clamp(37px, 11vw, 47px);
    line-height: 1.29;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.86;
  }

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

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

  .hero-notes {
    display: grid;
    gap: 7px;
  }

  .hero-art {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 6px 52px 6px 52px;
  }

  .hero-art-copy {
    top: 19px;
    right: 18px;
    left: 18px;
    padding-bottom: 9px;
  }

  .hero-art-copy strong {
    font-size: 20px;
  }

  .hero-art-copy p {
    margin-top: 8px;
    font-size: 11px;
  }

  .hero-art-points {
    inset: 0;
    padding: 0;
  }

  .hero-art-points li {
    width: 42%;
    gap: 4px;
    padding: 10px 11px 9px;
  }

  .hero-art-points li:nth-child(1),
  .hero-art-points li:nth-child(2) {
    top: 54%;
  }

  .hero-art-points li:nth-child(1) {
    left: 4%;
  }

  .hero-art-points li:nth-child(2) {
    right: 4%;
  }

  .hero-art-points li:nth-child(3) {
    top: 79%;
    width: 59%;
  }

  .hero-art-points span {
    font-size: 13px;
  }

  .hero-art-points strong {
    font-size: 13px;
  }

  .hero-art-points small {
    font-size: 10px;
    letter-spacing: 0;
  }

  .hero-bottom {
    display: grid;
    gap: 10px;
    padding: 25px 0;
    font-size: 12px;
  }

  .section-heading {
    margin-bottom: 33px;
  }

  .section-heading h2,
  .company-facts h2,
  .contact-copy h2 {
    font-size: clamp(29px, 8.5vw, 38px);
  }

  .situation-card {
    min-height: 0;
    padding: 26px;
  }

  .situation-card h3 {
    font-size: 21px;
  }

  .service-card {
    min-height: 0;
    padding: 26px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .strength-list article {
    grid-template-columns: 50px 1fr;
  }

  .strength-list h3 {
    font-size: 18px;
  }

  .company-facts dl {
    grid-template-columns: 1fr;
  }

  .company-facts dl > div,
  .company-facts dl > div:nth-child(odd),
  .company-facts dl > div:nth-child(even) {
    min-height: 0;
    padding: 18px 0;
    border-left: 0;
  }

  .faq-items summary {
    padding-right: 32px;
    font-size: 15px;
  }

  .split-inputs {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form {
    padding: 22px;
  }

  .submit-button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 33px;
    padding: 44px 0 36px;
  }

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

  .footer-bottom {
    display: grid;
    gap: 2px;
  }
}
