:root {
  color-scheme: light;
  --ink: #141412;
  --ink-2: #24231f;
  --paper: #fbfaf7;
  --porcelain: #ffffff;
  --mist: #eef2ef;
  --line: #d9d2c6;
  --muted: #6c665f;
  --gold: #ad8d50;
  --sage: #435f54;
  --plum: #5d4a61;
  --claret: #74343f;
  --shadow: 0 22px 70px rgba(20, 19, 17, .14);
  --radius: 6px;
  --display: "Cormorant Garamond", "Bodoni 72", "Didot", "Cinzel", Georgia, "Times New Roman", "Songti SC", SimSun, serif;
  --serif: Georgia, "Times New Roman", "Songti SC", SimSun, serif;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-1.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-2.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-3.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-1.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cinzel";
  src: url("../fonts/cinzel-2.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  min-width: 320px;
  background: var(--paper);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.menu-open,
body.intro-active {
  overflow: hidden;
}

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

.seo-bg-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

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

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

button {
  cursor: pointer;
}

::selection {
  color: #fff;
  background: var(--claret);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

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

.wrap {
  padding-left: clamp(20px, 6vw, 92px);
  padding-right: clamp(20px, 6vw, 92px);
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 0 clamp(24px, 6vw, 110px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(180deg, rgba(18, 18, 16, .72), rgba(18, 18, 16, 0));
  transition: background .22s ease, color .22s ease, transform .22s ease, border-color .22s ease;
}

.site-header.is-solid,
.site-header.is-open,
body:not(.page-home) .site-header {
  color: var(--ink);
  background: rgba(251, 250, 247, .94);
  border-bottom-color: rgba(217, 210, 198, .9);
  backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

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

.brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: currentColor;
  font-size: 11px;
  opacity: .68;
  white-space: nowrap;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  color: currentColor;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-link,
.button,
.submit-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 720;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.quote-link {
  border-color: currentColor;
  background: currentColor;
  color: var(--paper);
}

.site-header:not(.is-solid):not(.is-open) .quote-link {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.site-header.is-solid .quote-link,
.site-header.is-open .quote-link,
body:not(.page-home) .quote-link {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.quote-link:hover,
.button:hover,
.submit-button:hover {
  transform: translateY(-2px);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.button.light {
  border-color: rgba(255, 255, 255, .78);
}

.button.primary.light {
  background: #fff;
  color: var(--ink);
}

.button.ghost.light {
  color: #fff;
}

.language-switcher {
  position: relative;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
}

.language-current {
  min-width: 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: currentColor;
}

.flag-img,
.country-flag,
.country-option img {
  width: 24px;
  height: 18px;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.language-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 178px;
  padding: 8px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease;
}

.language-switcher.is-open .language-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-panel a {
  min-height: 40px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  padding: 0 10px;
}

.language-panel a:hover,
.language-panel a[aria-current="true"] {
  background: var(--mist);
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .18s ease;
}

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

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

.mobile-nav {
  position: fixed;
  z-index: 52;
  top: 76px;
  left: 0;
  right: 0;
  display: none;
  padding: 18px 20px 24px;
  background: rgba(251, 250, 247, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero {
  --hero-copy-y: -6vh;
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 128px clamp(20px, 7vw, 96px) 86px;
  color: #fff;
  text-align: center;
  background: #121210;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -2%;
  z-index: -2;
  background-image: radial-gradient(circle at center, rgba(0, 0, 0, .02), rgba(0, 0, 0, .72) 72%), linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .62)), var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(.94) contrast(1.04) brightness(1.04);
  animation: slow-zoom 28s ease-in-out infinite alternate;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .42));
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  transform: translateY(var(--hero-copy-y));
  will-change: transform, opacity;
}

.page-home.intro-active .hero-content {
  opacity: 0;
  transform: translateY(var(--hero-copy-y)) scale(.96);
}

.page-home.intro-played .hero-content {
  animation: hero-copy-rise 1.1s cubic-bezier(.16, 1, .3, 1) both;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow {
  justify-content: center;
}

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

h1,
h2 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(44px, 7.4vw, 102px);
  font-style: normal;
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .18);
}

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 48px);
  font-style: normal;
  font-weight: 430;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}

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

.hero p,
.page-hero p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-actions.left {
  justify-content: flex-start;
}

.hero .button.primary {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.hero .button.ghost {
  border-color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.hero-meta {
  position: absolute;
  left: clamp(20px, 7vw, 96px);
  right: clamp(20px, 7vw, 96px);
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: clamp(340px, 44svh, 500px);
  display: grid;
  align-items: end;
  padding: 118px clamp(20px, 7vw, 96px) 46px;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18)), var(--page-image);
  background-size: cover;
  background-position: center;
  filter: saturate(.92) contrast(1.02);
}

.page-hero-copy {
  max-width: 760px;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.page-custom .page-hero,
.page-contact .page-hero {
  min-height: clamp(280px, 34svh, 390px);
  padding-bottom: 38px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.stat-strip article {
  min-height: 132px;
  padding: 28px clamp(22px, 4vw, 38px);
  border-right: 1px solid var(--line);
}

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

.stat-strip h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.stat-strip p {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.75;
}

.section {
  padding-top: 78px;
  padding-bottom: 78px;
}

.soft {
  background: var(--mist);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, .62fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 30px;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.card-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  min-height: 178px;
  padding: 28px;
  background: var(--paper);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.info-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: #fff;
  box-shadow: var(--shadow);
}

.info-card small {
  display: block;
  margin-bottom: 18px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 820;
}

.page-extra {
  padding-top: 0;
  padding-bottom: 82px;
}

.page-extra h2 {
  max-width: 840px;
  margin-bottom: 28px;
}

.detail-rows,
.matrix-table {
  display: grid;
  border-top: 1px solid var(--line);
}

.detail-rows div {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) 1fr;
  gap: 34px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-rows strong,
.matrix-table strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
}

.detail-rows span {
  color: var(--muted);
  line-height: 1.85;
}

.compare-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.compare-table article {
  min-height: 210px;
  padding: 30px;
  background: var(--mist);
}

.compare-table b {
  display: block;
  margin-bottom: 42px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 500;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: craft;
}

.process-rail li {
  counter-increment: craft;
  min-height: 150px;
  padding-top: 18px;
  border-top: 1px solid var(--gold);
  font-size: 20px;
  font-weight: 720;
}

.process-rail li::before {
  content: counter(craft, decimal-leading-zero);
  display: block;
  margin-bottom: 28px;
  color: var(--plum);
  font-size: 12px;
}

.narrative-extra {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(320px, .5fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
}

.narrative-extra p {
  padding-top: 24px;
  border-top: 1px solid var(--gold);
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 16px;
  padding-bottom: 92px;
}

.look-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.look-card::before,
.look-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.look-card::before {
  background-image: var(--look-image);
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.look-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .68));
}

.look-card:hover::before {
  transform: scale(1.045);
}

.look-card small {
  color: #ead59f;
  font-weight: 800;
}

.look-card h3 {
  margin: 16px 0 10px;
  font-family: var(--display);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.look-card p {
  color: rgba(255, 255, 255, .84);
}

.signature-system {
  padding-top: 18px;
}

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

.signature-item {
  min-height: 250px;
  padding: 34px 28px;
  background: linear-gradient(180deg, #fff, #f6f3ed);
  border-right: 1px solid var(--line);
}

.signature-item:nth-child(2),
.signature-item:nth-child(4) {
  background: var(--ink);
  color: #fff;
}

.signature-item:nth-child(2) p,
.signature-item:nth-child(4) p {
  color: rgba(255, 255, 255, .72);
}

.signature-item:last-child {
  border-right: 0;
}

.signature-item h3 {
  margin-bottom: 86px;
  font-family: var(--display);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.signature-item p {
  font-size: 14px;
}

.editorial {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: #fff;
}

.editorial-image {
  min-height: 520px;
  background-image: var(--editorial-image);
  background-size: cover;
  background-position: center;
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 104px);
}

.editorial-copy h2 {
  color: #fff;
}

.editorial-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.step {
  min-height: 130px;
  padding: 20px 0 0;
  border-top: 1px solid var(--gold);
}

.step small {
  display: block;
  margin-bottom: 16px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 820;
}

.service-matrix {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
}

.matrix-copy h2 {
  margin-bottom: 20px;
}

.matrix-table {
  display: grid;
  border-top: 1px solid var(--line);
}

.matrix-table div {
  display: grid;
  grid-template-columns: minmax(92px, .28fr) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.matrix-table strong {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
}

.matrix-table span {
  color: var(--muted);
  line-height: 1.8;
}

.culture {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding-top: 78px;
  padding-bottom: 86px;
}

.culture-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  background: var(--ink);
  color: #fff;
}

.culture-panel h2 {
  color: #fff;
}

.culture-panel p {
  color: rgba(255, 255, 255, .74);
}

.culture-panel ul {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(173, 141, 80, .32);
}

.culture-panel li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(173, 141, 80, .32);
  color: rgba(255, 255, 255, .9);
}

.culture-image {
  min-height: 480px;
  background-image: var(--culture-image);
  background-size: cover;
  background-position: center;
}

.faq-section {
  padding-top: 76px;
}

.seo-note {
  padding-top: 34px;
  padding-bottom: 34px;
  border-top: 1px solid rgba(217, 210, 198, .72);
  background: var(--paper);
}

.seo-note p {
  max-width: 980px;
  color: #4f4a44;
  font-size: 14px;
  line-height: 1.9;
}

.seo-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
}

.seo-related a {
  color: var(--sage);
  font-size: 13px;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-card {
  min-height: 132px;
  padding: 28px;
  background: var(--paper);
}

.cta-band {
  padding-top: 44px;
  padding-bottom: 72px;
}

.cta-inner {
  min-height: 168px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: 34px clamp(24px, 5vw, 58px);
  background: var(--ink);
  color: #fff;
}

.cta-inner .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}

.cta-inner h2 {
  color: #fff;
}

.cta-inner .button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(173, 141, 80, .28);
}

.article-list-section {
  padding-top: 74px;
}

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

.article-card {
  min-height: 100%;
  background: var(--porcelain);
  border: 1px solid var(--line);
  transition: transform .28s ease, box-shadow .28s ease;
}

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

.article-card a {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist);
}

.article-card .article-date {
  margin: 24px 24px 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 10px 24px 0;
  font-family: "Songti SC", "Noto Serif SC", "Microsoft YaHei", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 520;
  line-height: 1.16;
  font-variant-numeric: lining-nums;
}

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

.article-empty {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--porcelain);
  color: var(--muted);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--sage);
  text-decoration: none;
}

.article-hero {
  position: relative;
  min-height: clamp(420px, 48vw, 560px);
  display: flex;
  align-items: center;
  margin-top: 76px;
  padding: clamp(72px, 9vw, 118px) clamp(24px, 6vw, 96px) clamp(54px, 7vw, 86px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, .84), rgba(10, 10, 9, .58) 45%, rgba(10, 10, 9, .18)),
    linear-gradient(180deg, rgba(10, 10, 9, .18), rgba(10, 10, 9, .72)),
    var(--article-image) center / cover no-repeat;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 34% 48%, rgba(255, 255, 255, .13), transparent 28%);
  pointer-events: none;
}

.article-hero-copy {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.article-breadcrumbs {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .74);
}

.article-breadcrumbs a {
  color: rgba(255, 255, 255, .86);
}

.article-hero h1 {
  max-width: 980px;
  margin: 0 0 18px;
  color: #fff;
  font-family: "Songti SC", "Noto Serif SC", "STSong", "SimSun", serif;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  font-variant-numeric: lining-nums;
  text-wrap: balance;
}

.article-hero time {
  display: inline-flex;
  margin-top: 2px;
  color: #e6cf99;
  font-size: 13px;
  font-weight: 760;
}

.article-hero-summary {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.9;
}

.article-detail {
  padding-top: 0;
}

.article-body {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 70px) 0 34px;
  color: #2e2a25;
  font-size: 18px;
  line-height: 2;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 430;
  line-height: 1.18;
}

.article-body h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 22px;
  padding-left: 1.2em;
}

.article-body img {
  display: block;
  width: 100%;
  height: auto;
  margin: 34px 0;
  object-fit: cover;
  border: 1px solid var(--line);
}

.article-body a {
  color: var(--sage);
  text-underline-offset: 5px;
}

.article-related {
  padding: 36px 0 54px;
  border-top: 1px solid var(--line);
}

.article-related h2 {
  margin-bottom: 18px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.article-related-grid a {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 24px;
  background: var(--paper);
  color: inherit;
  text-decoration: none;
}

.article-related-grid span {
  color: var(--muted);
  font-size: 14px;
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 10px 0 78px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink);
  color: #fff;
}

.article-cta h2 {
  color: #fff;
}

.article-cta p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .78);
}

.article-cta .button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.inquiry-block {
  position: relative;
  padding-top: 42px;
  padding-bottom: 54px;
  background:
    radial-gradient(circle at 78% 24%, rgba(173, 141, 80, .2), transparent 34%),
    linear-gradient(105deg, rgba(20, 20, 18, .96), rgba(20, 20, 18, .78)),
    url("../img/brand/materials.png") center / cover;
}

.inquiry-block.compact {
  margin-top: -1px;
}

.inquiry-head {
  max-width: 1320px;
  margin: 0 auto 22px;
  color: #fff;
}

.inquiry-head p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, .72);
}

.inquiry-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, .48fr) minmax(620px, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .2);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .34);
}

.inquiry-aside {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(28px, 3.4vw, 42px);
  background: linear-gradient(180deg, rgba(18, 18, 16, .92), rgba(18, 18, 16, .78));
  color: #fff;
}

.inquiry-aside h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 430;
  line-height: 1.08;
}

.inquiry-aside p {
  max-width: 520px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
}

.inquiry-points {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(173, 141, 80, .36);
}

.inquiry-points div {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(173, 141, 80, .24);
}

.inquiry-points dt {
  color: #fff;
  font-weight: 760;
}

.inquiry-points dd {
  margin: 0;
  color: rgba(255, 255, 255, .66);
  line-height: 1.7;
}

.inquiry-note {
  margin-top: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .06);
  border-left: 2px solid var(--gold);
  font-size: 14px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: clamp(22px, 3.2vw, 42px);
  border: 1px solid rgba(173, 141, 80, .24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(250, 248, 243, .96)),
    #fff;
  box-shadow: 0 26px 70px rgba(20, 20, 18, .16);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.inquiry-form input:not([type="checkbox"]):not([type="file"]),
.inquiry-form textarea,
.inquiry-form select,
.country-button {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.inquiry-form textarea.compact-note {
  min-height: 48px;
  height: 48px;
  resize: none;
  overflow: auto;
}

.inquiry-form input:not([type="checkbox"]):not([type="file"]):focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus,
.country-button:focus {
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(67, 95, 84, .12), 0 12px 28px rgba(20, 20, 18, .06);
}

.inquiry-form input.is-invalid,
.inquiry-form textarea.is-invalid,
.inquiry-form select.is-invalid,
.consent.is-invalid {
  border-color: var(--claret);
  color: var(--claret);
}

.wide {
  grid-column: 1 / -1;
}

.file-drop {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.file-drop label {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px 16px;
  border: 1px dashed var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(247, 242, 231, .78));
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.file-drop label strong {
  font-size: 14px;
}

.file-drop label small,
.file-drop p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.file-drop.is-dragging label,
.file-drop.has-files label {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fbf7ee, #f2ead9);
}

.file-drop.is-uploading label {
  opacity: .72;
  box-shadow: inset 0 0 0 1px rgba(173, 141, 80, .32);
}

.upload-progress {
  height: 3px;
  overflow: hidden;
  background: #ece7dc;
}

.upload-progress[hidden] {
  display: none;
}

.upload-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transition: width .18s ease;
}

.trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.country-wrap {
  position: relative;
}

.country-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
}

.country-button [data-country-value] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-button::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.country-panel {
  position: absolute;
  z-index: 36;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.country-panel input {
  margin-bottom: 10px;
}

[data-country-options] {
  max-height: 280px;
  overflow: auto;
  display: grid;
  gap: 2px;
}

.country-option {
  min-height: 38px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 7px 8px;
  text-align: left;
}

.country-option img {
  width: 24px;
  height: 18px;
}

.country-option:hover,
.country-option:focus {
  background: var(--mist);
}

.inquiry-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 520;
  -webkit-tap-highlight-color: transparent;
}

.inquiry-form .consent input {
  appearance: auto;
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 3px 0 0;
  padding: 0;
  border: 0;
  accent-color: var(--ink);
  box-shadow: none;
}

.inquiry-form .consent span {
  display: block;
  flex: 1;
  line-height: 1.65;
}

.form-message {
  min-height: 24px;
  color: var(--sage);
  font-size: 14px;
}

.form-message.is-error {
  color: var(--claret);
}

.submit-button {
  width: 100%;
  border: 0;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.site-footer {
  background: #f4f2ef;
  color: var(--ink);
  padding: 44px clamp(20px, 6vw, 88px) 30px;
  border-top: 1px solid var(--line);
}

.footer-logo-row {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.footer-logo-row img {
  width: 214px;
  height: auto;
}

.footer-location {
  margin-top: -4px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 720;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
}

.site-footer h3 {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 560;
}

.site-footer a,
.site-footer button {
  display: block;
  width: fit-content;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--claret);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-legal p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.socials {
  display: flex;
  gap: 8px;
}

.social {
  position: relative;
}

.social > button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(20, 20, 18, .18);
  background: #fff;
}

.social > button img {
  width: 22px;
  height: 22px;
}

.qr {
  position: absolute;
  z-index: 30;
  right: 0;
  bottom: calc(100% + 12px);
  width: 228px;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .16s ease, transform .16s ease;
}

.qr::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 14px;
}

.social:hover .qr,
.social:focus-within .qr {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.qr img {
  width: 176px;
  height: 176px;
  object-fit: contain;
}

.qr button {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 6px 10px;
  user-select: text;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  left: 20px;
  bottom: 20px;
  width: min(380px, calc(100vw - 40px));
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 247, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner strong {
  font-size: 13px;
}

.cookie-banner p {
  font-size: 11px;
  line-height: 1.55;
}

.cookie-banner > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner .button {
  min-height: 32px;
  padding: 0 10px;
  font-size: 11px;
}

.link-button {
  min-height: 32px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
}

.cookie-modal {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 18, 16, .48);
}

.cookie-panel {
  position: relative;
  width: min(620px, 100%);
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
}

.cookie-panel label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  margin-top: 16px;
}

.toast {
  position: fixed;
  z-index: 140;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-intro {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #11110f;
  color: #fff;
  pointer-events: none;
  animation: intro-failsafe 2.9s ease both;
}

.site-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(173, 141, 80, .18), transparent 34%), linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, .12) 48%, transparent 54% 100%);
  transform: translateX(-30%);
  animation: intro-light 1.2s cubic-bezier(.16, 1, .3, 1) both;
}

.site-intro-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  opacity: 0;
  transform: translateY(-6vh) scale(.96);
  animation: intro-mark .86s cubic-bezier(.16, 1, .3, 1) .12s both;
}

.site-intro-mark img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.site-intro-mark span {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 70px);
  font-style: normal;
  font-weight: 300;
  line-height: .98;
}

.site-intro p {
  position: absolute;
  left: 50%;
  bottom: calc(37% - 38px);
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: clamp(14px, 1.2vw, 16px);
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
  opacity: 0;
  animation: intro-caption .9s ease .62s both;
}

.site-intro i {
  position: absolute;
  left: 50%;
  bottom: 37%;
  width: min(260px, 52vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%) scaleX(0);
  animation: intro-line .96s ease .26s both;
}

.site-intro.is-done {
  animation: intro-exit .64s cubic-bezier(.7, 0, .84, 0) both;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .64s ease, transform .64s ease;
}

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

@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.055); }
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translateY(calc(var(--hero-copy-y) + 16px)) scale(.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(var(--hero-copy-y)) scale(1);
    filter: blur(0);
  }
}

@keyframes intro-light {
  from { opacity: 0; transform: translateX(-34%); }
  to { opacity: 1; transform: translateX(22%); }
}

@keyframes intro-mark {
  to { opacity: 1; transform: translateY(-6vh) scale(1); }
}

@keyframes intro-line {
  50% { transform: translateX(-50%) scaleX(1); }
  100% { transform: translateX(-50%) scaleX(.18); }
}

@keyframes intro-caption {
  to { opacity: 1; }
}

@keyframes intro-exit {
  to { opacity: 0; transform: scale(1.035); visibility: hidden; }
}

@keyframes intro-failsafe {
  0%, 82% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

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

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .section-head,
  .editorial {
    grid-template-columns: 1fr;
  }
  .stat-strip,
  .lookbook,
  .signature-grid,
  .service-matrix,
  .culture {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid.four,
  .card-grid.three,
  .steps,
  .compare-table,
  .process-rail,
  .narrative-extra,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-grid,
  .article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .article-cta {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .inquiry-shell {
    grid-template-columns: 1fr;
  }
  .inquiry-aside {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  body { font-size: 15px; }
  .site-header {
    height: 68px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px;
  }
  .brand {
    flex: 1 1 auto;
    gap: 8px;
    max-width: calc(100% - 96px);
    overflow: hidden;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .brand small {
    display: none;
  }
  .brand strong {
    max-width: 128px;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
  }
  .quote-link {
    display: none;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .language-current {
    min-width: 44px;
    width: 44px;
    height: 40px;
    grid-template-columns: 1fr;
    padding: 0;
  }
  .mobile-nav {
    top: 68px;
  }
  .hero {
    --hero-copy-y: -4vh;
    min-height: 92svh;
    padding: 112px 18px 64px;
  }
  .hero::before {
    background-position: 62% center;
  }
  h1 {
    font-size: 38px;
    line-height: 1.04;
  }
  .hero-content {
    transform: translateY(var(--hero-copy-y));
  }
  .site-intro-mark {
    gap: 14px;
    transform: translateY(-5vh) scale(.96);
  }
  .site-intro-mark img {
    width: 88px;
    height: 88px;
  }
  .site-intro-mark span {
    font-size: clamp(34px, 11vw, 48px);
  }
  .site-intro p {
    bottom: calc(39% - 34px);
    font-size: 14px;
  }
  .site-intro i {
    bottom: 39%;
    width: min(230px, 62vw);
  }
  .page-hero {
    min-height: 350px;
    padding: 104px 18px 42px;
  }
  .hero p,
  .page-hero p {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
  }
  .hero-meta {
    position: static;
    display: grid;
    margin-top: 34px;
  }
  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }
  .section-head,
  .detail-rows div,
  .compare-table,
  .process-rail,
  .narrative-extra,
  .stat-strip,
  .lookbook,
  .signature-grid,
  .service-matrix,
  .culture,
  .faq-grid,
  .card-grid.four,
  .card-grid.three,
  .steps,
  .inquiry-shell,
  .inquiry-points,
  .inquiry-form,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .info-card {
    min-height: auto;
  }
  .stat-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .lookbook {
    gap: 10px;
    padding-top: 8px;
    padding-bottom: 56px;
  }
  .look-card {
    min-height: 330px;
    padding: 24px;
  }
  .signature-item {
    min-height: auto;
  }
  .signature-item h3 {
    margin-bottom: 28px;
  }
  .service-matrix {
    gap: 28px;
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .matrix-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    padding: 20px 0;
  }
  .culture {
    padding-top: 54px;
    padding-bottom: 60px;
    gap: 18px;
  }
  .culture-panel {
    min-height: auto;
    padding: 28px 20px;
  }
  .culture-image {
    min-height: 320px;
  }
  .editorial {
    min-height: auto;
  }
  .editorial-image {
    min-height: 360px;
  }
  .editorial-copy {
    padding: 34px 20px;
  }
  .cta-inner {
    min-height: auto;
  }
  .seo-note {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .seo-related {
    display: grid;
    gap: 8px;
  }
  .inquiry-block {
    padding-top: 52px;
    padding-bottom: 58px;
  }
  .wide {
    grid-column: auto;
  }
  .inquiry-form {
    padding: 20px 16px;
  }
  .inquiry-form input,
  .inquiry-form textarea,
  .inquiry-form select,
  .country-button {
    font-size: 16px;
  }
  .country-panel {
    position: fixed;
    inset: auto 14px 18px;
  }
  .footer-logo-row {
    justify-items: start;
    text-align: left;
  }
  .article-list-section {
    padding-top: 52px;
  }
  .article-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }
  .article-card h3 {
    font-size: 25px;
  }
  .article-hero {
    min-height: 390px;
    margin-top: 68px;
    padding: 72px 20px 44px;
    background-position: center;
  }
  .article-breadcrumbs {
    margin-bottom: 18px;
    font-size: 12px;
  }
  .article-hero h1 {
    font-size: clamp(33px, 10vw, 46px);
    line-height: 1.16;
  }
  .article-hero-summary {
    font-size: 15px;
    line-height: 1.75;
  }
  .article-body {
    padding: 36px 0 20px;
    font-size: 16px;
    line-height: 1.9;
  }
  .article-body h2 {
    font-size: 28px;
  }
  .article-cta {
    margin-bottom: 52px;
  }
  .footer-legal,
  .footer-right {
    display: grid;
    justify-content: start;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
  .cookie-banner p {
    display: none;
  }
  .toast {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
  }
}
