@import url("https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css");

:root {
  --ink: #17231c;
  --muted: #5f6d65;
  --green: #163f2d;
  --sage: #9cb6a4;
  --mist: #eef3ef;
  --paper: #fbfaf5;
  --clay: #a85d3a;
  --gold: #b89855;
  --line: rgba(23, 35, 28, 0.14);
  --white: #ffffff;
  --page-dark: #242725;
  --page-dark-panel: #2d312e;
  --page-dark-deep: #1b1e1c;
  --page-text: #f5efe3;
  --page-muted: rgba(245, 239, 227, 0.68);
  --page-line: rgba(245, 239, 227, 0.16);
  --page-accent: #d7b266;
  --black-gray: #171918;
  --shadow: 0 24px 70px rgba(12, 31, 22, 0.13);
  --header-height: 64px;
  --hero-cycle-duration: 7.25s;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  overscroll-behavior: none;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html:has(body:not([data-page="home"])) {
  background: var(--page-dark);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "SUIT", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overscroll-behavior: none;
  word-break: keep-all;
}

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

#top,
#about,
#brands,
#culture,
#news,
#brand,
#business,
#platform,
#process,
#quality,
#global,
#contact {
  scroll-margin-top: 96px;
}

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

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

h1,
h2,
h3,
p,
li,
a,
button,
label,
strong,
span {
  word-break: keep-all;
}

h1,
h2,
h3,
.hero-line,
.hero-copy,
.intro-layout > p,
.quality-copy > p,
.contact-copy > p {
  overflow-wrap: break-word;
  text-wrap: balance;
}

.keep-word {
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
  padding: 12px clamp(20px, 4vw, 54px);
  color: var(--white);
  opacity: 1;
  transform: translateY(0);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 220ms ease,
    transform 240ms ease;
}

.site-header.is-page,
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 245, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

body[data-page="home"].is-home-chrome-hidden .site-header:not(.is-open) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 12px));
}

.brand {
  position: relative;
  display: inline-grid;
  align-items: center;
  width: 170px;
  height: 37px;
}

.brand-logo {
  grid-area: 1 / 1;
  width: 170px;
  height: 37px;
  object-fit: contain;
  transition: opacity 180ms ease;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-page .brand-logo-light,
.site-header.is-scrolled .brand-logo-light,
.site-header.is-open .brand-logo-light {
  opacity: 0;
}

.site-header.is-page .brand-logo-dark,
.site-header.is-scrolled .brand-logo-dark,
.site-header.is-open .brand-logo-dark {
  opacity: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 32px);
  font-size: 13px;
  font-weight: 700;
}

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

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

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

.mobile-nav-lang {
  display: none;
}

.site-header.is-mega-open {
  color: var(--page-text);
  background: rgba(23, 25, 24, 0.98);
  box-shadow: 0 1px 0 var(--page-line);
  backdrop-filter: blur(18px);
}

.site-header.is-mega-open .brand-logo-light {
  opacity: 1;
}

.site-header.is-mega-open .brand-logo-dark {
  opacity: 0;
}

.mega-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 39;
  border-top: 1px solid var(--page-line);
  border-bottom: 1px solid var(--page-line);
  color: var(--page-text);
  background: var(--page-dark-panel);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
}

.site-header.is-mega-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-panel {
  display: none;
  grid-template-columns: minmax(320px, 0.36fr) minmax(0, 0.64fr);
  width: min(1240px, calc(100% - 80px));
  min-height: 360px;
  margin: 0 auto;
  border-right: 1px solid var(--page-line);
  border-left: 1px solid var(--page-line);
  background: var(--page-dark-panel);
}

.mega-panel.is-active {
  display: grid;
}

.mega-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 56px);
  border-right: 1px solid var(--page-line);
  background: rgba(255, 255, 255, 0.035);
}

.mega-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.mega-copy p {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--page-muted);
  font-size: 15px;
  line-height: 1.76;
}

.mega-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 28px;
  color: var(--page-text);
  font-size: 14px;
  font-weight: 800;
}

.mega-copy a::after {
  content: ">";
  color: var(--page-accent);
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  align-content: center;
  padding: clamp(34px, 4vw, 56px);
}

.mega-columns--news {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 38px);
}

.mega-columns--single {
  grid-template-columns: minmax(160px, 240px);
  justify-content: start;
}

.mega-columns h3 {
  margin: 0 0 18px;
  color: var(--page-text);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.mega-columns a,
.mega-category-list a {
  display: block;
  width: fit-content;
  color: var(--page-muted);
  font-size: 15px;
  font-weight: 680;
  line-height: 1.44;
}

.mega-columns a + a,
.mega-category-list a + a {
  margin-top: 16px;
}

.mega-columns a:hover,
.mega-columns a:focus-visible,
.mega-category-list a:hover,
.mega-category-list a:focus-visible {
  color: var(--page-text);
}

.mega-brands {
  display: grid;
  grid-template-columns: minmax(136px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(28px, 3.6vw, 52px);
  align-items: center;
  padding: clamp(34px, 4vw, 56px);
}

.mega-category-list a {
  color: rgba(245, 239, 227, 0.48);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--page-line);
  border-left: 1px solid var(--page-line);
}

.mega-product-grid a {
  display: grid;
  min-height: 124px;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--page-line);
  border-bottom: 1px solid var(--page-line);
  background: var(--page-dark-deep);
}

.mega-product-grid img {
  width: min(110px, 76%);
  height: 62px;
  object-fit: contain;
}

.mega-product-grid span {
  margin-top: 12px;
  color: var(--page-muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch button {
  min-width: 36px;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.lang-switch button[aria-pressed="true"] {
  color: var(--green);
  background: var(--white);
}

.site-header.is-page .lang-switch button[aria-pressed="true"],
.site-header.is-scrolled .lang-switch button[aria-pressed="true"],
.site-header.is-open .lang-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--green);
}

.button {
  min-height: 50px;
  padding: 0 24px;
  gap: 9px;
}

.button.primary {
  border-color: var(--green);
  color: var(--white);
  background: var(--green);
}

.button.outline {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.section .button.ghost {
  color: var(--green);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.site-header.is-page .nav-toggle,
.site-header.is-scrolled .nav-toggle,
.site-header.is-open .nav-toggle {
  color: var(--green);
  background: transparent;
}

.nav-toggle::before,
.nav-toggle::after,
.nav-toggle span:first-child {
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle::before {
  transform: translateY(-8px);
}

.nav-toggle::after {
  transform: translateY(8px);
}

.nav-toggle span {
  display: none;
}

.nav-toggle span:first-child {
  display: block;
  transform: translateY(0);
}

.site-header.is-open .nav-toggle::before {
  opacity: 0;
}

.site-header.is-open .nav-toggle::after {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:first-child {
  opacity: 0;
  transform: translateY(0) scaleX(0.35);
}

.nav-toggle-x-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.site-header.is-open .nav-toggle-x-icon {
  display: block;
}

.nav-toggle:focus {
  outline: 0;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

.site-header.is-page .nav-toggle:focus-visible,
.site-header.is-scrolled .nav-toggle:focus-visible,
.site-header.is-open .nav-toggle:focus-visible {
  outline-color: rgba(22, 63, 45, 0.5);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  --hero-dim-opacity: 0.2;
  --hero-shade-opacity: 0.86;
}

.hero-sequence {
  min-height: 440svh;
  overflow: visible;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
  background-image: url("assets/brand/hero-loop-poster.jpg?v=20260617-naturalloop");
  background-position: center center;
  background-size: cover;
}

.hero-sequence .hero-media {
  position: sticky;
  top: 0;
  height: 100svh;
}

.hero-sequence .hero-shade {
  position: sticky;
  top: 0;
  height: 100svh;
  margin-top: -100svh;
}

.hero-sequence .hero-inner {
  position: sticky;
  top: 0;
  margin-top: -100svh;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-media::before {
  z-index: 1;
  background:
    radial-gradient(circle at 58% 34%, rgba(255, 235, 178, 0.28), rgba(255, 218, 148, 0.1) 30%, rgba(255, 218, 148, 0) 62%),
    linear-gradient(180deg, rgba(255, 236, 187, 0.1), rgba(255, 236, 187, 0) 54%);
  mix-blend-mode: screen;
  opacity: 0;
}

.hero-media::after {
  z-index: 2;
  background: rgba(7, 19, 15, 0.32);
  opacity: var(--hero-dim-opacity);
}

.hero.has-hero-video .hero-media::before {
  animation: heroDawnGlow var(--hero-cycle-duration) ease-in-out infinite;
}

.hero.has-hero-video .hero-media::after {
  animation: heroDawnDim var(--hero-cycle-duration) ease-in-out infinite;
}

.hero-video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero.has-hero-video .hero-video {
  opacity: 1;
  animation: heroDawnVideo var(--hero-cycle-duration) ease-in-out infinite;
}

.hero-sequence-canvas,
.hero-sequence-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-sequence-canvas {
  z-index: 0;
  display: block;
  opacity: 0;
  transition: opacity 260ms ease;
}

.hero-sequence-fallback {
  z-index: 0;
}

.hero.has-hero-sequence .hero-sequence-canvas {
  opacity: 1;
}

.hero.has-hero-sequence .hero-sequence-fallback {
  opacity: 0;
}

.hero.has-hero-sequence .hero-media::before {
  opacity: 0.14;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .hero-media::before,
  .hero-media::after,
  .hero-shade,
  .hero-video {
    animation: none;
  }

  .hero-media {
    filter: none;
  }

  .hero-media::before,
  .hero-media::after,
  .hero-video {
    opacity: 0;
  }

  .hero.has-hero-video .hero-video {
    display: none;
  }

  .hero-video {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-sequence {
    min-height: 100svh;
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 19, 15, 0.74), rgba(7, 19, 15, 0.46) 46%, rgba(7, 19, 15, 0.1) 78%),
    linear-gradient(0deg, rgba(7, 19, 15, 0.44), rgba(7, 19, 15, 0.06) 46%);
  opacity: var(--hero-shade-opacity);
}

@keyframes heroDawnVideo {
  0%,
  100% {
    filter: brightness(0.91) saturate(0.97) contrast(1.02);
  }

  22% {
    filter: brightness(0.98) saturate(1) contrast(1.01);
  }

  52% {
    filter: brightness(1.07) saturate(1.04) contrast(1);
  }

  74% {
    filter: brightness(1.03) saturate(1.02) contrast(1);
  }

  90% {
    filter: brightness(0.95) saturate(0.99) contrast(1.01);
  }
}

@keyframes heroDawnDim {
  0%,
  100% {
    opacity: 0.22;
  }

  22% {
    opacity: 0.13;
  }

  52% {
    opacity: 0.05;
  }

  74% {
    opacity: 0.08;
  }

  90% {
    opacity: 0.16;
  }
}

@keyframes heroDawnGlow {
  0%,
  100% {
    opacity: 0;
  }

  24% {
    opacity: 0.06;
  }

  52% {
    opacity: 0.24;
  }

  74% {
    opacity: 0.12;
  }

  90% {
    opacity: 0.04;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 78px;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  align-items: center;
  width: 100%;
}

.hero-copyblock {
  min-width: 0;
  width: min(720px, 100%);
  max-width: 720px;
  justify-self: start;
  text-align: left;
  transform: translateX(0);
  transition: transform 360ms ease, opacity 260ms ease;
}

.hero[data-copy-side="right"] .hero-copyblock {
  justify-self: end;
  text-align: right;
}

.hero[data-copy-side="right"] .hero-line {
  margin-left: auto;
}

.hero[data-copy-side="right"] .hero-copy {
  margin-left: auto;
}

.hero[data-copy-side="right"] .hero-actions {
  justify-content: flex-end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "SUIT", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--clay);
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(58px, 6.6vw, 76px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 260ms ease, transform 300ms ease;
}

body[data-page="home"].is-home-brand-hidden .hero h1 {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.hero-line {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(38px, 5.1vw, 70px);
  font-weight: 620;
  line-height: 1.16;
  letter-spacing: 0;
  white-space: pre-line;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  min-height: calc(2em * 1.16);
  transition: opacity 180ms ease;
}

.hero-copy {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 540;
  line-height: 1.68;
  min-height: calc(2em * 1.68);
  transition: opacity 180ms ease;
}

.hero-copy.is-empty {
  visibility: hidden;
}

.hero.is-copy-changing .hero-line,
.hero.is-copy-changing .hero-copy {
  opacity: 0;
}

.hero.is-copy-changing .hero-copyblock {
  transform: translateY(12px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 240ms ease, visibility 0s linear 0s;
}

body[data-page="home"].is-home-chrome-hidden .hero-actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 120ms ease, transform 140ms ease, visibility 0s linear 120ms;
}

body[data-page="home"].is-home-hero-ending .hero-actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: none;
}

body[data-page="home"].is-home-hero-ending.is-home-final-actions-ready .hero-actions {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 240ms ease, visibility 0s linear 0s;
}

.hero[data-hide-actions="true"] .hero-actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: none;
}

.hero-scroll-cue {
  position: absolute;
  right: auto;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.34));
  opacity: 0.88;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 220ms ease, transform 220ms ease;
  animation: scrollCueFloat 1.9s ease-in-out infinite;
}

.hero.is-scroll-cue-hidden .hero-scroll-cue {
  opacity: 0;
  transform: translate(-50%, 12px);
}

.hero-scroll-cue__mouse {
  position: relative;
  display: block;
  width: 24px;
  height: 38px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  background: rgba(5, 16, 12, 0.22);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-scroll-cue__mouse::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  border-radius: 999px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
  animation: scrollCueWheel 1.9s ease-in-out infinite;
}

.hero-scroll-cue__arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  opacity: 0.78;
  transform: rotate(45deg);
}

@keyframes scrollCueFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 6px;
  }
}

@keyframes scrollCueWheel {
  0% {
    opacity: 0;
    translate: 0 -2px;
  }

  34% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    translate: 0 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue {
    display: none;
  }
}

.signature-panel span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 7.5vw, 112px) 0;
}

.page-main {
  padding-top: var(--header-height);
}

body:not([data-page="home"]) {
  color: var(--page-text);
  background: var(--page-dark);
}

body:not([data-page="home"]) .page-main {
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 178, 102, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--page-dark-panel) 0, var(--page-dark) 34rem);
}

body:not([data-page="home"]) .site-header.is-page,
body:not([data-page="home"]) .site-header.is-scrolled,
body:not([data-page="home"]) .site-header.is-open {
  color: var(--page-text);
  background: rgba(36, 39, 37, 0.94);
  box-shadow: 0 1px 0 var(--page-line);
}

body:not([data-page="home"]) .site-header.is-page .brand-logo-light,
body:not([data-page="home"]) .site-header.is-scrolled .brand-logo-light,
body:not([data-page="home"]) .site-header.is-open .brand-logo-light {
  opacity: 1;
}

body:not([data-page="home"]) .site-header.is-page .brand-logo-dark,
body:not([data-page="home"]) .site-header.is-scrolled .brand-logo-dark,
body:not([data-page="home"]) .site-header.is-open .brand-logo-dark {
  opacity: 0;
}

body:not([data-page="home"]) .site-header.is-page .nav-toggle,
body:not([data-page="home"]) .site-header.is-scrolled .nav-toggle,
body:not([data-page="home"]) .site-header.is-open .nav-toggle {
  color: var(--page-text);
}

body:not([data-page="home"]) .site-header.is-page .lang-switch button[aria-pressed="true"],
body:not([data-page="home"]) .site-header.is-scrolled .lang-switch button[aria-pressed="true"],
body:not([data-page="home"]) .site-header.is-open .lang-switch button[aria-pressed="true"] {
  color: var(--page-dark);
  background: var(--page-text);
}

body:not([data-page="home"]) .page-intro h1,
body:not([data-page="home"]) .section-heading h2,
body:not([data-page="home"]) .quality h2,
body:not([data-page="home"]) .contact h2,
body:not([data-page="home"]) .signature-panel strong {
  color: var(--page-text);
}

body:not([data-page="home"]) .section-heading > p:not(.eyebrow),
body:not([data-page="home"]) .page-lead,
body:not([data-page="home"]) .source-grid p,
body:not([data-page="home"]) .timeline-list p,
body:not([data-page="home"]) .news-list p,
body:not([data-page="home"]) .capability-grid p,
body:not([data-page="home"]) .platform-list p,
body:not([data-page="home"]) .process-rail p,
body:not([data-page="home"]) .signature-panel p,
body:not([data-page="home"]) .contact-copy > p {
  color: var(--page-muted);
}

body:not([data-page="home"]) .eyebrow.dark,
body:not([data-page="home"]) .source-note,
body:not([data-page="home"]) .source-grid span,
body:not([data-page="home"]) .timeline-list small,
body:not([data-page="home"]) .news-list small,
body:not([data-page="home"]) .capability-grid span,
body:not([data-page="home"]) .platform-list span,
body:not([data-page="home"]) .process-rail small,
body:not([data-page="home"]) .signature-panel span {
  color: var(--page-accent);
}

body:not([data-page="home"]) .source-grid h3,
body:not([data-page="home"]) .timeline-list strong,
body:not([data-page="home"]) .news-list h3,
body:not([data-page="home"]) .capability-grid h3,
body:not([data-page="home"]) .platform-list h3,
body:not([data-page="home"]) .process-rail span,
body:not([data-page="home"]) .product-examples li,
body:not([data-page="home"]) .contact-links {
  color: var(--page-text);
}

body:not([data-page="home"]) .source-note,
body:not([data-page="home"]) .intro-facts,
body:not([data-page="home"]) .intro-facts li,
body:not([data-page="home"]) .source-grid,
body:not([data-page="home"]) .source-grid article,
body:not([data-page="home"]) .timeline-list li,
body:not([data-page="home"]) .news-list li,
body:not([data-page="home"]) .product-examples li,
body:not([data-page="home"]) .signature-panel,
body:not([data-page="home"]) .capability-grid,
body:not([data-page="home"]) .capability-grid article,
body:not([data-page="home"]) .platform,
body:not([data-page="home"]) .process,
body:not([data-page="home"]) .platform-list,
body:not([data-page="home"]) .platform-list article,
body:not([data-page="home"]) .process-rail li {
  border-color: var(--page-line);
}

body:not([data-page="home"]) .source-grid article,
body:not([data-page="home"]) .capability-grid article,
body:not([data-page="home"]) .process-rail li {
  background: rgba(255, 255, 255, 0.06);
}

body:not([data-page="home"]) .culture-band .process-rail li {
  color: var(--page-text);
  background: rgba(255, 255, 255, 0.06);
}

body:not([data-page="home"]) .intro-visual,
body:not([data-page="home"]) .platform-visual,
body:not([data-page="home"]) .facility-grid img {
  background: var(--page-dark-deep);
}

body:not([data-page="home"]) .button.outline {
  border-color: var(--page-accent);
  color: var(--page-text);
}

body:not([data-page="home"]) .contact {
  color: var(--page-text);
  background: var(--page-dark);
}

body:not([data-page="home"]) .contact-links {
  color: var(--page-accent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(132px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(18px, 4vw, 56px);
  align-items: start;
  max-width: none;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading .eyebrow {
  margin-top: 9px;
}

.section-heading h2,
.quality h2,
.contact h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 720;
  line-height: 1.26;
  letter-spacing: 0;
}

.section-heading > p:not(.eyebrow),
.quality-copy > p,
.contact-copy > p {
  grid-column: 2;
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.75;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-top: clamp(76px, 9vw, 136px);
  padding-bottom: clamp(56px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 4.25vw, 58px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0;
}

.page-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 680;
  line-height: 1.74;
}

.intro-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background: var(--mist);
}

.intro-visual::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid var(--line);
  pointer-events: none;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.98);
}

body[data-page="brands"] .intro-visual img,
body[data-page="news"] .intro-visual img {
  padding: 16px;
  object-fit: contain;
}

.source-note {
  max-width: 640px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--green);
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 720;
  line-height: 1.52;
}

.intro-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  margin: clamp(28px, 4vw, 46px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.intro-facts li {
  min-width: 0;
  padding: 16px 14px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-facts strong,
.intro-facts span {
  display: block;
}

.intro-facts strong {
  color: var(--page-text);
  font-size: clamp(16px, 1.4vw, 21px);
  font-weight: 850;
  line-height: 1.2;
}

.intro-facts span {
  margin-top: 8px;
  color: var(--page-muted);
  font-size: 13px;
  line-height: 1.48;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.source-grid article {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.source-grid span,
.timeline-list small,
.news-list small {
  color: var(--clay);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1;
}

.source-grid h3,
.product-family h3,
.news-list h3 {
  margin: clamp(28px, 5vw, 48px) 0 12px;
  color: var(--green);
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.16;
}

.product-family h3,
.news-list h3 {
  margin-top: 0;
}

.source-grid p,
.product-family p,
.news-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.timeline-list,
.news-list {
  display: grid;
  gap: 14px;
  max-width: 940px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.timeline-list li,
.news-list li {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.timeline-list strong {
  display: block;
  color: var(--green);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.35;
}

.timeline-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.product-family {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.product-family img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  aspect-ratio: 16 / 10;
  padding: clamp(18px, 3vw, 32px);
  object-fit: contain;
  background: var(--mist);
}

.product-family div {
  padding: clamp(24px, 4vw, 44px);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: var(--green);
  background: rgba(238, 243, 239, 0.66);
  font-size: 13px;
  font-weight: 850;
}

.product-examples {
  columns: 3;
  column-gap: clamp(24px, 4vw, 54px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-examples li {
  break-inside: avoid;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 850;
}

.culture-band {
  padding: clamp(68px, 8vw, 108px) max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--black-gray);
}

.culture-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.culture-band .process-rail li {
  color: var(--ink);
}

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

.facility-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--mist);
}

.cert-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cert-summary span {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--green);
  background: var(--white);
  text-align: center;
  font-weight: 900;
}

.index-page {
  width: min(1120px, calc(100% - 48px));
  padding-top: clamp(118px, 12vw, 168px);
}

.index-head {
  display: grid;
  justify-items: center;
  gap: clamp(28px, 4vw, 46px);
  margin-bottom: clamp(48px, 6vw, 78px);
  text-align: center;
}

.index-head h1 {
  margin: 0;
  color: var(--page-text);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.index-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 clamp(18px, 2.6vw, 34px);
  width: 100%;
  min-height: 38px;
  padding: 0 18px;
  border-bottom: 1px solid var(--page-line);
  background: var(--page-dark-panel);
}

.index-tabs a,
.index-tabs button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 0;
  padding: 0;
  color: var(--page-muted);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.index-tabs a::after,
.index-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: transparent;
}

.index-tabs a[aria-current="page"],
.index-tabs button[aria-selected="true"],
.index-tabs a:hover,
.index-tabs button:hover,
.index-tabs a:focus-visible,
.index-tabs button:focus-visible {
  color: var(--page-text);
}

.index-tabs a[aria-current="page"]::after,
.index-tabs button[aria-selected="true"]::after,
.index-tabs a:hover::after,
.index-tabs button:hover::after,
.index-tabs a:focus-visible::after,
.index-tabs button:focus-visible::after {
  background: var(--page-text);
}

.brand-card-grid,
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

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

.brand-index-card,
.news-index-card {
  min-width: 0;
  border: 1px solid var(--page-line);
  background: var(--page-dark-panel);
}

[data-filter-item][hidden] {
  display: none !important;
}

.brand-index-card {
  display: grid;
}

.brand-index-card figure,
.news-index-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--page-dark-deep);
}

.brand-index-card figure {
  aspect-ratio: 2 / 1;
  border-bottom: 1px solid var(--page-line);
}

.brand-index-card img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}

.brand-index-card > div {
  padding: 24px 24px 26px;
}

.brand-index-card span,
.news-index-card span {
  display: block;
  color: var(--page-accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-index-card h2,
.news-index-card h2 {
  margin: 8px 0 0;
  color: var(--page-text);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 850;
  line-height: 1.25;
}

.brand-index-card p {
  margin: 12px 0 0;
  color: var(--page-muted);
  font-size: 14px;
  line-height: 1.66;
}

.news-index-card figure {
  aspect-ratio: 1 / 1;
}

.news-index-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-index-card:nth-child(2) img,
.news-index-card:nth-child(4) img,
.news-index-card:nth-child(5) img,
.news-index-card:nth-child(6) img,
.news-index-card:nth-child(8) img {
  padding: 18px;
  object-fit: contain;
}

.news-index-card span {
  margin: 18px 18px 0;
}

.news-index-card h2 {
  color: var(--page-text);
  font-size: clamp(16px, 1.2vw, 20px);
  margin-right: 18px;
  margin-left: 18px;
}

.news-index-card time {
  display: block;
  margin: 14px 18px 20px;
  color: var(--page-muted);
  font-size: 13px;
  font-weight: 720;
}

.brand-layout {
  display: grid;
  gap: clamp(26px, 4vw, 42px);
}

.brand-layout > img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  background: var(--mist);
}

.signature-panel {
  display: block;
  max-width: 860px;
  padding: clamp(24px, 3vw, 34px) 0 0;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.signature-panel strong {
  display: block;
  max-width: 680px;
  margin-top: 14px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 620;
  line-height: 1.2;
}

.signature-panel p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-grid article {
  min-height: 240px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.44);
}

.capability-grid span {
  color: var(--clay);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
}

.capability-grid h3,
.platform-list h3 {
  margin: 34px 0 10px;
  font-size: 22px;
  line-height: 1.1;
}

.capability-grid p,
.platform-list p {
  margin: 0;
  color: var(--muted);
}

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

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

.platform-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.platform-visual {
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

.platform-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  background: var(--mist);
}

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

.platform-list article {
  display: grid;
  grid-template-columns: 48px minmax(120px, 0.7fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.platform-list span {
  color: var(--clay);
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.platform-list h3 {
  margin: 0;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
}

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

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

.process-rail li {
  min-height: 216px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.process-rail small {
  display: block;
  color: var(--clay);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.process-rail span {
  display: block;
  margin-top: 34px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.32;
}

.process-rail p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}

.quality {
  padding: clamp(68px, 8vw, 108px) max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--green);
}

.quality-copy {
  max-width: 860px;
}

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

.quality-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.quality-flow span {
  min-height: 82px;
  padding: 20px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 850;
}

.quality-flow span:last-child {
  border-right: 0;
}

.cert-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.cert-categories article {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.cert-categories img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
  filter: saturate(0.94);
}

.cert-categories span,
.cert-categories strong,
.cert-categories p {
  display: block;
  padding: 0 18px;
}

.cert-categories span {
  margin-top: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cert-categories strong {
  margin-top: 4px;
  color: var(--green);
  font-size: 20px;
}

.cert-categories p {
  padding-bottom: 20px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.global-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.global-grid article {
  min-height: 240px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
}

.global-grid strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}

.global-grid span {
  display: block;
  margin-top: 72px;
  color: rgba(255, 255, 255, 0.72);
}

.global-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.section-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(68px, 8vw, 108px) max(20px, calc((100vw - 1180px) / 2));
  background: #efe8d9;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 36px;
  color: var(--green);
  font-size: 22px;
  font-weight: 850;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfbf7;
}

.inquiry-form input[type="file"] {
  padding: 10px;
  background: #fff;
}

.consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--ink) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
}

.inquiry-form textarea {
  resize: vertical;
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-done {
  color: var(--green);
  font-weight: 850;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: var(--black-gray);
}

.footer img {
  width: 186px;
  height: 40px;
  object-fit: contain;
}

.footer p {
  margin: 0;
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding-block: clamp(46px, 5.8vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 46%),
    var(--black-gray);
}

.site-footer-brand {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.site-footer .site-footer-brand img {
  width: 178px;
  height: auto;
}

.site-footer-policy {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
}

.site-footer-copy {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
}

.site-footer-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-info li {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  min-width: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer-info li.wide {
  grid-column: 1 / -1;
}

.site-footer-info span {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 750;
}

.site-footer-info strong {
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  overflow-wrap: anywhere;
}

@media (max-width: 1040px) {
  .mega-menu {
    display: none;
  }

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

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 56px;
  }

  .site-header.is-open .nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 8px 16px 14px;
    color: var(--ink);
    background: rgba(251, 250, 245, 0.98);
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 46px rgba(9, 30, 20, 0.14);
    backdrop-filter: blur(20px);
  }

  .site-header.is-open .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(23, 35, 28, 0.1);
    border-radius: 0;
    font-size: 14px;
    font-weight: 850;
  }

  .site-header.is-open .nav a:last-child {
    border-bottom: 0;
  }

  .site-header.is-open .nav a:active,
  .site-header.is-open .nav a:hover,
  .site-header.is-open .nav a:focus-visible {
    background: rgba(22, 63, 45, 0.08);
    border-radius: 10px;
  }

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

  .site-header.is-open .mobile-nav-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 10px 14px 0;
  }

  .mobile-nav-lang button {
    min-width: 36px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: inherit;
    background: transparent;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-nav-lang button[aria-pressed="true"] {
    border-color: currentColor;
    color: var(--white);
    background: var(--green);
  }

  body:not([data-page="home"]) .site-header.is-open .nav {
    color: var(--page-text);
    background: var(--page-dark);
    border-color: var(--page-line);
    box-shadow: 0 18px 46px rgba(9, 12, 10, 0.28);
  }

  body:not([data-page="home"]) .site-header.is-open .nav a {
    border-color: var(--page-line);
  }

  body:not([data-page="home"]) .site-header.is-open .nav a:active,
  body:not([data-page="home"]) .site-header.is-open .nav a:hover,
  body:not([data-page="home"]) .site-header.is-open .nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  body:not([data-page="home"]) .mobile-nav-lang button[aria-pressed="true"] {
    color: var(--page-dark);
    background: var(--page-text);
  }

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

  .section-heading,
  .brand-layout,
  .hero-grid,
  .platform-showcase,
  .page-intro,
  .quality-copy,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading > p:not(.eyebrow),
  .quality-copy > p,
  .contact-copy > p {
    grid-column: auto;
  }

  .section-heading .eyebrow {
    margin-top: 0;
  }

  .platform-visual img {
    min-height: 380px;
  }

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

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

  .process-rail,
  .cert-categories,
  .source-grid,
  .facility-grid,
  .cert-summary,
  .brand-card-grid,
  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-family-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
  }

  .brand {
    width: 150px;
    height: 32px;
  }

  .brand-logo {
    width: 150px;
    height: 32px;
  }

  .header-tools {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: 14px;
    right: 16px;
    display: grid;
    place-items: center;
    grid-column: auto;
    grid-row: auto;
  }

  .lang-switch button {
    min-width: 32px;
    padding: 0 8px;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero.hero-sequence {
    min-height: 380dvh;
  }

  .hero-inner {
    min-height: 100dvh;
    width: calc(100% - 32px);
    padding: 104px 0 62px;
  }

  .hero-sequence .hero-media,
  .hero-sequence .hero-shade {
    height: 100dvh;
  }

  .hero-sequence .hero-inner {
    min-height: 100dvh;
  }

  body[data-page="home"] {
    background: #07130f;
  }

  body[data-page="home"] .hero.hero-sequence {
    min-height: 380dvh;
    overflow: visible;
  }

  body[data-page="home"] .hero-sequence .hero-media,
  body[data-page="home"] .hero-sequence .hero-shade {
    position: sticky;
    top: 0;
    height: 100dvh;
  }

  body[data-page="home"] .hero-sequence .hero-shade {
    margin-top: -100dvh;
  }

  body[data-page="home"] .hero-sequence .hero-media {
    margin-top: 0;
  }

  body[data-page="home"] .hero-sequence .hero-inner {
    position: sticky;
    top: 0;
    min-height: 100dvh;
    margin-top: -100dvh;
  }

  .hero h1 {
    font-size: clamp(34px, 9.4vw, 44px);
    line-height: 1.08;
  }

  .hero-line {
    max-width: min(100%, 560px);
    margin-top: 18px;
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.18;
    min-height: calc(2em * 1.18);
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 20px;
    font-size: clamp(17px, 4.35vw, 21px);
    line-height: 1.62;
    min-height: calc(2em * 1.62);
  }

  .hero-copy.is-empty {
    min-height: 0;
    margin-top: 0;
  }

  .hero-actions {
    margin-top: 22px;
  }

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

  .hero-scroll-cue {
    bottom: max(18px, env(safe-area-inset-bottom));
    display: grid;
    scale: 0.86;
  }

  .product-card,
  .cert-card {
    transform: none;
  }

  .section {
    width: calc(100% - 32px);
  }

  .capability-grid,
  .global-grid,
  .cert-categories,
  .process-rail,
  .source-grid,
  .intro-facts,
  .product-family-grid,
  .facility-grid,
  .cert-summary {
    grid-template-columns: 1fr;
  }

  .product-family {
    grid-template-columns: 1fr;
  }

  .capability-grid article,
  .source-grid article {
    min-height: auto;
    border-right: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .quality h2,
  .contact h2 {
    font-size: clamp(26px, 7.6vw, 32px);
    line-height: 1.14;
  }

  .page-intro h1 {
    font-size: clamp(32px, 9.8vw, 42px);
    line-height: 1.12;
  }

  .index-page {
    width: calc(100% - 32px);
    padding-top: 96px;
  }

  .index-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .index-head h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  .index-tabs {
    justify-content: flex-start;
    gap: 0 18px;
    overflow: visible;
    flex-wrap: wrap;
    padding: 0 12px;
  }

  .index-tabs button,
  .index-tabs a {
    min-height: 36px;
    font-size: 13px;
    white-space: normal;
  }

  .brand-card-grid,
  .news-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .brand-index-card figure {
    aspect-ratio: 16 / 9;
  }

  .news-index-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 0 16px;
    align-items: start;
    padding: 14px;
  }

  .news-index-card figure {
    grid-row: span 3;
    aspect-ratio: 1 / 1;
  }

  .news-index-card span {
    margin: 0;
  }

  .news-index-card h2 {
    margin-right: 0;
    margin-left: 0;
  }

  .news-index-card time {
    margin: 12px 0 0;
  }

  .page-lead {
    font-size: 16px;
  }

  .source-note {
    font-size: 16px;
  }

  .intro-facts strong {
    font-size: 17px;
  }

  .intro-visual img {
    min-height: 260px;
  }

  .timeline-list li,
  .news-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-examples {
    columns: 1;
  }

  .brand-layout > img {
    min-height: 240px;
  }

  .signature-panel strong {
    font-size: 32px;
    margin-top: 12px;
  }

  .platform-visual img {
    min-height: 280px;
  }

  .platform-list article {
    grid-template-columns: 42px 1fr;
  }

  .platform-list p {
    grid-column: 2;
  }

  .process-rail li {
    min-height: auto;
  }

  .process-rail p,
  .global-grid span {
    margin-top: 28px;
  }

  .quality,
  .culture-band,
  .contact {
    padding: 76px 16px;
  }

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

  .quality-flow span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .footer {
    display: grid;
    padding: 30px 16px;
  }

  .footer p {
    text-align: left;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

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

  .site-footer-info li {
    grid-template-columns: 98px minmax(0, 1fr);
  }
}

@media (max-width: 920px) and (orientation: landscape) and (max-height: 520px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand,
  .brand-logo {
    width: 132px;
    height: 28px;
  }

  .nav-toggle {
    top: 8px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .hero-inner {
    width: calc(100% - 48px);
    padding: 70px 0 30px;
  }

  .hero-copyblock {
    width: min(560px, 72vw);
    max-width: 560px;
  }

  .hero h1 {
    font-size: clamp(28px, 5.8vw, 36px);
    line-height: 1.06;
  }

  .hero-line {
    max-width: min(560px, 100%);
    margin-top: 12px;
    font-size: clamp(24px, 5.25vw, 32px);
    line-height: 1.14;
    min-height: calc(2em * 1.14);
  }

  .hero-copy {
    max-width: min(430px, 100%);
    margin-top: 12px;
    font-size: clamp(14px, 2.45vw, 17px);
    line-height: 1.5;
    min-height: calc(2em * 1.5);
  }

  .hero-copy.is-empty {
    min-height: 0;
    margin-top: 0;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .button {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 8px;
    padding: 14px 12px;
  }

  .brand,
  .brand-logo {
    width: 120px;
    height: 26px;
  }

  .nav-toggle {
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* AP Group inspired white information pages */
:root {
  --ap-ink: #222222;
  --ap-muted: #666666;
  --ap-subtle: #f5f5f5;
  --ap-line: #e0e0e0;
  --ap-blue: #062c5e;
}

html:has(body:not([data-page="home"])) {
  background: var(--white);
}

body:not([data-page="home"]) {
  color: var(--ap-ink);
  background: var(--white);
}

body:not([data-page="home"]) .page-main {
  background: var(--white);
}

body:not([data-page="home"]) .site-header.is-page,
body:not([data-page="home"]) .site-header.is-scrolled,
body:not([data-page="home"]) .site-header.is-open {
  color: var(--ap-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

body:not([data-page="home"]) .site-header.is-page .brand-logo-light,
body:not([data-page="home"]) .site-header.is-scrolled .brand-logo-light,
body:not([data-page="home"]) .site-header.is-open .brand-logo-light,
.site-header.is-mega-open .brand-logo-light {
  opacity: 0;
}

body:not([data-page="home"]) .site-header.is-page .brand-logo-dark,
body:not([data-page="home"]) .site-header.is-scrolled .brand-logo-dark,
body:not([data-page="home"]) .site-header.is-open .brand-logo-dark,
.site-header.is-mega-open .brand-logo-dark {
  opacity: 1;
}

body:not([data-page="home"]) .site-header.is-page .nav-toggle,
body:not([data-page="home"]) .site-header.is-scrolled .nav-toggle,
body:not([data-page="home"]) .site-header.is-open .nav-toggle {
  color: var(--ap-ink);
}

body:not([data-page="home"]) .site-header.is-page .lang-switch button[aria-pressed="true"],
body:not([data-page="home"]) .site-header.is-scrolled .lang-switch button[aria-pressed="true"],
body:not([data-page="home"]) .site-header.is-open .lang-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ap-ink);
}

body:not([data-page="home"]) .site-header.is-open .nav {
  color: var(--ap-ink);
  background: rgba(255, 255, 255, 0.98);
  border-color: var(--ap-line);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

body:not([data-page="home"]) .site-header.is-open .nav a {
  border-color: var(--ap-line);
}

body:not([data-page="home"]) .site-header.is-open .nav a:active,
body:not([data-page="home"]) .site-header.is-open .nav a:hover,
body:not([data-page="home"]) .site-header.is-open .nav a:focus-visible {
  background: var(--ap-subtle);
}

body:not([data-page="home"]) .mobile-nav-lang button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ap-ink);
}

body:not([data-page="home"]) .page-intro h1,
body:not([data-page="home"]) .section-heading h2,
body:not([data-page="home"]) .quality h2,
body:not([data-page="home"]) .contact h2,
body:not([data-page="home"]) .signature-panel strong,
body:not([data-page="home"]) .index-head h1,
body:not([data-page="home"]) .brand-index-card h2,
body:not([data-page="home"]) .news-index-card h2 {
  color: var(--ap-ink);
}

body:not([data-page="home"]) .section-heading > p:not(.eyebrow),
body:not([data-page="home"]) .page-lead,
body:not([data-page="home"]) .source-grid p,
body:not([data-page="home"]) .timeline-list p,
body:not([data-page="home"]) .news-list p,
body:not([data-page="home"]) .capability-grid p,
body:not([data-page="home"]) .platform-list p,
body:not([data-page="home"]) .process-rail p,
body:not([data-page="home"]) .signature-panel p,
body:not([data-page="home"]) .contact-copy > p,
body:not([data-page="home"]) .brand-index-card p {
  color: var(--ap-muted);
}

body:not([data-page="home"]) .eyebrow.dark,
body:not([data-page="home"]) .source-note,
body:not([data-page="home"]) .source-grid span,
body:not([data-page="home"]) .timeline-list small,
body:not([data-page="home"]) .news-list small,
body:not([data-page="home"]) .capability-grid span,
body:not([data-page="home"]) .platform-list span,
body:not([data-page="home"]) .process-rail small,
body:not([data-page="home"]) .signature-panel span,
body:not([data-page="home"]) .brand-index-card span,
body:not([data-page="home"]) .news-index-card span,
body:not([data-page="home"]) .news-index-card time {
  color: var(--ap-blue);
}

body:not([data-page="home"]) .source-note,
body:not([data-page="home"]) .intro-facts,
body:not([data-page="home"]) .intro-facts li,
body:not([data-page="home"]) .source-grid,
body:not([data-page="home"]) .source-grid article,
body:not([data-page="home"]) .timeline-list li,
body:not([data-page="home"]) .news-list li,
body:not([data-page="home"]) .product-examples li,
body:not([data-page="home"]) .signature-panel,
body:not([data-page="home"]) .capability-grid,
body:not([data-page="home"]) .capability-grid article,
body:not([data-page="home"]) .platform,
body:not([data-page="home"]) .process,
body:not([data-page="home"]) .platform-list,
body:not([data-page="home"]) .platform-list article,
body:not([data-page="home"]) .process-rail li,
body:not([data-page="home"]) .brand-index-card,
body:not([data-page="home"]) .news-index-card {
  border-color: var(--ap-line);
}

body:not([data-page="home"]) .source-grid article,
body:not([data-page="home"]) .capability-grid article,
body:not([data-page="home"]) .process-rail li,
body:not([data-page="home"]) .brand-index-card,
body:not([data-page="home"]) .news-index-card,
body:not([data-page="home"]) .index-tabs {
  background: var(--white);
}

body:not([data-page="home"]) .intro-visual,
body:not([data-page="home"]) .platform-visual,
body:not([data-page="home"]) .facility-grid img,
body:not([data-page="home"]) .brand-index-card figure,
body:not([data-page="home"]) .news-index-card figure {
  background: var(--ap-subtle);
}

.site-header.is-mega-open {
  color: var(--white);
  background: #000;
  box-shadow: none;
}

.mega-menu {
  color: var(--white);
  background: #070707;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.36);
}

.mega-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background: #070707;
}

.mega-copy {
  border-color: rgba(255, 255, 255, 0.14);
  background: #070707;
}

.mega-copy p,
.mega-columns a,
.mega-category-list a {
  color: rgba(255, 255, 255, 0.66);
}

.mega-copy h2,
.mega-copy a,
.mega-columns h3,
.mega-columns a:hover,
.mega-columns a:focus-visible,
.mega-category-list a:hover,
.mega-category-list a:focus-visible {
  color: var(--white);
}

.mega-copy a::after {
  color: var(--page-accent);
}

.mega-product-grid a {
  background: #101010;
  border-color: rgba(255, 255, 255, 0.14);
}

.mega-product-grid span {
  color: rgba(255, 255, 255, 0.7);
}

.ap-page-main {
  background: var(--white);
}

.ap-cover {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #111;
  text-align: center;
}

.ap-cover::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: var(--ap-cover-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.96);
  transform: scale(1.01);
}

.ap-cover::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.38);
}

.ap-cover--about {
  --ap-cover-image: url("assets/brand/nature-hero-v2.png");
}

.ap-cover--culture {
  --ap-cover-image: url("assets/brand/nature-stream.png");
}

.ap-cover--commitments {
  --ap-cover-image: url("assets/brand/commitments-quality.png");
}

.ap-cover-inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 48px));
  padding-top: var(--header-height);
}

.ap-cover h1 {
  margin: 0;
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.ap-cover p {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.72;
}

.ap-local-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  min-height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid var(--ap-line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.ap-local-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--ap-muted);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
}

.ap-local-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: transparent;
}

.ap-local-nav a:hover,
.ap-local-nav a:focus-visible {
  color: var(--ap-ink);
}

.ap-local-nav a:hover::after,
.ap-local-nav a:focus-visible::after {
  background: var(--ap-ink);
}

.ap-feature-section {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.12)),
    var(--ap-feature-image) center / cover fixed;
}

.ap-feature-section--facility {
  --ap-feature-image: url("assets/facilities/company-lab.png");
}

.ap-feature-section--lab {
  --ap-feature-image: url("assets/brand/nature-ingredients.png");
}

.ap-feature-section--quality {
  --ap-feature-image: url("assets/brand/hero-asnatural-wellness.png");
}

.ap-feature-section--products {
  --ap-feature-image: url("assets/facilities/company-facility.png");
}

.ap-feature-inner {
  display: grid;
  align-content: center;
  width: min(980px, calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(90px, 10vw, 150px) 0;
}

.ap-feature-kicker {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ap-feature-section h2 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.ap-feature-section p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.82;
}

.ap-white-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(90px, 9vw, 150px) 0;
}

.ap-white-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 0.75fr);
  gap: clamp(26px, 5vw, 70px);
  margin-bottom: clamp(42px, 5vw, 72px);
}

.ap-white-heading span {
  color: var(--ap-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ap-white-heading h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 520;
  line-height: 1.16;
}

.ap-white-heading p {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  color: var(--ap-muted);
  font-size: 17px;
  line-height: 1.86;
}

.ap-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ap-line);
  border-left: 1px solid var(--ap-line);
}

.ap-card-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
  background: var(--white);
}

.ap-card-grid small {
  color: var(--ap-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ap-card-grid h3 {
  margin: 26px 0 0;
  color: var(--ap-ink);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 650;
  line-height: 1.22;
}

.ap-card-grid p {
  margin: 18px 0 0;
  color: var(--ap-muted);
  font-size: 15px;
  line-height: 1.78;
}

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

.ap-timeline li {
  display: grid;
  grid-template-columns: minmax(100px, 0.18fr) minmax(0, 0.82fr);
  gap: clamp(24px, 4vw, 58px);
  padding: 30px 0;
  border-bottom: 1px solid var(--ap-line);
}

.ap-timeline small {
  color: var(--ap-blue);
  font-size: 19px;
  font-weight: 850;
}

.ap-timeline strong {
  color: var(--ap-ink);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
}

.ap-timeline p {
  margin: 10px 0 0;
  color: var(--ap-muted);
  line-height: 1.78;
}

.ap-process {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--ap-line);
  border-left: 1px solid var(--ap-line);
}

.ap-process li {
  min-height: 210px;
  padding: 22px 18px;
  border-right: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
}

.ap-process small {
  color: var(--ap-blue);
  font-size: 12px;
  font-weight: 900;
}

.ap-process strong {
  display: block;
  margin-top: 36px;
  color: var(--ap-ink);
  font-size: 17px;
  line-height: 1.35;
}

.ap-process p {
  margin: 12px 0 0;
  color: var(--ap-muted);
  font-size: 14px;
  line-height: 1.62;
}

.ap-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ap-image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ap-subtle);
}

.ap-facility-showcase {
  display: grid;
  gap: 14px;
}

.ap-facility-showcase figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ap-subtle);
}

.ap-facility-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-facility-showcase__hero {
  aspect-ratio: 21 / 10;
}

.ap-facility-showcase__hero img {
  object-position: center 55%;
}

.ap-facility-showcase__rail {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 14px;
}

.ap-facility-showcase__rail figure {
  height: clamp(230px, 27vw, 310px);
}

.ap-facility-showcase__exterior img {
  object-position: center 52%;
}

.ap-news-page {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(140px, 13vw, 190px) 0 clamp(90px, 9vw, 140px);
}

.ap-news-title {
  margin: 0;
  color: var(--ap-ink);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(54px, 6vw, 84px);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.ap-tabs {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  margin: 48px 0 62px;
  border-bottom: 1px solid var(--ap-line);
}

.ap-tabs button {
  position: relative;
  min-height: 48px;
  border: 0;
  padding: 0;
  color: var(--ap-muted);
  background: transparent;
  font-size: 14px;
  font-weight: 820;
  cursor: pointer;
}

.ap-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: transparent;
}

.ap-tabs button[aria-selected="true"],
.ap-tabs button:hover,
.ap-tabs button:focus-visible {
  color: var(--ap-ink);
}

.ap-tabs button[aria-selected="true"]::after,
.ap-tabs button:hover::after,
.ap-tabs button:focus-visible::after {
  background: var(--ap-ink);
}

.ap-news-list {
  display: grid;
  border-top: 1px solid var(--ap-line);
}

.ap-news-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 120px;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--ap-line);
}

.ap-news-item figure {
  margin: 0;
  overflow: hidden;
  background: var(--ap-subtle);
}

.ap-news-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ap-news-item span {
  display: block;
  color: var(--ap-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ap-news-item h2 {
  margin: 10px 0 0;
  color: var(--ap-ink);
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
}

.ap-news-item time {
  justify-self: end;
  color: var(--ap-muted);
  font-size: 14px;
  font-weight: 760;
}

@media (max-width: 1040px) {
  .nav {
    gap: 18px;
  }

  .ap-feature-section {
    background-attachment: scroll;
  }

  .ap-card-grid {
    grid-template-columns: 1fr;
  }

  .ap-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ap-news-item {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .ap-news-item time {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 740px) {
  .ap-cover {
    min-height: 720px;
  }

  .ap-cover-inner {
    width: calc(100% - 36px);
  }

  .ap-local-nav {
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
  }

  .ap-feature-section {
    min-height: 620px;
  }

  .ap-feature-inner,
  .ap-white-section,
  .ap-news-page {
    width: calc(100% - 36px);
  }

  .ap-white-heading {
    grid-template-columns: 1fr;
  }

  .ap-white-heading p {
    grid-column: auto;
  }

  .ap-process {
    grid-template-columns: 1fr;
  }

  .ap-image-grid {
    grid-template-columns: 1fr;
  }

  .ap-facility-showcase__hero {
    aspect-ratio: 4 / 3;
  }

  .ap-facility-showcase__rail {
    grid-template-columns: 1fr;
  }

  .ap-facility-showcase__rail figure {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .ap-tabs {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .ap-news-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ap-news-item figure {
    width: 100%;
  }

  .ap-news-item time {
    grid-column: auto;
  }
}

/* AP Group-style editorial page refinements */
body[data-page="about"],
body[data-page="culture"],
body[data-page="commitments"],
body[data-page="news"] {
  --header-height: 140px;
  background: var(--white);
}

body[data-page="about"] .site-header.is-page,
body[data-page="about"] .site-header.is-scrolled,
body[data-page="about"] .site-header.is-open,
body[data-page="culture"] .site-header.is-page,
body[data-page="culture"] .site-header.is-scrolled,
body[data-page="culture"] .site-header.is-open,
body[data-page="commitments"] .site-header.is-page,
body[data-page="commitments"] .site-header.is-scrolled,
body[data-page="commitments"] .site-header.is-open,
body[data-page="news"] .site-header.is-page,
body[data-page="news"] .site-header.is-scrolled,
body[data-page="news"] .site-header.is-open {
  min-height: 140px;
  padding: 0 72px;
  color: var(--white);
  background: #000;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="about"] .site-header .brand,
body[data-page="culture"] .site-header .brand,
body[data-page="commitments"] .site-header .brand,
body[data-page="news"] .site-header .brand {
  position: absolute;
  top: 31px;
  right: 72px;
  width: 245px;
  height: 54px;
}

body[data-page="about"] .site-header .brand-logo,
body[data-page="culture"] .site-header .brand-logo,
body[data-page="commitments"] .site-header .brand-logo,
body[data-page="news"] .site-header .brand-logo {
  width: 245px;
  height: 54px;
}

body[data-page="about"] .site-header .brand-logo-light,
body[data-page="culture"] .site-header .brand-logo-light,
body[data-page="commitments"] .site-header .brand-logo-light,
body[data-page="news"] .site-header .brand-logo-light,
body[data-page="about"] .site-header.is-page .brand-logo-light,
body[data-page="culture"] .site-header.is-page .brand-logo-light,
body[data-page="commitments"] .site-header.is-page .brand-logo-light,
body[data-page="news"] .site-header.is-page .brand-logo-light,
body[data-page="about"] .site-header.is-scrolled .brand-logo-light,
body[data-page="culture"] .site-header.is-scrolled .brand-logo-light,
body[data-page="commitments"] .site-header.is-scrolled .brand-logo-light,
body[data-page="news"] .site-header.is-scrolled .brand-logo-light,
body[data-page="about"] .site-header.is-open .brand-logo-light,
body[data-page="culture"] .site-header.is-open .brand-logo-light,
body[data-page="commitments"] .site-header.is-open .brand-logo-light,
body[data-page="news"] .site-header.is-open .brand-logo-light,
body[data-page="about"] .site-header.is-mega-open .brand-logo-light,
body[data-page="culture"] .site-header.is-mega-open .brand-logo-light,
body[data-page="commitments"] .site-header.is-mega-open .brand-logo-light,
body[data-page="news"] .site-header.is-mega-open .brand-logo-light {
  opacity: 1;
}

body[data-page="about"] .site-header .brand-logo-dark,
body[data-page="culture"] .site-header .brand-logo-dark,
body[data-page="commitments"] .site-header .brand-logo-dark,
body[data-page="news"] .site-header .brand-logo-dark,
body[data-page="about"] .site-header.is-page .brand-logo-dark,
body[data-page="culture"] .site-header.is-page .brand-logo-dark,
body[data-page="commitments"] .site-header.is-page .brand-logo-dark,
body[data-page="news"] .site-header.is-page .brand-logo-dark,
body[data-page="about"] .site-header.is-scrolled .brand-logo-dark,
body[data-page="culture"] .site-header.is-scrolled .brand-logo-dark,
body[data-page="commitments"] .site-header.is-scrolled .brand-logo-dark,
body[data-page="news"] .site-header.is-scrolled .brand-logo-dark,
body[data-page="about"] .site-header.is-open .brand-logo-dark,
body[data-page="culture"] .site-header.is-open .brand-logo-dark,
body[data-page="commitments"] .site-header.is-open .brand-logo-dark,
body[data-page="news"] .site-header.is-open .brand-logo-dark,
body[data-page="about"] .site-header.is-mega-open .brand-logo-dark,
body[data-page="culture"] .site-header.is-mega-open .brand-logo-dark,
body[data-page="commitments"] .site-header.is-mega-open .brand-logo-dark,
body[data-page="news"] .site-header.is-mega-open .brand-logo-dark {
  opacity: 0;
}

body[data-page="about"] .site-header .nav,
body[data-page="culture"] .site-header .nav,
body[data-page="commitments"] .site-header .nav,
body[data-page="news"] .site-header .nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  gap: clamp(36px, 5vw, 70px);
  color: var(--white);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

body[data-page="about"] .site-header .nav a,
body[data-page="culture"] .site-header .nav a,
body[data-page="commitments"] .site-header .nav a,
body[data-page="news"] .site-header .nav a {
  padding: 12px 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="about"] .site-header .nav a[aria-current="page"],
body[data-page="about"] .site-header .nav a:hover,
body[data-page="about"] .site-header .nav a:focus-visible,
body[data-page="culture"] .site-header .nav a[aria-current="page"],
body[data-page="culture"] .site-header .nav a:hover,
body[data-page="culture"] .site-header .nav a:focus-visible,
body[data-page="commitments"] .site-header .nav a[aria-current="page"],
body[data-page="commitments"] .site-header .nav a:hover,
body[data-page="commitments"] .site-header .nav a:focus-visible,
body[data-page="news"] .site-header .nav a[aria-current="page"],
body[data-page="news"] .site-header .nav a:hover,
body[data-page="news"] .site-header .nav a:focus-visible {
  color: var(--white);
}

body[data-page="about"] .site-header .nav a::after,
body[data-page="culture"] .site-header .nav a::after,
body[data-page="commitments"] .site-header .nav a::after,
body[data-page="news"] .site-header .nav a::after {
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.62);
}

body[data-page="about"] .site-header .header-tools,
body[data-page="culture"] .site-header .header-tools,
body[data-page="commitments"] .site-header .header-tools,
body[data-page="news"] .site-header .header-tools {
  position: absolute;
  top: 34px;
  left: 72px;
}

body[data-page="about"] .site-header .lang-switch,
body[data-page="culture"] .site-header .lang-switch,
body[data-page="commitments"] .site-header .lang-switch,
body[data-page="news"] .site-header .lang-switch {
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

body[data-page="about"] .site-header .lang-switch button,
body[data-page="culture"] .site-header .lang-switch button,
body[data-page="commitments"] .site-header .lang-switch button,
body[data-page="news"] .site-header .lang-switch button {
  width: auto;
  height: auto;
  padding: 0 0 5px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
}

body[data-page="about"] .site-header .header-cta,
body[data-page="culture"] .site-header .header-cta,
body[data-page="commitments"] .site-header .header-cta,
body[data-page="news"] .site-header .header-cta {
  display: none;
}

body[data-page="about"] .site-header .lang-switch button,
body[data-page="culture"] .site-header .lang-switch button,
body[data-page="commitments"] .site-header .lang-switch button,
body[data-page="news"] .site-header .lang-switch button {
  color: rgba(255, 255, 255, 0.58);
}

body[data-page="about"] .site-header .lang-switch button[aria-pressed="true"],
body[data-page="culture"] .site-header .lang-switch button[aria-pressed="true"],
body[data-page="commitments"] .site-header .lang-switch button[aria-pressed="true"],
body[data-page="news"] .site-header .lang-switch button[aria-pressed="true"] {
  color: var(--white);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--white);
}

body[data-page="about"] .site-header.is-mega-open,
body[data-page="culture"] .site-header.is-mega-open,
body[data-page="commitments"] .site-header.is-mega-open,
body[data-page="news"] .site-header.is-mega-open {
  color: var(--white);
  background: #000;
}

body[data-page="about"] .mega-menu,
body[data-page="culture"] .mega-menu,
body[data-page="commitments"] .mega-menu,
body[data-page="news"] .mega-menu {
  top: 140px;
  color: var(--white);
  background: #070707;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.36);
}

body[data-page="about"] .mega-panel,
body[data-page="culture"] .mega-panel,
body[data-page="commitments"] .mega-panel,
body[data-page="news"] .mega-panel,
body[data-page="about"] .mega-copy,
body[data-page="culture"] .mega-copy,
body[data-page="commitments"] .mega-copy,
body[data-page="news"] .mega-copy {
  color: var(--white);
  background: #070707;
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-page="about"] .mega-copy h2,
body[data-page="about"] .mega-copy a,
body[data-page="about"] .mega-columns h3,
body[data-page="culture"] .mega-copy h2,
body[data-page="culture"] .mega-copy a,
body[data-page="culture"] .mega-columns h3,
body[data-page="commitments"] .mega-copy h2,
body[data-page="commitments"] .mega-copy a,
body[data-page="commitments"] .mega-columns h3,
body[data-page="news"] .mega-copy h2,
body[data-page="news"] .mega-copy a,
body[data-page="news"] .mega-columns h3 {
  color: var(--white);
}

body[data-page="about"] .mega-copy p,
body[data-page="about"] .mega-columns a,
body[data-page="culture"] .mega-copy p,
body[data-page="culture"] .mega-columns a,
body[data-page="commitments"] .mega-copy p,
body[data-page="commitments"] .mega-columns a,
body[data-page="news"] .mega-copy p,
body[data-page="news"] .mega-columns a {
  color: rgba(255, 255, 255, 0.66);
}

body[data-page="about"] .ap-cover,
body[data-page="culture"] .ap-cover,
body[data-page="commitments"] .ap-cover {
  min-height: max(820px, 100svh);
}

body[data-page="about"] .ap-cover h1,
body[data-page="culture"] .ap-cover h1,
body[data-page="commitments"] .ap-cover h1 {
  font-size: clamp(54px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.2;
}

body[data-page="about"] .ap-cover p,
body[data-page="culture"] .ap-cover p,
body[data-page="commitments"] .ap-cover p {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.8;
}

body[data-page="about"] .ap-local-nav,
body[data-page="culture"] .ap-local-nav,
body[data-page="commitments"] .ap-local-nav {
  position: relative;
  top: auto;
  min-height: 72px;
  border-top: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
  background: #fff;
  backdrop-filter: none;
}

body[data-page="about"] .ap-local-nav a,
body[data-page="culture"] .ap-local-nav a,
body[data-page="commitments"] .ap-local-nav a {
  color: #555;
  font-size: 17px;
  font-weight: 650;
}

body[data-page="about"] .ap-feature-section,
body[data-page="culture"] .ap-feature-section,
body[data-page="commitments"] .ap-feature-section {
  min-height: max(820px, 100svh);
}

body[data-page="about"] .ap-feature-section h2,
body[data-page="culture"] .ap-feature-section h2,
body[data-page="commitments"] .ap-feature-section h2 {
  max-width: 640px;
  font-family: "SUIT", sans-serif;
  font-size: clamp(34px, 3.4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
}

body[data-page="about"] .ap-feature-section p,
body[data-page="culture"] .ap-feature-section p,
body[data-page="commitments"] .ap-feature-section p {
  max-width: 620px;
  font-size: clamp(16px, 1.2vw, 18px);
}

body[data-page="news"] .ap-news-page {
  width: min(1040px, calc(100% - 96px));
  padding: 250px 0 clamp(120px, 10vw, 180px);
}

body[data-page="news"] .ap-news-title {
  width: fit-content;
  margin-left: auto;
  color: var(--ap-ink);
  font-size: clamp(58px, 6vw, 76px);
  text-align: right;
}

body[data-page="news"] .ap-tabs {
  justify-content: flex-start;
  gap: clamp(30px, 4vw, 56px);
  margin: 70px 0 90px;
}

body[data-page="news"] .ap-tabs button {
  min-height: 54px;
  font-size: 21px;
  font-weight: 500;
}

body[data-page="news"] .ap-news-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px 44px;
  border-top: 0;
}

body[data-page="news"] .ap-news-item {
  display: block;
  padding: 0;
  border-bottom: 0;
}

body[data-page="news"] .ap-news-item figure {
  width: 100%;
  margin: 0 0 28px;
  background: #f2f2f2;
}

body[data-page="news"] .ap-news-item img {
  aspect-ratio: 1 / 1;
}

body[data-page="news"] .ap-news-item span {
  color: var(--ap-blue);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

body[data-page="news"] .ap-news-item h2 {
  margin-top: 14px;
  color: #333;
  font-size: clamp(24px, 2.45vw, 34px);
  font-weight: 650;
  line-height: 1.34;
}

body[data-page="news"] .ap-news-item time {
  display: block;
  margin-top: 24px;
  color: #777;
  font-size: 21px;
  font-weight: 400;
}

body[data-page="about"] .ap-cover::before,
body[data-page="culture"] .ap-cover::before,
body[data-page="commitments"] .ap-cover::before {
  transform: none;
}

body[data-page="about"] .ap-feature-section,
body[data-page="culture"] .ap-feature-section,
body[data-page="commitments"] .ap-feature-section {
  background-position: center;
}

@media (max-width: 1040px) {
  body[data-page="about"],
  body[data-page="culture"],
  body[data-page="commitments"],
  body[data-page="news"] {
    --header-height: 88px;
  }

  body[data-page="about"] .site-header.is-page,
  body[data-page="about"] .site-header.is-scrolled,
  body[data-page="about"] .site-header.is-open,
  body[data-page="culture"] .site-header.is-page,
  body[data-page="culture"] .site-header.is-scrolled,
  body[data-page="culture"] .site-header.is-open,
  body[data-page="commitments"] .site-header.is-page,
  body[data-page="commitments"] .site-header.is-scrolled,
  body[data-page="commitments"] .site-header.is-open,
  body[data-page="news"] .site-header.is-page,
  body[data-page="news"] .site-header.is-scrolled,
  body[data-page="news"] .site-header.is-open {
    min-height: 88px;
    padding: 0 28px;
  }

  body[data-page="about"] .site-header .brand,
  body[data-page="culture"] .site-header .brand,
  body[data-page="commitments"] .site-header .brand,
  body[data-page="news"] .site-header .brand {
    top: 22px;
    right: auto;
    left: 28px;
    width: 176px;
    height: 39px;
  }

  body[data-page="about"] .site-header .brand-logo,
  body[data-page="culture"] .site-header .brand-logo,
  body[data-page="commitments"] .site-header .brand-logo,
  body[data-page="news"] .site-header .brand-logo {
    width: 176px;
    height: 39px;
  }

  body[data-page="about"] .site-header .header-tools,
  body[data-page="culture"] .site-header .header-tools,
  body[data-page="commitments"] .site-header .header-tools,
  body[data-page="news"] .site-header .header-tools {
    display: none;
  }

  body[data-page="about"] .site-header .nav,
  body[data-page="culture"] .site-header .nav,
  body[data-page="commitments"] .site-header .nav,
  body[data-page="news"] .site-header .nav {
    position: fixed;
    top: 88px;
    right: 16px;
    bottom: auto;
    left: 16px;
    transform: none;
  }

  body[data-page="about"] .site-header.is-open .nav,
  body[data-page="culture"] .site-header.is-open .nav,
  body[data-page="commitments"] .site-header.is-open .nav,
  body[data-page="news"] .site-header.is-open .nav {
    color: var(--white);
    background: rgba(0, 0, 0, 0.98);
    border-color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="about"] .site-header.is-open .nav a,
  body[data-page="culture"] .site-header.is-open .nav a,
  body[data-page="commitments"] .site-header.is-open .nav a,
  body[data-page="news"] .site-header.is-open .nav a {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="about"] .site-header .nav-toggle,
  body[data-page="culture"] .site-header .nav-toggle,
  body[data-page="commitments"] .site-header .nav-toggle,
  body[data-page="news"] .site-header .nav-toggle {
    color: var(--white);
  }

  body[data-page="about"] .mega-menu,
  body[data-page="culture"] .mega-menu,
  body[data-page="commitments"] .mega-menu,
  body[data-page="news"] .mega-menu {
    top: 88px;
  }

  body[data-page="about"] .ap-cover,
  body[data-page="culture"] .ap-cover,
  body[data-page="commitments"] .ap-cover {
    min-height: 760px;
  }

  body[data-page="news"] .ap-news-page {
    width: min(720px, calc(100% - 56px));
    padding-top: 170px;
  }

  body[data-page="news"] .ap-news-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 740px) {
  body[data-page="about"] .site-header .brand,
  body[data-page="culture"] .site-header .brand,
  body[data-page="commitments"] .site-header .brand,
  body[data-page="news"] .site-header .brand {
    width: 154px;
    height: 34px;
  }

  body[data-page="about"] .site-header .brand-logo,
  body[data-page="culture"] .site-header .brand-logo,
  body[data-page="commitments"] .site-header .brand-logo,
  body[data-page="news"] .site-header .brand-logo {
    width: 154px;
    height: 34px;
  }

  body[data-page="about"] .ap-local-nav,
  body[data-page="culture"] .ap-local-nav,
  body[data-page="commitments"] .ap-local-nav {
    min-height: 60px;
  }

  body[data-page="about"] .ap-local-nav a,
  body[data-page="culture"] .ap-local-nav a,
  body[data-page="commitments"] .ap-local-nav a {
    font-size: 15px;
  }

  body[data-page="news"] .ap-news-page {
    width: calc(100% - 36px);
    padding-top: 142px;
  }

  body[data-page="news"] .ap-news-title {
    margin-left: 0;
    font-size: 52px;
    text-align: left;
  }

  body[data-page="news"] .ap-tabs {
    justify-content: flex-start;
    gap: 26px;
    overflow-x: auto;
    margin: 42px 0 54px;
  }

  body[data-page="news"] .ap-tabs button {
    flex: 0 0 auto;
    font-size: 16px;
  }

  body[data-page="news"] .ap-news-item h2 {
    font-size: 24px;
  }

  body[data-page="news"] .ap-news-item span,
  body[data-page="news"] .ap-news-item time {
    font-size: 16px;
  }
}

/* AP Group-style brand index and detail pages */
body[data-page="brands"] {
  --header-height: 140px;
  background: var(--white);
}

body[data-page="brands"] .site-header.is-page,
body[data-page="brands"] .site-header.is-scrolled,
body[data-page="brands"] .site-header.is-open {
  min-height: 140px;
  padding: 0 72px;
  color: var(--white);
  background: #000;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="brands"] .site-header .brand {
  position: absolute;
  top: 31px;
  right: 72px;
  width: 245px;
  height: 54px;
}

body[data-page="brands"] .site-header .brand-logo {
  width: 245px;
  height: 54px;
}

body[data-page="brands"] .site-header .brand-logo-light,
body[data-page="brands"] .site-header.is-page .brand-logo-light,
body[data-page="brands"] .site-header.is-scrolled .brand-logo-light,
body[data-page="brands"] .site-header.is-open .brand-logo-light,
body[data-page="brands"] .site-header.is-mega-open .brand-logo-light {
  opacity: 1;
}

body[data-page="brands"] .site-header .brand-logo-dark,
body[data-page="brands"] .site-header.is-page .brand-logo-dark,
body[data-page="brands"] .site-header.is-scrolled .brand-logo-dark,
body[data-page="brands"] .site-header.is-open .brand-logo-dark,
body[data-page="brands"] .site-header.is-mega-open .brand-logo-dark {
  opacity: 0;
}

body[data-page="brands"] .site-header .nav {
  position: absolute;
  bottom: 24px;
  left: 50%;
  gap: clamp(36px, 5vw, 70px);
  color: var(--white);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

body[data-page="brands"] .site-header .nav a {
  padding: 12px 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="brands"] .site-header .nav a[aria-current="page"],
body[data-page="brands"] .site-header .nav a:hover,
body[data-page="brands"] .site-header .nav a:focus-visible {
  color: var(--white);
}

body[data-page="brands"] .site-header .nav a::after {
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.62);
}

body[data-page="brands"] .site-header .header-tools {
  position: absolute;
  top: 34px;
  left: 72px;
}

body[data-page="brands"] .site-header .lang-switch {
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

body[data-page="brands"] .site-header .lang-switch button {
  width: auto;
  height: auto;
  padding: 0 0 5px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1;
}

body[data-page="brands"] .site-header .lang-switch button[aria-pressed="true"] {
  color: var(--white);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--white);
}

body[data-page="brands"] .site-header .header-cta {
  display: none;
}

body[data-page="brands"] .site-header.is-mega-open {
  color: var(--white);
  background: #000;
}

body[data-page="brands"] .mega-menu {
  top: 140px;
  color: var(--white);
  background: #070707;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.36);
}

body[data-page="brands"] .mega-panel,
body[data-page="brands"] .mega-copy {
  color: var(--white);
  background: #070707;
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-page="brands"] .mega-copy h2,
body[data-page="brands"] .mega-copy a,
body[data-page="brands"] .mega-columns h3 {
  color: var(--white);
}

body[data-page="brands"] .mega-copy p,
body[data-page="brands"] .mega-columns a {
  color: rgba(255, 255, 255, 0.66);
}

.ap-brands-page {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
  padding: 250px 0 clamp(120px, 10vw, 180px);
}

.ap-brands-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(28px, 5vw, 80px);
  margin-bottom: clamp(70px, 7vw, 110px);
}

.ap-brands-head span {
  align-self: start;
  color: var(--ap-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ap-brands-head h1 {
  margin: 0;
  color: var(--ap-ink);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(64px, 7vw, 104px);
  font-weight: 600;
  line-height: 0.95;
}

.ap-brands-head p {
  grid-column: 2;
  max-width: 760px;
  margin: 0;
  color: var(--ap-muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.82;
}

.ap-brand-unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ap-line);
  border-left: 1px solid var(--ap-line);
}

.ap-brand-unit-card {
  display: grid;
  min-height: 430px;
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
  background: var(--white);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.ap-brand-unit-card:hover,
.ap-brand-unit-card:focus-visible {
  background: #f7f9fb;
  transform: translateY(-2px);
}

.ap-brand-unit-card figure {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: 0;
  padding: 30px;
  border-bottom: 1px solid var(--ap-line);
  background: var(--ap-subtle);
}

.ap-brand-unit-card figure img {
  width: min(250px, 76%);
  height: auto;
  object-fit: contain;
}

.ap-brand-logo-image {
  display: block;
  width: min(220px, 70%);
  max-height: 96px;
  object-fit: contain;
}

.ap-brand-logo-image--ovent {
  width: min(190px, 64%);
  image-rendering: auto;
}

.ap-brand-wordmark {
  color: #111;
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.ap-brand-wordmark--serif {
  font-size: clamp(36px, 3vw, 52px);
}

.ap-brand-wordmark--kr {
  font-family: "SUIT", sans-serif;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 760;
  line-height: 1.3;
  text-align: center;
}

.mega-brand-wordmark {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 86px;
  color: var(--white);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1;
}

.mega-product-grid .mega-brand-wordmark {
  color: var(--white);
}

.mega-brand-wordmark--serif {
  font-size: 21px;
}

.mega-brand-wordmark--kr {
  font-family: "SUIT", sans-serif;
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

.ap-brand-unit-card > div {
  padding: clamp(26px, 3vw, 38px);
}

.ap-brand-unit-card span {
  display: block;
  color: var(--ap-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ap-brand-unit-card h2 {
  margin: 18px 0 0;
  color: var(--ap-ink);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 650;
  line-height: 1.2;
}

.ap-brand-unit-card p {
  margin: 16px 0 0;
  color: var(--ap-muted);
  font-size: 15px;
  line-height: 1.78;
}

.ap-news-item {
  color: inherit;
  text-decoration: none;
}

.ap-news-item:hover h2,
.ap-news-item:focus-visible h2 {
  color: var(--ap-blue);
}

.ap-detail-page {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto;
  padding: 220px 0 clamp(110px, 10vw, 170px);
}

.ap-detail-page article[hidden] {
  display: none !important;
}

.ap-detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 44px;
  color: var(--ap-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ap-detail-back::before {
  content: "";
  width: 34px;
  height: 1px;
  margin-right: 12px;
  background: currentColor;
}

.ap-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  padding-bottom: clamp(60px, 7vw, 96px);
  border-bottom: 1px solid var(--ap-line);
}

.ap-detail-copy span {
  color: var(--ap-blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.ap-detail-copy h1 {
  margin: 22px 0 0;
  color: var(--ap-ink);
  font-family: "Cormorant Garamond", "SUIT", serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.03;
}

.ap-detail-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ap-muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.82;
}

.ap-detail-hero figure {
  margin: 0;
  overflow: hidden;
  background: var(--ap-subtle);
}

.ap-detail-logo-panel {
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: clamp(28px, 4vw, 56px);
  background: #f6f8f9;
}

.ap-detail-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ap-detail-logo-panel img,
.ap-detail-logo-panel .ap-brand-logo-image {
  width: min(260px, 72%);
  aspect-ratio: auto;
  max-height: 120px;
  object-fit: contain;
}

.ap-detail-body {
  width: min(760px, 100%);
  margin: 0 auto;
  padding-top: clamp(58px, 7vw, 96px);
}

.ap-detail-body h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 650;
  line-height: 1.22;
}

.ap-detail-body p {
  margin: 24px 0 0;
  color: var(--ap-muted);
  font-size: 17px;
  line-height: 1.9;
}

.ap-detail-points {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  border-top: 1px solid var(--ap-line);
}

.ap-detail-points li {
  padding: 18px 0;
  color: var(--ap-ink);
  border-bottom: 1px solid var(--ap-line);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 1040px) {
  body[data-page="brands"] {
    --header-height: 88px;
  }

  body[data-page="brands"] .site-header.is-page,
  body[data-page="brands"] .site-header.is-scrolled,
  body[data-page="brands"] .site-header.is-open {
    min-height: 88px;
    padding: 0 28px;
  }

  body[data-page="brands"] .site-header .brand {
    top: 22px;
    right: auto;
    left: 28px;
    width: 176px;
    height: 39px;
  }

  body[data-page="brands"] .site-header .brand-logo {
    width: 176px;
    height: 39px;
  }

  body[data-page="brands"] .site-header .header-tools {
    display: none;
  }

  body[data-page="brands"] .site-header .nav {
    position: fixed;
    top: 88px;
    right: 16px;
    bottom: auto;
    left: 16px;
    transform: none;
  }

  body[data-page="brands"] .site-header.is-open .nav {
    color: var(--white);
    background: rgba(0, 0, 0, 0.98);
    border-color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="brands"] .site-header.is-open .nav a {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="brands"] .site-header .nav-toggle {
    color: var(--white);
  }

  body[data-page="brands"] .mega-menu {
    top: 88px;
  }

  .ap-brands-page,
  .ap-detail-page {
    width: min(720px, calc(100% - 56px));
    padding-top: 170px;
  }

  .ap-brand-unit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 740px) {
  body[data-page="brands"] .site-header .brand {
    width: 154px;
    height: 34px;
  }

  body[data-page="brands"] .site-header .brand-logo {
    width: 154px;
    height: 34px;
  }

  .ap-brands-page,
  .ap-detail-page {
    width: calc(100% - 36px);
    padding-top: 142px;
  }

  .ap-brands-head {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .ap-brands-head p {
    grid-column: auto;
  }

  .ap-brand-unit-grid {
    grid-template-columns: 1fr;
  }

  .ap-brand-unit-card {
    min-height: auto;
  }

  .ap-detail-copy h1 {
    font-size: 48px;
  }
}
