:root {
  --bg: #070707;
  --bg-soft: #11110f;
  --panel: rgba(16, 17, 14, 0.88);
  --panel-strong: rgba(10, 11, 9, 0.96);
  --surface: #171814;
  --surface-2: #20221d;
  --line: rgba(244, 239, 227, 0.1);
  --line-strong: rgba(244, 239, 227, 0.24);
  --text: #f4efe3;
  --muted: #bbb5a8;
  --olive: #55614a;
  --coyote: #82664b;
  --sand: #e7dfcf;
  --orange: #de6630;
  --glow: rgba(222, 102, 48, 0.18);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max-width: 1240px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(222, 102, 48, 0.11), transparent 26%),
    radial-gradient(circle at 12% 22%, rgba(85, 97, 74, 0.14), transparent 24%),
    linear-gradient(180deg, #050505 0%, #0a0a09 36%, #070707 100%);
  font-family: "Aptos", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  height: 3px;
  background: rgba(244, 239, 227, 0.08);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ff9b60);
  box-shadow: 0 0 20px rgba(222, 102, 48, 0.45);
}

.promo-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 8px 20px;
  color: rgba(244, 239, 227, 0.74);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #0f100d;
  border-bottom: 1px solid var(--line);
}

.promo-bar span:nth-child(2) {
  text-align: center;
}

.promo-bar span:last-child {
  text-align: right;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: var(--header-height);
  padding: 16px 28px;
  background:
    linear-gradient(90deg, rgba(244, 239, 227, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(244, 239, 227, 0.03) 1px, transparent 1px),
    rgba(6, 6, 6, 0.78);
  background-size: 26px 26px;
  border-bottom: 1px solid rgba(244, 239, 227, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(244, 239, 227, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(244, 239, 227, 0.04) 1px, transparent 1px),
    rgba(5, 5, 5, 0.94);
  background-size: 26px 26px;
}

.brand-logo {
  position: relative;
  z-index: 2;
}

.brand-logo img {
  width: clamp(176px, 16vw, 240px);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  position: relative;
  padding: 10px 10px;
  color: rgba(244, 239, 227, 0.76);
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 12px 2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  color: var(--bg);
  background: var(--sand);
}

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

.lang-switcher {
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  min-width: 88px;
  padding: 0 12px 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.lang-trigger:hover,
.lang-trigger:focus-visible,
.lang-switcher.is-open .lang-trigger {
  border-color: rgba(222, 102, 48, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.lang-trigger-prefix {
  color: rgba(244, 239, 227, 0.7);
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-trigger-code {
  min-width: 2.2em;
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.lang-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 130;
  display: grid;
  gap: 6px;
  width: min(260px, calc(100vw - 32px));
  max-height: min(70vh, 520px);
  overflow: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(10, 11, 9, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(231, 223, 207, 0.26) transparent;
}

.lang-panel::-webkit-scrollbar {
  width: 8px;
}

.lang-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(231, 223, 207, 0.2);
}

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

.lang-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(244, 239, 227, 0.08);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.lang-option:hover,
.lang-option:focus-visible {
  border-color: rgba(222, 102, 48, 0.42);
  background: rgba(222, 102, 48, 0.07);
  transform: translateY(-1px);
}

.lang-option.is-active {
  border-color: rgba(231, 223, 207, 0.24);
  background: rgba(231, 223, 207, 0.08);
}

.lang-option-main {
  font-weight: 700;
  line-height: 1.3;
}

.lang-option-meta {
  color: rgba(244, 239, 227, 0.6);
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

main {
  overflow: clip;
}

section {
  position: relative;
}

.hero {
  min-height: calc(100svh - 38px);
  padding: 84px 0 72px;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-media,
.craft-media {
  position: absolute;
  inset: 0;
  z-index: -4;
  overflow: hidden;
}

.hero-media picture,
.craft-media picture,
.family-image picture,
.scene-spotlight-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img,
.craft-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  transform: translateY(calc(var(--hero-shift, 0px) * 0.4)) scale(1.05);
  transform-origin: center center;
  filter: saturate(0.9) contrast(1.02) brightness(0.54);
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.84) 38%, rgba(3, 3, 3, 0.38) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.2) 0%, rgba(3, 3, 3, 0.86) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(244, 239, 227, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(244, 239, 227, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black 0%, transparent 82%);
  opacity: 0.85;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.44;
}

.hero-glow-a {
  width: 380px;
  height: 380px;
  top: 14%;
  right: -8%;
  background: rgba(222, 102, 48, 0.22);
}

.hero-glow-b {
  width: 280px;
  height: 280px;
  bottom: 8%;
  left: 8%;
  background: rgba(85, 97, 74, 0.22);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: end;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #ff8246;
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-intro h2,
.families-head h2,
.field-control h2,
.craft-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Bahnschrift", "Aptos", sans-serif;
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  color: var(--text);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(244, 239, 227, 0.82);
  font-size: 1.04rem;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button.primary {
  color: var(--bg);
  background: var(--sand);
  box-shadow: 0 16px 40px rgba(231, 223, 207, 0.14);
}

.button.ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
}

.inline-link {
  color: var(--sand);
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.hero-metrics article,
.contact-meta span,
.scene-tags span {
  border: 1px solid rgba(244, 239, 227, 0.12);
  background: rgba(10, 10, 10, 0.46);
}

.hero-metrics article {
  padding: 16px;
}

.hero-metrics strong {
  display: block;
  font-family: "Bahnschrift", "Aptos", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: rgba(244, 239, 227, 0.74);
  font-size: 0.84rem;
}

.hero-dossier,
.brand-manifesto,
.principle-card,
.family-card,
.scene-spotlight,
.craft-board,
.proof-card,
.feedback-card,
.channel-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
    var(--panel);
  box-shadow: var(--shadow);
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(222, 102, 48, 0.18), transparent 28%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.glow-card:hover::before,
.glow-card.is-active::before {
  opacity: 1;
}

.hero-dossier {
  padding: 26px 24px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%),
    rgba(10, 11, 9, 0.92);
}

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

.dossier-head span {
  color: #ff8246;
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dossier-head img {
  width: 84px;
  opacity: 0.92;
}

.hero-dossier h2 {
  margin: 0;
  font-family: "Bahnschrift", "Aptos", sans-serif;
  font-size: 1.55rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-dossier p,
.brand-manifesto p,
.section-intro p,
.families-head p,
.field-control p,
.craft-copy p,
.contact-copy p,
.contact-card p,
.family-copy p,
.channel-card p,
.proof-card p,
.feedback-card p {
  color: var(--muted);
}

.hero-dossier p {
  margin: 18px 0 0;
}

.dossier-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.dossier-list li {
  position: relative;
  padding-left: 18px;
  color: var(--sand);
}

.dossier-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--orange);
}

.dossier-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 227, 0.72);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.brand-section,
.proof-section,
.channel-section,
.contact-section {
  padding: 110px 0;
}

.families-section,
.field-section {
  padding: 110px 0;
}

.brand-section,
.families-section,
.field-section,
.craft-section,
.proof-section,
.channel-section,
.contact-section,
.message-board-section {
  content-visibility: auto;
  contain-intrinsic-size: 960px;
}

.section-intro,
.families-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-intro h2,
.families-head h2,
.field-control h2,
.craft-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.brand-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.brand-manifesto {
  padding: 28px;
}

.manifesto-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.manifesto-points div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.manifesto-points span,
.family-copy span,
.scene-spotlight-copy span,
.proof-card span,
.feedback-card span,
.channel-card span,
.message-route-card span {
  display: block;
  color: #ff8246;
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-points strong {
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

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

.principle-card {
  padding: 24px 22px;
}

.principle-card span {
  color: rgba(244, 239, 227, 0.46);
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.principle-card h3,
.family-copy h3,
.scene-spotlight-copy h3,
.proof-card h3,
.feedback-card h3,
.channel-card h3 {
  margin: 16px 0 0;
  font-family: "Bahnschrift", "Aptos", sans-serif;
  font-weight: 800;
  line-height: 1.04;
  text-transform: uppercase;
}

.principle-card h3 {
  font-size: 1.28rem;
}

.principle-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.family-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  min-height: 320px;
}

.family-image {
  position: relative;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #0f100d;
}

.family-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-copy {
  padding: 24px;
}

.family-copy h3 {
  font-size: 1.42rem;
}

.family-copy p {
  margin: 14px 0 0;
}

.family-copy ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.family-copy li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--sand);
  font-size: 0.92rem;
}

.field-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.field-control {
  align-self: start;
}

.scene-triggers {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.scene-trigger {
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: rgba(244, 239, 227, 0.72);
  background: rgba(255, 255, 255, 0.02);
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}

.scene-trigger:hover,
.scene-trigger:focus-visible,
.scene-trigger.is-active {
  color: var(--text);
  border-color: rgba(222, 102, 48, 0.42);
  background: rgba(222, 102, 48, 0.08);
  transform: translateX(6px);
}

.scene-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.scene-spotlight-image {
  position: relative;
  aspect-ratio: 1.2 / 1;
  background: #0d0e0c;
  overflow: hidden;
}

.scene-spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 160ms ease,
    transform 220ms ease,
    filter 160ms ease;
}

.scene-spotlight.is-loading .scene-spotlight-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(222, 102, 48, 0.9), transparent);
  animation: scene-loading-scan 900ms linear infinite;
}

.scene-spotlight.is-loading .scene-spotlight-image img {
  opacity: 0.62;
  transform: scale(1.01);
  filter: saturate(0.9);
}

.scene-spotlight-copy {
  padding: 24px;
}

.scene-spotlight-copy h3 {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.scene-spotlight-copy p {
  margin: 14px 0 0;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.scene-tags span,
.contact-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@keyframes scene-loading-scan {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.craft-section {
  padding: 120px 0;
  isolation: isolate;
}

.craft-media img {
  filter: brightness(0.28) saturate(0.9);
}

.craft-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.94) 0%, rgba(4, 4, 4, 0.86) 42%, rgba(4, 4, 4, 0.6) 100%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.2) 0%, rgba(4, 4, 4, 0.88) 100%);
}

.craft-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.craft-board {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.craft-board article {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.craft-board span {
  display: block;
  color: #ff8246;
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.craft-board strong {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

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

.proof-card,
.feedback-card,
.channel-card,
.contact-card {
  padding: 24px;
}

.proof-card h3,
.feedback-card h3 {
  font-size: 1.2rem;
}

.proof-card p,
.feedback-card p {
  margin: 12px 0 0;
}

.feedback-stack {
  display: grid;
  gap: 18px;
}

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

.channel-card h3 {
  font-size: 1.6rem;
}

.channel-card p {
  margin: 14px 0 22px;
}

.channel-status-list,
.message-route-list {
  display: grid;
  gap: 14px;
}

.channel-status-item,
.message-route-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.channel-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.channel-status-head strong,
.message-route-card h3 {
  font-family: "Bahnschrift", "Aptos", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.channel-status-item p,
.message-route-card p {
  margin: 10px 0 0;
}

.channel-status-badge {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-status-badge.is-live {
  border-color: rgba(112, 195, 117, 0.32);
  color: #9fdea4;
  background: rgba(112, 195, 117, 0.08);
}

.channel-status-badge.is-pending {
  border-color: rgba(255, 130, 70, 0.28);
  color: #ff9b6a;
  background: rgba(255, 130, 70, 0.08);
}

.channel-actions,
.contact-actions,
.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: end;
}

.footer-logo {
  width: min(340px, 86vw);
  margin-bottom: 22px;
}

.contact-line {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--sand);
  font-family: "Bahnschrift", "Aptos Narrow", sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 108px;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 48%, rgba(5, 5, 5, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%);
}

.page-hero-layout,
.message-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 28px;
  align-items: start;
}

.page-hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(2.5rem, 4.8vw, 5.1rem);
  line-height: 0.96;
  text-transform: uppercase;
}

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

.message-board-section {
  padding: 110px 0;
}

.message-board-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.message-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

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

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

.form-field span {
  color: var(--sand);
  font-size: 0.88rem;
  font-weight: 700;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  font: inherit;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(222, 102, 48, 0.42);
  box-shadow: 0 0 0 1px rgba(222, 102, 48, 0.16);
}

.message-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

.message-status[data-status-tone="success"] {
  border-color: rgba(112, 195, 117, 0.26);
  color: #b7e8bb;
  background: rgba(112, 195, 117, 0.08);
}

.message-status[data-status-tone="warning"] {
  border-color: rgba(255, 130, 70, 0.24);
  color: #ffc3a5;
  background: rgba(255, 130, 70, 0.08);
}

.site-footer {
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 239, 227, 0.6);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

.hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .hero-layout,
  .page-hero-layout,
  .message-board-layout,
  .field-layout,
  .craft-layout,
  .proof-layout,
  .contact-layout,
  .brand-layout {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .families-head {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .brand-principles,
  .channel-grid,
  .family-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .family-image {
    min-height: 260px;
  }

  .channel-status-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .promo-bar {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 6px 16px;
    padding: 7px 16px;
    font-size: 0.66rem;
    line-height: 1.35;
    text-align: left;
  }

  .promo-bar span:nth-child(2),
  .promo-bar span:last-child {
    text-align: left;
  }

  .promo-bar span:last-child {
    grid-column: 1 / -1;
  }

  .site-header {
    padding-inline: 20px;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(38px + var(--header-height)) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .lang-trigger-prefix {
    display: none;
  }

  .site-nav a,
  .site-nav .nav-cta {
    padding: 14px 0;
    border-bottom: 1px solid rgba(244, 239, 227, 0.08);
    background: transparent;
    color: var(--text);
  }

  .site-nav .nav-cta {
    border: 0;
  }

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

  .hero {
    padding-top: 60px;
  }

  .page-hero {
    padding-top: 132px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .promo-bar {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 7px 14px 8px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .promo-bar span:nth-child(2) {
    opacity: 0.86;
  }

  .promo-bar span:last-child {
    display: none;
  }

  .site-header {
    gap: 12px;
    padding: 11px 14px;
  }

  .brand-logo img {
    width: 154px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
    line-height: 0.94;
  }

  .page-hero-copy h1,
  .message-board-copy h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .header-actions {
    gap: 8px;
  }

  .lang-trigger {
    min-width: 68px;
    min-height: 40px;
    padding-inline: 10px;
  }

  .lang-trigger-code {
    font-size: 0.76rem;
  }

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

  .site-nav {
    inset: calc(34px + var(--header-height)) 0 auto;
    padding: 12px 16px 18px;
  }

  .site-nav a,
  .site-nav .nav-cta {
    padding: 12px 0;
  }

  .lang-panel {
    width: min(280px, calc(100vw - 28px));
  }

  .hero-lead,
  .section-intro p,
  .families-head p,
  .field-control p,
  .craft-copy p,
  .family-copy p,
  .proof-card p,
  .feedback-card p,
  .channel-card p,
  .contact-copy p,
  .contact-card p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

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

  .message-form {
    padding: 22px;
  }

  .message-actions,
  .contact-actions,
  .channel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-dossier,
  .brand-manifesto,
  .principle-card,
  .family-copy,
  .scene-spotlight-copy,
  .craft-board,
  .proof-card,
  .feedback-card,
  .channel-card,
  .contact-card {
    padding: 20px;
  }

  .families-section,
  .brand-section,
  .field-section,
  .craft-section,
  .proof-section,
  .channel-section,
  .contact-section {
    padding: 86px 0;
  }

  .section-intro h2,
  .families-head h2,
  .field-control h2,
  .craft-copy h2,
  .contact-copy h2 {
    font-size: 2rem;
    line-height: 0.98;
  }

  .scene-trigger:hover,
  .scene-trigger:focus-visible,
  .scene-trigger.is-active {
    transform: none;
  }

  .footer-row {
    flex-direction: column;
  }
}

body[data-script="cjk"] .hero h1,
body[data-script="cjk"] .section-intro h2,
body[data-script="cjk"] .families-head h2,
body[data-script="cjk"] .field-control h2,
body[data-script="cjk"] .craft-copy h2,
body[data-script="cjk"] .contact-copy h2,
body[data-script="cjk"] .hero-dossier h2,
body[data-script="cjk"] .page-hero-copy h1,
body[data-script="cjk"] .message-board-copy h2,
body[data-script="cjk"] .principle-card h3,
body[data-script="cjk"] .family-copy h3,
body[data-script="cjk"] .scene-spotlight-copy h3,
body[data-script="cjk"] .proof-card h3,
body[data-script="cjk"] .feedback-card h3,
body[data-script="cjk"] .channel-card h3,
body[data-script="cjk"] .message-route-card h3 {
  line-height: 1.14;
}

body[data-script="arabic"] {
  font-family: "Segoe UI", "Tahoma", "Arial", sans-serif;
}

body[data-script="cjk"] .lang-option-main,
body[data-script="arabic"] .lang-option-main {
  font-weight: 800;
}

body[data-locale="de"] .hero h1,
body[data-locale="es"] .hero h1,
body[data-locale="fr"] .hero h1,
body[data-locale="pt"] .hero h1,
body[data-locale="ru"] .hero h1 {
  font-size: clamp(3rem, 5.5vw, 6rem);
}

body[data-locale="ar"] .hero h1 {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 1.08;
}

html[dir="rtl"] .site-header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .header-actions {
  margin-left: 0;
  margin-right: auto;
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-nav {
  flex-direction: row-reverse;
}

html[dir="rtl"] .site-nav a::after {
  transform-origin: right;
}

html[dir="rtl"] .lang-panel {
  right: auto;
  left: 0;
}

html[dir="rtl"] .lang-option {
  grid-template-columns: auto minmax(0, 1fr);
  text-align: right;
}

html[dir="rtl"] .lang-option-main {
  order: 2;
}

html[dir="rtl"] .lang-option-meta {
  order: 1;
}

html[dir="rtl"] .section-label {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .page-hero-copy,
html[dir="rtl"] .hero-dossier,
html[dir="rtl"] .section-intro,
html[dir="rtl"] .brand-manifesto,
html[dir="rtl"] .principle-card,
html[dir="rtl"] .family-copy,
html[dir="rtl"] .field-control,
html[dir="rtl"] .scene-spotlight-copy,
html[dir="rtl"] .craft-copy,
html[dir="rtl"] .craft-board,
html[dir="rtl"] .proof-card,
html[dir="rtl"] .feedback-card,
html[dir="rtl"] .channel-card,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .contact-card,
html[dir="rtl"] .message-board-copy,
html[dir="rtl"] .message-route-card,
html[dir="rtl"] .message-form,
html[dir="rtl"] .footer-row {
  text-align: right;
}

html[dir="rtl"] .dossier-list li {
  padding-left: 0;
  padding-right: 18px;
}

html[dir="rtl"] .dossier-list li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .hero-actions,
html[dir="rtl"] .dossier-footer,
html[dir="rtl"] .contact-meta,
html[dir="rtl"] .footer-row,
html[dir="rtl"] .scene-tags,
html[dir="rtl"] .channel-actions,
html[dir="rtl"] .contact-actions,
html[dir="rtl"] .message-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .channel-status-head {
  flex-direction: row-reverse;
}

html[dir="rtl"] .scene-trigger {
  text-align: right;
}

html[dir="rtl"] .scene-trigger:hover,
html[dir="rtl"] .scene-trigger:focus-visible,
html[dir="rtl"] .scene-trigger.is-active {
  transform: translateX(-6px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .scene-trigger,
  .glow-card::before,
  .hero-media img,
  .site-nav a::after {
    transition: none;
  }
}
