/* V2 conversion, legal and content surfaces */
.section--flush-top {
  padding-top: 0;
}

.card-title--compact {
  font-size: 1.9rem;
}

.consent-banner {
  position: fixed;
  z-index: 90;
  inset-inline: max(16px, calc((100vw - 1180px) / 2));
  inset-block-end: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 20px 22px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: rgba(17, 20, 24, 0.98);
  box-shadow: var(--shadow-card);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner__copy strong {
  display: block;
  color: var(--text-strong);
  font-size: 1rem;
}

.consent-banner__copy p {
  margin: 5px 0 0;
  color: var(--text-body);
  line-height: 1.55;
}

.consent-banner__copy a {
  color: var(--accent-strong);
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  gap: 10px;
}

.footer-privacy-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: start;
}

.footer-privacy-button:hover,
.footer-privacy-button:focus-visible {
  color: var(--accent-strong);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .consent-banner {
    grid-template-columns: 1fr;
    inset-inline: 12px;
    inset-block-end: calc(12px + env(safe-area-inset-bottom));
    gap: 16px;
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.form-honeypot {
  position: fixed !important;
  inset-block-start: 0 !important;
  inset-inline-start: 0 !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translate(-200vw, -200vh) !important;
  contain: layout size style !important;
}
.form-honeypot input {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
}
.privacy-consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; margin-top: 16px; color: rgba(255,255,255,.7); font-size: .78rem; line-height: 1.55; }
.privacy-consent input { margin-top: 3px; accent-color: var(--gold, #c79a55); }
.privacy-consent a { color: #e6be7c; text-decoration: underline; }
.privacy-consent--compact { grid-column: 1 / -1; }
.field small { display: block; margin-top: 6px; color: rgba(255,255,255,.58); font-size: .72rem; }
.legal-page { padding-top: clamp(70px,10vw,130px); }
.legal-document { max-width: 880px; margin: 0 auto; padding: clamp(28px,6vw,72px); border: 1px solid rgba(197,158,98,.2); background: #f8f5ef; color: #201b17; box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.legal-document .page-title { color: #201b17; }
.legal-document .eyebrow { color: #76551f; }
.legal-document section { margin-top: 34px; }
.legal-document h2 { margin: 0 0 12px; font: 600 clamp(1.7rem,3vw,2.3rem)/1.05 "Cormorant Garamond",serif; }
.legal-document p { color: #5f5750; line-height: 1.85; }
.legal-updated { color: #62584f !important; font-size: .8rem; }
.landing-detail-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(300px,.75fr); align-items: start; gap: 24px; }
.landing-copy { max-width: none; margin: 0; }
.landing-checklist { position: sticky; top: 110px; padding: 28px; }
.page-hero--compact { padding: clamp(28px,6vw,70px); border: 1px solid rgba(197,158,98,.18); background: radial-gradient(circle at 80% 20%,rgba(189,143,75,.2),transparent 35%),#0d0e10; }
.product-card > img,.page-hero__media > img,.product-gallery > img { object-fit: cover; }
.compliance-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 20px; }
.compliance-card { padding: clamp(24px,4vw,42px); }

@media (max-width: 900px) {
  .landing-detail-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
  .landing-checklist { position: static; }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: linear-gradient(180deg, #08090b 0%, #0e1013 42%, #08090b 100%);
  min-width: 320px;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.site-shell {
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 75%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-header {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
  max-width: 860px;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
}

.display-title,
.section-title,
.page-title,
.hero-title {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 0.98;
  margin: 0;
}

.section-title,
.page-title {
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  letter-spacing: 0;
}

.body-large,
.section-copy,
.page-copy {
  color: var(--text-body);
  line-height: 1.75;
  font-size: 1.02rem;
  margin: 0;
}

.muted {
  color: var(--text-muted);
}

.page-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(12, 9, 8, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  width: var(--container);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

html[dir="rtl"] .page-topbar,
html[dir="rtl"] .topbar-inner,
html[dir="rtl"] .desktop-nav,
html[dir="rtl"] .topbar-actions,
html[dir="rtl"] .mobile-nav-panel nav {
  direction: ltr;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-strong);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  inline-size: 44px;
  block-size: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), transparent 48%),
    var(--accent-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 16px 34px rgba(169, 111, 38, 0.28);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy small {
  display: block;
  color: var(--text-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.brand-copy strong {
  display: block;
  font-size: 0.94rem;
}

.brand--header {
  gap: clamp(12px, 1.35vw, 18px);
  flex-shrink: 0;
  min-width: 0;
}

.brand-mark--header {
  inline-size: clamp(80px, 6.3vw, 98px);
  block-size: clamp(52px, 4.8vw, 64px);
  padding: 8px 9px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 178, 103, 0.18);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(31, 23, 20, 0.96) 0%, rgba(16, 12, 11, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(221, 178, 103, 0.05);
  overflow: hidden;
}

.brand-graphic {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(169, 111, 38, 0.2));
}

.brand-mark--header .brand-graphic {
  inline-size: 100%;
  block-size: 100%;
  transform: none;
  transform-origin: center;
}

.brand-graphic--header-symbol {
  object-fit: contain;
}

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

.brand-wordmark-image {
  display: block;
  inline-size: clamp(146px, 13vw, 194px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.brand-name-lockup {
  display: grid;
  gap: 5px;
  min-width: 0;
  line-height: 1;
}

.brand-name-lockup__title {
  color: var(--text-strong);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-name-lockup__tagline {
  color: var(--accent-strong);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand--footer {
  align-items: flex-start;
  gap: 16px;
}

.brand-mark--footer {
  inline-size: 78px;
  block-size: 68px;
  padding: 8px 9px 7px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 178, 103, 0.16);
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.08), transparent 54%),
    linear-gradient(180deg, rgba(31, 23, 20, 0.96) 0%, rgba(16, 12, 11, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 28px rgba(0, 0, 0, 0.18);
}

.brand-mark--footer .brand-graphic {
  inline-size: 91%;
  block-size: 91%;
  transform: translate(-4%, 4%) scale(0.9);
  transform-origin: center;
}

.brand-footer-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.brand-wordmark--footer {
  min-width: 0;
}

.brand-wordmark-image--footer {
  inline-size: clamp(146px, 16vw, 194px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.brand-footer-meta {
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.brand-name-lockup--footer {
  gap: 6px;
}

.brand-name-lockup--footer .brand-name-lockup__title {
  font-size: 1.2rem;
}

.brand-name-lockup--footer .brand-name-lockup__tagline {
  font-size: 0.48rem;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(28, 20, 18, 0.9) 0%, rgba(17, 13, 12, 0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.18);
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.94rem;
  color: var(--text-soft);
  white-space: nowrap;
  transition:
    color var(--transition),
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--text-strong);
  background: rgba(221, 178, 103, 0.12);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.notranslate {
  translate: no;
}

.language-switcher {
  position: relative;
  margin-left: 0;
}

.language-switcher summary {
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 15px 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(221, 178, 103, 0.2);
  color: var(--text-strong);
  background:
    linear-gradient(180deg, rgba(34, 24, 21, 0.96) 0%, rgba(19, 14, 13, 0.99) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.language-switcher[open] .language-switcher-trigger,
.language-switcher-trigger:hover {
  border-color: rgba(240, 190, 116, 0.34);
  background:
    linear-gradient(180deg, rgba(45, 32, 28, 0.98) 0%, rgba(26, 18, 16, 0.99) 100%);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 34px rgba(0, 0, 0, 0.28);
}

.language-switcher-current,
.language-switcher-short {
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.language-switcher-current {
  color: #fff6eb;
  letter-spacing: 0.01em;
}

.language-switcher-short {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(221, 178, 103, 0.12);
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.language-switcher-caret {
  inline-size: 10px;
  block-size: 10px;
  border-right: 1.5px solid rgba(240, 190, 116, 0.9);
  border-bottom: 1.5px solid rgba(240, 190, 116, 0.9);
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.language-switcher[open] .language-switcher-caret {
  transform: rotate(-135deg) translateY(-1px);
}

.language-switcher-panel {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 40;
  width: min(458px, calc(100vw - 32px));
  max-height: none;
  overflow: visible;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(221, 178, 103, 0.16);
  background:
    linear-gradient(180deg, rgba(30, 22, 20, 0.98) 0%, rgba(12, 9, 8, 0.99) 100%);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(221, 178, 103, 0.54) rgba(255, 255, 255, 0.04);
}

.language-switcher:not([open]) .language-switcher-panel {
  display: none;
}

.language-switcher-panel::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 22px;
  inline-size: 18px;
  block-size: 18px;
  border-top: 1px solid rgba(221, 178, 103, 0.16);
  border-left: 1px solid rgba(221, 178, 103, 0.16);
  background: rgba(28, 21, 19, 0.98);
  transform: rotate(45deg);
}

.language-switcher-panel::-webkit-scrollbar {
  width: 10px;
}

.language-switcher-panel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher-panel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(233, 190, 120, 0.7) 0%, rgba(169, 111, 38, 0.88) 100%);
  border: 2px solid rgba(19, 14, 13, 0.96);
}

.language-switcher-panel::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(244, 201, 130, 0.82) 0%, rgba(183, 121, 42, 0.94) 100%);
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  text-decoration: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.language-option:hover,
.language-option.is-active {
  color: var(--text-strong);
  background:
    linear-gradient(135deg, rgba(221, 178, 103, 0.16) 0%, rgba(169, 111, 38, 0.08) 100%);
  border-color: rgba(221, 178, 103, 0.2);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.language-option-label,
.language-option-short {
  pointer-events: none;
}

.language-option-label {
  font-size: 0.95rem;
  line-height: 1.35;
}

.language-option-short {
  min-width: 44px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-strong);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  inline-size: 46px;
  block-size: 46px;
  border-radius: 16px;
  border: 1px solid var(--surface-line);
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-burger,
.mobile-nav-burger::before,
.mobile-nav-burger::after {
  display: block;
  inline-size: 16px;
  block-size: 2px;
  border-radius: 999px;
  background: rgba(255, 245, 235, 0.94);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.mobile-nav-burger {
  position: relative;
}

.mobile-nav-burger::before,
.mobile-nav-burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.mobile-nav-burger::before {
  top: -5px;
}

.mobile-nav-burger::after {
  top: 5px;
}

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

.button,
.button-ghost,
.button-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.button {
  color: #1d1309;
  font-weight: 800;
  background: var(--accent-gradient);
  box-shadow: 0 18px 44px rgba(169, 111, 38, 0.28);
}

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

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

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--surface-line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.button-inline {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: none;
  color: var(--accent-strong);
  font-weight: 700;
}

.home-editorial,
.section--story-rail {
  padding: 54px 0 18px;
}

.section.home-hero-section {
  padding-top: 36px;
  padding-bottom: 34px;
}

.home-headline-block {
  width: min(916px, calc(100% - 88px));
  margin: 64px auto 54px;
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.home-headline-block .editorial-label {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent-strong);
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  font-weight: 800;
}

.home-headline-block .editorial-label::before,
.home-headline-block .editorial-label::after {
  content: "—";
  display: inline-block;
  margin: 0 0.8em;
  color: currentColor;
  opacity: 0.95;
}

.editorial-label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
}

.editorial-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 4.6vw, 4.9rem);
  line-height: 0.9;
  letter-spacing: 0;
  color: var(--text-strong);
  max-width: 11.5ch;
  text-wrap: balance;
}

.home-headline-block .editorial-title-line {
  display: block;
}

.editorial-copy {
  margin: 0;
  max-width: 66ch;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 1.08rem;
}

.home-page .home-headline-block .editorial-title {
  width: fit-content;
  max-width: none;
}

.home-page .home-headline-block .editorial-title-line {
  display: block;
  white-space: nowrap;
}

.home-page .home-headline-block .editorial-label::before,
.home-page .home-headline-block .editorial-label::after {
  content: "";
  display: none;
}

.home-headline-block .editorial-label::before,
.home-headline-block .editorial-label::after {
  content: "";
  display: none;
}

.home-headline-block .editorial-title {
  width: fit-content;
  max-width: none;
}

.home-headline-block .editorial-title-line {
  display: block;
  white-space: nowrap;
}

.editorial-spreads {
  display: grid;
  gap: 18px;
}

.editorial-spread {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 3vw, 42px);
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.editorial-spread.is-reversed {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
}

.editorial-spread.is-reversed .editorial-spread-media {
  order: 2;
}

.editorial-spread.is-reversed .editorial-spread-copy {
  order: 1;
  text-align: right;
  justify-items: end;
}

.editorial-spread-media {
  border-radius: 34px;
  overflow: hidden;
  min-height: 420px;
  background: #0e0a08;
}

.editorial-spread-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-spread-copy {
  display: grid;
  gap: 14px;
  padding: 30px 22px;
}

.editorial-spread-label {
  color: var(--accent-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 800;
}

.editorial-spread-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--text-strong);
}

.editorial-spread-quote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--accent-strong);
}

.editorial-spread-description {
  margin: 0;
  color: var(--text-body);
  line-height: 1.75;
}

.hero-grid.hero-grid--structured {
  min-height: auto;
  padding: 18px 0 24px;
  gap: clamp(36px, 4vw, 76px);
}

.hero-title {
  display: grid;
  gap: 10px;
}

.hero-title-light {
  color: var(--text-strong);
}

.hero-stats--compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-stat-inline {
  min-width: 0;
  min-height: 122px;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat-inline strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-strong);
}

.hero-stat-inline span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(480px, 0.92fr);
  gap: clamp(40px, 4.6vw, 84px);
  align-items: center;
  min-height: auto;
  padding: 38px 0 24px;
}

.hero-copy {
  display: grid;
  gap: 24px;
  max-width: 860px;
  align-content: center;
  padding-top: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(4rem, 5.8vw, 6.35rem);
  letter-spacing: 0;
  line-height: 0.92;
  max-width: 9.5ch;
  text-wrap: balance;
}

.hero-title .tone-accent {
  color: var(--accent-strong);
  display: block;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-copy .body-large {
  max-width: 62ch;
  font-size: 1.08rem;
}

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

.stat-card,
.mini-metric {
  padding: 22px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card strong,
.mini-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-strong);
}

.stat-card span,
.mini-metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.visual-frame {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  min-height: 100%;
  background:
    radial-gradient(circle at top right, rgba(255, 201, 127, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(29, 20, 16, 0.94), rgba(17, 12, 10, 0.9));
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  inline-size: 180px;
  block-size: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 190, 116, 0.2), transparent 62%);
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 24px;
  max-width: 264px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(21, 16, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.floating-note strong {
  display: block;
  color: var(--text-strong);
  margin-bottom: 8px;
}

.floating-note span {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
  max-width: none;
}

.trust-pill {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-strong);
  font-size: 0.9rem;
  line-height: 1.5;
}

html[dir="rtl"] .home-page .hero-grid.hero-grid--structured,
html[dir="rtl"] .home-page .hero-stats--compact,
html[dir="rtl"] .home-page .trust-bar,
html[dir="rtl"] .home-page .editorial-spread {
  direction: ltr;
}

html[dir="rtl"] .home-page .hero-copy,
html[dir="rtl"] .home-page .home-headline-block,
html[dir="rtl"] .home-page .editorial-spread-copy,
html[dir="rtl"] .home-page .section-header,
html[dir="rtl"] .home-page .card-body,
html[dir="rtl"] .home-page .floating-note,
html[dir="rtl"] .home-page .trust-pill,
html[dir="rtl"] .home-page .hero-stat-inline {
  direction: rtl;
  text-align: right;
}

.grid-3,
.grid-4,
.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.story-card,
.feature-card,
.collection-card,
.product-card,
.insight-card,
.industry-card,
.faq-card,
.info-card,
.process-card,
.testimonial-card,
.cta-panel,
.page-hero,
.article-shell,
.contact-shell,
.empty-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow-soft);
}

.story-card,
.collection-card,
.product-card,
.insight-card {
  overflow: hidden;
}

.collection-card img,
.insight-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
}

.product-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0b0c0e;
  border-bottom: 1px solid rgba(215, 183, 122, 0.12);
}

.product-card-media img {
  inline-size: 100%;
  block-size: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform var(--transition), opacity var(--transition);
}

.product-card:hover .product-card-media img {
  transform: scale(1.035);
  opacity: 0.9;
}

.card-body {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.card-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.card-title {
  margin: 0;
  font-size: 1.55rem;
  color: var(--text-strong);
  font-family: var(--font-display);
  line-height: 1.05;
}

.card-text {
  margin: 0;
  color: var(--text-body);
  line-height: 1.7;
}

.feature-card,
.process-card,
.industry-card,
.faq-card,
.testimonial-card,
.info-card {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.feature-card strong,
.process-card strong,
.industry-card strong,
.faq-card strong,
.info-card strong {
  font-size: 1.2rem;
  color: var(--text-strong);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 30px;
  align-items: stretch;
}

.media-panel {
  min-height: 420px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-card);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-panel {
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 24px;
}

.list-checks,
.feature-list,
.meta-list,
.timeline-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-checks li,
.feature-list li,
.meta-list li,
.timeline-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.75;
  color: var(--text-body);
}

.list-checks li::before,
.feature-list li::before,
.timeline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  inline-size: 8px;
  block-size: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(218, 160, 75, 0.14);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-size: 2.2rem;
}

.page-hero {
  padding: 46px clamp(24px, 5vw, 54px);
  display: grid;
  gap: 18px;
}

.page-breadcrumb {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-chip {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--surface-line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  transition: var(--transition);
}

.filter-chip.is-active,
.filter-chip:hover {
  color: var(--text-strong);
  border-color: var(--surface-line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.product-type-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: -12px 0 28px;
  padding: 12px;
  border: 1px solid rgba(215, 183, 122, 0.1);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 8px;
}

.product-type-chip,
.pagination-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid rgba(215, 183, 122, 0.14);
  color: var(--text-body);
  font-weight: 700;
  font-size: 0.86rem;
  transition: var(--transition);
}

.product-type-chip.is-active,
.product-type-chip:hover,
.pagination-link:hover {
  color: var(--text-strong);
  border-color: rgba(215, 183, 122, 0.34);
  background: rgba(215, 183, 122, 0.08);
}

.product-results-summary {
  margin-inline-start: auto;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.82fr);
  gap: 30px;
}

.product-gallery,
.product-summary,
.article-body,
.contact-form,
.contact-info-panel {
  padding: clamp(24px, 4vw, 38px);
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 12px;
  overflow: hidden;
}

.product-gallery__item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 1px solid rgba(215, 183, 122, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.product-gallery__item:first-child {
  grid-column: 1 / -1;
}

.product-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-summary {
  display: grid;
  gap: 22px;
}

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

.meta-item {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item span {
  display: block;
  color: var(--text-soft);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.meta-item strong {
  display: block;
  color: var(--text-strong);
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

.product-specification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
}

.product-specification-list > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 0.58fr);
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-specification-list > div:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.product-specification-list dt,
.product-specification-list dd {
  margin: 0;
  line-height: 1.55;
}

.product-specification-list dt {
  color: var(--text-soft);
}

.product-specification-list dd {
  color: var(--text-strong);
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .product-specification-list {
    grid-template-columns: 1fr;
  }

  .product-specification-list > div:nth-child(odd) {
    border-right: 0;
  }
}

.quote-banner {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(245, 191, 111, 0.16), rgba(155, 94, 28, 0.08));
  border: 1px solid rgba(245, 191, 111, 0.22);
}

.quote-banner p {
  margin: 0;
  color: var(--text-strong);
  line-height: 1.7;
  font-size: 1rem;
}

.quote-banner--form {
  padding: 18px 20px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(250px, 0.25fr);
  gap: 30px;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-lead-image {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.article-body p {
  margin: 0;
  color: var(--text-body);
  line-height: 1.9;
}

.article-meta,
.sidebar-stack {
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-card h3 {
  margin: 0 0 16px;
  color: var(--text-strong);
  font-size: 1rem;
}

.sidebar-card a {
  display: block;
  padding: 12px 0;
  color: var(--text-body);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-card a:first-of-type {
  border-top: 0;
  padding-top: 0;
}

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

.faq-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), margin-top var(--transition);
}

[data-faq-item=""] {}

.faq-card[data-open="true"] .faq-answer {
  max-height: 240px;
  margin-top: 8px;
}

.faq-card[data-open="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--surface-line);
  color: var(--accent-strong);
  transition: transform var(--transition);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 30px;
  padding: 12px;
}

#product-inquiry {
  scroll-margin-top: 120px;
}

.contact-form form,
.inquiry-form {
  display: grid;
  gap: 18px;
}

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

.field label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-body);
  line-height: 1.65;
}

.check-field input {
  margin-top: 3px;
  inline-size: 18px;
  block-size: 18px;
  flex: 0 0 auto;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-strong);
  outline: none;
}

.field textarea {
  min-height: 150px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(240, 190, 116, 0.55);
  box-shadow: 0 0 0 4px rgba(240, 190, 116, 0.1);
}

.contact-info-panel {
  display: grid;
  gap: 18px;
}

.contact-row {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.mobile-contact-dock {
  display: none;
}

.contact-row span {
  display: block;
  color: var(--text-soft);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.contact-row strong,
.contact-row a {
  color: var(--text-strong);
  line-height: 1.6;
}

.site-flash {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.site-flash.success {
  border-color: rgba(116, 210, 149, 0.25);
  background: rgba(95, 179, 121, 0.12);
}

.site-flash.error {
  border-color: rgba(230, 115, 115, 0.28);
  background: rgba(230, 115, 115, 0.12);
}

.site-footer {
  margin-top: 80px;
  padding: 30px 0 44px;
}

.footer-panel {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.6fr));
  gap: 28px;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 0.82rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: var(--text-body);
  line-height: 1.75;
}

.footer-brand-copy {
  margin-top: 18px;
  max-width: 36ch;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-icp-link {
  color: inherit;
}

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

.empty-card {
  padding: 28px;
}

.empty-card h3 {
  margin: 0 0 10px;
  color: var(--text-strong);
}

@media (max-width: 1100px) {
  .desktop-nav,
  .topbar-actions .button {
    display: none;
  }

  .topbar-actions {
    margin-left: auto;
    gap: 10px;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: 0;
  }

  .mobile-nav-panel {
    display: block;
    width: var(--container);
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding-bottom var(--transition);
  }

  .mobile-nav-panel[data-open="true"] {
    max-height: 420px;
    padding-bottom: 18px;
  }

  .mobile-nav-panel nav {
    display: grid;
    gap: 10px;
    padding: 14px 0 0;
  }

  .mobile-nav-panel a,
  .mobile-nav-panel .button {
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-strong);
  }

  .hero-grid,
  .split-band,
  .product-layout,
  .article-grid,
  .contact-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .floating-note {
    right: 18px;
    bottom: 18px;
  }

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

  .trust-bar,
  .grid-3,
  .card-grid,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .language-switcher-current {
    display: none;
  }

  .language-switcher-short {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .site-shell {
    padding-bottom: 86px;
  }

  .section {
    padding: 72px 0;
  }

  .section.home-hero-section {
    padding: 10px 0 12px;
  }

  .topbar-inner {
    min-height: 76px;
    gap: 14px;
  }

  .brand--header {
    gap: 12px;
    min-width: 0;
  }

  .brand-mark--header {
    inline-size: 62px;
    block-size: 44px;
    padding: 6px 7px;
    border-radius: 9px;
  }

  .brand-wordmark-image {
    inline-size: 118px;
  }

  .brand-mark--footer {
    inline-size: 62px;
    block-size: 56px;
    border-radius: 20px;
  }

  .brand-wordmark-image--footer {
    inline-size: 144px;
  }

  .language-switcher-trigger {
    min-height: 46px;
    padding: 0 12px;
    border-radius: 16px;
  }

  .language-switcher-panel {
    right: 0;
    width: min(296px, calc(100vw - 24px));
    max-height: min(68vh, 460px);
    overflow-y: auto;
    grid-template-columns: 1fr;
    padding: 14px 10px 14px 14px;
  }

  .container {
    width: min(100vw - 24px, 100%);
  }

  .topbar-inner {
    width: min(100vw - 24px, 100%);
  }

  .hero-grid.hero-grid--structured {
    min-height: auto;
    padding: 12px 0 10px;
    gap: 20px;
  }

  .home-headline-block {
    width: min(820px, calc(100% - 64px));
    margin: 34px auto 40px;
  }

  .hero-copy {
    gap: 22px;
    max-width: none;
  }

  .home-editorial,
  .section--story-rail {
    padding-top: 20px;
  }

  .home-headline-block {
    margin-bottom: 28px;
  }

  .editorial-title {
    max-width: 11ch;
    font-size: clamp(2.35rem, 8.8vw, 3.55rem);
    line-height: 0.96;
    text-wrap: balance;
  }

  .editorial-copy {
    max-width: 38ch;
    font-size: 0.95rem;
  }

  .editorial-spread,
  .editorial-spread.is-reversed {
    grid-template-columns: 1fr;
  }

  .editorial-spread.is-reversed .editorial-spread-media,
  .editorial-spread.is-reversed .editorial-spread-copy {
    order: initial;
    text-align: left;
    justify-items: start;
  }

  .editorial-spread-media {
    min-height: 300px;
  }

  .editorial-spread-copy {
    gap: 12px;
  }

  .editorial-spread-title {
    max-width: 11ch;
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
    text-wrap: balance;
  }

  .editorial-spread-quote,
  .editorial-spread-description {
    font-size: 0.98rem;
  }

  .hero-title {
    max-width: 10.5ch;
    margin-inline: auto;
    font-size: clamp(2.5rem, 11vw, 3.6rem);
    text-wrap: balance;
  }

  .hero-copy .body-large {
    max-width: 36ch;
    margin-inline: auto;
    font-size: 0.98rem;
  }

  .hero-stat-inline {
    min-width: 0;
    padding: 16px 18px;
    min-height: auto;
  }

  .trust-bar,
  .grid-3,
  .grid-4,
  .card-grid,
  .process-grid,
  .hero-stats,
  .meta-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .content-panel,
  .product-summary,
  .product-gallery,
  .article-body,
  .contact-form,
  .contact-info-panel,
  .feature-card,
  .process-card,
  .industry-card,
  .faq-card,
  .testimonial-card,
  .info-card,
  .page-hero {
    padding: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .mobile-contact-dock {
    position: fixed;
    inset: auto 12px 12px;
    z-index: 34;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(221, 178, 103, 0.16);
    background: rgba(14, 11, 10, 0.94);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(12px);
  }

  .mobile-contact-dock__button {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .mobile-contact-dock__button.is-primary {
    background: var(--accent-gradient);
    color: #1d120b;
  }

  .mobile-contact-dock__button.is-secondary {
    border: 1px solid rgba(221, 178, 103, 0.18);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-strong);
  }
}

@media (min-width: 1600px) {
  :root {
    --container: min(1660px, calc(100vw - 128px));
  }

  .hero-title {
    max-width: 10.5ch;
  }
}

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

.home-page-body {
  background:
    radial-gradient(circle at top right, rgba(124, 54, 40, 0.18), transparent 24%),
    radial-gradient(circle at 18% 20%, rgba(168, 112, 40, 0.16), transparent 20%),
    #090807;
}

.home-page-body .site-shell::before {
  display: none;
}

.home-page .section {
  padding: 0 0 64px;
}

.home-page .home-intro-panel {
  padding-top: 14px;
}

.home-page .home-hero-panel,
.home-page .home-product-panel,
.home-page .home-feature-panel,
.home-page .home-services-panel,
.home-page .home-about-panel,
.home-page .home-contact-panel {
  padding-top: 0;
}

.home-page .container {
  width: min(1232px, calc(100vw - 48px));
}

.home-intro-stack,
.home-feature-rail {
  display: grid;
  gap: 14px;
}

.home-feature-spread {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  background: #0e0b0a;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(201, 148, 32, 0.12);
  border-radius: 2px;
}

.home-feature-spread.is-reversed .home-feature-spread-media {
  order: 2;
}

.home-feature-spread.is-reversed .home-feature-spread-copy {
  order: 1;
  text-align: right;
  justify-items: end;
}

.home-feature-spread-media {
  min-height: 400px;
  overflow: hidden;
  background: #090706;
}

.home-feature-spread-media img,
.home-hero-intro-visual img,
.home-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-feature-spread-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 34px 40px;
}

.home-feature-spread-copy .editorial-spread-title {
  max-width: 16ch;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.04;
}

.home-feature-spread-copy .editorial-spread-description {
  max-width: 48ch;
}

.home-feature-spread-copy .editorial-spread-quote {
  max-width: 40ch;
}

.home-hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  background: linear-gradient(180deg, rgba(23, 19, 17, 0.96) 0%, rgba(17, 13, 12, 0.98) 100%);
  border: 1px solid rgba(201, 148, 32, 0.12);
  overflow: hidden;
}

.home-hero-intro-copy {
  padding: 74px 50px 68px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.home-hero-intro-copy .hero-title {
  max-width: 7.8ch;
  font-size: clamp(3.5rem, 5vw, 5.4rem);
}

.home-hero-intro-copy .body-large {
  max-width: 36ch;
  font-size: 1rem;
}

.home-hero-intro-visual {
  min-height: 520px;
  overflow: hidden;
  background: #090706;
}

.home-hero-stack .hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-hero-stack .hero-stat-inline {
  min-height: 88px;
  padding: 0;
  border: 0;
  background: transparent;
}

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

.home-product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-product-card .card-body,
.home-collection-card .card-body {
  padding: 16px 16px 20px;
}

.home-product-card .card-title,
.home-collection-card .card-title {
  font-size: 1.12rem;
}

.home-product-card .card-text {
  font-size: 0.9rem;
}

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

.home-collection-card img {
  aspect-ratio: 0.98 / 1;
}

.home-service-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 34px 34px 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: start;
  text-align: left;
  border-radius: 2px;
  border: 1px solid rgba(201, 148, 32, 0.18);
  background: linear-gradient(180deg, rgba(20, 16, 15, 0.98) 0%, rgba(14, 11, 10, 0.98) 100%);
}

.home-service-summary {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-right: 10px;
}

.home-service-icon {
  inline-size: 56px;
  block-size: 56px;
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0;
  background: var(--accent-gradient);
  position: relative;
}

.home-service-icon::after {
  content: "04";
  color: #1d1309;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.home-service-title {
  margin: 0;
  font-family: var(--font-display);
  color: var(--text-strong);
  font-size: clamp(2.1rem, 3.1vw, 3rem);
  line-height: 1.06;
  max-width: 10.5ch;
}

.home-service-copy {
  margin: 0;
  max-width: 34ch;
  color: var(--text-body);
  line-height: 1.75;
}

.home-service-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.home-service-step {
  min-height: 116px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: #d7c6a7;
  display: grid;
  gap: 10px;
  align-content: start;
}

.home-service-step-index {
  display: inline-flex;
  width: fit-content;
  color: var(--accent-strong);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.home-service-step strong {
  color: var(--text-strong);
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.1;
}

.home-service-step p {
  margin: 0;
  color: var(--text-body);
  line-height: 1.65;
  font-size: 0.92rem;
}

.home-about-band {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 24px;
}

.home-about-media {
  min-height: 420px;
}

.home-about-copy {
  gap: 20px;
}

.home-about-copy .section-title {
  max-width: 11ch;
}

.home-about-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.46fr);
  gap: 20px;
  align-items: start;
}

.home-contact-copy {
  display: grid;
  gap: 16px;
  padding-top: 2px;
}

.home-contact-copy .section-title {
  width: 100%;
  max-width: 20ch;
  text-wrap: balance;
}

.home-contact-copy .section-copy {
  max-width: 56ch;
}

.home-contact-lite {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(221, 178, 103, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(10px);
}

.home-contact-mini-form {
  display: grid;
  gap: 12px;
}

.home-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.home-contact-field input,
.home-contact-field select,
.home-contact-field textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-strong);
  outline: none;
}

.home-contact-field textarea {
  min-height: 112px;
  resize: vertical;
}

.home-contact-field--wide {
  grid-column: 1 / -1;
}

.home-contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.home-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.home-contact-badge {
  inline-size: 32px;
  block-size: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1d1309;
  background: var(--accent-gradient);
  flex: 0 0 auto;
}

.home-contact-label {
  display: block;
  color: var(--text-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-contact-value {
  display: block;
  color: var(--text-strong);
  font-size: 0.98rem;
  line-height: 1.4;
}

@media (max-width: 1100px) {
  .home-page .container {
    width: min(100vw - 24px, 100%);
  }

  .home-feature-spread,
  .home-hero-intro,
  .home-product-grid,
  .home-collection-grid,
  .home-about-band,
  .home-contact-shell {
    grid-template-columns: 1fr;
  }

  .home-feature-spread.is-reversed .home-feature-spread-media,
  .home-feature-spread.is-reversed .home-feature-spread-copy {
    order: initial;
    text-align: left;
    justify-items: start;
  }

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

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

  .home-service-summary {
    padding-right: 0;
  }

  .home-service-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about-metrics,
  .home-contact-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero-intro-visual,
  .home-about-media {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .home-page .section {
    padding: 0 0 48px;
  }

  .home-page .home-intro-panel {
    padding-top: 16px;
  }

  .home-feature-spread-media,
  .home-hero-intro-visual,
  .home-about-media {
    min-height: 280px;
  }

  .home-feature-spread-copy,
  .home-hero-intro-copy,
  .home-service-card,
  .home-about-copy,
  .home-contact-lite {
    padding: 22px;
  }

  .home-product-grid,
  .home-collection-grid,
  .home-about-metrics,
  .home-contact-fields {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    width: 100%;
  }

  .home-service-steps {
    grid-template-columns: 1fr;
  }
}
