:root {
  --bg: #fafafa;
  --bg-soft: #f5f0e7;
  --bg-pastel: #efe6d8;
  --surface: rgba(255, 252, 247, 0.84);
  --surface-strong: rgba(255, 249, 240, 0.94);
  --line: rgba(174, 158, 107, 0.18);
  --line-strong: rgba(174, 158, 107, 0.3);
  --gold: #ae9e6b;
  --gold-deep: #948150;
  --gold-soft: rgba(174, 158, 107, 0.12);
  --green-accent: #6f8f63;
  --brown-accent: #806445;
  --text: #111111;
  --text-dark: #4a3f35;
  --text-muted: #6b5c50;
  --muted: #575249;
  --muted-strong: #3f3a32;
  --anthracite: #1f2124;
  --shadow: 0 22px 56px rgba(36, 32, 20, 0.12);
  --shadow-strong: 0 26px 64px rgba(24, 20, 12, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1360px;
  --content-max: 1180px;
  --section-rail: 180px;
  --chapter-left: clamp(28px, 4.8vw, 64px);
  --chapter-right: clamp(20px, 4vw, 48px);
  --chapter-top-space: clamp(92px, 12vw, 150px);
  --chapter-bottom-space: clamp(84px, 10vw, 132px);
  --chapter-kicker-gap: clamp(38px, 4vw, 54px);
  --header-duration: 860ms;
  --header-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(174, 158, 107, 0.16), transparent 32%),
    radial-gradient(circle at top right, rgba(239, 230, 216, 0.78), transparent 28%),
    linear-gradient(180deg, #fdfbf7 0%, #faf6ef 44%, #fafafa 100%);
}

body.nav-open {
  overflow: hidden;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.scrollbar-overlay {
  position: fixed;
  top: 16px;
  right: 8px;
  bottom: 16px;
  z-index: 80;
  width: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

body.is-scrolling .scrollbar-overlay {
  opacity: 1;
}

.scrollbar-overlay-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(214, 193, 137, 0.94), rgba(174, 158, 107, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 229, 0.16),
    0 0 16px rgba(174, 158, 107, 0.16);
  opacity: 0.88;
  transition: top 60ms linear, opacity 180ms ease, background 180ms ease;
}

body.scrolled .scrollbar-overlay-thumb {
  opacity: 1;
}

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

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 999;
  padding: 0.9rem 1.2rem;
  color: #fff;
  background: var(--anthracite);
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 32px;
}

.main-header {
  position: fixed;
  inset: 0 0 auto;
  top: 0;
  z-index: 120;
  padding: 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition:
    background var(--header-duration) var(--header-ease),
    border-color var(--header-duration) var(--header-ease),
    backdrop-filter var(--header-duration) var(--header-ease),
    transform var(--header-duration) var(--header-ease),
    opacity 520ms ease;
  will-change: background, border-color, backdrop-filter, transform;
}

.header-wrap {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  transform: translateY(0);
  transition:
    width var(--header-duration) var(--header-ease),
    padding var(--header-duration) var(--header-ease),
    transform var(--header-duration) var(--header-ease);
  will-change: width, padding, transform;
}

.site-header {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, max-content) minmax(0, 1fr) minmax(220px, max-content);
  align-items: center;
  gap: 16px;
  padding: 16px 28px 12px;
  border-radius: 0;
  border: 1px solid rgba(174, 158, 107, 0.08);
  background: linear-gradient(180deg, rgba(35, 37, 40, 0.9), rgba(29, 31, 34, 0.88));
  box-shadow:
    0 10px 28px rgba(17, 17, 17, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px) saturate(108%);
  transform: translateY(0) scale(1);
  transform-origin: center top;
  backface-visibility: hidden;
  transition:
    width var(--header-duration) var(--header-ease),
    padding var(--header-duration) var(--header-ease),
    border-radius var(--header-duration) var(--header-ease),
    border-color var(--header-duration) var(--header-ease),
    background var(--header-duration) var(--header-ease),
    box-shadow var(--header-duration) var(--header-ease),
    backdrop-filter var(--header-duration) var(--header-ease),
    transform var(--header-duration) var(--header-ease);
  will-change: width, padding, border-radius, border-color, background, box-shadow, backdrop-filter, transform;
}

.main-header.is-scrolled {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.main-header.is-scrolled .header-wrap {
  width: min(100%, var(--max));
  padding: 16px 20px 0;
  transform: translateY(0);
}

.main-header.is-scrolled .site-header {
  width: min(1280px, calc(100% - 8px));
  padding: 12px 18px;
  border-radius: 999px;
  border-color: rgba(174, 158, 107, 0.3);
  background: linear-gradient(180deg, rgba(35, 37, 40, 0.92), rgba(30, 32, 35, 0.9));
  box-shadow:
    0 22px 58px rgba(17, 17, 17, 0.24),
    0 0 0 1px rgba(174, 158, 107, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(115%);
  transform: translateY(0) scale(0.994);
}

.brand,
.header-actions,
.header-end,
.hero-actions,
.button-group,
.legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  min-width: max-content;
  justify-self: start;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
  transition:
    transform var(--header-duration) var(--header-ease),
    opacity 480ms ease;
  will-change: transform, opacity;
}

.main-header.is-scrolled .brand-logo {
  transform: scale(0.98);
}

.hero-copy,
.section-copy,
.card-copy,
.footer-copy,
.footer-note {
  color: var(--muted);
}

.nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  justify-self: center;
}

.nav-list,
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.header-end {
  justify-self: end;
  min-width: max-content;
}

.header-actions-mobile {
  display: none;
}

.header-actions-desktop {
  min-width: max-content;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.82rem;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  transition:
    color 320ms ease,
    background 420ms ease,
    transform 320ms ease,
    opacity 320ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  background: rgba(174, 158, 107, 0.12);
  color: var(--gold-deep);
}

.nav-link:hover,
.nav-link:focus-visible {
  transform: translateY(-1px);
}

.main-header:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.main-header:not(.is-scrolled) .nav-link:hover,
.main-header:not(.is-scrolled) .nav-link:focus-visible,
.main-header:not(.is-scrolled) .nav-link.is-active {
  background: rgba(174, 158, 107, 0.14);
  color: #d3c08a;
}

.main-header.is-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.main-header.is-scrolled .nav-link:hover,
.main-header.is-scrolled .nav-link:focus-visible,
.main-header.is-scrolled .nav-link.is-active {
  background: rgba(174, 158, 107, 0.14);
  color: #d3c08a;
}

.language-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  transition:
    background var(--header-duration) var(--header-ease),
    border-color var(--header-duration) var(--header-ease),
    box-shadow var(--header-duration) var(--header-ease),
    transform var(--header-duration) var(--header-ease);
}

.language-switch button,
.language-switch a {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  color: var(--muted);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 320ms ease,
    background 420ms ease,
    transform 320ms ease;
}

.language-switch button.is-active,
.language-switch a.is-active {
  color: #fff;
  background: var(--gold);
}

.main-header:not(.is-scrolled) .language-switch {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(174, 158, 107, 0.34);
}

.main-header:not(.is-scrolled) .language-switch button,
.main-header:not(.is-scrolled) .language-switch a {
  color: rgba(255, 255, 255, 0.88);
}

.main-header:not(.is-scrolled) .language-switch button.is-active,
.main-header:not(.is-scrolled) .language-switch a.is-active {
  color: #1f2124;
  background: #f6efe0;
}

.main-header.is-scrolled .language-switch {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(174, 158, 107, 0.42);
}

.main-header.is-scrolled .language-switch button,
.main-header.is-scrolled .language-switch a {
  color: rgba(255, 255, 255, 0.88);
}

.main-header.is-scrolled .language-switch button.is-active,
.main-header.is-scrolled .language-switch a.is-active {
  color: #1f2124;
  background: #f6efe0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.12rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    transform 320ms ease,
    background var(--header-duration) var(--header-ease),
    color var(--header-duration) var(--header-ease),
    box-shadow var(--header-duration) var(--header-ease),
    border-color var(--header-duration) var(--header-ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fffdf8;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 12px 28px rgba(148, 129, 80, 0.26);
}

.main-header:not(.is-scrolled) .button-primary {
  color: #1f2124;
  background: linear-gradient(180deg, #faf6ed, #f2e7d0);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.16);
}

.main-header.is-scrolled .button-primary {
  color: #1f2124;
  background: linear-gradient(180deg, #faf6ed, #f2e7d0);
  box-shadow: 0 12px 24px rgba(17, 17, 17, 0.16);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(17, 17, 17, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.page-shell {
  padding: 42px 0 120px;
}

.vision-section {
  width: 100%;
  padding: var(--chapter-top-space) 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f4ede2, #f3ecdf);
}

.vision-section-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.vision-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--chapter-kicker-gap);
  margin-left: 0;
  padding-left: var(--chapter-left);
}

.vision-kicker-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.vision-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.vision-kicker-dot--gold {
  background: var(--gold);
}

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

.vision-kicker-label {
  color: rgba(63, 58, 50, 0.92);
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.vision-text {
  margin: 0;
  max-width: none;
  width: min(calc(100% - var(--chapter-left) - var(--chapter-right)), 1320px);
  color: #2f2f2f;
  font-size: clamp(1.8rem, 3.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  margin-left: auto;
  margin-right: auto;
}

.vision-text span {
  opacity: 0.14;
  transition: opacity 0.16s ease-out;
}

.story-flip-section {
  width: 100%;
  padding: 0 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f3ecdf, #f5eee4);
}

.story-flip-shell {
  width: 100%;
  margin: 0;
  display: grid;
  gap: var(--chapter-kicker-gap);
}

.story-flip-kicker {
  margin-left: 0;
}

.story-flip-panel {
  position: relative;
  width: min(100% - 40px, 1500px);
  margin: 0 auto;
  overflow: hidden;
  padding: clamp(26px, 3vw, 40px) clamp(26px, 3vw, 40px) clamp(104px, 9vw, 126px);
  border-radius: clamp(28px, 3vw, 38px);
  background:
    radial-gradient(circle at top left, rgba(174, 158, 107, 0.14), transparent 28%),
    radial-gradient(circle at right center, rgba(111, 140, 82, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(36, 39, 43, 0.92), rgba(23, 25, 29, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 28px 58px rgba(16, 17, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.story-flip-overview {
  display: none;
}

.story-flip-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: clamp(24px, 3vw, 34px);
}

.story-flip-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 3vw, 32px);
  z-index: 3;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 14px 28px rgba(8, 9, 12, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transform-origin: center bottom;
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.story-flip-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(174, 158, 107, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 242, 231, 0.9);
  font-size: 1.05rem;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.story-flip-arrow:hover,
.story-flip-arrow:focus-visible {
  background: var(--gold);
  color: #232428;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(174, 158, 107, 0.24);
}

.story-flip-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.story-flip-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 247, 233, 0.18);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.story-flip-dot.is-active {
  background: var(--gold);
  transform: scale(1.14);
  box-shadow: 0 0 0 5px rgba(174, 158, 107, 0.16);
}

.story-flip-stage {
  position: relative;
  min-height: 780px;
}

.story-flip-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(28px) scale(0.992);
  transition:
    opacity 720ms ease,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 980ms;
}

.story-flip-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition:
    opacity 720ms ease,
    transform 980ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.story-flip-slide-title {
  margin: 0 0 clamp(18px, 2vw, 28px);
  color: rgba(249, 243, 235, 0.94);
  text-align: center;
  font-size: clamp(1.45rem, 2.35vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.story-flip-grid {
  display: grid;
  gap: clamp(16px, 1.8vw, 22px);
  grid-template-columns: 1.15fr 1.15fr 1fr;
  grid-template-rows: minmax(260px, 360px) minmax(240px, 320px);
}

.story-flip-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(58, 61, 66, 0.44), rgba(34, 37, 42, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.09);
  min-height: 240px;
  box-shadow:
    0 18px 42px rgba(8, 9, 12, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 340ms ease,
    border-color 340ms ease,
    background 340ms ease;
}

.story-flip-card--wide {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.story-flip-card--tall {
  grid-column: 3;
  grid-row: 1;
}

.story-flip-card--compact {
  grid-column: 1;
  grid-row: 2;
}

.story-flip-card--wide-bottom {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.story-flip-card-title {
  position: absolute;
  top: 18px;
  left: 18px;
  right: auto;
  z-index: 2;
  color: rgba(248, 243, 234, 0.94);
  max-width: min(60%, 290px);
  padding: 8px 12px;
  border-radius: 18px;
  background: rgba(20, 22, 25, 0.46);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(7, 8, 10, 0.22);
  font-size: clamp(0.82rem, 0.98vw, 1.06rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.03em;
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    color 340ms ease,
    background-color 340ms ease,
    box-shadow 340ms ease;
}

.story-flip-image,
.story-flip-placeholder {
  width: 100%;
  height: 100%;
}

.story-flip-image {
  display: block;
  object-fit: cover;
  transform: scale(1);
  filter: saturate(0.98) brightness(0.94);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease;
}

.story-flip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(174, 158, 107, 0.45);
  box-shadow:
    0 28px 58px rgba(8, 9, 12, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(66, 70, 76, 0.48), rgba(36, 40, 46, 0.46));
}

.story-flip-card:hover .story-flip-image {
  transform: scale(1.035);
  filter: saturate(1) brightness(1);
}

.story-flip-card:hover .story-flip-card-title {
  transform: translateY(-2px);
  color: #fffaf0;
  background: rgba(20, 22, 25, 0.6);
  box-shadow: 0 16px 28px rgba(7, 8, 10, 0.3);
}

.story-flip-placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 26px;
  color: rgba(245, 238, 226, 0.82);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(174, 158, 107, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(54, 58, 62, 0.76), rgba(33, 36, 40, 0.82));
}

.story-flip-placeholder-file {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-flip-placeholder-copy {
  font-size: 0.98rem;
}

.story-flip-video-card {
  display: grid;
  min-height: 720px;
  padding: 8px 0 0;
}

.story-flip-video-shell {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(55, 58, 63, 0.76), rgba(29, 32, 37, 0.84));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 42px rgba(8, 9, 12, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 9;
}

.story-flip-video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-consent-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(40, 42, 47, 0.62), rgba(20, 22, 26, 0.76)),
    radial-gradient(circle at top, rgba(174, 158, 107, 0.18), transparent 34%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.video-consent-placeholder-inner {
  width: min(100%, 520px);
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  text-align: center;
  color: rgba(250, 245, 236, 0.96);
  background: rgba(17, 18, 22, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(7, 8, 10, 0.26);
}

.video-consent-placeholder-inner h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.video-consent-placeholder-inner p {
  margin: 0;
  color: rgba(245, 238, 226, 0.84);
  font-size: 0.98rem;
  line-height: 1.65;
}

[data-marketing-video] iframe[data-youtube-video] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

[data-marketing-video].is-consented iframe[data-youtube-video] {
  opacity: 1;
  pointer-events: auto;
}

[data-marketing-video].is-consented .video-consent-placeholder {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.story-flip-replay {
  position: absolute;
  left: 50%;
  bottom: clamp(42px, 5vw, 58px);
  z-index: 4;
  display: flex;
  justify-content: center;
  transform: translateX(-50%);
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 240ms ease;
}

.story-flip-replay .button {
  min-height: 46px;
  padding-inline: 1.2rem;
  white-space: nowrap;
  cursor: pointer;
  color: rgba(255, 248, 232, 0.8);
  background: rgba(25, 27, 31, 0.28);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 26px rgba(8, 9, 12, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0.4;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.story-flip-replay .button:hover,
.story-flip-replay .button:focus-visible {
  opacity: 0.86;
  color: rgba(255, 249, 239, 0.96);
  background: rgba(31, 33, 37, 0.54);
  border-color: rgba(174, 158, 107, 0.34);
  box-shadow:
    0 16px 30px rgba(8, 9, 12, 0.22),
    0 0 0 1px rgba(174, 158, 107, 0.12);
}

[data-story-flip].is-video-playing .story-flip-replay {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
}

[data-story-flip].is-video-playing .story-flip-controls {
  opacity: 0.32;
  transform: translateX(-50%) translateY(8px) scale(0.92);
  background: rgba(18, 20, 23, 0.22);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 10px 18px rgba(8, 9, 12, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

[data-story-flip].is-video-playing .story-flip-controls:hover,
[data-story-flip].is-video-playing .story-flip-controls:focus-within {
  opacity: 0.9;
  transform: translateX(-50%) translateY(0) scale(1);
  background: rgba(24, 26, 30, 0.54);
  border-color: rgba(174, 158, 107, 0.2);
  box-shadow:
    0 16px 28px rgba(8, 9, 12, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.products-intro-section {
  background: linear-gradient(180deg, #f4ede2, #f3ecdf);
}

.products-intro-section .vision-kicker {
  margin-bottom: clamp(18px, 2.1vw, 28px);
}

.approach-platform-section,
.approach-partnership-section,
.approach-esg-section {
  width: 100%;
}

.approach-platform-section {
  padding: var(--chapter-top-space) 0 clamp(44px, 5vw, 72px);
  background: linear-gradient(180deg, #f4ede2, #f3ecdf);
}

.approach-platform-shell,
.approach-partnership-shell,
.approach-esg-shell {
  width: min(100% - 40px, 1500px);
  margin: 0 auto;
}

.approach-platform-shell {
  width: 100%;
  margin: 0;
}

.approach-platform-intro {
  width: min(100% - 40px, 1500px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.approach-platform-title,
.approach-platform-lead {
  width: 100%;
}

.approach-platform-flow {
  width: min(100% - 40px, 1500px);
  margin-left: auto;
  margin-right: auto;
}

.approach-partnership-shell,
.approach-esg-shell {
  width: 100%;
  margin: 0;
}

.approach-partnership-panel,
.approach-esg-head,
.approach-esg-carousel,
.approach-esg-outro {
  width: min(100% - 40px, 1500px);
  margin-left: auto;
  margin-right: auto;
}

.approach-esg-inner {
  width: min(100% - 40px, 1500px);
  margin: 0 auto;
}

.approach-esg-head,
.approach-esg-carousel,
.approach-esg-outro {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.approach-platform-title,
.approach-esg-title {
  margin: 0;
  color: #312f2c;
  font-size: clamp(2.6rem, 4.2vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.approach-platform-lead {
  margin-top: clamp(18px, 2vw, 24px);
  margin-bottom: 0;
  color: #44403a;
  font-size: clamp(1.18rem, 1.6vw, 1.72rem);
  line-height: 1.5;
}

.approach-esg-lead {
  margin-top: clamp(18px, 2vw, 24px);
  margin-bottom: 0;
  width: min(100%, 1260px);
  color: #44403a;
  font-size: clamp(1.18rem, 1.6vw, 1.72rem);
  line-height: 1.5;
}

.approach-platform-flow {
  margin-top: clamp(34px, 4vw, 54px);
  display: grid;
  gap: clamp(26px, 3vw, 38px);
}

.approach-platform-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  align-items: start;
}

.approach-platform-track::before {
  content: "";
  position: absolute;
  top: clamp(58px, 5vw, 72px);
  left: clamp(72px, 6vw, 92px);
  right: clamp(72px, 6vw, 92px);
  height: 1px;
  background: rgba(67, 62, 55, 0.45);
}

.approach-platform-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f2e2a;
  text-align: center;
}

.approach-platform-node-core {
  width: clamp(108px, 8.2vw, 138px);
  height: clamp(108px, 8.2vw, 138px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(97, 80, 56, 0.12);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    background-color 240ms ease;
}

.approach-platform-node-core svg {
  width: 42%;
  height: 42%;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-platform-node-label {
  font-size: clamp(1.22rem, 1.5vw, 1.68rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.approach-platform-node.is-active .approach-platform-node-core {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 250, 242, 1);
  box-shadow: 0 22px 42px rgba(97, 80, 56, 0.16);
}

.approach-platform-node:hover .approach-platform-node-core,
.approach-platform-node:focus-visible .approach-platform-node-core {
  transform: translateY(-1px) scale(1.02);
}

.approach-platform-copy-wrap {
  min-height: 160px;
  display: grid;
  justify-items: center;
}

.approach-platform-copy {
  display: none;
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(24px, 2.8vw, 32px);
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.7);
  border: 1px solid rgba(229, 217, 197, 0.76);
  box-shadow: 0 18px 40px rgba(97, 80, 56, 0.08);
}

.approach-platform-copy.is-active {
  display: grid;
  gap: 12px;
}

.approach-platform-copy h3 {
  margin: 0;
  color: #312f2c;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  line-height: 1.08;
}

.approach-platform-copy p {
  margin: 0;
  color: #666159;
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  line-height: 1.62;
}

.approach-intro-section {
  background: linear-gradient(180deg, #f3ecdf, #f4ede2);
}

.approach-partnership-section {
  padding: 0 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f4ede2, #f5eee4);
}

.approach-partnership-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: clamp(30px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 241, 231, 0.96));
  border: 1px solid rgba(228, 216, 197, 0.8);
  box-shadow: 0 22px 46px rgba(104, 84, 56, 0.1);
}

.approach-partnership-copy {
  display: grid;
  align-items: center;
  padding: clamp(34px, 4.8vw, 76px);
}

.approach-partnership-copy-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.approach-partnership-title {
  margin: 0;
  color: #2f2f2f;
  font-size: clamp(2.2rem, 3.3vw, 3.7rem);
  line-height: 0.99;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.approach-partnership-text {
  margin: 0;
  color: #4a453e;
  font-size: clamp(1.08rem, 1.34vw, 1.34rem);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.approach-partnership-actions {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.approach-partnership-media {
  min-height: 100%;
}

.approach-partnership-image,
.approach-partnership-image--placeholder {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-partnership-image--placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: rgba(74, 63, 53, 0.82);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(174, 158, 107, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(247, 240, 230, 0.94), rgba(239, 231, 219, 0.96));
}

.approach-esg-section {
  padding: 0 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f5eee4, #f4ede2);
}

.approach-esg-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.approach-esg-copy {
  width: min(100%, 920px);
}

.approach-esg-controls {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.approach-esg-arrow {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(65, 60, 54, 0.42);
  background: transparent;
  color: #292724;
  font-size: 2rem;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.approach-esg-arrow:hover,
.approach-esg-arrow:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 251, 245, 0.78);
}

.approach-esg-arrow:disabled {
  opacity: 0.32;
}

.approach-esg-carousel {
  margin-top: clamp(28px, 3vw, 36px);
  overflow: hidden;
}

.approach-esg-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 410px);
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.approach-esg-track::-webkit-scrollbar {
  display: none;
}

.approach-esg-card {
  min-height: 348px;
  padding: 24px 26px 24px;
  display: grid;
  align-content: start;
  gap: 16px;
  border-radius: 28px;
  background: var(--esg-color);
  color: #fffaf0;
  scroll-snap-align: start;
}

.approach-esg-card-number {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #2e2b27;
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.approach-esg-card h3 {
  margin: 0;
  font-size: clamp(1.34rem, 1.45vw, 1.68rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.approach-esg-card p {
  margin: 0;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.42;
}

.approach-esg-outro {
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: #45403a;
  font-size: clamp(1.1rem, 1.34vw, 1.34rem);
  line-height: 1.62;
}

.financing-intro-section {
  padding: var(--chapter-top-space) 0 clamp(40px, 5vw, 64px);
  background: linear-gradient(180deg, #f4ede2, #f5eee4);
}

.financing-intro-shell,
.financing-accordion-shell {
  width: 100%;
  margin: 0;
}

.financing-intro-panel,
.financing-accordion-grid {
  width: min(100% - 40px, 1500px);
  margin-left: auto;
  margin-right: auto;
}

.financing-intro-panel {
  margin-top: clamp(22px, 2.8vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: clamp(30px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 241, 231, 0.96));
  border: 1px solid rgba(228, 216, 197, 0.8);
  box-shadow: 0 22px 46px rgba(104, 84, 56, 0.1);
}

.financing-intro-copy {
  display: grid;
  align-items: center;
  padding: clamp(34px, 4.8vw, 76px);
}

.financing-intro-copy-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.financing-intro-title {
  margin: 0;
  color: #2f2f2f;
  font-size: clamp(2.2rem, 3.3vw, 3.7rem);
  line-height: 0.99;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.financing-intro-list {
  margin: 0;
  padding-left: 1.15em;
  display: grid;
  gap: 18px;
  color: #4a453e;
  font-size: clamp(1.08rem, 1.34vw, 1.34rem);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.financing-intro-media {
  min-height: 100%;
}

.financing-intro-image {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
}

.financing-intro-image--placeholder {
  display: grid;
  place-content: center;
  min-height: 100%;
  gap: 10px;
  padding: 24px;
  color: rgba(74, 63, 53, 0.82);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(174, 158, 107, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(247, 240, 230, 0.94), rgba(239, 231, 219, 0.96));
}

.financing-accordion-section {
  padding: 0 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f5eee4, #f4ede2);
}

.financing-accordion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.financing-accordion-card {
  border-radius: 30px;
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(229, 217, 197, 0.88);
  box-shadow: 0 20px 46px rgba(90, 73, 52, 0.08);
  overflow: hidden;
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.financing-accordion-card.is-open {
  box-shadow: 0 26px 54px rgba(90, 73, 52, 0.12);
  transform: translateY(-2px);
}

.financing-accordion-trigger {
  width: 100%;
  padding: 28px 28px 24px;
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: start;
  border: 0;
  background: transparent;
  color: #2f2d29;
  text-align: left;
  cursor: pointer;
}

.financing-accordion-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.financing-accordion-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.financing-accordion-heading {
  display: block;
  min-height: 4.3em;
  font-size: clamp(1.2rem, 1.45vw, 1.72rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.financing-accordion-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-top: auto;
  color: #9b8d70;
  transition: transform 220ms ease, color 220ms ease;
}

.financing-accordion-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.financing-accordion-card.is-open .financing-accordion-arrow {
  color: var(--gold);
  transform: rotate(180deg);
}

.financing-accordion-panel {
  padding: 0 28px 28px;
}

.financing-accordion-points {
  margin: 0;
  padding-left: 1.15em;
  display: grid;
  gap: 14px;
  color: #666159;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.64;
}

.contact-intro-section {
  background:
    radial-gradient(circle at top right, rgba(174, 158, 107, 0.12), transparent 24%),
    linear-gradient(180deg, #f4ede2, #f2ecdf);
}

.contact-faq-section {
  position: relative;
  padding: clamp(26px, 3vw, 42px) 0 var(--chapter-bottom-space);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 32%),
    radial-gradient(circle at bottom right, rgba(174, 158, 107, 0.12), transparent 28%),
    linear-gradient(180deg, #f2ecdf 0%, #f7f3ea 48%, #fbfaf7 100%);
}

.contact-faq-shell {
  width: min(100% - 40px, 1500px);
  margin: 0 auto;
}

.contact-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(22px, 2.6vw, 34px);
  align-items: start;
}

.contact-faq-main {
  display: grid;
  gap: 22px;
}

.contact-faq-kicker {
  margin-bottom: 0;
  padding-left: 0;
}

.contact-faq-head {
  width: min(100%, 780px);
  display: grid;
  gap: 14px;
}

.contact-faq-title {
  margin: 0;
  color: #24211d;
  font-size: clamp(2.15rem, 3vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.contact-faq-lead {
  margin: 0;
  color: rgba(73, 67, 58, 0.88);
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.76;
}

.contact-faq-list {
  display: grid;
  gap: 14px;
}

.contact-faq-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 250, 243, 0.44));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 22px 54px rgba(84, 68, 47, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px) saturate(120%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-faq-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(174, 158, 107, 0), rgba(174, 158, 107, 0.42), rgba(174, 158, 107, 0));
  opacity: 0.65;
}

.contact-faq-card.is-open {
  transform: translateY(-2px);
  border-color: rgba(174, 158, 107, 0.26);
  box-shadow:
    0 28px 58px rgba(84, 68, 47, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.contact-faq-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 22px;
  border: 0;
  background: transparent;
  color: #26221e;
  text-align: left;
  cursor: pointer;
}

.contact-faq-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.82), rgba(248, 240, 227, 0.78));
  border: 1px solid rgba(174, 158, 107, 0.16);
}

.contact-faq-question {
  display: block;
  font-size: clamp(1.04rem, 1.28vw, 1.34rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.contact-faq-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #9b8d70;
  transition: transform 220ms ease, color 220ms ease;
}

.contact-faq-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-faq-card.is-open .contact-faq-arrow {
  color: var(--gold);
  transform: rotate(180deg);
}

.contact-faq-panel {
  padding: 0 24px 24px 86px;
}

.contact-faq-panel p {
  margin: 0;
  color: rgba(77, 70, 62, 0.92);
  font-size: clamp(0.98rem, 1.04vw, 1.08rem);
  line-height: 1.76;
  text-wrap: pretty;
}

.contact-form-rail {
  position: relative;
  align-self: stretch;
}

.contact-form-card {
  position: sticky;
  top: max(108px, calc(50vh - 296px));
  display: grid;
  gap: 18px;
  padding: clamp(20px, 2.2vw, 28px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(250, 245, 236, 0.58)),
    radial-gradient(circle at top right, rgba(174, 158, 107, 0.12), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 28px 70px rgba(89, 71, 47, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(135%);
}

.contact-form-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-form-topline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d8be75, #ae9e6b);
  box-shadow: 0 0 18px rgba(174, 158, 107, 0.34);
}

.contact-form-topline-label {
  color: rgba(69, 60, 49, 0.88);
  font-family: var(--font-accent);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 700;
}

.contact-form-head {
  display: grid;
  gap: 10px;
}

.contact-form-title {
  margin: 0;
  color: #211d19;
  font-size: clamp(1.7rem, 1.95vw, 2.28rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.contact-form-lead {
  margin: 0;
  color: rgba(76, 68, 58, 0.88);
  font-size: 0.94rem;
  line-height: 1.58;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
}

.contact-form-status {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form-status p {
  margin: 0;
}

.contact-form-status--success {
  color: #214c34;
  background: rgba(228, 244, 233, 0.9);
  border-color: rgba(77, 136, 97, 0.24);
}

.contact-form-status--error {
  color: #7d342d;
  background: rgba(251, 236, 232, 0.92);
  border-color: rgba(171, 86, 76, 0.22);
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.contact-form-field {
  display: grid;
  gap: 6px;
}

.contact-form-field--full {
  grid-column: 1 / -1;
}

.contact-form-field span {
  color: rgba(55, 49, 41, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(174, 158, 107, 0.16);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  color: #25211c;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form-field select {
  appearance: none;
}

.contact-form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgba(107, 95, 81, 0.78);
}

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-color: rgba(174, 158, 107, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 0 0 4px rgba(174, 158, 107, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.contact-form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(75, 67, 57, 0.92);
  font-size: 0.86rem;
  line-height: 1.48;
}

.contact-form-consent input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.contact-form-consent a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.contact-form-actions {
  display: grid;
  gap: 10px;
}

.contact-form-submit {
  width: 100%;
  justify-content: center;
  min-height: 50px;
}

.contact-form-note {
  margin: 0;
  color: rgba(95, 86, 75, 0.84);
  font-size: 0.78rem;
  line-height: 1.42;
}

@media (min-width: 861px) {
  .contact-form-grid > .contact-form-field--full:nth-child(1),
  .contact-form-grid > .contact-form-field--full:nth-child(2) {
    grid-column: auto;
  }
}

@media (min-width: 861px) and (max-height: 900px) {
  .contact-form-card {
    top: 96px;
    gap: 16px;
    padding: 18px 20px;
  }

  .contact-form-title {
    font-size: clamp(1.56rem, 1.8vw, 2.06rem);
  }

  .contact-form-lead {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-form {
    gap: 12px;
  }

  .contact-form-field textarea {
    min-height: 112px;
  }
}

.not-found-spotlight {
  padding: clamp(34px, 5vw, 64px) 0 var(--chapter-bottom-space);
  background:
    radial-gradient(circle at top center, rgba(174, 158, 107, 0.14), transparent 24%),
    linear-gradient(180deg, #f5eee4 0%, #f8f4ec 52%, #fbfaf7 100%);
}

.not-found-spotlight-shell {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  border-radius: clamp(30px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 245, 236, 0.72)),
    radial-gradient(circle at top right, rgba(174, 158, 107, 0.14), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 28px 72px rgba(88, 72, 49, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  text-align: center;
}

.not-found-kicker {
  margin: 0 auto 22px;
  padding-left: 0;
  justify-content: center;
}

.not-found-spotlight-head {
  width: min(100%, 720px);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.not-found-spotlight-code {
  color: rgba(148, 129, 80, 0.18);
  font-size: clamp(4.6rem, 11vw, 8.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.not-found-spotlight-title {
  margin: 0;
  color: #211d19;
  font-size: clamp(2.1rem, 3.2vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.not-found-spotlight-copy {
  margin: 0;
  color: rgba(77, 69, 59, 0.88);
  font-size: clamp(1rem, 1.14vw, 1.12rem);
  line-height: 1.72;
}

.not-found-spotlight-actions {
  width: min(100%, 820px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.not-found-action {
  min-width: 220px;
  justify-content: center;
}

.products-system-section {
  width: 100%;
  padding: clamp(34px, 4vw, 54px) 0 0;
  background: linear-gradient(180deg, #f3ecdf, #f4ede2);
}

.products-system-shell,
.products-detail-pane {
  width: min(100% - 40px, 1500px);
  margin: 0 auto;
}

.products-system-map-frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(600px, 62vw, 820px);
  padding: clamp(18px, 2vw, 22px);
  border-radius: clamp(32px, 3.2vw, 42px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 62px rgba(100, 83, 58, 0.12);
}

.products-system-map-stage {
  position: relative;
}

.products-system-map-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(560px, 58vw, 780px);
  object-fit: cover;
  border-radius: clamp(24px, 2.5vw, 34px);
}

.products-system-map-image--placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: rgba(74, 63, 53, 0.82);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(174, 158, 107, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(247, 240, 230, 0.94), rgba(239, 231, 219, 0.96));
}

.products-system-placeholder-file {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.products-system-placeholder-copy {
  font-size: 0.98rem;
}

.products-system-hotspot {
  position: absolute;
  width: clamp(112px, 9vw, 152px);
  height: clamp(112px, 9vw, 152px);
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.products-system-hotspot--water {
  top: 34%;
  left: 15%;
}

.products-system-hotspot--solar {
  top: 24%;
  right: 18%;
  left: auto;
  transform: translate(50%, -50%);
}

.products-system-hotspot--agriculture {
  left: 41%;
  bottom: 20%;
  top: auto;
  transform: translate(-50%, 50%);
}

.products-system-hotspot-rings,
.products-system-hotspot-rings::before,
.products-system-hotspot-rings::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.products-system-hotspot-rings::before {
  inset: 10px;
}

.products-system-hotspot-rings::after {
  inset: 20px;
}

.products-system-hotspot-core {
  position: absolute;
  inset: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 251, 245, 0.96);
  color: #35322d;
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 36px rgba(63, 55, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    background-color 240ms ease;
}

.products-system-hotspot-core svg {
  width: 48%;
  height: 48%;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-system-hotspot.is-active .products-system-hotspot-core {
  transform: scale(1.05);
  color: var(--gold);
  box-shadow:
    0 22px 40px rgba(63, 55, 42, 0.24),
    0 0 0 10px rgba(255, 255, 255, 0.06);
}

.products-system-hotspot:hover .products-system-hotspot-core,
.products-system-hotspot:focus-visible .products-system-hotspot-core {
  transform: scale(1.02);
  box-shadow:
    0 20px 38px rgba(63, 55, 42, 0.2),
    0 0 0 8px rgba(255, 255, 255, 0.04);
}

.products-system-callout {
  position: absolute;
  width: min(320px, 24vw);
  padding: 22px 24px 20px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 20px 48px rgba(59, 50, 38, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 320ms;
  z-index: 4;
}

.products-system-callout.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s;
}

.products-system-callout--water {
  top: 24%;
  left: 21.5%;
}

.products-system-callout--solar {
  top: 17%;
  right: 24%;
}

.products-system-callout--agriculture {
  left: 46%;
  bottom: 9%;
}

.products-system-callout h3 {
  margin: 0;
  color: #33312d;
  font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.products-system-callout h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 18px;
  background: rgba(63, 58, 50, 0.38);
}

.products-system-callout p {
  margin: 18px 0 0;
  color: #2f2e2a;
  font-size: clamp(1.1rem, 1.45vw, 1.36rem);
  line-height: 1.5;
}

.products-system-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.products-system-tab {
  min-height: 110px;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px solid rgba(63, 58, 50, 0.34);
  background: transparent;
  color: #34322e;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    background-color 240ms ease,
    color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.products-system-tab.is-active {
  background: #2f2e2a;
  color: #fff8ef;
  border-color: #2f2e2a;
  box-shadow: 0 18px 36px rgba(47, 46, 42, 0.16);
}

.products-system-tab:hover,
.products-system-tab:focus-visible {
  border-color: rgba(63, 58, 50, 0.55);
  box-shadow: 0 12px 24px rgba(47, 46, 42, 0.08);
  transform: translateY(-1px);
}

.products-detail-section {
  width: 100%;
  padding: clamp(44px, 5vw, 70px) 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f4ede2, #f5eee4);
}

.products-detail-kicker {
  margin-bottom: var(--chapter-kicker-gap);
}

.products-detail-shell {
  width: 100%;
  margin: 0;
  display: grid;
  gap: var(--chapter-kicker-gap);
}

.products-detail-pane {
  display: none;
  gap: clamp(26px, 3vw, 38px);
}

.products-detail-pane.is-active {
  display: grid;
}

.products-detail-head,
.products-detail-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 3.2vw, 54px);
  align-items: start;
}

.products-detail-copy {
  display: grid;
  align-items: start;
}

.products-detail-copy-inner {
  width: min(100%, 760px);
  margin: 0;
}

.products-detail-title {
  margin: 0;
  color: #2f2f2f;
  font-size: clamp(2.2rem, 3.35vw, 3.45rem);
  line-height: 0.99;
  letter-spacing: -0.05em;
}

.products-detail-points {
  display: grid;
  gap: 24px;
}

.products-detail-point {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.products-detail-point-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.products-detail-point-mark svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-detail-point h3 {
  margin: 0 0 9px;
  color: #32302d;
  font-size: clamp(1.2rem, 1.45vw, 1.62rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.products-detail-point p {
  margin: 0;
  color: #6f6a62;
  font-size: clamp(0.94rem, 1vw, 1.06rem);
  line-height: 1.48;
}

.products-detail-visual {
  display: grid;
  align-items: start;
}

.products-detail-visual-title {
  position: static;
  display: grid;
  gap: 4px;
  width: min(100%, 980px);
  margin: 0 0 0 auto;
  color: #34312d;
  text-align: center;
  line-height: 1;
}

.products-detail-visual-title--mobile {
  display: none;
}

.products-detail-visual-title span {
  display: block;
}

.products-detail-visual-title span:first-child {
  font-size: clamp(1.02rem, 1.18vw, 1.24rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.products-detail-visual-title span:last-child {
  font-size: clamp(1.8rem, 2.45vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.products-detail-visual-surface {
  position: relative;
  width: min(100%, 980px);
  aspect-ratio: 2600 / 2585;
  margin-left: auto;
  overflow: visible;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

img.products-detail-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: none;
  filter: none;
}

.products-detail-visual-image--placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 26px;
  color: rgba(74, 63, 53, 0.82);
  text-align: center;
}

.products-detail-overlay {
  position: absolute;
  z-index: 3;
  width: min(250px, 25%);
  text-align: center;
}

.products-detail-overlay--top {
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
}

.products-detail-overlay--right {
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

.products-detail-overlay--bottom {
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
}

.products-detail-overlay--left {
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

.products-detail-overlay h4 {
  margin: 0 0 8px;
  color: #3b3935;
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.products-detail-overlay p {
  margin: 0;
  color: #666159;
  font-size: clamp(0.78rem, 0.86vw, 0.88rem);
  line-height: 1.34;
}

.transformation-focus-section {
  width: 100%;
  padding: clamp(38px, 5vw, 72px) 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f3ecdf, #f5eee4);
}

.transformation-focus-shell {
  width: min(100% - 40px, 1500px);
  margin: 0 auto;
}

.transformation-focus-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 38px);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 241, 231, 0.96));
  border: 1px solid rgba(228, 216, 197, 0.8);
  box-shadow: 0 22px 46px rgba(104, 84, 56, 0.1);
}

.transformation-focus-copy {
  display: grid;
  align-items: center;
  padding: clamp(34px, 4.8vw, 76px);
}

.transformation-focus-copy-inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.transformation-focus-text {
  margin: 0;
  color: #39352f;
  font-size: clamp(1.08rem, 1.34vw, 1.34rem);
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.transformation-focus-text + .transformation-focus-text {
  margin-top: 1.25rem;
}

.transformation-focus-text--strong {
  font-weight: 700;
  color: #25211d;
}

.transformation-focus-image {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255, 248, 233, 0.22);
}

.transformation-focus-image--placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  color: rgba(74, 63, 53, 0.82);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(174, 158, 107, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(247, 240, 230, 0.94), rgba(239, 231, 219, 0.96));
}

.transformation-focus-placeholder-file {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.transformation-focus-placeholder-copy {
  font-size: 0.98rem;
}

.mission-section {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}

.mission-section-inner {
  width: 100%;
  min-height: 100vh;
}

.mission-card {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.mission-content {
  min-height: 100vh;
  display: grid;
  gap: 28px;
  align-content: start;
  justify-items: start;
  padding:
    var(--chapter-top-space)
    clamp(28px, 5vw, 64px)
    var(--chapter-bottom-space);
  background: linear-gradient(180deg, rgba(181, 160, 101, 0.99), rgba(166, 145, 88, 0.97));
}

.mission-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: auto;
  margin-left: 0;
  margin-bottom: var(--chapter-kicker-gap);
}

.mission-kicker-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mission-kicker-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.mission-kicker-dot--brown {
  background: #6c5238;
}

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

.mission-kicker-label {
  color: rgba(255, 248, 233, 0.96);
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.mission-copy {
  margin: 0;
  width: min(100%, 720px);
  max-width: 24ch;
  color: #fff9ee;
  font-size: clamp(1.7rem, 2.45vw, 2.65rem);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -0.025em;
  margin-left: auto;
  margin-right: auto;
}

.mission-media {
  min-height: 100vh;
}

.mission-image {
  display: block;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  object-fit: cover;
  border-radius: 0;
  background: rgba(255, 248, 233, 0.18);
}

.mission-image--placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  min-height: 100vh;
  padding: 24px;
  border: 0;
  color: rgba(255, 248, 233, 0.88);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(126, 97, 61, 0.26), rgba(115, 143, 99, 0.18)),
    linear-gradient(135deg, rgba(39, 38, 36, 0.92), rgba(68, 65, 58, 0.88));
}

.mission-placeholder-file {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mission-placeholder-copy {
  font-size: 1rem;
}

.mission-actions {
  display: flex;
  justify-content: center;
  width: min(100%, 720px);
  margin-top: clamp(24px, 3vw, 42px);
  margin-left: auto;
  margin-right: auto;
}

.mission-cta {
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(247, 238, 218, 0.98));
  color: #2e2a22;
  box-shadow: 0 16px 32px rgba(82, 57, 18, 0.18);
  white-space: nowrap;
}

.diagram-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--chapter-top-space) 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f4ede2, #f6efe6);
}

.diagram-section-inner {
  width: 100%;
  margin: 0 auto;
}

.diagram-kicker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--chapter-kicker-gap);
  padding-left: var(--chapter-left);
}

.diagram-kicker-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.diagram-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.diagram-kicker-dot--gold {
  background: var(--gold);
}

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

.diagram-kicker-label {
  color: rgba(63, 58, 50, 0.92);
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.diagram-wheel {
  --diagram-radius: 340px;
  position: relative;
  width: 100%;
  min-height: min(100vh, 1100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.diagram-wheel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--diagram-radius) * 2);
  height: calc(var(--diagram-radius) * 2);
  border-radius: 50%;
  border: 1.6px solid rgba(174, 158, 107, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.diagram-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.diagram-bg-shape--one {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: #e8dbce;
}

.diagram-bg-shape--two {
  right: -10%;
  bottom: -20%;
  width: 70vw;
  height: 70vw;
  background: #f0e6dd;
}

.diagram-bg-shape--three {
  top: 40%;
  left: 60%;
  width: 40vw;
  height: 40vw;
  background: #dfd1c4;
}

.diagram-center-group {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.diagram-progress-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
  z-index: 21;
}

.diagram-ring-bg {
  fill: none;
  stroke: rgba(174, 158, 107, 0.15);
  stroke-width: 1.5;
}

.diagram-ring-progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.diagram-center-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(139, 125, 113, 0.25);
  border: 6px solid rgba(255, 255, 255, 0.7);
  background: #e3d5c8;
  z-index: 20;
}

.diagram-center-photo--placeholder {
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 26px;
  color: rgba(74, 63, 53, 0.88);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(240, 229, 218, 0.7));
}

.diagram-placeholder-file {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.diagram-placeholder-copy {
  font-size: 0.95rem;
}

.diagram-card {
  --diagram-card-indent: 49px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 264px;
  min-height: 198px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(249, 244, 236, 0.72));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(163, 150, 139, 0.14);
  border-radius: 32px;
  padding: 22px 22px 20px;
  box-sizing: border-box;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  z-index: 15;
  transition:
    transform 2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1s ease-in-out 0.3s,
    background 1s ease,
    box-shadow 1s ease,
    border-color 1s ease,
    visibility 0s;
}

.diagram-card.is-active {
  z-index: 30;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(249, 244, 236, 0.84));
  box-shadow: 0 24px 56px rgba(139, 125, 113, 0.2);
  border-color: rgba(255, 255, 255, 0.92);
}

.diagram-card-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.diagram-card-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1 1 auto;
}

.diagram-card-index {
  color: rgba(104, 84, 56, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.diagram-card-icon {
  display: flex;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 243, 233, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.diagram-card-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.diagram-card h3 {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.92rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: none;
}

.diagram-card p {
  margin: 0;
  color: var(--text-muted);
  width: calc(100% - var(--diagram-card-indent));
  max-width: none;
  padding-left: var(--diagram-card-indent);
  font-size: 0.78rem;
  line-height: 1.42;
  font-weight: 500;
}

.diagram-skip-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(174, 158, 107, 0.6);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 25;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  animation: diagram-pulse-ring 2.5s infinite;
}

.diagram-skip-btn:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translate(-50%, -50%) scale(1.15);
  border-color: var(--gold);
  animation: none;
  box-shadow: 0 8px 25px rgba(174, 158, 107, 0.3);
}

.diagram-skip-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.diagram-skip-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes diagram-pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(174, 158, 107, 0.5);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 0 0 15px rgba(174, 158, 107, 0);
  }

  100% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(174, 158, 107, 0);
  }
}

.home-video-section {
  width: 100%;
  padding: var(--chapter-top-space) 0 var(--chapter-bottom-space);
  background: linear-gradient(180deg, #f6efe6, #f4ede2);
}

.home-video-section-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-video-kicker {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--chapter-kicker-gap);
  padding-left: var(--chapter-left);
}

.home-video-kicker-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-video-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.home-video-kicker-dot--gold {
  background: var(--gold);
}

.home-video-kicker-dot--green {
  background: var(--green-accent);
}

.home-video-kicker-label {
  color: rgba(63, 58, 50, 0.92);
  font-family: var(--font-accent);
  font-size: clamp(1.45rem, 1.8vw, 1.9rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.home-video-frame {
  width: min(100% - 40px, 1180px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 242, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 34px;
  padding: clamp(14px, 1.8vw, 20px);
  box-shadow:
    0 28px 60px rgba(126, 108, 76, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.home-video-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  aspect-ratio: 16 / 9;
}

.home-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-video-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.site-cta-section {
  width: 100%;
  padding: 0 0 clamp(42px, 5vw, 72px);
  background: linear-gradient(180deg, #f4ede2, #f4ede2);
}

.site-cta-shell {
  width: min(100% - 24px, 1880px);
  margin: 0 auto;
}

.site-cta-banner {
  position: relative;
  min-height: clamp(380px, 42vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: clamp(32px, 4vw, 44px);
  background-color: #cdc4b5;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 26px 54px rgba(88, 73, 46, 0.16);
}

.site-cta-content {
  position: relative;
  z-index: 1;
  width: min(100% - 56px, 1080px);
  padding: clamp(34px, 4.6vw, 64px);
  display: grid;
  gap: clamp(22px, 2.8vw, 34px);
  justify-items: center;
  text-align: center;
}

.site-cta-title {
  margin: 0;
  max-width: 20ch;
  color: #fffaf0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.site-cta-button {
  width: fit-content;
  background: rgba(255, 248, 238, 0.96);
  color: #2e2b26;
  box-shadow: 0 18px 32px rgba(34, 29, 20, 0.14);
}

.site-cta-button:hover {
  background: #fffaf2;
}

.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: #1f2124;
}

.hero-banner-media,
.hero-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-banner-media {
  object-fit: cover;
}

.hero-banner-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
}

.hero-banner-image--plain {
  background:
    radial-gradient(circle at top right, rgba(174, 158, 107, 0.3), transparent 24%),
    linear-gradient(145deg, rgba(249, 243, 231, 0.98), rgba(236, 226, 208, 0.96));
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.26), rgba(20, 19, 17, 0.52) 45%, rgba(20, 19, 17, 0.72)),
    linear-gradient(90deg, rgba(20, 19, 17, 0.54), rgba(20, 19, 17, 0.08));
  z-index: 1;
}

.hero-banner--plain .hero-banner-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(244, 236, 221, 0.2)),
    linear-gradient(90deg, rgba(255, 252, 245, 0.7), rgba(255, 252, 245, 0.28));
}

.hero-banner-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 128px;
  padding-bottom: clamp(42px, 6vw, 64px);
}

.hero-banner-content {
  width: min(100%, 860px);
  transform: translateY(-5vh);
}

.hero-banner-content--subpage {
  width: min(100%, 920px);
}

.hero-banner .eyebrow {
  color: rgba(255, 247, 233, 0.86);
}

.hero-banner .eyebrow::before {
  background: currentColor;
}

.hero-banner--plain .eyebrow {
  color: var(--gold-deep);
}

.hero-banner-title {
  margin: 0;
  max-width: 10ch;
  color: #fffaf0;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero-banner-title--home {
  display: grid;
  gap: 0.06em;
  max-width: 12ch;
}

.hero-banner-title--stacked {
  display: grid;
  gap: 0.08em;
}

.hero-banner-title--subpage {
  max-width: 12ch;
}

.hero-banner-title--subpage-single {
  max-width: 12ch;
}

.hero-banner-title-accent {
  color: #d8be82;
}

.hero-banner--plain .hero-banner-title {
  color: var(--text);
}

.hero-banner-subtitle {
  margin: 22px 0 0;
  max-width: 60ch;
  color: rgba(255, 247, 233, 0.84);
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.75;
}

.hero-banner-subtitle--home {
  max-width: 44ch;
  font-size: clamp(1.04rem, 1.4vw, 1.3rem);
}

.hero-banner--plain .hero-banner-subtitle {
  color: var(--muted-strong);
}

.hero-actions--banner {
  margin-top: 30px;
}

.button-primary-light {
  border-color: rgba(255, 251, 245, 0.38);
  color: #2b2b2b;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(243, 235, 220, 0.96));
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.hero-home-cta {
  position: relative;
  z-index: 2;
  min-height: 58px;
  padding-inline: 1.5rem;
}

.button-primary-light:hover,
.button-primary-light:focus-visible {
  transform: translateY(-1px);
}

.button-primary-light::after {
  content: "\2192";
  margin-left: 0.6rem;
  font-size: 1.05em;
}

.hero-banner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-banner-points li {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 247, 233, 0.82);
  font-size: 0.92rem;
  line-height: 1.4;
  backdrop-filter: blur(12px);
}

.hero-banner--plain .hero-banner-points li {
  border-color: rgba(174, 158, 107, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted-strong);
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: clamp(26px, 5vw, 42px);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 247, 233, 0.94);
  transform: translateX(-50%);
}

.hero-scroll-indicator-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: hero-scroll-bob 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-bob {
  0%,
  100% {
    transform: rotate(45deg) translate(0, 0);
    opacity: 0.72;
  }

  50% {
    transform: rotate(45deg) translate(6px, 6px);
    opacity: 1;
  }
}

.legal-hero {
  padding: 168px 0 12px;
}

.legal-hero-title {
  margin: 0;
  max-width: 12ch;
  color: var(--text);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legal-document {
  padding: 28px 0 8px;
}

.legal-document-kicker {
  margin-bottom: clamp(28px, 4vw, 42px);
  padding-left: 0;
}

.legal-document-body {
  width: min(100%, 980px);
  display: grid;
}

.legal-document-section {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  padding: clamp(26px, 3.4vw, 34px) 0;
  border-top: 1px solid rgba(174, 158, 107, 0.22);
}

.legal-document-section:last-child {
  border-bottom: 1px solid rgba(174, 158, 107, 0.22);
}

.legal-document-index {
  color: rgba(148, 129, 80, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 0.45rem;
}

.legal-document-content {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.legal-document-title {
  margin: 0;
  color: #1f1b17;
  font-size: clamp(1.55rem, 2.1vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.legal-document-facts {
  margin: 0;
  display: grid;
  gap: 18px;
}

.legal-document-fact {
  display: grid;
  gap: 6px;
}

.legal-document-fact dt {
  color: rgba(79, 67, 49, 0.94);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-document-fact dd,
.legal-document-copy {
  margin: 0;
  color: rgba(56, 49, 41, 0.92);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.76;
}

.legal-document-copy--compact {
  line-height: 1.6;
}

.legal-document-fact dd p {
  margin: 0 0 14px;
}

.legal-document-fact dd p:last-child {
  margin-bottom: 0;
}

.legal-document-fact a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.legal-document-list {
  margin: 0;
  padding-left: 1.15em;
  display: grid;
  gap: 8px;
  color: rgba(56, 49, 41, 0.92);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.7;
}

.privacy-policy {
  padding: 28px 0 8px;
}

.privacy-policy-intro {
  width: min(100%, 980px);
  margin-bottom: 34px;
  color: rgba(56, 49, 41, 0.92);
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.76;
}

.privacy-policy-intro p {
  margin: 0;
}

.privacy-policy-toc {
  width: min(100%, 980px);
  margin-bottom: 32px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(174, 158, 107, 0.22);
  border-bottom: 1px solid rgba(174, 158, 107, 0.22);
}

.privacy-policy-toc-title {
  margin: 0 0 18px;
  color: #201b17;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.privacy-policy-toc-list {
  display: grid;
  gap: 8px;
}

.privacy-policy-toc-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(62, 55, 47, 0.92);
  font-size: 0.98rem;
  line-height: 1.55;
}

.privacy-policy-toc-link:hover,
.privacy-policy-toc-link:focus-visible {
  color: var(--gold-deep);
}

.privacy-policy-toc-link--level-1 {
  padding-left: 20px;
}

.privacy-policy-toc-link--level-2 {
  padding-left: 40px;
}

.privacy-policy-toc-number {
  color: rgba(148, 129, 80, 0.92);
  font-weight: 700;
}

.privacy-policy-accordion {
  width: min(100%, 980px);
  display: grid;
  gap: 14px;
}

.privacy-policy-card {
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 243, 235, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 54px rgba(84, 68, 47, 0.08);
  overflow: hidden;
  scroll-margin-top: 120px;
}

.privacy-policy-card.is-open {
  box-shadow: 0 28px 62px rgba(84, 68, 47, 0.1);
}

.privacy-policy-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: #221d19;
  text-align: left;
  cursor: pointer;
}

.privacy-policy-trigger-meta {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.privacy-policy-trigger-number {
  color: rgba(148, 129, 80, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-policy-trigger-title {
  display: block;
  font-size: clamp(1.06rem, 1.26vw, 1.32rem);
  line-height: 1.38;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.privacy-policy-trigger-arrow {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  color: #9b8d70;
  transition: transform 220ms ease, color 220ms ease;
}

.privacy-policy-trigger-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-policy-card.is-open .privacy-policy-trigger-arrow {
  color: var(--gold);
  transform: rotate(180deg);
}

.privacy-policy-panel {
  padding: 0 24px 24px;
  color: rgba(56, 49, 41, 0.92);
  font-size: clamp(1rem, 1.04vw, 1.06rem);
  line-height: 1.76;
}

.privacy-policy-panel p {
  margin: 0 0 14px;
}

.privacy-policy-panel p:last-child {
  margin-bottom: 0;
}

.privacy-policy-panel a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.privacy-policy-list {
  margin: 0 0 16px;
  padding-left: 1.15em;
  display: grid;
  gap: 10px;
}

.privacy-policy-list:last-child {
  margin-bottom: 0;
}

.privacy-policy-emphasis {
  color: #3c342b;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.privacy-policy-cookie-declaration {
  margin-top: 22px;
  overflow-x: auto;
}

.privacy-policy-cookie-declaration table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.privacy-policy-cookie-declaration th,
.privacy-policy-cookie-declaration td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(174, 158, 107, 0.18);
  text-align: left;
  vertical-align: top;
}

.privacy-policy-cookie-declaration th {
  color: #2e2821;
  font-size: 0.92rem;
}

.privacy-policy-cookie-declaration td {
  color: rgba(62, 54, 45, 0.9);
  font-size: 0.95rem;
}

.hero,
.section,
.highlight,
.footer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero,
.section,
.highlight {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.74), rgba(247, 239, 228, 0.82));
}

.hero,
.section,
.highlight,
.footer-card {
  padding: clamp(24px, 4vw, 44px);
}

.hero::after,
.highlight::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 158, 107, 0.18), transparent 62%);
}

.hero-grid,
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.8fr);
}

.eyebrow,
.card-label {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.highlight-title,
.footer-title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 10.5ch;
}

.section-title,
.highlight-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  max-width: 15ch;
}

.hero-copy {
  max-width: 58ch;
  line-height: 1.7;
  margin: 22px 0 0;
}

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

.hero-actions {
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-panel,
.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.feature-list li {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  color: var(--muted);
}

.section {
  margin-top: 28px;
}

.section-layout,
.highlight-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(120px, var(--section-rail)) minmax(0, 1fr);
}

.section-body {
  width: min(100%, var(--content-max));
}

.section-rail {
  padding-top: 6px;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 860px;
}

.card-grid,
.footer-links {
  display: grid;
  gap: 16px;
}

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

.card-title {
  margin: 14px 0 10px;
  font-size: 1.18rem;
}

.card-copy,
.highlight-copy,
.section-copy,
.footer-copy {
  line-height: 1.7;
}

.highlight {
  margin-top: 28px;
}

.highlight-body {
  width: min(100%, 720px);
}

.site-footer {
  margin-top: 0;
  padding-top: 72px;
  background: linear-gradient(180deg, rgba(47, 46, 43, 0.99), rgba(39, 38, 36, 0.99));
  color: rgba(255, 255, 255, 0.9);
}

.site-footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) 32px 24px;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(460px, 1.2fr) minmax(0, 1.2fr);
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 100%;
  min-width: 0;
  padding-right: clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  max-width: 360px;
}

.footer-logo {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.footer-claim {
  margin: 0;
  max-width: 28ch;
  color: var(--gold);
  font-size: clamp(1.5rem, 2.35vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 14px 28px rgba(9, 10, 12, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  color: #1f1d1a;
  background: linear-gradient(180deg, rgba(216, 194, 131, 0.98), rgba(174, 158, 107, 0.96));
  border-color: rgba(216, 194, 131, 0.8);
  box-shadow:
    0 18px 30px rgba(174, 158, 107, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.footer-nav-block {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-left: clamp(4px, 1vw, 12px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-heading {
  margin: 0;
  color: var(--gold);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-links {
  gap: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.78);
  padding: 0.16rem 0;
  font-size: 1.02rem;
  line-height: 1.5;
  transition: color 240ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--gold);
}

.footer-link--strong {
  color: #fff8ea;
  font-weight: 400;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-note {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 480ms ease;
}

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

@media (max-width: 1260px) {
  .site-header {
    grid-template-columns: minmax(140px, max-content) 1fr auto;
  }

  .header-actions-desktop {
    display: none;
  }

  .header-end {
    gap: 0;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    color: rgba(255, 248, 232, 0.96);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(174, 158, 107, 0.12));
    border: 1px solid rgba(174, 158, 107, 0.24);
    box-shadow:
      0 10px 22px rgba(10, 10, 10, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 14px;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(37, 39, 43, 0.98), rgba(24, 26, 30, 0.96)),
      radial-gradient(circle at top right, rgba(174, 158, 107, 0.12), transparent 34%);
    border: 1px solid rgba(174, 158, 107, 0.18);
    box-shadow:
      0 22px 40px rgba(8, 9, 12, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    white-space: normal;
  }

  .nav-link,
  .main-header:not(.is-scrolled) .nav-link,
  .main-header.is-scrolled .nav-link {
    justify-content: flex-start;
    padding: 0.92rem 1rem;
    border-radius: 18px;
    color: rgba(248, 242, 231, 0.92);
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.is-active,
  .main-header:not(.is-scrolled) .nav-link:hover,
  .main-header:not(.is-scrolled) .nav-link:focus-visible,
  .main-header:not(.is-scrolled) .nav-link.is-active,
  .main-header.is-scrolled .nav-link:hover,
  .main-header.is-scrolled .nav-link:focus-visible,
  .main-header.is-scrolled .nav-link.is-active {
    background: rgba(174, 158, 107, 0.18);
    color: #f5d998;
  }

  .header-actions-mobile {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
    margin-top: 10px;
    padding: 14px 6px 4px;
  }

  .header-actions-mobile .language-switch,
  .main-header:not(.is-scrolled) .header-actions-mobile .language-switch,
  .main-header.is-scrolled .header-actions-mobile .language-switch {
    width: fit-content;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(174, 158, 107, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  }

  .header-actions-mobile .language-switch a,
  .main-header:not(.is-scrolled) .header-actions-mobile .language-switch a,
  .main-header.is-scrolled .header-actions-mobile .language-switch a {
    color: rgba(248, 242, 231, 0.86);
  }

  .header-actions-mobile .language-switch a.is-active,
  .main-header:not(.is-scrolled) .header-actions-mobile .language-switch a.is-active,
  .main-header.is-scrolled .header-actions-mobile .language-switch a.is-active {
    color: #1f2124;
    background: #f5e7c2;
  }

  .header-actions-mobile .button,
  .header-actions-mobile .button-primary,
  .main-header:not(.is-scrolled) .header-actions-mobile .button-primary,
  .main-header.is-scrolled .header-actions-mobile .button-primary {
    width: 100%;
    justify-content: center;
    color: #fffdf8;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    box-shadow: 0 12px 28px rgba(148, 129, 80, 0.24);
  }

  .hero-grid,
  .card-grid,
  .section-layout,
  .highlight-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-brand-block {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-nav-block {
    padding-left: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .diagram-wheel {
    --diagram-radius: 260px;
  }

  .diagram-center-group {
    width: 240px;
    height: 240px;
  }

  .diagram-center-photo {
    width: 200px;
    height: 200px;
  }

  .diagram-card {
    --diagram-card-indent: 46px;
    width: 228px;
    min-height: 180px;
    padding: 18px 18px 16px;
    border-radius: 28px;
  }

  .diagram-card-header {
    gap: 8px;
    margin-bottom: 10px;
  }

  .diagram-card-index {
    font-size: 0.72rem;
  }

  .diagram-card h3 {
    font-size: 0.84rem;
  }

  .diagram-card p {
    width: calc(100% - var(--diagram-card-indent));
    padding-left: var(--diagram-card-indent);
    font-size: 0.72rem;
  }

  .diagram-card-icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .diagram-card-icon svg {
    width: 12px;
    height: 12px;
  }

  .mission-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .mission-copy {
    max-width: 28ch;
  }

  .mission-media {
    order: 2;
    min-height: 52vh;
  }

  .mission-actions {
    order: 3;
    width: 100%;
  }

  .section-rail {
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --chapter-left: 18px;
    --chapter-right: 18px;
    --chapter-top-space: clamp(74px, 10vw, 108px);
    --chapter-bottom-space: clamp(62px, 9vw, 92px);
    --chapter-kicker-gap: 24px;
  }

  .site-shell {
    padding: 0 18px;
  }

  .header-wrap {
    padding: 0 12px;
  }

  .main-header.is-scrolled .header-wrap {
    width: 100%;
    padding: 12px 12px 0;
  }

  .site-header,
  .main-header.is-scrolled .site-header {
    width: 100%;
    grid-template-columns: 1fr auto;
    padding: 14px 16px 12px;
    border-radius: 0 0 24px 24px;
    border-color: rgba(174, 158, 107, 0.22);
    background: linear-gradient(180deg, rgba(35, 37, 40, 0.94), rgba(29, 31, 34, 0.92));
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.18);
    backdrop-filter: blur(18px);
  }

  .main-header.is-scrolled .site-header {
    border-radius: 28px;
    border-color: rgba(174, 158, 107, 0.28);
    background: linear-gradient(180deg, rgba(35, 37, 40, 0.94), rgba(29, 31, 34, 0.92));
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.2);
    transform: translateY(0) scale(1);
  }

  .brand-logo {
    height: 32px;
  }

  .nav {
    padding-top: 12px;
  }

  .nav-list {
    padding: 9px;
    border-radius: 22px;
  }

  .nav-link,
  .main-header:not(.is-scrolled) .nav-link,
  .main-header.is-scrolled .nav-link {
    font-size: 0.9rem;
    padding: 0.88rem 0.94rem;
  }

  .header-actions-mobile {
    gap: 10px;
    padding: 12px 4px 2px;
  }

  .page-shell {
    padding-top: 32px;
  }

  .site-cta-shell {
    width: calc(100% - 24px);
  }

  .site-cta-banner {
    min-height: 420px;
  }

  .site-cta-content {
    width: calc(100% - 36px);
    padding: 28px 12px;
  }

  .site-cta-title {
    font-size: clamp(2.3rem, 9vw, 3.6rem);
    max-width: 18ch;
    line-height: 1.02;
  }

  .site-cta-button {
    min-height: 50px;
  }

  .story-flip-shell {
    width: 100%;
  }

  .story-flip-kicker {
    margin-left: 0;
  }

  .story-flip-panel {
      width: calc(100% - 24px);
      padding: 22px;
    }

  .approach-platform-shell,
  .approach-partnership-shell,
  .approach-esg-shell {
      width: calc(100% - 24px);
    }

  .approach-platform-shell {
      width: 100%;
    }

  .approach-platform-title,
  .approach-platform-lead {
      width: 100%;
    }

  .approach-platform-intro {
      width: calc(100% - 24px);
    }

  .approach-platform-flow {
      width: calc(100% - 24px);
    }

  .approach-partnership-shell,
  .approach-esg-shell {
      width: 100%;
    }

  .approach-partnership-panel,
  .approach-esg-head,
  .approach-esg-carousel,
  .approach-esg-outro {
      width: calc(100% - 24px);
    }

  .approach-esg-inner {
      width: calc(100% - 24px);
      margin: 0 auto;
    }

  .approach-esg-head,
  .approach-esg-carousel,
  .approach-esg-outro {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

  .approach-platform-track {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      grid-template-columns: none;
      grid-auto-flow: column;
      grid-auto-columns: 128px;
      gap: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 4px 10px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
    }

  .approach-platform-track::-webkit-scrollbar {
      display: none;
    }

  .approach-platform-track::before {
      left: 68px;
      right: 68px;
    }

  .financing-intro-panel,
  .financing-accordion-grid {
      width: calc(100% - 24px);
    }

  .financing-intro-panel {
      grid-template-columns: 1fr;
      gap: 28px;
    }

  .financing-intro-copy {
      padding: 30px 26px 12px;
    }

  .financing-intro-title {
      font-size: clamp(2.4rem, 7vw, 3.8rem);
    }

  .financing-intro-list {
      font-size: 1.1rem;
      gap: 16px;
    }

  .financing-accordion-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

  .contact-faq-shell {
      width: calc(100% - 24px);
    }

  .not-found-spotlight-shell {
      width: calc(100% - 24px);
    }

  .contact-faq-layout {
      grid-template-columns: 1fr;
    }

  .contact-form-card {
      position: static;
    }

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

  .contact-faq-panel {
      padding-left: 24px;
    }

  .financing-accordion-trigger,
  .financing-accordion-panel {
      padding-left: 22px;
      padding-right: 22px;
    }

  .approach-platform-node {
      scroll-snap-align: start;
    }

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

  .approach-partnership-copy {
      padding: 26px 22px 20px;
    }

  .approach-partnership-copy-inner {
      width: min(100%, 820px);
    }

  .approach-partnership-image,
  .approach-partnership-image--placeholder {
      min-height: 360px;
      height: 360px;
    }

  .approach-esg-head {
      align-items: start;
      flex-direction: column;
    }

  .approach-esg-controls {
      align-self: flex-end;
    }

  .approach-esg-arrow {
      width: 72px;
      height: 72px;
      font-size: 1.55rem;
    }

  .approach-esg-track {
      grid-auto-columns: minmax(320px, 360px);
      gap: 18px;
    }

  .approach-esg-card {
      min-height: 320px;
      padding: 20px 22px 22px;
    }

  .approach-esg-card-number {
      width: 94px;
      height: 94px;
      font-size: 2.3rem;
    }

  .story-flip-head {
    justify-content: center;
  }

  .story-flip-controls {
    justify-content: space-between;
  }

  .story-flip-stage {
    min-height: 920px;
  }

  .story-flip-video-card {
    min-height: 0;
  }

  .story-flip-replay {
    bottom: 110px;
  }

  .story-flip-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(220px, auto));
  }

  .products-system-shell,
  .products-detail-pane {
    width: calc(100% - 24px);
  }

  .products-system-map-frame {
      min-height: 520px;
      padding: 14px;
    }

  .products-system-callout {
      width: min(280px, 34vw);
      padding: 16px 18px 14px;
    }

  .products-system-tabs {
      gap: 12px;
    }

  .products-system-tab {
    min-height: 88px;
    font-size: 1.18rem;
    line-height: 1.2;
  }

  .products-detail-pane {
    gap: 22px;
  }

  .products-detail-head,
  .products-detail-body {
      grid-template-columns: 1fr;
    }

  .products-detail-body {
      gap: 24px;
    }

  .products-detail-copy-inner {
      width: min(100%, 920px);
    }

  .products-detail-visual-surface {
      width: min(100%, 760px);
      aspect-ratio: auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-areas:
        "image image"
        "top right"
        "left bottom";
      gap: 14px;
      align-items: start;
    }

  img.products-detail-visual-image,
  .products-detail-visual-image--placeholder {
      position: relative;
      inset: auto;
      grid-area: image;
      width: 100%;
      height: auto;
      aspect-ratio: 2600 / 2585;
      object-fit: contain;
    }

  .products-detail-overlay {
      position: relative;
      width: 100%;
      min-height: 100%;
      padding: 14px 14px 12px;
      border-radius: 18px;
      background: rgba(255, 251, 245, 0.7);
      border: 1px solid rgba(214, 199, 175, 0.52);
      box-shadow: 0 12px 24px rgba(102, 84, 58, 0.08);
      transform: none;
      text-align: left;
    }

  .products-detail-overlay p {
      font-size: 0.82rem;
      line-height: 1.38;
    }

  .products-detail-overlay--top {
      grid-area: top;
      top: auto;
      left: auto;
    }

  .products-detail-overlay--right {
      grid-area: right;
      top: auto;
      right: auto;
    }

  .products-detail-overlay--bottom {
      grid-area: bottom;
      bottom: auto;
      left: auto;
    }

  .products-detail-overlay--left {
      grid-area: left;
      top: auto;
      left: auto;
    }

  .transformation-focus-shell {
    width: calc(100% - 24px);
  }

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

  .transformation-focus-copy {
    padding: 26px 22px 18px;
  }

  .transformation-focus-copy-inner {
    width: min(100%, 820px);
  }

  .transformation-focus-image,
  .transformation-focus-image--placeholder {
    min-height: 360px;
    height: 360px;
  }

  .story-flip-card--wide,
  .story-flip-card--wide-bottom {
    grid-column: 1 / -1;
  }

  .story-flip-card--tall,
  .story-flip-card--compact {
    grid-column: span 1;
  }

  .story-flip-card--wide {
    grid-row: 1;
  }

  .story-flip-card--tall {
    grid-row: 2;
  }

  .story-flip-card--compact {
    grid-row: 2;
  }

  .story-flip-card--wide-bottom {
    grid-row: 3;
  }

  .vision-section-inner {
    padding: 0;
  }

  .mission-section-inner {
    min-height: auto;
    padding: 0;
  }

  .diagram-section,
  .home-video-section,
  .vision-section {
    padding: var(--chapter-top-space) 0 var(--chapter-bottom-space);
  }

  .diagram-kicker {
    padding-left: 18px;
  }

  .home-video-kicker {
    padding-left: 18px;
  }

  .diagram-wheel {
    --diagram-radius: 190px;
    min-height: 860px;
  }

  .diagram-center-group {
    width: 170px;
    height: 170px;
  }

  .diagram-center-photo {
    width: 140px;
    height: 140px;
    border-width: 4px;
  }

  .diagram-card {
    --diagram-card-indent: 39px;
    width: 180px;
    min-height: 144px;
    padding: 13px 13px 12px;
    border-radius: 24px;
  }

  .diagram-card-header {
    gap: 7px;
    margin-bottom: 8px;
  }

  .diagram-card-index {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .diagram-card h3 {
    font-size: 0.7rem;
  }

  .diagram-card p {
    width: calc(100% - var(--diagram-card-indent));
    padding-left: var(--diagram-card-indent);
    font-size: 0.62rem;
    line-height: 1.4;
  }

  .diagram-card-icon {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .diagram-card-icon svg {
    width: 11px;
    height: 11px;
  }

  .diagram-skip-btn {
    width: 50px;
    height: 50px;
  }

  .diagram-skip-btn svg {
    width: 20px;
    height: 20px;
  }

  .vision-kicker {
    margin-bottom: 24px;
    padding-left: 18px;
  }

  .mission-kicker,
  .diagram-kicker,
  .home-video-kicker {
    margin-bottom: 24px;
  }

  .vision-kicker-label {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .diagram-kicker-label,
  .home-video-kicker-label,
  .mission-kicker-label {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .vision-text {
    max-width: none;
    width: calc(100% - 36px);
    font-size: clamp(1.55rem, 5.4vw, 2.2rem);
    line-height: 1.28;
  }

  .mission-card {
    gap: 24px;
    min-height: auto;
  }

  .mission-copy {
    max-width: none;
    font-size: clamp(1.2rem, 5vw, 1.65rem);
    line-height: 1.5;
  }

  .mission-content {
    min-height: auto;
    padding: var(--chapter-top-space) 18px var(--chapter-bottom-space);
  }

  .mission-image,
  .mission-image--placeholder {
    min-height: 320px;
    height: 320px;
    border-radius: 0;
  }

  .site-footer-inner {
    padding-inline: 18px;
    gap: 24px;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .footer-nav-block {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-claim {
    max-width: 26ch;
    font-size: clamp(1.3rem, 5vw, 1.85rem);
  }

  .footer-bottom {
    justify-content: center;
    gap: 12px;
  }

  .hero-title,
  .section-title,
  .highlight-title {
    max-width: none;
  }

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

  .hero-banner-inner {
    min-height: 100svh;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 84px;
  }

  .hero-banner-media {
    object-fit: cover;
    object-position: center center;
  }

  .hero-banner-image {
    background-position: center center;
  }

  .hero-banner-title {
    max-width: none;
    width: 100%;
    font-size: 3.1rem;
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-banner-title--home {
    gap: 0.02em;
    max-width: min(100%, 13ch);
  }

  .hero-banner-subtitle {
    max-width: min(100%, 52ch);
  }

  .hero-banner-points {
    flex-direction: column;
  }

  .hero-banner-points li {
    width: 100%;
  }

  .hero-banner-content {
    width: min(100%, 680px);
    transform: none;
  }

  .hero-scroll-indicator {
    bottom: 24px;
  }

  .legal-hero {
    padding: 132px 0 0;
  }

  .legal-document-section {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
  }

  .privacy-policy-toc-link--level-1 {
    padding-left: 16px;
  }

  .privacy-policy-toc-link--level-2 {
    padding-left: 32px;
  }

  .hero,
  .section,
  .highlight,
  .footer-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .legal-document {
    padding-top: 18px;
  }

  .legal-document-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .legal-document-index {
    padding-top: 0;
  }

  .legal-document-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .legal-document-fact dd,
  .legal-document-copy,
  .legal-document-list {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .privacy-policy-toc {
    padding: 18px 0 22px;
  }

  .privacy-policy-toc-title {
    font-size: clamp(1.28rem, 7vw, 1.6rem);
  }

  .privacy-policy-toc-list {
    gap: 4px;
  }

  .privacy-policy-toc-link {
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .privacy-policy-toc-link--level-1 {
    padding-left: 12px;
  }

  .privacy-policy-toc-link--level-2 {
    padding-left: 24px;
  }

  .privacy-policy-card {
    border-radius: 22px;
  }

  .privacy-policy-trigger {
    padding: 18px 18px 16px;
    gap: 12px;
  }

  .privacy-policy-trigger-title {
    font-size: 1rem;
    line-height: 1.34;
  }

  .privacy-policy-panel {
    padding: 0 18px 18px;
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .privacy-policy-list {
    gap: 8px;
  }

  .privacy-policy-cookie-declaration th,
  .privacy-policy-cookie-declaration td {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .site-header,
  .main-header.is-scrolled .site-header {
    grid-template-columns: 1fr auto;
    padding: 13px 14px 11px;
  }

  .brand-logo {
    height: 28px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-list {
    gap: 6px;
    padding: 8px;
    border-radius: 20px;
  }

  .nav-link,
  .main-header:not(.is-scrolled) .nav-link,
  .main-header.is-scrolled .nav-link {
    padding: 0.84rem 0.88rem;
    font-size: 0.88rem;
  }

  .header-actions-mobile {
    padding: 10px 2px 2px;
  }

  .header-actions-mobile .language-switch {
    width: 100%;
    justify-content: center;
  }

  .header-actions-mobile .language-switch a {
    flex: 1 1 0;
    justify-content: center;
    text-align: center;
  }

  .site-cta-section {
    padding-bottom: 28px;
  }

  .site-cta-shell {
    width: calc(100% - 14px);
  }

  .site-cta-banner {
    min-height: 360px;
    border-radius: 26px;
  }

  .site-cta-content {
    width: calc(100% - 28px);
    padding: 24px 10px;
  }

  .site-cta-title {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    max-width: 18ch;
    line-height: 1.04;
  }

  .story-flip-shell {
    width: 100%;
  }

  .products-system-shell,
  .products-detail-pane {
      width: calc(100% - 14px);
    }

  .approach-platform-shell,
  .approach-partnership-shell,
  .approach-esg-shell {
      width: calc(100% - 14px);
    }

  .approach-platform-shell {
      width: 100%;
    }

  .approach-platform-title,
  .approach-platform-lead {
      width: 100%;
    }

  .approach-platform-intro {
      width: calc(100% - 14px);
    }

  .approach-platform-flow {
      width: calc(100% - 14px);
    }

  .approach-partnership-shell,
  .approach-esg-shell {
      width: 100%;
    }

  .approach-partnership-panel,
  .approach-esg-head,
  .approach-esg-carousel,
  .approach-esg-outro {
      width: calc(100% - 14px);
    }

  .approach-esg-inner {
      width: calc(100% - 14px);
      margin: 0 auto;
    }

  .approach-esg-head,
  .approach-esg-carousel,
  .approach-esg-outro {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
    }

  .approach-platform-section {
      padding-top: 28px;
    }

  .approach-platform-title,
  .approach-esg-title {
      font-size: clamp(1.72rem, 8.4vw, 2.55rem);
      line-height: 1.12;
      letter-spacing: 0;
    }

  .approach-platform-lead,
  .approach-esg-lead {
      font-size: 0.98rem;
      line-height: 1.52;
    }

  .approach-platform-flow {
      gap: 16px;
    }

  .approach-platform-track {
      grid-template-columns: max-content;
      grid-auto-flow: column;
      grid-auto-columns: minmax(92px, 28vw);
      gap: 10px;
      overflow-x: auto;
      padding: 0 4px 10px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
    }

  .financing-intro-panel,
  .financing-accordion-grid {
      width: calc(100% - 14px);
    }

  .financing-intro-title {
      font-size: clamp(2.05rem, 9vw, 3rem);
    }

  .financing-intro-list {
      font-size: 1rem;
      gap: 14px;
    }

  .financing-intro-image {
      min-height: 320px;
    }

  .financing-accordion-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

  .contact-faq-shell {
      width: calc(100% - 14px);
    }

  .not-found-spotlight-shell {
      width: calc(100% - 14px);
      padding: 22px 18px;
      border-radius: 26px;
    }

  .not-found-spotlight-title {
      font-size: clamp(2rem, 10vw, 3rem);
    }

  .not-found-spotlight-copy {
      font-size: 0.96rem;
      line-height: 1.58;
    }

  .not-found-spotlight-actions {
      margin-top: 24px;
      flex-direction: column;
      align-items: stretch;
    }

  .not-found-action {
      width: 100%;
      min-width: 0;
    }

  .contact-faq-head,
  .contact-form-head {
      gap: 10px;
    }

  .contact-faq-title {
      font-size: clamp(2rem, 10vw, 3rem);
    }

  .contact-faq-lead,
  .contact-form-lead {
      font-size: 0.96rem;
      line-height: 1.6;
    }

  .contact-faq-trigger {
      grid-template-columns: 40px minmax(0, 1fr) 24px;
      gap: 12px;
      padding: 18px 18px 16px;
    }

  .contact-faq-index {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      font-size: 0.76rem;
    }

  .contact-faq-question {
      font-size: 1rem;
      line-height: 1.38;
    }

  .contact-faq-panel {
      padding: 0 18px 18px;
    }

  .contact-faq-panel p {
      font-size: 0.92rem;
      line-height: 1.58;
    }

  .contact-form-card {
      padding: 20px 18px;
      border-radius: 26px;
      gap: 18px;
    }

  .contact-form-title {
      font-size: clamp(1.85rem, 9vw, 2.5rem);
    }

  .contact-form-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

  .contact-form-consent {
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 8px;
      font-size: 0.82rem;
      line-height: 1.44;
    }

  .contact-form-note {
      font-size: 0.74rem;
    }

  .contact-form-field,
  .contact-form-field--full {
      grid-column: auto;
    }

  .contact-form-field input,
  .contact-form-field select,
  .contact-form-field textarea {
      padding: 14px 14px;
      border-radius: 16px;
    }

  .contact-form-field textarea {
      min-height: 160px;
    }

  .contact-form-consent {
      grid-template-columns: 18px minmax(0, 1fr);
      gap: 10px;
      font-size: 0.88rem;
      line-height: 1.52;
    }

  .contact-form-note {
      font-size: 0.8rem;
    }

  .financing-accordion-trigger {
      padding: 20px 18px 18px;
      gap: 14px;
    }

  .financing-accordion-panel {
      padding: 0 18px 20px;
    }

  .financing-accordion-icon {
      width: 50px;
      height: 50px;
    }

  .financing-accordion-heading {
      min-height: auto;
      font-size: 1.08rem;
    }

  .financing-accordion-points {
      font-size: 0.94rem;
      gap: 10px;
    }

  .approach-platform-track::-webkit-scrollbar {
      display: none;
    }

  .approach-platform-track::before {
      top: 43px;
      left: 48px;
      right: 48px;
    }

  .approach-platform-node {
      gap: 10px;
      scroll-snap-align: start;
    }

  .approach-platform-node-core {
      width: 78px;
      height: 78px;
    }

  .approach-platform-node-label {
      max-width: 100%;
      font-size: 0.88rem;
      line-height: 1.15;
      overflow-wrap: anywhere;
    }

  .approach-platform-copy-wrap {
      min-height: 0;
    }

  .approach-platform-copy {
      padding: 16px 16px 15px;
      border-radius: 20px;
    }

  .approach-platform-copy h3 {
      font-size: 1.18rem;
    }

  .approach-platform-copy p {
      font-size: 0.96rem;
      line-height: 1.54;
    }

  .approach-partnership-copy {
      padding: 20px 16px 16px;
    }

  .approach-partnership-title {
      font-size: clamp(1.72rem, 8.2vw, 2.35rem);
      line-height: 1.1;
      letter-spacing: 0;
    }

  .approach-partnership-text {
      font-size: 1rem;
      line-height: 1.68;
    }

  .approach-partnership-image,
  .approach-partnership-image--placeholder {
      min-height: 280px;
      height: 280px;
    }

  .approach-esg-head {
      gap: 18px;
    }

  .approach-esg-controls {
      width: 100%;
      justify-content: flex-start;
      gap: 10px;
    }

  .approach-esg-arrow {
      width: 48px;
      height: 48px;
      font-size: 1.08rem;
    }

  .approach-esg-track {
      grid-auto-columns: minmax(280px, 84vw);
      gap: 14px;
    }

  .approach-esg-card {
      min-height: 290px;
      gap: 14px;
      padding: 18px 18px 20px;
      border-radius: 22px;
    }

  .approach-esg-card-number {
      width: 78px;
      height: 78px;
      font-size: 1.8rem;
    }

  .approach-esg-card h3 {
      font-size: 1.14rem;
      line-height: 1.24;
    }

  .approach-esg-card p,
  .approach-esg-outro {
      font-size: 0.9rem;
      line-height: 1.42;
    }

  .products-system-map-frame {
      display: grid;
      gap: 10px;
      min-height: 0;
      padding: 10px;
      border-radius: 26px;
    }

  .products-system-map-stage {
      min-height: 300px;
    }

  .products-system-map-image,
  .products-system-map-image--placeholder {
      min-height: 300px;
      height: 300px;
      border-radius: 18px;
    }

  .products-system-hotspot {
      width: 72px;
      height: 72px;
    }

  .products-system-hotspot-core {
      inset: 12px;
    }

  .products-system-hotspot-core svg {
      width: 54%;
      height: 54%;
    }

  .products-system-hotspot-rings::before {
      inset: 8px;
    }

  .products-system-hotspot-rings::after {
      inset: 16px;
    }

  .products-system-hotspot--water {
      top: 33%;
      left: 14%;
    }

  .products-system-hotspot--solar {
      top: 24%;
      right: 14%;
    }

  .products-system-hotspot--agriculture {
      top: 72%;
      left: 43%;
      bottom: auto;
      transform: translate(-50%, -50%);
    }

  .products-system-hotspot--agriculture .products-system-hotspot-core svg {
      width: 60%;
      height: 60%;
    }

  .products-system-callout {
      position: static;
      width: 100%;
    display: none;
    padding: 16px 16px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .products-system-callout.is-active {
    display: block;
  }

  .products-system-callout h3 {
    font-size: 1.2rem;
  }

  .products-system-callout p {
    font-size: 1rem;
    line-height: 1.45;
  }

  .products-system-tabs {
      grid-template-columns: 1fr;
      gap: 8px;
    }

  .products-system-tab {
      min-height: 54px;
      padding: 12px 10px;
      border-radius: 16px;
      font-size: 0.92rem;
      line-height: 1.2;
    }

  .products-detail-section {
      padding-top: 30px;
    }

    .products-detail-title {
      font-size: clamp(2rem, 10vw, 3rem);
    }

  .products-detail-head .products-detail-visual-title {
      display: none;
    }

  .products-detail-visual-title {
      width: min(100%, 760px);
      margin: 0 auto;
    }

  .products-detail-visual-title--mobile {
      display: grid;
      width: 100%;
      margin: 0 0 10px;
      text-align: left;
    }

  .products-detail-point {
      grid-template-columns: 38px minmax(0, 1fr);
      gap: 12px;
  }

  .products-detail-point-mark {
    width: 38px;
    height: 38px;
  }

  .products-detail-point h3 {
    font-size: 1.1rem;
  }

  .products-detail-point p {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .products-detail-visual-surface {
      aspect-ratio: auto;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-areas:
        "top right"
        "left bottom";
      gap: 10px;
      margin-left: auto;
      width: 100%;
    }

  img.products-detail-visual-image,
  .products-detail-visual-image--placeholder {
      display: none;
    }

  .products-detail-visual-title {
      width: min(100%, 430px);
      margin: 0 auto;
    }

  .products-detail-visual-title.products-detail-visual-title--mobile {
      width: 100%;
      margin: 0 0 10px;
      text-align: center;
    }

  .products-detail-visual-title span:first-child {
    font-size: 0.98rem;
  }

  .products-detail-visual-title span:last-child {
    font-size: 1.62rem;
  }

  .products-detail-overlay {
      padding: 12px 12px 10px;
      border-radius: 16px;
    }

  .products-detail-overlay h4 {
      margin-bottom: 6px;
      font-size: 0.9rem;
      line-height: 1.1;
    }

  .products-detail-overlay p {
      font-size: 0.8rem;
      line-height: 1.38;
    }

  .transformation-focus-shell {
    width: calc(100% - 14px);
  }

  .transformation-focus-section {
    padding-top: 28px;
  }

  .transformation-focus-copy {
    padding: 22px 16px 14px;
  }

  .transformation-focus-text {
    font-size: 1rem;
    line-height: 1.72;
  }

  .transformation-focus-image,
  .transformation-focus-image--placeholder {
    min-height: 280px;
    height: 280px;
  }

  .story-flip-kicker {
    margin-left: 0;
  }

  .story-flip-panel {
    width: calc(100% - 14px);
    padding: 16px 16px 88px;
    border-radius: 24px;
  }

  .story-flip-overview {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(128px, 38vw);
    gap: 8px;
    margin-bottom: 12px;
    padding: 2px 2px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .story-flip-overview::-webkit-scrollbar {
    display: none;
  }

  .story-flip-overview-item {
    display: grid;
    gap: 4px;
    min-height: 50px;
    padding: 8px 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(248, 242, 231, 0.8);
    text-align: left;
    scroll-snap-align: start;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition:
      background-color 220ms ease,
      border-color 220ms ease,
      color 220ms ease,
      transform 220ms ease;
  }

  .story-flip-overview-item.is-active {
    background: rgba(174, 158, 107, 0.18);
    border-color: rgba(174, 158, 107, 0.42);
    color: #fff8ef;
    transform: translateY(-1px);
  }

  .story-flip-overview-index {
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .story-flip-overview-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.68rem;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .story-flip-arrow {
    width: 42px;
    height: 42px;
  }

  .story-flip-stage {
    min-height: 620px;
  }

  .story-flip-video-card {
    padding-top: 4px;
  }

  .story-flip-replay {
    width: calc(100% - 32px);
    bottom: 82px;
  }

  .story-flip-replay .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .story-flip-video-shell {
    border-radius: 20px;
  }

  .story-flip-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(156px, auto));
    gap: 10px;
  }

  .story-flip-card,
  .story-flip-card--wide,
  .story-flip-card--tall,
  .story-flip-card--compact,
  .story-flip-card--wide-bottom {
    min-height: 156px;
  }

  .story-flip-card--wide,
  .story-flip-card--compact {
    grid-column: 1;
  }

  .story-flip-card--tall,
  .story-flip-card--wide-bottom {
    grid-column: 2;
  }

  .story-flip-card--wide,
  .story-flip-card--tall {
    grid-row: 1;
  }

  .story-flip-card--compact,
  .story-flip-card--wide-bottom {
    grid-row: 2;
  }

  .story-flip-card-title {
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 7px 10px;
    font-size: 0.78rem;
    border-radius: 14px;
  }

  .story-flip-slide-title {
    margin-bottom: 14px;
    font-size: 1.18rem;
  }

  .story-flip-dots {
    display: none;
  }

  .story-flip-controls {
    width: calc(100% - 12px);
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
  }

  .diagram-wheel {
    --diagram-radius: 150px;
    min-height: 680px;
  }

  .diagram-center-group {
    width: 130px;
    height: 130px;
  }

  .diagram-center-photo {
    width: 110px;
    height: 110px;
  }

  .diagram-card {
    --diagram-card-indent: 30px;
    width: 148px;
    min-height: 112px;
    padding: 10px 10px 9px;
    border-radius: 16px;
  }

  .diagram-card-header {
    gap: 5px;
    margin-bottom: 5px;
  }

  .diagram-card-index {
    font-size: 0.5rem;
    letter-spacing: 0.12em;
  }

  .diagram-card h3 {
    font-size: 0.58rem;
  }

  .diagram-card p {
    width: calc(100% - var(--diagram-card-indent));
    padding-left: var(--diagram-card-indent);
    font-size: 0.54rem;
    line-height: 1.34;
  }

  .diagram-card-icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
  }

  .diagram-card-icon svg {
    width: 10px;
    height: 10px;
  }

  .diagram-skip-btn {
    width: 40px;
    height: 40px;
  }

  .diagram-skip-btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  :root {
    --chapter-left: 14px;
    --chapter-right: 14px;
    --chapter-top-space: 64px;
    --chapter-bottom-space: 56px;
    --chapter-kicker-gap: 20px;
  }

  .site-shell {
    padding: 0 14px;
  }

  .header-wrap,
  .main-header.is-scrolled .header-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-header.is-scrolled .header-wrap {
    padding-top: 10px;
  }

  .site-header,
  .main-header.is-scrolled .site-header {
    padding: 12px 12px 10px;
    border-radius: 0 0 20px 20px;
  }

  .main-header.is-scrolled .site-header {
    border-radius: 22px;
  }

  .brand-logo {
    height: 26px;
  }

  .nav-list {
    padding: 7px;
    border-radius: 18px;
  }

  .nav-link,
  .main-header:not(.is-scrolled) .nav-link,
  .main-header.is-scrolled .nav-link {
    padding: 0.8rem 0.82rem;
    font-size: 0.84rem;
  }

  .header-actions-mobile {
    gap: 8px;
  }

  .header-actions-mobile .button {
    min-height: 46px;
    font-size: 0.88rem;
  }

  .hero-banner-inner {
    min-height: 100svh;
    padding-top: 104px;
    padding-bottom: 76px;
  }

  .hero-banner-media {
    object-fit: cover;
    object-position: center 42%;
    opacity: 0.9;
  }

  .hero-banner--video::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(20, 19, 17, 0.12), rgba(20, 19, 17, 0.46)),
      radial-gradient(circle at 50% 30%, rgba(174, 158, 107, 0.2), transparent 42%);
  }

  .hero-banner-image {
    background-size: cover;
    background-position: center 42%;
    transform: scale(1.01);
  }

  .hero-banner--image {
    background: #1f2124;
  }

  .hero-banner-overlay {
    background:
      linear-gradient(180deg, rgba(20, 19, 17, 0.24), rgba(20, 19, 17, 0.46) 42%, rgba(20, 19, 17, 0.82)),
      linear-gradient(90deg, rgba(20, 19, 17, 0.42), rgba(20, 19, 17, 0.14));
  }

  .hero-banner-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-banner-title {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1.03;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-wrap: balance;
  }

  .hero-banner-title--home,
  .hero-banner-title--subpage,
  .hero-banner-title--subpage-single {
    max-width: 100%;
  }

  .hero-banner-title--home {
    gap: 0.08em;
  }

  .hero-banner-subtitle {
    max-width: 100%;
  }

  .hero-banner-subtitle,
  .hero-lead,
  .section-copy,
  .highlight-copy {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .hero,
  .section,
  .highlight,
  .footer-card {
    padding: 18px;
    border-radius: 22px;
  }

  .vision-text,
  .mission-copy {
    width: calc(100% - 28px);
  }

  .approach-intro-section .vision-text {
    font-size: clamp(1.28rem, 6.4vw, 1.85rem);
    line-height: 1.42;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .mission-content {
    padding-inline: 14px;
  }

  .mission-image,
  .mission-image--placeholder,
  .home-video-frame,
  .transformation-focus-image,
  .transformation-focus-image--placeholder,
  .approach-partnership-image,
  .approach-partnership-image--placeholder,
  .financing-intro-image {
    border-radius: 18px;
  }

  .mission-image,
  .mission-image--placeholder {
    min-height: 260px;
    height: 260px;
  }

  .home-video-frame {
    width: calc(100% - 10px);
    padding: 10px;
  }

  .home-video-embed {
    border-radius: 18px;
  }

  .diagram-wheel {
    --diagram-radius: 132px;
    min-height: 660px;
  }

  .diagram-center-group {
    width: 118px;
    height: 118px;
  }

  .diagram-center-photo {
    width: 98px;
    height: 98px;
  }

  .diagram-card {
    --diagram-card-indent: 28px;
    width: 132px;
    min-height: 110px;
    padding: 9px 9px 8px;
    border-radius: 14px;
  }

  .diagram-card p {
    font-size: 0.5rem;
  }

  .story-flip-panel {
    width: calc(100% - 10px);
    padding: 14px 14px 82px;
    border-radius: 20px;
  }

  .story-flip-overview {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(112px, 43vw);
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 9px;
  }

  .story-flip-overview-item {
    min-height: 46px;
    padding: 7px 8px;
  }

  .story-flip-overview-title {
    font-size: 0.65rem;
    line-height: 1.12;
  }

  .story-flip-stage {
    min-height: 780px;
  }

  .story-flip-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .story-flip-card,
  .story-flip-card--wide,
  .story-flip-card--tall,
  .story-flip-card--compact,
  .story-flip-card--wide-bottom {
    grid-column: auto;
    grid-row: auto;
    height: clamp(150px, 42vw, 174px);
    min-height: 0;
  }

  .story-flip-card-title {
    max-width: min(76%, 220px);
    font-size: 0.76rem;
  }

  .story-flip-controls {
    width: calc(100% - 8px);
    gap: 8px;
    padding: 8px;
  }

  .story-flip-arrow {
    width: 40px;
    height: 40px;
  }

  .story-flip-replay {
    width: calc(100% - 24px);
    bottom: 74px;
  }

  .story-flip-replay .button {
    min-height: 42px;
    padding-inline: 1rem;
    font-size: 0.84rem;
  }

  .story-flip-video-shell {
    border-radius: 18px;
  }

  .video-consent-placeholder {
    padding: 16px;
  }

  .video-consent-placeholder-inner {
    gap: 10px;
    padding: 20px 16px;
    border-radius: 20px;
  }

  .video-consent-placeholder-inner h3 {
    font-size: 1.04rem;
  }

  .video-consent-placeholder-inner p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .products-system-shell,
  .products-detail-pane,
  .approach-platform-intro,
  .approach-platform-flow,
  .approach-esg-inner,
  .financing-intro-panel,
  .financing-accordion-grid,
  .contact-faq-shell,
  .not-found-spotlight-shell,
  .transformation-focus-shell {
    width: calc(100% - 10px);
  }

  .products-system-tabs {
    grid-template-columns: 1fr;
  }

  .products-system-tab {
    min-height: 54px;
    font-size: 0.9rem;
  }

  .products-system-map-frame {
    padding: 8px;
    border-radius: 22px;
  }

  .products-system-map-stage,
  .products-system-map-image,
  .products-system-map-image--placeholder {
    min-height: 260px;
    height: 260px;
  }

  .products-system-hotspot {
    width: 64px;
    height: 64px;
  }

  .products-detail-visual-surface {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "right"
      "left"
      "bottom";
  }

  .products-detail-overlay h4 {
    font-size: 0.92rem;
  }

  .products-detail-overlay p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .approach-platform-track {
    grid-auto-columns: minmax(88px, 29vw);
    gap: 10px;
  }

  .approach-platform-node-core {
    width: 74px;
    height: 74px;
  }

  .approach-platform-track::before {
    top: 41px;
    left: 44px;
    right: 44px;
  }

  .approach-platform-copy p,
  .approach-partnership-text,
  .approach-esg-card p,
  .approach-esg-outro {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .approach-esg-track {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-auto-columns: minmax(236px, 84vw);
  }

  .approach-esg-card {
    min-height: 270px;
    padding: 16px 16px 18px;
  }

  .approach-esg-card-number {
    width: 66px;
    height: 66px;
    font-size: 1.58rem;
  }

  .approach-partnership-image,
  .approach-partnership-image--placeholder {
    min-height: 240px;
    height: 240px;
  }

  .financing-intro-copy {
    padding: 22px 18px 10px;
  }

  .financing-intro-image {
    min-height: 280px;
  }

  .contact-faq-shell,
  .not-found-spotlight-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-faq-title,
  .contact-form-title,
  .financing-intro-title,
  .approach-partnership-title,
  .products-detail-title,
  .not-found-spotlight-title {
    font-size: clamp(1.72rem, 9vw, 2.5rem);
  }

  .contact-faq-trigger {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    padding: 16px 16px 14px;
  }

  .contact-faq-index {
    width: 34px;
    height: 34px;
  }

  .contact-form-card {
    padding: 18px 16px;
  }

  .contact-form-actions {
    gap: 8px;
  }

  .contact-form-submit {
    min-height: 48px;
  }

  .contact-form-field input,
  .contact-form-field select,
  .contact-form-field textarea {
    font-size: 0.94rem;
  }

  .privacy-policy-trigger {
    padding: 16px 16px 14px;
  }

  .privacy-policy-trigger-meta {
    gap: 10px;
  }

  .privacy-policy-trigger-number {
    font-size: 0.88rem;
  }

  .privacy-policy-cookie-declaration table {
    min-width: 600px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
