:root {
  color-scheme: light;
  --garnet: #782F40;
  --garnet-2: #4b1826;
  --gold: #CEB888;
  --gold-2: #f2e2b8;
  --white: #ffffff;
  --ink: #211f24;
  --muted: #655d62;
  --paper: #fffaf0;
  --surface: #ffffff;
  --surface-2: #f8f2e5;
  --border: rgba(120, 47, 64, 0.16);
  --shadow: 0 28px 80px rgba(50, 24, 30, 0.14);
  --shadow-soft: 0 20px 60px rgba(32, 22, 24, 0.10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --header-height: 84px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --text-scale: 1;
  --focus-ring: #782F40;
  --focus-offset-bg: #ffffff;
}


[data-theme="dark"] {
  color-scheme: dark;
  --ink: #fff8ef;
  --muted: #dbcfc5;
  --paper: #130d10;
  --surface: #1d1418;
  --surface-2: #27191e;
  --border: rgba(206, 184, 136, 0.26);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  --shadow-soft: 0 18px 54px rgba(0, 0, 0, 0.28);
  --focus-ring: #CEB888;
  --focus-offset-bg: #130d10;
}


[data-a11y-contrast="true"] {
  --ink: #000000;
  --muted: #111111;
  --paper: #ffffff;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --border: #000000;
  --garnet: #520015;
  --gold: #6b5300;
}

[data-theme="dark"][data-a11y-contrast="true"] {
  --ink: #ffffff;
  --muted: #ffffff;
  --paper: #000000;
  --surface: #000000;
  --surface-2: #000000;
  --border: #ffffff;
  --garnet: #ffb9ca;
  --gold: #ffe299;
}

[data-a11y-large-text="true"] {
  --text-scale: 1.11;
}

[data-a11y-readable="true"] {
  --font-body: Arial, Verdana, sans-serif;
  --font-display: Arial, Verdana, sans-serif;
}

[data-a11y-underline="true"] a {
  text-decoration: underline !important;
  text-decoration-thickness: 0.12em !important;
  text-underline-offset: 0.18em !important;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: calc(16px * var(--text-scale));
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(206, 184, 136, 0.24), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(120, 47, 64, 0.10), transparent 31rem),
    var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

button, input, select {
  font: inherit;
}

button, select, a, input {
  outline-color: var(--gold);
  outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  transform: translateY(-160%);
  background: var(--garnet);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  color: #fff;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 235px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.75rem;
  margin-top: 0.08rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.6vw, 2rem);
}

.primary-nav a {
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.primary-nav a:hover { color: var(--gold); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.theme-menu,
.accessibility-menu {
  position: relative;
}

.icon-button {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  border-radius: 999px;
  color: inherit;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  font-weight: 950;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.icon-button:hover,
.icon-button[aria-expanded="true"] {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--garnet);
}

.icon-button:focus-visible,
.nav-toggle:focus-visible,
.phone-link:focus-visible,
.primary-nav a:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

[data-theme="dark"] .icon-button:hover,
[data-theme="dark"] .icon-button:focus-visible,
[data-theme="dark"] .icon-button[aria-expanded="true"] {
  border-color: #fff8ef;
  background: var(--gold);
  color: #130d10;
}

.theme-menu-list,
.accessibility-panel {
  position: absolute;
  top: calc(100% + 0.72rem);
  right: 0;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.theme-menu-list {
  width: 190px;
  padding: 0.55rem;
}

.theme-menu-list button {
  width: 100%;
  min-height: 46px;
  display: grid;
  grid-template-columns: 1.55rem 1fr auto;
  align-items: center;
  gap: 0.62rem;
  border: 1px solid transparent;
  border-radius: 15px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  padding: 0.55rem 0.72rem;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.theme-menu-list button:hover,
.theme-menu-list button:focus-visible {
  color: var(--garnet);
  background: color-mix(in srgb, var(--gold) 32%, var(--surface));
  border-color: var(--garnet);
}

.theme-menu-list button[aria-checked="true"] {
  color: var(--garnet-2);
  background: var(--gold);
  border-color: var(--garnet);
}

.theme-menu-list button[aria-checked="true"]::after {
  content: "✓";
  justify-self: end;
  grid-column: 3;
  font-weight: 950;
}

[data-theme="dark"] .theme-menu-list,
[data-theme="dark"] .accessibility-panel {
  color: #fff8ef;
  background: rgba(29, 20, 24, 0.98);
  border-color: rgba(206, 184, 136, 0.48);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

[data-theme="dark"] .theme-menu-list button {
  color: #fff8ef;
}

[data-theme="dark"] .theme-menu-list button:hover,
[data-theme="dark"] .theme-menu-list button:focus-visible,
[data-theme="dark"] .theme-menu-list button[aria-checked="true"] {
  color: #130d10;
  background: var(--gold);
  border-color: #fff8ef;
}

[data-theme="dark"] .theme-menu-list button:focus-visible {
  outline-color: var(--gold);
}

.phone-link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.78rem 1.1rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.phone-link {
  color: var(--garnet);
  background: var(--gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.13);
}

.btn:hover,
.phone-link:hover,
.partner-card:hover,
.text-link:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: var(--garnet);
  box-shadow: 0 20px 40px rgba(120, 47, 64, 0.25);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero-section {
  position: relative;
  min-height: clamp(600px, 78svh, 820px);
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 2.35rem) clamp(1.2rem, 4vw, 4rem) 3.25rem;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video { object-fit: cover; z-index: -3; }

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(22, 10, 13, 0.88), rgba(63, 23, 34, 0.58) 46%, rgba(27, 15, 11, 0.42)),
    radial-gradient(circle at 80% 20%, rgba(206, 184, 136, 0.20), transparent 32rem),
    linear-gradient(0deg, rgba(18, 12, 13, 0.34), rgba(18, 12, 13, 0.10));
}

.hero-content {
  width: min(700px, 100%);
  margin-top: 1rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-content h1,
.section-heading h2,
.about-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 6.4vw, 6.45rem);
  text-wrap: balance;
}

.hero-copy {
  max-width: 620px;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero-card {
  position: absolute;
  right: clamp(1rem, 4vw, 4.5rem);
  bottom: clamp(1rem, 4vw, 3.6rem);
  width: min(340px, calc(100% - 2rem));
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.card-kicker {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-card small {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.76);
}

.intro-band {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 2rem));
  margin: clamp(1.25rem, 2.4vw, 1.85rem) auto clamp(1.5rem, 3vw, 2.35rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--border);
  box-shadow: var(--shadow);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.intro-item {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  padding: clamp(1.1rem, 2.4vw, 1.7rem);
  min-height: 154px;
}

.intro-item span,
.product-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--garnet);
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(120, 47, 64, 0.22);
}

.intro-item strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.intro-item p {
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.1rem, 4vw, 3.6rem) 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: clamp(1rem, 2.2vw, 1.8rem);
}

.section-heading h2,
.about-copy h2,
.contact-panel h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  color: var(--ink);
  text-wrap: balance;
}

.section-heading p,
.about-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.product-section {
  padding-top: clamp(2.1rem, 4vw, 3.6rem);
}

.product-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 3rem);
  margin: 0 0 clamp(1.4rem, 3.2vw, 2.7rem);
  padding: clamp(1rem, 2.5vw, 1.6rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 96%, transparent), color-mix(in srgb, var(--surface-2) 88%, transparent));
  box-shadow: var(--shadow-soft);
}

.product-card-b {
  grid-template-columns: 0.95fr 1.05fr;
  transform: translateX(3.5rem);
}

.product-card-a {
  transform: translateX(-2rem);
}

.product-image-wrap {
  position: relative;
  min-height: 360px;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  background: #180d10;
  box-shadow: 0 25px 60px rgba(40, 20, 24, 0.18);
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.32));
  pointer-events: none;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrap img { transform: scale(1.035); }

.product-image-wrap-accent {
  background: linear-gradient(135deg, var(--gold), #fff7da);
}

.product-copy {
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.product-copy h3 {
  margin: 0.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.product-copy p { color: var(--muted); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-weight: 750;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--garnet) 40%, transparent);
}

.partners-section {
  padding-top: clamp(1.4rem, 3vw, 2.4rem);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: clamp(0.75rem, 2.4vw, 1.35rem);
  background: transparent;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.partner-card:hover,
.partner-card:focus-visible {
  box-shadow: 0 18px 42px rgba(120, 47, 64, 0.14);
  border-color: var(--garnet);
  background: color-mix(in srgb, var(--surface) 42%, transparent);
}

.partner-card img {
  width: min(360px, 100%);
  height: auto;
  border-radius: 0;
}

.partner-logo-letub {
  filter: brightness(0.43) sepia(0.22) saturate(0.78) contrast(1.08);
}

[data-theme="dark"] .partner-logo-letub {
  filter: none;
}

[data-a11y-contrast="true"] .partner-logo-letub {
  filter: brightness(0.25) contrast(1.2);
}

[data-theme="dark"][data-a11y-contrast="true"] .partner-logo-letub {
  filter: none;
}

.about-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.25rem, 3.5vw, 3rem);
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  z-index: 1;
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-copy {
  padding: clamp(1rem, 3vw, 2rem);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--garnet);
  font-weight: 950;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 0.15em;
  text-underline-offset: 0.25em;
  transition: transform 0.18s ease;
}

.contact-section {
  width: min(1260px, calc(100% - 2rem));
  padding-bottom: clamp(2.1rem, 4vw, 3.6rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  padding: clamp(1.25rem, 3.2vw, 2.8rem);
  border-radius: 38px;
  background:
    radial-gradient(circle at 0 0, rgba(206, 184, 136, 0.24), transparent 28rem),
    linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-phone {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--garnet);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 950;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 1rem;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 26%, transparent);
}

.turnstile-slot {
  min-height: 72px;
  display: flex;
  align-items: center;
}

.form-submit {
  width: fit-content;
  cursor: pointer;
}

.form-submit[disabled] {
  opacity: 0.68;
  cursor: wait;
}

.form-status {
  min-height: 1.6rem;
  margin: 0;
  font-weight: 850;
}

.form-status.is-success { color: #23703a; }
.form-status.is-error { color: #b31d38; }
[data-theme="dark"] .form-status.is-success { color: #8ee4a5; }
[data-theme="dark"] .form-status.is-error { color: #ff9cac; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note a { color: var(--garnet); font-weight: 850; }

.accessibility-panel {
  width: min(310px, calc(100vw - 2rem));
  padding: 1rem;
}

.accessibility-panel h2 {
  margin: 0 0 0.8rem;
  font-size: 1.15rem;
}

.accessibility-panel button {
  width: 100%;
  min-height: 44px;
  margin-top: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
  padding: 0.64rem 0.8rem;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.accessibility-panel button:hover,
.accessibility-panel button:focus-visible {
  color: var(--garnet);
  background: color-mix(in srgb, var(--gold) 32%, var(--surface));
  border-color: var(--garnet);
}

.accessibility-panel button[aria-pressed="true"] {
  color: #fff;
  background: var(--garnet);
  border-color: var(--garnet);
}

.accessibility-panel .muted-button {
  color: var(--garnet);
  background: transparent;
}

.accessibility-panel .muted-button:hover,
.accessibility-panel .muted-button:focus-visible {
  color: #fff;
  background: var(--garnet);
  border-color: var(--garnet);
}

[data-theme="dark"] .accessibility-panel button {
  color: #fff8ef;
  background: #27191e;
  border-color: rgba(206, 184, 136, 0.34);
}

[data-theme="dark"] .accessibility-panel button:hover,
[data-theme="dark"] .accessibility-panel button:focus-visible,
[data-theme="dark"] .accessibility-panel button[aria-pressed="true"] {
  color: #130d10;
  background: var(--gold);
  border-color: #fff8ef;
}

[data-theme="dark"] .accessibility-panel .muted-button {
  color: #fff8ef;
  background: transparent;
}

[data-theme="dark"] .accessibility-panel .muted-button:hover,
[data-theme="dark"] .accessibility-panel .muted-button:focus-visible {
  color: #130d10;
  background: var(--gold);
  border-color: #fff8ef;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  color: #fff;
  background: linear-gradient(135deg, var(--garnet-2), var(--garnet));
}

.site-footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-footer p { margin: 0; color: rgba(255, 255, 255, 0.82); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  color: #fff;
  font-weight: 850;
  text-decoration-color: rgba(206, 184, 136, 0.8);
  text-underline-offset: 0.22em;
}

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

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

.delay-1 { transition-delay: 0.14s; }

@media (max-width: 1060px) {
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    color: var(--ink);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open { display: flex; }

  .primary-nav a {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: var(--surface-2);
  }

  .nav-toggle { display: inline-block; }

  .phone-link { display: none; }

  .brand { min-width: 0; }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 1.6rem;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-card {
    position: static;
    width: min(520px, 100%);
    margin-top: 1.25rem;
  }

  .intro-band,
  .product-card,
  .product-card-b,
  .product-card-a,
  .about-section,
  .contact-panel {
    grid-template-columns: 1fr;
    transform: none;
  }

  .intro-band { margin-top: 1rem; }

  .product-card-b .product-image-wrap { order: -1; }

  .partner-grid { grid-template-columns: 1fr; }

  .about-media,
  .about-media img,
  .product-image-wrap,
  .product-image-wrap img {
    min-height: 330px;
  }

  .field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-height: 76px; }

  .site-header {
    gap: 0.5rem;
    padding: 0.72rem 0.82rem;
  }

  .brand { gap: 0.6rem; }

  .brand small { display: none; }

  .brand strong { font-size: 0.92rem; }

  .brand img { width: 40px; height: 40px; }

  .header-actions { gap: 0.42rem; }

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

  .theme-menu-list,
  .accessibility-panel {
    right: -2.9rem;
  }

  .hero-section {
    min-height: 100svh;
    padding: calc(var(--header-height) + 1rem) 1rem 1.1rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(22, 10, 13, 0.82), rgba(63, 23, 34, 0.48) 54%, rgba(27, 15, 11, 0.30)),
      radial-gradient(circle at 75% 18%, rgba(206, 184, 136, 0.18), transparent 22rem),
      linear-gradient(0deg, rgba(18, 12, 13, 0.22), rgba(18, 12, 13, 0.04));
  }

  .hero-content { width: 100%; }

  .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero-content h1 {
    max-width: 20rem;
    font-size: clamp(2.05rem, 10.2vw, 2.95rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 21rem;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .hero-cta {
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 0.95rem;
  }

  .btn {
    width: auto;
    min-height: 42px;
    flex: 1 1 0;
    padding: 0.64rem 0.66rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .hero-card {
    width: 100%;
    margin-top: 0.8rem;
    padding: 0.85rem 0.95rem;
    border-radius: 22px;
  }

  .card-kicker {
    margin-bottom: 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero-card strong {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .hero-card small {
    margin-top: 0.32rem;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .intro-band {
    width: min(100% - 1rem, var(--max));
    margin-top: 0.75rem;
    border-radius: 22px;
  }

  .intro-item {
    min-height: auto;
    padding: 1rem;
  }

  .intro-item span,
  .product-number {
    width: 38px;
    height: 38px;
    font-size: 0.86rem;
  }

  .intro-item strong { margin-top: 0.65rem; }

  .intro-item p { line-height: 1.45; }

  .section {
    width: min(100% - 1rem, var(--max));
    padding: 1.65rem 0;
  }

  .product-section,
  .partners-section {
    padding-top: 1.65rem;
  }

  .section-heading {
    margin-bottom: 0.75rem;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-panel h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 0.98;
  }

  .section-heading p,
  .about-copy p,
  .contact-panel p {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .product-card,
  .contact-panel {
    border-radius: 24px;
  }

  .product-card {
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    padding: 0.62rem;
  }

  .product-copy { padding: 0.65rem; }

  .product-copy h3 {
    margin: 0.35rem 0 0.65rem;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .feature-list {
    gap: 0.38rem;
    margin-top: 0.65rem;
  }

  .about-media,
  .about-media img,
  .product-image-wrap,
  .product-image-wrap img {
    min-height: 245px;
  }

  .partner-grid {
    gap: 0.15rem;
  }

  .partner-card {
    min-height: 88px;
    padding: 0.25rem 0.45rem;
    border-radius: 20px;
  }

  .partner-card img {
    width: min(300px, 92%);
  }

  .about-copy { padding: 0.1rem 0.25rem; }

  .contact-section {
    padding-bottom: 1.8rem;
  }

  .contact-panel {
    gap: 0.9rem;
    padding: 0.95rem;
  }

  .contact-form input {
    min-height: 50px;
    border-radius: 15px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 1.5rem;
  }

  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

[data-a11y-reduce-motion="true"] *,
[data-a11y-reduce-motion="true"] *::before,
[data-a11y-reduce-motion="true"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
}

[data-a11y-reduce-motion="true"] .hero-video {
  display: none;
}

[data-a11y-reduce-motion="true"] .hero-section {
  background: linear-gradient(135deg, rgba(75, 24, 38, 0.92), rgba(120, 47, 64, 0.74)), url('/assets/hero-poster.jpg') center/cover;
}

.site-header:not(.is-scrolled):not(.is-open) .icon-button {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.42);
}

.site-header.is-scrolled .icon-button,
.site-header.is-open .icon-button {
  color: var(--ink);
  background-color: color-mix(in srgb, var(--surface) 88%, transparent);
}
