@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&family=Cormorant+Garamond:wght@400;500;600&display=swap");

:root {
  --bg: #0b0b0d;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --bg-panel: rgba(20, 18, 17, 0.78);
  --line: rgba(255, 248, 240, 0.12);
  --line-strong: rgba(255, 248, 240, 0.22);
  --text: #f4efe8;
  --muted: #b9aea1;
  --accent: #d7b98c;
  --accent-deep: #8a6943;
  --shadow: 0 36px 96px rgba(0, 0, 0, 0.42);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max: 1320px;
  --ease: 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
  --space-section: 96px;
  --space-section-large: 120px;
  --space-section-small: 72px;
  --space-card: 32px;
  --font-heading: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(156, 117, 67, 0.22), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(110, 83, 51, 0.16), transparent 24%),
    linear-gradient(180deg, #09090a 0%, #0d0c0d 38%, #12100f 100%);
  font-family: var(--font-body);
  line-height: 1.72;
  letter-spacing: -0.01em;
}

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

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

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

.page-shell {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: auto;
  width: 32vw;
  height: 32vw;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}

.page-shell::before {
  top: -10vw;
  right: -6vw;
  background: rgba(160, 122, 71, 0.55);
}

.page-shell::after {
  bottom: -12vw;
  left: -8vw;
  background: rgba(117, 90, 61, 0.4);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-note {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
}

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

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: transform var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill-link,
.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background var(--ease),
    color var(--ease),
    box-shadow var(--ease);
}

.pill-link {
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.pill-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  color: var(--text);
}

.button {
  border: 1px solid rgba(223, 197, 160, 0.3);
  color: #120e0b;
  background:
    linear-gradient(135deg, rgba(255, 243, 226, 0.96), rgba(208, 167, 116, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 44px rgba(164, 121, 67, 0.2);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 26px 64px rgba(164, 121, 67, 0.3);
}

.ghost-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.ghost-button:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 185, 140, 0.45);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(215, 185, 140, 0.35);
}

.text-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(215, 185, 140, 0.7);
}

main {
  padding: 40px 0 120px;
}

.hero {
  padding: 46px 0 76px;
}

.hero-card,
.section-card,
.info-panel,
.product-card,
.contact-card,
.media-card,
.cta-strip,
.process-card,
.metric,
.quote-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  min-height: 820px;
  padding: 72px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 12% 16%, rgba(211, 171, 122, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.hero-card::before,
.section-card::before,
.product-card::before,
.media-card::before,
.cta-strip::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 46%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Palatino Linotype", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  font-size: clamp(4.2rem, 8vw, 7.2rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.4rem);
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.hero-lead {
  max-width: 620px;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 12px;
}

.metric {
  padding: 26px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 10, 0.28);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--text);
}

.hero-visual {
  position: relative;
  border-radius: 38px;
  border: 1px solid rgba(255, 248, 240, 0.08);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.09), transparent 24%),
    radial-gradient(circle at 78% 82%, rgba(201, 163, 114, 0.12), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #171514 0%, #0e0d0d 100%);
  min-height: 100%;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.92;
}

.floating-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 320px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 248, 240, 0.1);
  border-radius: 24px;
  background: rgba(8, 8, 9, 0.72);
  backdrop-filter: blur(18px);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text);
}

.hero-frame {
  display: grid;
  gap: 28px;
}

.section {
  padding: 48px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 520px;
}

.section-card {
  border-radius: 36px;
  padding: 42px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 26px;
}

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

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

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

.info-panel {
  padding: 32px;
  border-radius: 28px;
}

.info-panel strong,
.product-card strong,
.contact-card strong,
.media-card strong,
.quote-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--text);
}

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

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

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), transparent);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(18, 18, 19, 0.96), rgba(13, 13, 14, 0.98));
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 185, 140, 0.2);
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.46);
}

.product-visual {
  aspect-ratio: 0.88;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    #121112;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
  padding: 28px 28px 30px;
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status.available {
  border-color: rgba(160, 203, 168, 0.32);
  color: #bfd8c3;
}

.status.order {
  border-color: rgba(215, 185, 140, 0.28);
  color: #dfc298;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.split-hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: stretch;
}

.rich-panel {
  padding: 44px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 16, 0.74);
}

.accent-line {
  width: 92px;
  height: 1px;
  margin: 20px 0 24px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-label {
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.media-card,
.contact-card,
.quote-card,
.cta-strip {
  border-radius: 34px;
}

.media-card,
.contact-card {
  padding: 34px;
}

.media-preview {
  display: grid;
  place-items: center;
  min-height: 280px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(215, 185, 140, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.play-button {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid rgba(215, 185, 140, 0.38);
  background: rgba(9, 9, 10, 0.68);
  font-size: 1.25rem;
}

.quote-card {
  padding: 28px;
}

.quote-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  line-height: 1.35;
  color: var(--text);
}

.cta-strip {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  padding: 42px;
}

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

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

.field label {
  color: var(--muted);
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 248, 240, 0.1);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transition:
    border-color var(--ease),
    background var(--ease);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(215, 185, 140, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

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

.small-note {
  color: rgba(185, 174, 161, 0.8);
  font-size: 0.85rem;
}

.form-status {
  margin-top: 14px;
  min-height: 1.5em;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(227, 214, 196, 0.72);
}

.form-status.is-success {
  color: rgba(198, 151, 93, 0.95);
}

.form-status.is-error {
  color: rgba(255, 180, 160, 0.9);
}

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form button[disabled] {
  opacity: 0.65;
  cursor: wait;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(185, 174, 161, 0.7);
  font-size: 0.9rem;
}

.breadcrumbs span {
  color: rgba(185, 174, 161, 0.38);
}

.page-intro {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin-bottom: 42px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
}

.filter-chip.active,
.filter-chip:hover {
  border-color: rgba(215, 185, 140, 0.42);
  color: var(--text);
}

.product-layout {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 36px;
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.gallery-main,
.gallery-sub {
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111010;
}

.gallery-main {
  aspect-ratio: 0.92;
}

.gallery-main img,
.gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.gallery-sub {
  aspect-ratio: 1.24;
}

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

.spec {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.spec span {
  display: block;
  margin-bottom: 8px;
  color: rgba(185, 174, 161, 0.78);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audio-placeholder {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.wave {
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  gap: 6px;
  align-items: center;
  min-height: 70px;
}

.wave span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(215, 185, 140, 0.95), rgba(215, 185, 140, 0.15));
  animation: pulse 2.6s ease-in-out infinite;
}

.wave span:nth-child(odd) {
  animation-duration: 3.1s;
}

.wave span:nth-child(3n) {
  animation-duration: 2.2s;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.65);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.site-footer {
  padding: 0 0 32px;
}

.footer-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.mobile-only {
  display: none;
}

.home-page .hero {
  padding: 48px 0 0;
  background:
    radial-gradient(circle at 74% 18%, rgba(128, 87, 42, 0.26), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, #060606 0%, #0a0908 100%);
}

.home-page .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .site-header .brand {
  display: none;
}

.home-page .site-header .site-nav {
  gap: 20px;
}

.home-page .site-header .site-nav a {
  color: rgba(244, 239, 232, 0.68);
  font-size: 0.82rem;
}

.home-page .site-header .header-actions .pill-link,
.home-page .site-header .header-actions .button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 0.76rem;
}

.home-page .site-header .header-inner {
  min-height: 68px;
  justify-content: flex-end;
}

.home-page .hero-card,
.home-page .section-card,
.home-page .info-panel,
.home-page .product-card,
.home-page .cta-strip,
.home-page .rich-panel,
.home-page .media-card,
.home-page .quote-card,
.home-page .metric {
  box-shadow: none;
}

.home-page .hero-card {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  min-height: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .hero-card::before {
  display: none;
}

.home-page .hero-copy {
  padding: 34px 0 0;
  justify-content: flex-start;
  gap: 54px;
}

.home-page .hero-brand-lockup {
  display: grid;
  gap: 8px;
}

.home-page .hero-brand-title,
.home-page .hero-brand-subtitle {
  display: block;
  text-transform: uppercase;
}

.home-page .hero-brand-title {
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  color: var(--text);
}

.home-page .hero-brand-subtitle {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.3em;
}

.home-page h1 {
  font-size: clamp(3.4rem, 5vw, 5.3rem);
  line-height: 1;
  max-width: 8.2ch;
}

.home-page .hero-lead {
  max-width: 450px;
  color: rgba(235, 224, 210, 0.72);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-top: 28px;
}

.home-page .hero-actions {
  margin-top: 36px;
}

.home-page .hero-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 248, 240, 0.08);
}

.home-page .metric {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 28px 28px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .metric + .metric {
  border-left: 1px solid rgba(255, 248, 240, 0.08);
  padding-left: 34px;
}

.home-page .metric p {
  max-width: 250px;
  font-size: 0.95rem;
  color: rgba(214, 202, 188, 0.6);
}

.home-page .metric strong {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.home-page .metric-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 2px;
  border: 0;
  border-radius: 0;
  color: rgba(212, 171, 116, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.home-page .hero-visual {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  overflow: visible;
  position: relative;
  min-height: 760px;
  padding-right: 0;
  padding-bottom: 0;
  border: 0;
  border-radius: 0;
  background:
    url("assets/hero-bugari.png") right 18px bottom 42px / min(56vw, 860px) auto no-repeat,
    radial-gradient(circle at 60% 18%, rgba(183, 129, 70, 0.22), transparent 30%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.06) 100%);
}

.home-page .hero-visual::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 0;
  bottom: 0;
  height: 66px;
  background:
    linear-gradient(180deg, rgba(30, 24, 20, 0.1), rgba(18, 15, 14, 0.85)),
    linear-gradient(90deg, rgba(60, 45, 32, 0.18), rgba(17, 14, 13, 0.9));
  box-shadow: 0 -1px 0 rgba(255, 248, 240, 0.03);
}

.home-page .hero-visual img {
  display: none;
}

.home-page .floating-note {
  display: none;
}

.home-page .home-why-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 1fr;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: 8px;
  background: rgba(10, 10, 11, 0.65);
}

.home-page .home-why-label,
.home-page .home-why-band .info-panel {
  min-height: 154px;
}

.home-page .home-why-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 32px 28px;
  color: var(--accent);
  border-right: 1px solid rgba(255, 248, 240, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.home-page .home-why-label strong {
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
}

.home-page .home-why-band .info-panel {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  padding: 28px 26px;
  border-right: 1px solid rgba(255, 248, 240, 0.08);
}

.home-page .home-why-band .info-panel:last-child {
  border-right: 0;
}

.home-page .band-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 0;
  color: rgba(212, 171, 116, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.home-page .home-why-band .info-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-page .home-why-band .info-panel p {
  color: rgba(214, 202, 188, 0.6);
  font-size: 0.92rem;
  line-height: 1.6;
}

.home-page .products-grid {
  gap: 48px;
}

.home-page .product-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .product-card:hover {
  transform: none;
  border: 0;
  box-shadow: none;
}

.home-page .product-visual {
  aspect-ratio: 0.86;
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #131214 0%, #0d0d0e 100%);
}

.home-page .product-visual img {
  transform: scale(1);
}

.home-page .product-body {
  padding: 28px 4px 0;
  gap: 16px;
}

.home-page .meta-row {
  gap: 8px;
}

.home-page .tag,
.home-page .status {
  min-height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.home-page .product-actions {
  gap: 18px;
  padding-top: 12px;
}

.home-page .cta-strip,
.home-page .rich-panel,
.home-page .media-card,
.home-page .quote-card {
  padding: 100px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .quote-card {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 240, 0.08);
}

.home-page .footer-card {
  border: 0;
  border-top: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: 0;
  background: transparent;
  padding: 42px 0 0;
}

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

.home-page .hero + .section {
  padding-top: 24px;
}

.home-page .cta-strip .grid-2,
.home-page .split-hero,
.home-page #request .cta-strip {
  gap: 44px;
}

.home-page .rich-panel p,
.home-page .cta-strip p,
.home-page .product-body p {
  max-width: 34ch;
}

@media (max-width: 1100px) {
  .hero-card,
  .split-hero,
  .cta-strip,
  .product-layout,
  .footer-card {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  body {
    line-height: 1.55;
  }

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(9, 9, 10, 0.96);
    box-shadow: var(--shadow);
  }

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

  .home-page .site-header {
    position: sticky;
    background: rgba(9, 9, 10, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
  }

  .home-page .site-header .brand,
  .home-page .site-header .header-actions {
    display: flex;
  }

  .home-page .site-header .site-nav {
    display: none;
  }

  .home-page .site-header .header-inner {
    min-height: 82px;
    justify-content: space-between;
  }

  .header-actions .pill-link {
    display: none;
  }

  .hero-card,
  .section-card,
  .rich-panel,
  .media-card,
  .contact-card,
  .quote-card,
  .cta-strip {
    padding: 26px;
    border-radius: 26px;
  }

  .hero-card {
    min-height: auto;
  }

  .home-page .hero-card {
    gap: 30px;
    padding-top: 0;
  }

  .home-page .hero-visual {
    min-height: auto;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 0;
    background:
      url("assets/hero-bugari.png") center bottom 20px / min(92vw, 640px) auto no-repeat,
      radial-gradient(circle at 60% 18%, rgba(183, 129, 70, 0.22), transparent 30%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.06) 100%);
  }

  .home-page .hero-copy {
    padding: 92px 0 28px;
  }

  .home-page h1 {
    max-width: none;
  }

  .home-page .hero-meta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-page .metric + .metric {
    border-left: 0;
    padding-left: 0;
  }

  .home-page .home-why-band {
    grid-template-columns: 1fr;
  }

  .home-page .home-why-label,
  .home-page .home-why-band .info-panel {
    min-height: auto;
  }

  .home-page .home-why-label {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 240, 0.08);
  }

  .home-page .home-why-band .info-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 240, 0.08);
  }

  .home-page .home-why-band .info-panel:last-child {
    border-bottom: 0;
  }

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

  .home-page .cta-strip,
  .home-page .rich-panel,
  .home-page .media-card,
  .home-page .quote-card {
    padding: 72px 0;
  }

  .hero-meta,
  .grid-2,
  .grid-3,
  .grid-4,
  .products-grid,
  .spec-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .mobile-only {
    display: inline-flex;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.home-luxury {
  background:
    radial-gradient(circle at 18% 12%, rgba(137, 104, 63, 0.14), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(96, 70, 40, 0.16), transparent 26%),
    linear-gradient(180deg, #080706 0%, #100d0b 45%, #0a0908 100%);
  font-family: var(--font-body);
}

.home-luxury::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 248, 236, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 236, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 86%);
}

.home-luxury .page-shell::before,
.home-luxury .page-shell::after {
  opacity: 0.1;
}

.home-luxury .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  background: rgba(10, 8, 7, 0.74);
  border-bottom-color: rgba(235, 220, 197, 0.08);
  backdrop-filter: blur(18px);
}

.home-luxury .site-header .brand {
  display: flex;
}

.home-luxury .site-header .header-inner {
  justify-content: space-between;
}

.home-luxury .site-header .site-nav a {
  color: rgba(235, 223, 209, 0.6);
}

.home-luxury .site-header .header-actions .pill-link,
.home-luxury .site-header .header-actions .button {
  min-height: 54px;
  padding: 0 28px;
  font-size: 0.77rem;
}

.home-luxury .header-inner {
  min-height: 88px;
}

.home-luxury .brand-mark {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.home-luxury .brand-note,
.home-luxury .site-nav a,
.home-luxury .lux-kicker,
.home-luxury .lux-advantages-line,
.home-luxury .lux-step span {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-luxury .brand-note {
  color: rgba(229, 213, 189, 0.62);
}

.home-luxury .site-nav {
  gap: 28px;
}

.home-luxury .site-nav a {
  font-size: 0.77rem;
  color: rgba(235, 223, 209, 0.6);
}

.home-luxury .header-actions .button,
.home-luxury .header-actions .pill-link,
.home-luxury .lux-actions .button,
.home-luxury .lux-actions .ghost-button,
.home-luxury .lux-card .pill-link {
  min-height: 54px;
  padding: 0 28px;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
}

.home-luxury .button {
  color: #18120d;
  background:
    linear-gradient(135deg, rgba(245, 230, 206, 0.98), rgba(201, 164, 112, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
  border-color: rgba(208, 178, 137, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 22px 60px rgba(128, 87, 41, 0.16);
}

.home-luxury .ghost-button,
.home-luxury .pill-link {
  border-color: rgba(234, 219, 193, 0.14);
  background: rgba(255, 249, 241, 0.03);
  color: var(--text);
}

.instrument-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.instrument-card-link:hover,
.instrument-card-link:focus-visible {
  text-decoration: none;
}

.instrument-card-link .pill-link {
  pointer-events: none;
}

.instrument-card-link:hover {
  transform: translateY(-2px);
}

.home-luxury main {
  padding: 0 0 120px;
}

.lux-hero,
.lux-section,
.lux-advantages {
  position: relative;
}

.lux-hero {
  padding: 0;
}

.lux-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: 660px;
}

.lux-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-right: 0;
}

.home-luxury h1,
.home-luxury h2,
.home-luxury h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.02;
}

body.home-luxury:not(.catalog-page) h1 {
  font-size: clamp(4rem, 6.2vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 820px;
}

.home-luxury h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  letter-spacing: -0.04em;
}

.home-luxury h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.12;
}

.lux-kicker {
  margin: 0 0 24px;
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lux-hero-lead,
.lux-card-body p,
.lux-callout p {
  max-width: 430px;
  color: rgba(227, 214, 196, 0.72);
  font-size: 1.05rem;
  line-height: 1.85;
}

.lux-hero-lead {
  margin-top: 28px;
}

.lux-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.lux-actions-centered {
  justify-content: center;
}

.lux-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  position: relative;
  padding: 0 0 18px 8px;
}

.lux-hero-visual::before {
  content: "";
  position: absolute;
  inset: -2% -2% -2% 0;
  background:
    radial-gradient(circle at 60% 44%, rgba(176, 129, 72, 0.18), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 243, 224, 0.08), transparent 44%),
    radial-gradient(circle at 76% 24%, rgba(123, 83, 43, 0.12), transparent 24%),
    radial-gradient(circle at 50% 52%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28) 78%, rgba(0, 0, 0, 0.52) 100%);
  filter: blur(18px);
  pointer-events: none;
}

.lux-hero-object {
  position: relative;
  width: min(100%, 720px);
  min-height: 520px;
  padding: 34px 30px;
}

.lux-hero-glow {
  position: absolute;
  inset: 0 -4% 2% 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(204, 162, 100, 0.14) 0%, rgba(143, 101, 58, 0.11) 30%, rgba(86, 56, 31, 0.05) 54%, transparent 80%);
  filter: blur(40px);
  pointer-events: none;
}

.lux-hero-shadow {
  position: absolute;
  left: 16%;
  right: 8%;
  bottom: 7%;
  height: 136px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(70, 43, 21, 0.38), rgba(25, 17, 12, 0.18) 42%, rgba(23, 16, 12, 0) 82%);
  filter: blur(36px);
  pointer-events: none;
}

.lux-image-stage {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 620px;
  padding: clamp(36px, 5vw, 72px);
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 72% 72%, rgba(183, 140, 87, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(19, 15, 13, 0.76);
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.32);
}

.lux-image-stage-hero {
  position: relative;
  min-height: 520px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lux-image-stage img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
}

.lux-image-stage-hero img {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-width: 720px;
  max-height: 440px;
  object-fit: contain;
  object-position: center right;
  filter:
    drop-shadow(0 38px 58px rgba(28, 17, 10, 0.24))
    drop-shadow(0 70px 126px rgba(0, 0, 0, 0.32));
}

.lux-advantages {
  padding: 42px 0 0;
}

.lux-advantages-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 42px;
  padding: 28px 0;
  border-top: 1px solid rgba(241, 226, 204, 0.08);
  border-bottom: 1px solid rgba(241, 226, 204, 0.08);
  color: rgba(230, 218, 200, 0.7);
  font-size: 0.78rem;
}

.lux-section {
  padding: 128px 0 0;
}

.lux-advantages + .lux-section {
  padding-top: 112px;
}

.lux-section + .lux-section {
  padding-top: 128px;
}

.lux-section:has(.lux-callout) {
  padding-top: 128px;
}

.lux-section:has(.lux-process) {
  padding-top: 128px;
}

.lux-section:has(.lux-callout-final) {
  padding-top: 128px;
}

.lux-section-heading {
  display: grid;
  gap: 18px;
  justify-items: start;
  margin-bottom: 72px;
}

.lux-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(64px, 8vw, 112px);
}

.lux-card {
  display: grid;
  gap: 46px;
}

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

.lux-card .lux-image-stage {
  min-height: 720px;
  padding: clamp(28px, 4vw, 54px);
  border-color: rgba(241, 226, 204, 0.06);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 70% 76%, rgba(166, 122, 73, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.44);
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.22);
}

.lux-card .lux-image-stage img {
  max-height: 680px;
  filter:
    drop-shadow(0 24px 42px rgba(26, 16, 10, 0.18))
    drop-shadow(0 42px 86px rgba(0, 0, 0, 0.2));
}

.lux-callout {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(68px, 8vw, 108px);
  border-top: 1px solid rgba(241, 226, 204, 0.08);
  border-bottom: 1px solid rgba(241, 226, 204, 0.08);
  text-align: center;
}

.lux-callout-final {
  margin-bottom: 24px;
}

.lux-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding-top: 18px;
}

.lux-step {
  display: grid;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 226, 204, 0.1);
}

.lux-step span {
  color: rgba(215, 185, 140, 0.8);
  font-size: 0.74rem;
}

.lux-step h3 {
  font-size: 1.55rem;
}

.lux-footer {
  padding: 96px 0 34px;
}

.lux-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 24px 40px;
  align-items: start;
  padding-top: 36px;
  border-top: 1px solid rgba(241, 226, 204, 0.08);
}

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

.lux-legal-meta {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: rgba(227, 214, 196, 0.46);
  font-size: 0.78rem;
  line-height: 1.55;
}

.lux-footer-title {
  color: rgba(215, 185, 140, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lux-footer-links,
.lux-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: rgba(230, 218, 200, 0.66);
}

.lux-footer-links a:hover,
.lux-footer-socials a:hover {
  color: var(--text);
}

.lux-social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(230, 218, 200, 0.78);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color var(--ease),
    border-color var(--ease),
    background var(--ease),
    transform var(--ease);
}

.lux-social-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(215, 185, 140, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.catalog-page .site-header {
  position: sticky;
  inset: auto;
}

.catalog-page .header-actions {
  display: flex;
}

.catalog-page .site-header {
  position: sticky;
  inset: auto;
  background: rgba(10, 8, 7, 0.74);
  border-bottom-color: rgba(235, 220, 197, 0.08);
  backdrop-filter: blur(18px);
}

.lux-catalog-hero {
  padding: 124px 0 16px;
}

.lux-catalog-intro {
  display: grid;
  gap: 20px;
  max-width: 780px;
}

.lux-catalog-intro .lux-section-heading {
  margin-bottom: 0;
}

.lux-catalog-lead {
  max-width: 30ch;
  color: rgba(227, 214, 196, 0.72);
  font-size: 1.04rem;
  line-height: 1.82;
}

.lux-catalog-section {
  padding: 108px 0 0;
}

.lux-catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 76px;
}

.lux-filter {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(230, 218, 200, 0.56);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--ease), opacity var(--ease);
}

.lux-filter:hover,
.lux-filter.active {
  color: var(--accent);
}

.lux-catalog-grid-page {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 98px 80px;
}

.lux-product-card {
  gap: 46px;
}

.lux-product-card .lux-image-stage {
  min-height: 620px;
  padding: 40px 34px 48px;
}

.lux-product-card .lux-image-stage img {
  max-height: 520px;
}

.lux-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(215, 185, 140, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lux-card-price {
  color: var(--text);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.lux-product-card-placeholder {
  min-height: 240px;
  align-items: center;
}

.lux-product-card-placeholder .lux-card-body {
  padding: 28px;
}

.product-page .site-header {
  position: sticky;
  inset: auto;
  background: rgba(10, 8, 7, 0.74);
  border-bottom-color: rgba(235, 220, 197, 0.08);
  backdrop-filter: blur(18px);
}

.product-page main {
  padding-bottom: 0;
}

.product-page .lux-product-hero {
  padding: 0;
  min-height: auto;
}

.product-page .lux-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  min-height: auto;
  padding-top: 48px;
  padding-bottom: 72px;
}

.product-page .lux-product-copy {
  display: grid;
  gap: 14px;
  max-width: 540px;
}

.lux-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(230, 218, 200, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.lux-breadcrumbs span:last-child,
.lux-breadcrumbs a:hover {
  color: var(--text);
}

.lux-product-status {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lux-product-lead {
  max-width: 33ch;
  color: rgba(227, 214, 196, 0.76);
  font-size: 1.04rem;
  line-height: 1.82;
}

.product-page .lux-product-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: auto;
  padding-top: 72px;
}

.product-page .lux-product-object {
  width: min(100%, 920px);
  min-height: auto;
  padding: 0 26px 12px 10px;
}

.product-page .lux-product-stage {
  min-height: auto;
}

.product-page .lux-product-stage img {
  width: min(100%, 780px);
  max-width: 780px;
  max-height: 620px;
  object-fit: contain;
  object-position: center right;
  filter:
    drop-shadow(0 38px 58px rgba(28, 17, 10, 0.24))
    drop-shadow(0 78px 138px rgba(0, 0, 0, 0.34));
}

.product-page .lux-section-heading {
  margin-bottom: 48px;
}

.product-page .lux-product-copy .lux-actions {
  margin-top: 32px;
}

.in-stock-product-hero {
  padding: 0;
}

.in-stock-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(44px, 6vw, 88px);
  align-items: start;
  padding-top: 48px;
  padding-bottom: 72px;
}

.in-stock-product-copy {
  display: grid;
  gap: 18px;
  max-width: 650px;
}

.in-stock-product-topline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.in-stock-product-topline .lux-kicker {
  margin: 0;
}

.in-stock-product-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(198, 151, 93, 0.34);
  background: rgba(198, 151, 93, 0.1);
  color: rgba(241, 226, 204, 0.88);
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.in-stock-product-copy h1 {
  margin: 6px 0 0;
  max-width: 760px;
  font-size: clamp(3.2rem, 5.6vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.in-stock-product-subtitle {
  margin: 0;
  max-width: 44ch;
  color: rgba(215, 185, 140, 0.88);
  font-size: 1rem;
  line-height: 1.7;
}

.in-stock-product-body {
  margin: 0;
  max-width: 62ch;
  color: rgba(231, 219, 202, 0.76);
  font-size: 1.02rem;
  line-height: 1.82;
}

.in-stock-product-note {
  margin: 2px 0 0;
  max-width: 44ch;
  color: rgba(227, 214, 196, 0.52);
  font-size: 0.9rem;
  line-height: 1.6;
}

.in-stock-product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.in-stock-product-highlight {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01)),
    rgba(17, 13, 12, 0.4);
}

.in-stock-product-highlight span {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.in-stock-product-highlight strong {
  color: rgba(241, 226, 204, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

.in-stock-product-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 18px;
}

.in-stock-product-object {
  width: min(100%, 900px);
  min-height: auto;
  padding: 6px 16px 18px;
}

.in-stock-product-stage {
  min-height: auto;
}

.in-stock-product-stage img {
  width: min(100%, 760px);
  max-width: 760px;
  max-height: 620px;
  object-fit: contain;
  object-position: center right;
  filter:
    drop-shadow(0 38px 58px rgba(28, 17, 10, 0.24))
    drop-shadow(0 78px 138px rgba(0, 0, 0, 0.34));
}

.in-stock-panel {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 32px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    radial-gradient(circle at 82% 24%, rgba(198, 151, 93, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(17, 13, 12, 0.42);
}

.in-stock-panel .lux-section-heading {
  margin-bottom: 0;
  justify-items: start;
  text-align: left;
}

.in-stock-rich-copy,
.in-stock-panel-copy {
  display: grid;
  gap: 16px;
  max-width: 72ch;
  color: rgba(232, 220, 202, 0.72);
}

.in-stock-rich-copy p,
.in-stock-panel-copy,
.in-stock-bullet-list li,
.in-stock-specs-note,
.in-stock-video-note {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
}

.in-stock-media-layout,
.in-stock-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

#instrument-media {
  scroll-margin-top: 118px;
}

.in-stock-photo-stage {
  display: grid;
  gap: 16px;
  margin: 0;
}

.in-stock-photo-stage img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 40%),
    rgba(0, 0, 0, 0.2);
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.3));
}

.in-stock-photo-stage figcaption {
  color: rgba(227, 214, 196, 0.54);
  font-size: 0.9rem;
  line-height: 1.7;
}

.in-stock-photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.in-stock-photo-card {
  overflow: hidden;
  display: grid;
  gap: 0;
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(17, 13, 12, 0.42);
  padding: 14px;
}

.in-stock-photo-card img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: none;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 40%),
    rgba(0, 0, 0, 0.2);
}

.in-stock-photo-card:hover img {
  transform: none;
}

.stock-video-section {
  padding: 72px 0;
}

.stock-video-section .lux-section-heading {
  margin-bottom: 0;
  justify-items: start;
  text-align: left;
}

.stock-video-section__lead {
  margin: 0;
  max-width: 68ch;
  color: rgba(232, 220, 202, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
}

.stock-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.stock-video-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(241, 226, 204, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(18, 14, 13, 0.58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.stock-video-card__preview {
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  background:
    radial-gradient(circle at 50% 45%, rgba(198, 151, 93, 0.2), transparent 36%),
    rgba(0, 0, 0, 0.26);
}

.stock-video-card__preview:focus-visible {
  outline: 1px solid rgba(198, 151, 93, 0.75);
  outline-offset: -4px;
}

.stock-video-card__preview:hover .stock-video-card__play,
.stock-video-card__preview:focus-visible .stock-video-card__play {
  transform: scale(1.06);
  border-color: rgba(198, 151, 93, 0.6);
  background: rgba(198, 151, 93, 0.18);
}

.stock-video-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding-left: 4px;
  border-radius: 999px;
  border: 1px solid rgba(241, 226, 204, 0.26);
  background: rgba(241, 226, 204, 0.1);
  color: rgba(241, 226, 204, 0.9);
  font-size: 1.7rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.stock-video-card__body {
  padding: 26px;
}

.stock-video-card__body h3 {
  margin: 0;
  color: rgba(241, 226, 204, 0.94);
  font-size: 1.35rem;
  line-height: 1.2;
}

.stock-video-card__body p {
  margin: 12px 0 0;
  color: rgba(227, 214, 196, 0.68);
  line-height: 1.65;
}

.stock-video-button {
  min-height: 46px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(198, 151, 93, 0.35);
  background: rgba(198, 151, 93, 0.12);
  color: rgba(241, 226, 204, 0.92);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.stock-video-button:hover,
.stock-video-button:focus-visible {
  border-color: rgba(198, 151, 93, 0.52);
  background: rgba(198, 151, 93, 0.18);
  transform: translateY(-1px);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(241, 226, 204, 0.14);
  background: rgba(12, 10, 9, 0.96);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.48);
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(241, 226, 204, 0.18);
  background: rgba(0, 0, 0, 0.45);
  color: rgba(241, 226, 204, 0.92);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

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

body.modal-open {
  overflow: hidden;
}

.in-stock-video-note {
  color: rgba(227, 214, 196, 0.56);
}

.in-stock-video-grid {
  display: grid;
  gap: 14px;
}

.in-stock-gold-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.in-stock-video-card {
  display: grid;
  gap: 12px;
  padding: 22px 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01)),
    rgba(19, 15, 13, 0.4);
}

.in-stock-video-card__tag {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.in-stock-video-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.24rem;
  line-height: 1.2;
}

.in-stock-video-card p {
  margin: 0;
  color: rgba(232, 220, 202, 0.66);
  font-size: 0.95rem;
  line-height: 1.72;
}

.in-stock-video-card .ghost-button {
  width: fit-content;
}

.in-stock-bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(232, 220, 202, 0.72);
}

.in-stock-bullet-list li {
  padding-left: 4px;
}

.in-stock-specs-note {
  margin-top: 20px;
  max-width: 760px;
  color: rgba(227, 214, 196, 0.58);
}

.in-stock-purchase-callout,
.in-stock-final-callout {
  gap: 22px;
}

.in-stock-purchase-note,
.in-stock-final-note {
  margin: 0;
  max-width: 56ch;
  color: rgba(227, 214, 196, 0.56);
  font-size: 0.9rem;
  line-height: 1.65;
}

.lux-product-price {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 18px 22px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(19, 15, 13, 0.38);
}

.lux-product-price-label {
  color: rgba(215, 185, 140, 0.76);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lux-product-price-value {
  color: var(--text);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.product-page .lux-section.lux-product-section {
  padding-top: 72px;
  padding-bottom: 72px;
  min-height: auto;
}

.product-page .lux-section.lux-product-section-specs {
  padding-top: 72px;
  padding-bottom: 72px;
}

.product-page .lux-section.lux-product-section-included {
  padding-top: 0;
  padding-bottom: 72px;
}

.product-page .lux-section.lux-product-section-options {
  padding-top: 0;
  padding-bottom: 72px;
}

.product-page .lux-section.lux-product-section-consultation {
  padding-top: 72px;
  padding-bottom: 72px;
  min-height: auto;
}

.lux-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
}

.product-included-card {
  display: grid;
  padding: clamp(28px, 4vw, 50px);
  border-radius: 32px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    radial-gradient(circle at 18% 24%, rgba(198, 151, 93, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(17, 13, 12, 0.44);
}

.product-included-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.product-included-copy {
  display: grid;
  gap: 22px;
  max-width: 620px;
}

.product-included-copy .lux-section-heading {
  margin-bottom: 0;
  justify-items: start;
  text-align: left;
}

.product-included-copy .lux-section-heading h2 {
  max-width: 720px;
}

.product-included-intro {
  margin: 0;
  max-width: 600px;
  color: rgba(227, 214, 196, 0.72);
  font-size: 1rem;
  line-height: 1.78;
}

.product-included-list {
  display: grid;
  gap: 14px;
}

.product-included-item {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 20px 22px 20px 48px;
  border-radius: 24px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01)),
    rgba(19, 15, 13, 0.4);
}

.product-included-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 26px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(215, 185, 140, 0.98), rgba(215, 185, 140, 0.24));
  box-shadow: 0 0 18px rgba(215, 185, 140, 0.2);
}

.product-included-item span {
  color: rgba(241, 226, 204, 0.9);
  font-size: 1.02rem;
  line-height: 1.45;
}

.product-included-item p {
  margin: 0;
  color: rgba(227, 214, 196, 0.58);
  font-size: 0.92rem;
  line-height: 1.7;
}

.product-options-card {
  display: grid;
  gap: 34px;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 34px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    radial-gradient(circle at 78% 26%, rgba(198, 151, 93, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(18, 14, 13, 0.5);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.18);
}

.product-options-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.product-options-copy {
  display: grid;
  gap: 22px;
  align-content: start;
  max-width: 640px;
}

.product-options-copy .lux-section-heading {
  margin-bottom: 0;
}

.product-options-copy .lux-section-heading h2 {
  max-width: 760px;
}

.product-options-intro {
  margin: 0;
  max-width: 620px;
  color: rgba(227, 214, 196, 0.74);
  font-size: 1.03rem;
  line-height: 1.78;
}

.product-options-list-wrap {
  display: grid;
  gap: 18px;
}

.product-options-list {
  display: grid;
  gap: 14px;
}

.product-option-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01)),
    rgba(17, 13, 12, 0.42);
}

.product-option-row span {
  color: rgba(237, 227, 212, 0.82);
  font-size: 0.98rem;
  line-height: 1.65;
}

.product-option-row strong {
  color: rgba(215, 185, 140, 0.92);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-options-note {
  margin: 0;
  max-width: 540px;
  color: rgba(227, 214, 196, 0.56);
  font-size: 0.9rem;
  line-height: 1.7;
}

.product-options-custom {
  display: grid;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 226, 204, 0.08);
  max-width: 980px;
}

.product-options-custom__eyebrow {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-options-custom p {
  margin: 0;
  max-width: 72ch;
  color: rgba(232, 220, 202, 0.7);
  font-size: 0.98rem;
  line-height: 1.78;
}

.product-options-custom .lux-actions {
  margin-top: 10px;
}

.lux-spec-item {
  display: grid;
  gap: 12px;
  padding: 28px 30px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(19, 15, 13, 0.48);
}

.lux-spec-item span {
  color: rgba(215, 185, 140, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lux-spec-item strong {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
}

.lux-feature-block {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  max-width: 500px;
}

.lux-feature-title {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.lux-feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(227, 214, 196, 0.7);
  font-size: 0.98rem;
  line-height: 1.7;
}

.lux-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(215, 185, 140, 0.95), rgba(215, 185, 140, 0.22));
}

.product-page .lux-callout {
  gap: 22px;
  padding: 72px 0;
  min-height: auto;
}

.product-page .lux-catalog-grid {
  gap: 48px;
}

.product-page .lux-footer {
  margin-top: 0;
  padding-top: 72px;
}

.contacts-page-hero {
  padding: 0;
}

.contacts-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: 660px;
}

.contacts-hero-copy {
  display: grid;
  max-width: 620px;
}

.contacts-hero-card {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 520px;
  padding: 36px 34px;
}

.contacts-page .lux-contacts-section {
  padding-top: 88px;
}

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

.lux-contact-card {
  display: grid;
  gap: 20px;
  padding: 34px 32px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 18%, rgba(186, 138, 83, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.4);
}

.lux-contact-name {
  color: var(--text);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.lux-contact-card p {
  max-width: 26ch;
  color: rgba(227, 214, 196, 0.72);
  font-size: 1.04rem;
  line-height: 1.82;
}

.lux-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: start;
}

.lux-contact-copy {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.lux-contact-copy .lux-section-heading {
  margin-bottom: 0;
}

.contact-representation-note {
  display: grid;
  gap: 12px;
  max-width: 560px;
  padding: 26px 28px;
  border-radius: 28px;
}

.contact-representation-note .lux-kicker {
  margin: 0;
}

.contact-representation-title {
  margin: 0;
  max-width: 28ch;
  color: rgba(241, 226, 204, 0.92);
  font-size: 1.02rem;
  line-height: 1.72;
}

.contact-representation-meta {
  display: grid;
  gap: 4px;
  color: rgba(227, 214, 196, 0.62);
  font-size: 0.9rem;
  line-height: 1.62;
}

.lux-contact-form-shell {
  padding: 34px 34px 30px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(170, 124, 73, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(18, 14, 13, 0.44);
  box-shadow: 0 32px 84px rgba(0, 0, 0, 0.18);
}

.catalog-page .site-header,
.product-page .site-header,
.contacts-page .site-header,
.brand-page .site-header,
.about-page .site-header,
.craft-page .site-header,
.custom-order-page .site-header,
.delivery-page .site-header,
.in-stock-page .site-header,
.media-page .site-header,
.legacy-product-page .site-header {
  position: sticky;
  inset: auto;
  background: rgba(10, 8, 7, 0.74);
  border-bottom-color: rgba(235, 220, 197, 0.08);
  backdrop-filter: blur(18px);
}

.home-luxury .section,
.home-luxury .page-intro,
.home-luxury .section-heading,
.home-luxury .split-hero,
.home-luxury .grid-2,
.home-luxury .grid-3,
.home-luxury .grid-4,
.home-luxury .products-grid,
.home-luxury .product-layout,
.home-luxury .footer-card,
.home-luxury .timeline,
.home-luxury .contact-form,
.home-luxury .spec-grid,
.home-luxury .gallery-grid {
  position: relative;
}

.home-luxury .section {
  padding: 128px 0 0;
}

.home-luxury .section:first-of-type {
  padding-top: 112px;
}

.home-luxury .page-intro,
.home-luxury .section-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 56px;
}

.home-luxury .eyebrow,
.home-luxury .timeline-label,
.home-luxury .spec span,
.home-luxury .tag,
.home-luxury .status {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-luxury .section-card strong,
.home-luxury .rich-panel strong,
.home-luxury .media-card strong,
.home-luxury .contact-card strong,
.home-luxury .timeline-item strong,
.home-luxury .product-card h3,
.home-luxury .quote-card p,
.home-luxury .spec,
.home-luxury .play-button {
  color: var(--text);
  font-family: var(--font-heading);
}

.home-luxury .page-intro p:not(.eyebrow):not(.lux-kicker),
.home-luxury .section-heading p:not(.eyebrow):not(.lux-kicker),
.home-luxury .rich-panel p,
.home-luxury .section-card p,
.home-luxury .media-card p,
.home-luxury .product-card p,
.home-luxury .cta-strip p,
.home-luxury .quote-card p,
.home-luxury .contact-card p,
.home-luxury .list li,
.home-luxury .spec,
.home-luxury .timeline-item p {
  font-size: 1.04rem;
  line-height: 1.82;
}

.home-luxury .section-card,
.home-luxury .rich-panel,
.home-luxury .media-card,
.home-luxury .cta-strip,
.home-luxury .contact-card,
.home-luxury .quote-card,
.home-luxury .product-card,
.home-luxury .info-panel,
.home-luxury .footer-card,
.brand-mini-card,
.brand-timeline-card,
.brand-value-card,
.about-audience-card,
.about-process-card,
.about-info-card,
.about-transfer-item,
.lux-contact-card {
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(170, 124, 73, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.42);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.18);
}

.home-luxury .section-card,
.home-luxury .rich-panel,
.home-luxury .media-card,
.home-luxury .cta-strip,
.home-luxury .contact-card,
.home-luxury .quote-card,
.home-luxury .product-card,
.home-luxury .info-panel {
  padding: 30px 28px;
}

.home-luxury .split-hero,
.home-luxury .grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
}

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

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

.home-luxury .product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
}

.home-luxury .gallery-main,
.home-luxury .gallery-sub,
.home-luxury .product-visual,
.home-luxury .media-preview,
.home-luxury .spec,
.home-luxury .audio-placeholder {
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    radial-gradient(circle at top left, rgba(170, 124, 73, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.42);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.14);
}

.home-luxury .gallery-main img,
.home-luxury .gallery-sub img,
.home-luxury .product-visual img {
  object-fit: contain;
  background: transparent;
}

.home-luxury .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(230, 218, 200, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.home-luxury .breadcrumbs a:hover,
.home-luxury .breadcrumbs span:last-child {
  color: var(--text);
}

.home-luxury .meta-row {
  margin: 22px 0 18px;
}

.home-luxury .product-actions {
  margin-top: 26px;
}

.home-luxury .list-spaced {
  margin-top: 20px;
}

.craft-page main {
  padding-bottom: 128px;
}

.craft-hero {
  position: relative;
  padding: 0;
}

.craft-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: clamp(36px, 5vw, 76px);
  padding: 56px 0 52px;
}

.craft-hero-copy {
  display: grid;
  gap: 0;
  max-width: 620px;
  padding-top: 18px;
}

.craft-hero-lead,
.craft-body {
  max-width: 34ch;
  color: rgba(227, 214, 196, 0.72);
  font-size: 1.04rem;
  line-height: 1.88;
}

.craft-hero-lead {
  margin: 28px 0 0;
}

.craft-photo-stack {
  position: relative;
  display: grid;
  align-items: start;
  justify-items: end;
  min-height: 720px;
  padding: 10px 0 0;
}

.craft-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(170, 124, 73, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.5);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.24);
}

.craft-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.craft-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-photo-main {
  width: min(100%, 700px);
  aspect-ratio: 0.98;
}

.craft-photo-accent {
  width: min(44%, 276px);
  aspect-ratio: 0.7;
  margin: -118px 28px 0 0;
  z-index: 2;
}

.craft-story-grid,
.craft-image-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.craft-story-copy {
  display: grid;
  gap: 28px;
}

.craft-story-copy .lux-section-heading {
  margin-bottom: 0;
}

.craft-story-copy .craft-body {
  margin: 0;
}

.craft-photo-side {
  min-height: 560px;
}

.craft-photo-band {
  min-height: 640px;
}

.craft-timeline {
  display: grid;
  gap: 18px;
  max-width: 1040px;
}

.craft-timeline-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid rgba(241, 226, 204, 0.08);
}

.craft-timeline-item:last-child {
  border-bottom: 1px solid rgba(241, 226, 204, 0.08);
}

.craft-timeline-item span {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.craft-timeline-item p {
  margin: 0;
  max-width: 42ch;
  color: rgba(232, 220, 202, 0.76);
}

.craft-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.craft-value-card {
  display: grid;
  gap: 20px;
  padding: 34px 30px 30px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(170, 124, 73, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.42);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.18);
}

.craft-value-card .lux-kicker,
.craft-value-card h3,
.craft-value-card p {
  margin: 0;
}

.craft-value-card p:last-child {
  color: rgba(227, 214, 196, 0.72);
  line-height: 1.82;
}

.craft-final .lux-callout p {
  max-width: 46ch;
}

.brand-page main {
  padding-bottom: 120px;
}

.brand-page h1 {
  font-size: clamp(4rem, 6.2vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 820px;
}

.brand-page h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}

.brand-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: 660px;
  padding: 0;
}

.brand-hero-copy {
  display: grid;
  max-width: 620px;
}

.brand-hero-copy .lux-actions {
  margin-top: 42px;
}

.brand-lead,
.brand-body {
  max-width: 430px;
  color: rgba(227, 214, 196, 0.74);
  font-size: 1.05rem;
  line-height: 1.85;
}

.brand-lead {
  margin: 28px 0 0;
}

.brand-body {
  margin: 0;
}

.brand-body-wide {
  max-width: 52ch;
}

.brand-visual-card,
.brand-photo-band-image,
.brand-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    radial-gradient(circle at top left, rgba(170, 124, 73, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.5);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.22);
}

.brand-visual-card {
  min-height: 520px;
  border-radius: 40px;
}

.brand-visual-card-hero {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 34px 30px;
  background:
    radial-gradient(circle at 52% 42%, rgba(202, 160, 104, 0.12), transparent 24%),
    radial-gradient(circle at 68% 76%, rgba(171, 128, 79, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.76);
}

.brand-photo-band-image {
  min-height: 500px;
  border-radius: 36px;
}

.brand-visual-card img,
.brand-photo-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-visual-card-hero img {
  width: min(100%, 720px);
  height: auto;
  max-height: 440px;
  object-fit: contain;
  object-position: center;
  filter:
    drop-shadow(0 26px 46px rgba(22, 14, 10, 0.2))
    drop-shadow(0 50px 102px rgba(0, 0, 0, 0.26));
}

.brand-section {
  padding-top: 128px;
}

.brand-split,
.brand-product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 68px);
}

.brand-copy {
  display: grid;
  gap: 28px;
  max-width: 640px;
}

.brand-copy .lux-section-heading,
.brand-photo-band .lux-section-heading {
  margin-bottom: 0;
}

.brand-mini-grid {
  display: grid;
  gap: 18px;
}

.brand-mini-card,
.brand-timeline-card,
.brand-value-card {
  display: grid;
  gap: 16px;
  padding: 30px 28px 26px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(170, 124, 73, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.42);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
}

.brand-mini-card .lux-kicker,
.brand-mini-card h3,
.brand-mini-card p,
.brand-timeline-card span,
.brand-timeline-card p,
.brand-value-card .lux-kicker,
.brand-value-card h3,
.brand-value-card p {
  margin: 0;
}

.brand-mini-card p:last-child,
.brand-timeline-card p,
.brand-value-card p:last-child {
  color: rgba(227, 214, 196, 0.72);
  line-height: 1.76;
}

.brand-photo-band {
  display: grid;
  gap: 26px;
}

.brand-photo-band-aligned {
  max-width: 1040px;
}

.brand-photo-band-aligned .lux-section-heading,
.brand-photo-band-aligned .brand-body-wide,
.brand-photo-band-aligned .brand-photo-band-image {
  width: 100%;
}

.brand-heading-compact {
  margin-bottom: 42px;
}

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

.brand-timeline-card {
  align-content: start;
  min-height: 214px;
}

.brand-timeline-card span {
  color: rgba(215, 185, 140, 0.84);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.brand-product-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  border-radius: 36px;
  padding: 36px;
}

.brand-product-card-dark {
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.07), transparent 26%),
    radial-gradient(circle at 68% 76%, rgba(171, 128, 79, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.76);
}

.brand-product-card img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
  filter:
    drop-shadow(0 28px 48px rgba(22, 14, 10, 0.18))
    drop-shadow(0 48px 92px rgba(0, 0, 0, 0.22));
}

.brand-product-card-philosophy {
  min-height: 580px;
  padding: 52px 56px;
}

.brand-product-card-philosophy img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 476px;
}

.brand-product-card-image {
  min-height: 580px;
  padding: 52px 56px;
}

.brand-product-card-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 456px;
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.brand-value-card {
  min-height: 100%;
}

.brand-final {
  padding-top: 104px;
}

.brand-final-callout {
  padding: 64px 0;
}

.brand-final-callout p {
  max-width: 48ch;
}

.about-page main {
  padding-bottom: 120px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: 660px;
  padding: 0;
}

.about-hero-copy {
  max-width: 620px;
}

.about-hero-copy .lux-actions {
  margin-top: 42px;
}

.about-lead,
.about-body {
  max-width: 430px;
  color: rgba(227, 214, 196, 0.74);
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-lead {
  margin: 28px 0 0;
}

.about-body {
  margin: 0;
}

.about-body-wide {
  max-width: 54ch;
}

.about-section {
  padding-top: 128px;
}

.about-visual-card,
.about-intro-card,
.about-audience-card,
.about-process-card,
.about-info-card,
.about-transfer-item {
  position: relative;
  overflow: hidden;
}

.about-visual-card {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 520px;
  padding: 36px 34px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 62% 28%, rgba(198, 155, 98, 0.1), transparent 22%),
    radial-gradient(circle at 76% 76%, rgba(171, 128, 79, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.54);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.2);
}

.about-visual-mark {
  font-size: clamp(2.05rem, 2.8vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.about-visual-subtitle {
  margin: 0;
  max-width: 26ch;
  color: rgba(233, 221, 205, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.about-visual-points {
  display: grid;
  gap: 10px;
  max-width: 26ch;
}

.about-visual-points span {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-intro-card {
  display: grid;
  gap: 20px;
  padding: 34px 32px;
  border-radius: 32px;
}

.about-intro-card .lux-section-heading {
  margin-bottom: 0;
}

.about-intro-card-editorial {
  display: grid;
  gap: 24px;
  padding: 72px 80px;
  text-align: left;
}

.about-intro-card-editorial .lux-section-heading {
  max-width: 820px;
  margin-bottom: 0;
  justify-items: start;
}

.about-intro-card-editorial h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.95;
}

.about-intro-card-editorial .about-body {
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.125rem, 1.45vw, 1.375rem);
  line-height: 1.65;
}

.about-intro-list {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.about-intro-point {
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(241, 226, 204, 0.09);
}

.about-intro-point:first-child {
  padding-top: 0;
  border-top: 0;
}

.about-intro-point h3,
.about-intro-point p {
  margin: 0;
}

.about-intro-point h3 {
  max-width: 32ch;
  font-size: 1.16rem;
  line-height: 1.34;
}

.about-intro-point p {
  max-width: 720px;
  color: rgba(227, 214, 196, 0.72);
  line-height: 1.74;
}

.about-intro-card-narrow {
  max-width: 1020px;
}

.about-audience-grid,
.about-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-audience-card,
.about-info-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 100%;
  padding: 30px 28px;
}

.about-audience-card h3,
.about-audience-card p,
.about-info-card .lux-kicker,
.about-info-card h3,
.about-info-card p {
  margin: 0;
}

.about-audience-card p,
.about-info-card p {
  color: rgba(227, 214, 196, 0.72);
  line-height: 1.76;
}

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

.about-process-editorial {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

.about-process-step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 34px 36px;
}

.about-process-step-number {
  color: rgba(215, 185, 140, 0.84);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.3rem, 3vw, 3.15rem);
  line-height: 0.94;
}

.about-process-step-copy {
  display: grid;
  gap: 12px;
  max-width: 68ch;
}

.about-process-step-copy h3,
.about-process-step-copy p {
  margin: 0;
}

.about-process-step-copy h3 {
  font-size: 1.34rem;
  line-height: 1.18;
}

.about-process-step-copy p {
  color: rgba(227, 214, 196, 0.74);
  line-height: 1.82;
}

.about-process-footnote {
  margin-top: 28px;
  max-width: 1040px;
  padding: 30px 34px;
  border-radius: 28px;
}

.about-process-footnote p {
  margin: 0;
  max-width: 62ch;
  color: rgba(227, 214, 196, 0.74);
  font-size: 1rem;
  line-height: 1.82;
}

.about-process-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 30px 28px;
}

.about-process-card span {
  color: rgba(215, 185, 140, 0.84);
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.about-process-card h3,
.about-process-card p {
  margin: 0;
}

.about-process-card p {
  color: rgba(227, 214, 196, 0.72);
  line-height: 1.72;
}

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

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

.about-transfer-item {
  display: flex;
  align-items: center;
  min-height: 112px;
  padding: 24px 22px;
  color: rgba(236, 226, 211, 0.78);
}

.about-final {
  padding-top: 128px;
}

.about-musician-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1280px;
  padding: 88px 96px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 20% 18%, rgba(190, 143, 85, 0.08), transparent 28%),
    radial-gradient(circle at 86% 68%, rgba(202, 162, 107, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(13, 11, 10, 0.92);
}

.maria-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 9, 7, 0.96) 0%,
    rgba(12, 9, 7, 0.9) 40%,
    rgba(12, 9, 7, 0.42) 72%,
    rgba(12, 9, 7, 0.08) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-musician-layout {
  position: static;
}

.about-musician-card .lux-section-heading {
  margin-bottom: 0;
  max-width: 760px;
  justify-items: start;
}

.about-musician-copy {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.about-musician-copy .about-body-wide {
  max-width: 640px;
  margin: 0;
  color: rgba(232, 220, 202, 0.76);
  font-size: clamp(1.125rem, 1.2vw, 1.32rem);
  line-height: 1.67;
}

.about-musician-copy h2 {
  max-width: 760px;
  font-size: clamp(3rem, 5.4vw, 5.15rem);
  line-height: 0.95;
}

.about-musician-points {
  display: grid;
  gap: 16px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  max-width: 560px;
}

.about-musician-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(235, 224, 208, 0.84);
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-musician-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(201, 154, 94, 0.92);
  box-shadow: 0 0 18px rgba(201, 154, 94, 0.28);
}

.about-musician-signature {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  justify-items: start;
  text-align: left;
}

.about-musician-signature span {
  color: rgba(241, 226, 204, 0.92);
  font-size: 0.96rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-musician-signature p {
  margin: 0;
  max-width: 34ch;
  color: rgba(227, 214, 196, 0.56);
  font-size: 0.92rem;
  line-height: 1.6;
}

.about-musician-figure {
  margin: 0;
}

.maria-portrait {
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  width: min(48%, 620px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}

.maria-portrait::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(211, 174, 116, 0.22) 0%, rgba(211, 174, 116, 0.08) 38%, rgba(211, 174, 116, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
}

.maria-portrait::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: 58%;
  height: 12%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 72%);
  filter: blur(16px);
  pointer-events: none;
}

.maria-portrait img {
  position: relative;
  z-index: 1;
  height: 110%;
  width: auto;
  max-width: none;
  max-height: 760px;
  object-fit: contain;
  object-position: center center;
  filter:
    drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55))
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}

@media (max-width: 1100px) {
  .about-musician-card {
    padding: 72px 56px;
  }

  .maria-section::after {
    background: linear-gradient(
      90deg,
      rgba(12, 9, 7, 0.98) 0%,
      rgba(12, 9, 7, 0.92) 50%,
      rgba(12, 9, 7, 0.62) 78%,
      rgba(12, 9, 7, 0.24) 100%
    );
  }

  .maria-portrait {
    right: 2.5%;
    width: min(46%, 460px);
    opacity: 0.5;
  }

  .maria-portrait img {
    height: 104%;
    max-height: 640px;
  }
}

@media (max-width: 900px) {
  .about-musician-card {
    padding: 48px 28px;
  }

  .about-musician-layout {
    display: grid;
    gap: 32px;
  }

  .about-musician-copy,
  .about-musician-card .lux-section-heading,
  .about-musician-copy .about-body-wide,
  .about-musician-points,
  .about-musician-signature,
  .about-musician-signature p,
  .about-musician-signature span {
    max-width: 100%;
    text-align: left;
    justify-items: start;
  }

  .maria-section::after {
    background: linear-gradient(
      180deg,
      rgba(12, 9, 7, 0.94) 0%,
      rgba(12, 9, 7, 0.88) 58%,
      rgba(12, 9, 7, 0.46) 100%
    );
  }

  .maria-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    opacity: 1;
  }

  .maria-portrait img {
    height: auto;
    width: min(100%, 460px);
    max-width: 100%;
    max-height: 520px;
  }
}

.about-final-callout {
  padding: 64px 0;
}

.about-final-callout p {
  max-width: 46ch;
}

.about-final-contact {
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .lux-hero-grid,
  .lux-footer-grid,
  .lux-catalog-grid,
  .lux-process {
    grid-template-columns: 1fr;
  }

  .lux-hero {
    padding-top: 0;
  }

  .lux-hero-grid {
    min-height: auto;
  }

  .lux-image-stage,
  .lux-image-stage-hero {
    min-height: 560px;
  }

  .lux-hero-object {
    min-height: 600px;
    width: min(100%, 760px);
    padding: 38px 24px 54px 8px;
  }

  .lux-advantages + .lux-section,
  .lux-section + .lux-section,
  .lux-section:has(.lux-callout),
  .lux-section:has(.lux-process),
  .lux-section:has(.lux-callout-final) {
    padding-top: 136px;
  }

  .lux-card .lux-image-stage {
    min-height: 620px;
    padding: 24px 20px 30px;
  }

  .lux-catalog-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px 56px;
  }

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

  .lux-product-card .lux-image-stage {
    min-height: 560px;
    padding: 30px 26px 38px;
  }

  .product-page .lux-product-layout,
  .lux-specs-grid {
    grid-template-columns: 1fr;
  }

  .product-page .lux-product-object {
    width: min(100%, 760px);
    min-height: auto;
    padding: 0 12px 10px 4px;
  }

  .product-page .lux-product-stage {
    min-height: auto;
  }

  .product-page .lux-product-stage img {
    width: min(100%, 640px);
    max-height: 520px;
  }
  .lux-feature-block,
  .lux-product-lead {
    max-width: none;
  }

  .craft-hero-grid,
  .craft-story-grid,
  .craft-image-band-grid,
  .craft-values-grid {
    grid-template-columns: 1fr;
  }

  .craft-hero-grid,
  .craft-story-grid,
  .craft-image-band-grid {
    justify-items: center;
  }

  .craft-hero-copy,
  .craft-story-copy {
    max-width: 620px;
  }

  .craft-photo-stack {
    min-height: auto;
    width: min(100%, 760px);
    justify-items: center;
    padding-top: 0;
  }

  .craft-photo-main {
    width: min(100%, 760px);
  }

  .craft-photo-accent {
    justify-self: end;
  }

  .lux-hero-grid,
  .brand-hero-grid,
  .brand-split,
  .brand-product-showcase,
  .brand-values,
  .brand-timeline {
    grid-template-columns: 1fr;
  }

  .brand-hero-grid,
  .brand-split,
  .brand-product-showcase {
    min-height: auto;
    justify-items: center;
  }

  .brand-hero-copy,
  .brand-copy {
    max-width: 640px;
  }

  .brand-visual-card {
    width: min(100%, 760px);
  }

  .brand-visual-card-hero {
    padding: 34px 28px;
  }

  .about-hero-grid,
  .about-audience-grid,
  .about-process,
  .about-info-grid,
  .about-transfer-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    min-height: auto;
    justify-items: center;
  }

  .about-hero-copy {
    max-width: 640px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .home-luxury .site-header {
    position: sticky;
    inset: auto;
    background: rgba(10, 8, 7, 0.96);
  }

  .header-inner {
    min-height: 74px;
    gap: 14px;
    align-items: center;
  }

  .brand-mark {
    font-size: 1.46rem;
    letter-spacing: 0.1em;
  }

  .brand-note {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(241, 226, 204, 0.08);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(20, 16, 14, 0.98), rgba(14, 11, 10, 0.98)),
      rgba(14, 11, 10, 0.98);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  }

  .home-luxury .site-nav {
    gap: 0;
  }

  .home-luxury .site-nav.open {
    display: flex;
  }

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

  .site-nav a {
    display: block;
    width: 100%;
    padding: 14px 10px;
    text-align: center;
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

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

  .home-luxury .site-nav a {
    font-size: 0.88rem;
  }

  .header-actions,
  .home-luxury .header-actions {
    display: none;
  }

  .lux-section {
    padding-top: 120px;
  }

  .lux-advantages + .lux-section,
  .lux-section + .lux-section,
  .lux-section:has(.lux-callout),
  .lux-section:has(.lux-process),
  .lux-section:has(.lux-callout-final) {
    padding-top: 112px;
  }

  .lux-hero {
    padding-top: 0;
    padding-bottom: 0;
  }

  .lux-hero-grid {
    gap: 26px;
    justify-items: center;
    text-align: center;
    min-height: auto;
  }

  .lux-hero-copy {
    margin: 0 auto;
    padding-right: 0;
    text-align: center;
  }

  .lux-hero-copy .lux-actions,
  .lux-product-copy .lux-actions {
    justify-content: center;
  }

  .lux-hero-lead,
  .lux-catalog-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .lux-hero-visual,
  .lux-product-visual {
    justify-content: center;
    padding-top: 0;
  }

  .lux-advantages {
    padding-top: 28px;
  }

  .lux-advantages-line {
    justify-content: center;
    text-align: center;
    gap: 14px 22px;
  }

  .lux-image-stage,
  .lux-image-stage-hero {
    min-height: 420px;
    padding: 28px;
    border-radius: 28px;
  }

  .lux-image-stage img,
  .lux-image-stage-hero img {
    max-height: 420px;
  }

  .lux-hero-visual::before {
    inset: 2% -2% 4% -2%;
  }

  .lux-hero-object {
    min-height: 440px;
    width: min(100%, 620px);
    padding: 18px 4px 30px;
  }

  .lux-hero-glow {
    inset: 2% -8% 8% -6%;
  }

  .lux-hero-shadow {
    left: 10%;
    right: 8%;
    bottom: 4%;
    height: 74px;
  }

  .lux-image-stage,
  .lux-image-stage-hero {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .lux-image-stage-hero img {
    width: min(100%, 520px);
    max-height: 370px;
    object-position: center;
  }

  .lux-card {
    gap: 30px;
  }

  .lux-card-body {
    gap: 18px;
    padding: 0 8px;
    justify-items: center;
    text-align: center;
  }

  .lux-card .lux-image-stage {
    min-height: 420px;
    padding: 18px 12px 22px;
    border-radius: 28px;
  }

  .lux-card .lux-image-stage img {
    max-height: 390px;
  }

  .lux-callout {
    justify-items: center;
    text-align: center;
    padding: 56px 0;
  }

  .lux-actions-centered {
    justify-content: center;
  }

  .lux-footer {
    padding-top: 88px;
  }

  .lux-footer-grid {
    justify-items: center;
    text-align: center;
    padding-top: 28px;
  }

  .lux-footer-stack,
  .lux-footer-links,
  .lux-footer-socials {
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .catalog-page .header-actions {
    display: none;
  }

  .lux-catalog-hero {
    padding: 92px 0 20px;
  }

  .lux-catalog-intro,
  .lux-catalog-intro .lux-section-heading,
  .lux-section-heading {
    justify-items: center;
    text-align: center;
  }

  .lux-catalog-section {
    padding-top: 88px;
  }

  .lux-catalog-filters {
    justify-content: center;
    gap: 14px 20px;
    margin-bottom: 52px;
  }

  .lux-catalog-grid-page {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .lux-card-price {
    font-size: 1.24rem;
  }

  .lux-product-card .lux-image-stage {
    min-height: 460px;
    padding: 26px 22px 32px;
  }

  .lux-product-card .lux-image-stage img {
    max-height: 360px;
  }

  .product-page .lux-product-hero {
    padding-top: 0;
  }

  .product-page .lux-product-copy {
    margin: 0 auto;
    justify-items: center;
    text-align: center;
  }

  .product-page .lux-product-lead,
  .lux-feature-block {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .lux-feature-list {
    justify-items: center;
  }

  .lux-feature-list li {
    width: fit-content;
    max-width: 100%;
    text-align: left;
  }

  .lux-breadcrumbs {
    justify-content: center;
    text-align: center;
  }

  .product-page .lux-section.lux-product-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .product-page .lux-section.lux-product-section-specs {
    padding-bottom: 72px;
  }

  .product-page .lux-section.lux-product-section-consultation {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .product-page .lux-product-layout {
    gap: 34px;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .product-page .lux-product-object {
    width: min(100%, 620px);
    min-height: auto;
    padding: 0 0 8px;
  }

  .product-page .lux-product-stage {
    min-height: auto;
  }

  .product-page .lux-product-stage img {
    width: min(100%, 520px);
    max-height: 380px;
    object-position: center;
  }

  .product-page .lux-callout {
    padding: 72px 0;
  }

  .product-included-grid,
  .product-options-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-page .lux-footer {
    padding-top: 72px;
  }

  .lux-product-price {
    padding: 16px 18px;
    justify-items: center;
    text-align: center;
  }

  .lux-product-price-value {
    font-size: 2rem;
  }

  .product-included-card,
  .product-options-card {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .product-included-copy,
  .product-included-copy .lux-section-heading,
  .product-included-intro,
  .product-options-copy,
  .product-options-copy .lux-section-heading,
  .product-options-intro,
  .product-options-note,
  .product-options-custom,
  .product-options-custom p {
    max-width: 100%;
    text-align: left;
  }

  .product-options-copy .lux-section-heading {
    justify-items: start;
  }

  .product-included-copy .lux-section-heading {
    justify-items: start;
  }

  .contacts-page-hero {
    padding: 0;
  }

  .brand-hero-grid,
  .about-hero-grid,
  .contacts-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 26px;
    justify-items: center;
    text-align: center;
  }

  .brand-hero-copy,
  .about-hero-copy,
  .contacts-hero-copy {
    margin: 0 auto;
    justify-items: center;
    text-align: center;
  }

  .brand-lead,
  .about-lead,
  .contacts-page-hero .lux-page-lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .brand-hero-copy .lux-actions,
  .about-hero-copy .lux-actions,
  .contacts-hero-copy .lux-actions {
    justify-content: center;
  }

  .brand-visual-card,
  .about-visual-card,
  .contacts-hero-card {
    min-height: 360px;
    width: min(100%, 620px);
  }

  .brand-visual-card-hero {
    min-height: 360px;
    padding: 28px 24px;
  }

  .brand-visual-card-hero img {
    max-height: 320px;
  }

  .contacts-page .lux-contacts-section {
    padding-top: 72px;
  }

  .lux-contact-card,
  .lux-contact-form-shell {
    padding: 28px 24px;
    border-radius: 28px;
  }

  .lux-contact-card {
    justify-items: center;
    text-align: center;
  }

  .lux-contact-card p,
  .lux-contact-copy {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .lux-contact-copy .lux-section-heading {
    justify-items: center;
    text-align: center;
  }

  .lux-contact-form-shell .button {
    width: 100%;
  }

  .contact-form,
  .contact-form .field,
  .contact-form .field label,
  .contact-form .field input,
  .contact-form .field textarea,
  .contact-form .field select,
  .small-note {
    text-align: left;
  }

  .section,
  .page-intro,
  .section-heading,
  .grid-2,
  .grid-3,
  .cta-strip {
    text-align: center;
  }

  .page-intro,
  .section-heading {
    justify-items: center;
  }

  .breadcrumbs {
    justify-content: center;
    text-align: center;
  }

  .section-card,
  .media-card,
  .rich-panel,
  .quote-card,
  .cta-strip,
  .contact-card,
  .footer-card {
    margin-left: auto;
    margin-right: auto;
  }

  .product-gallery,
  .gallery-main,
  .gallery-grid,
  .product-visual {
    justify-items: center;
  }

  .lux-spec-item {
    padding: 24px 22px;
  }

  .craft-page main {
    padding-bottom: 104px;
  }

  .craft-hero-grid {
    gap: 24px;
    padding: 40px 0 28px;
    justify-items: center;
    text-align: center;
  }

  .craft-hero-copy,
  .craft-story-copy,
  .craft-timeline-section .lux-section-heading,
  .craft-value-card {
    justify-items: center;
    text-align: center;
  }

  .craft-hero-copy {
    padding-top: 0;
  }

  .craft-hero-lead,
  .craft-body {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .craft-photo-stack {
    width: min(100%, 620px);
    gap: 18px;
  }

  .craft-photo-main,
  .craft-photo-side,
  .craft-photo-band {
    width: 100%;
    min-height: 420px;
  }

  .craft-photo-accent {
    width: min(58%, 240px);
    margin: -72px 0 0 auto;
  }

  .craft-timeline {
    gap: 14px;
  }

  .craft-timeline-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
    padding: 22px 0;
  }

  .craft-timeline-item p {
    max-width: 34ch;
  }

  .craft-story-copy .lux-section-heading {
    justify-items: center;
    text-align: center;
  }

  .brand-page main {
    padding-bottom: 96px;
  }

  .brand-hero-grid,
  .brand-split,
  .brand-product-showcase,
  .brand-values,
  .brand-timeline {
    justify-items: center;
    text-align: center;
  }

  .lux-hero-grid,
  .brand-hero-grid,
  .contacts-hero-grid {
    gap: 24px;
    min-height: auto;
    padding: 34px 0 12px;
  }

  .lux-hero-copy,
  .brand-hero-copy,
  .contacts-hero-copy,
  .brand-copy,
  .brand-photo-band,
  .brand-photo-band .lux-section-heading {
    justify-items: center;
    text-align: center;
  }

  .lux-hero-lead,
  .brand-lead,
  .contacts-page-hero .lux-page-lead,
  .brand-body,
  .brand-body-wide {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .lux-hero-object,
  .brand-visual-card {
    min-height: 420px;
    width: 100%;
    border-radius: 32px;
  }

  .contacts-hero-card,
  .about-visual-card {
    min-height: 420px;
    width: 100%;
    padding: 26px 22px;
    border-radius: 32px;
    justify-items: center;
    text-align: center;
  }

  .brand-visual-card-hero {
    padding: 26px 22px;
  }

  .lux-image-stage-hero img,
  .brand-visual-card-hero img {
    width: min(100%, 520px);
    max-height: 360px;
  }

  .brand-photo-band-image {
    min-height: 360px;
    border-radius: 32px;
  }

  .brand-product-card {
    min-height: 420px;
    width: 100%;
    padding: 28px;
    border-radius: 30px;
  }

  .brand-product-card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .brand-product-card-philosophy {
    min-height: 500px;
    padding: 44px 40px;
  }

  .brand-product-card-philosophy img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 400px;
  }

  .brand-product-card-image {
    min-height: 500px;
    padding: 44px 40px;
  }

  .brand-product-card-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 388px;
  }

  .brand-mini-grid,
  .brand-values,
  .brand-timeline {
    gap: 18px;
  }

  .brand-timeline-card {
    min-height: auto;
  }

  .brand-section,
  .brand-final {
    padding-top: 92px;
  }

  .brand-final-callout {
    padding: 56px 0;
  }

  .about-musician-card {
    padding: 44px 32px;
  }

  .about-musician-layout {
    display: grid;
    gap: 28px;
  }

  .about-musician-copy,
  .about-musician-card .lux-section-heading,
  .about-musician-copy .about-body-wide,
  .about-musician-points,
  .about-musician-signature {
    max-width: 100%;
    justify-items: start;
    text-align: left;
  }

  .about-musician-figure {
    width: 100%;
    padding-top: 0;
  }

  .maria-section::after {
    background: linear-gradient(
      180deg,
      rgba(12, 9, 7, 0.95) 0%,
      rgba(12, 9, 7, 0.88) 56%,
      rgba(12, 9, 7, 0.52) 100%
    );
  }

  .maria-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    justify-content: center;
    opacity: 1;
  }

  .about-musician-figure img {
    width: min(100%, 420px);
    max-height: 500px;
    height: auto;
    max-width: 100%;
  }

  .about-page main {
    padding-bottom: 92px;
  }

  .about-hero-grid,
  .about-hero-copy,
  .about-audience-grid,
  .about-process,
  .about-process-editorial,
  .about-info-grid,
  .about-transfer-grid {
    justify-items: center;
    text-align: center;
  }

  .about-hero-grid {
    gap: 24px;
    min-height: auto;
    padding: 34px 0 12px;
  }

  .about-lead,
  .about-body,
  .about-body-wide,
  .about-visual-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .about-visual-points {
    justify-items: center;
  }

  .about-intro-card,
  .about-musician-card,
  .about-process-step,
  .about-process-footnote,
  .about-audience-card,
  .about-process-card,
  .about-info-card,
  .about-transfer-item {
    width: 100%;
  }

  .about-intro-card-editorial {
    padding: 56px 48px;
  }

  .about-intro-card-editorial .lux-section-heading,
  .about-intro-card-editorial .about-body,
  .about-musician-card .lux-section-heading,
  .about-musician-copy .about-body-wide,
  .about-process-step-copy,
  .about-process-footnote p {
    max-width: 100%;
  }

  .about-intro-card-editorial,
  .about-intro-list {
    gap: 18px;
  }

  .about-intro-card-editorial,
  .about-intro-card-editorial .lux-section-heading,
  .about-intro-card-editorial .about-body,
  .about-intro-point h3,
  .about-intro-point p {
    text-align: left;
  }

  .about-intro-card-editorial .lux-section-heading {
    justify-items: start;
  }

  .about-intro-card-editorial .about-body {
    margin-left: 0;
    margin-right: 0;
  }

  .about-musician-copy,
  .about-musician-card .lux-section-heading,
  .about-musician-copy .about-body-wide,
  .about-musician-points,
  .about-musician-signature,
  .about-musician-signature p,
  .about-musician-signature span {
    text-align: left;
    justify-items: start;
  }

  .about-musician-copy .about-body-wide {
    margin-left: 0;
    margin-right: 0;
  }

  .about-intro-point {
    padding-top: 18px;
  }

  .about-intro-point h3,
  .about-intro-point p {
    max-width: 100%;
  }

  .about-process-step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 24px;
    text-align: center;
  }

  .about-process-step-number {
    justify-self: center;
  }

  .about-process-footnote {
    padding: 24px 22px;
    text-align: center;
  }

  .about-section,
  .about-final {
    padding-top: 92px;
  }

  .about-final-callout {
    padding: 56px 0;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    font-size: 1.28rem;
    letter-spacing: 0.08em;
  }

  .brand-note {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .lux-hero-grid,
  .product-page .lux-product-layout,
  .lux-contact-layout {
    gap: 18px;
  }

  .lux-image-stage-hero img,
  .product-page .lux-product-stage img {
    width: min(100%, 440px);
    max-height: 330px;
  }

  .lux-card .lux-image-stage,
  .lux-product-card .lux-image-stage {
    min-height: 360px;
  }

  .lux-card .lux-image-stage img,
  .lux-product-card .lux-image-stage img {
    max-height: 300px;
  }

  .lux-actions,
  .lux-actions-centered {
    gap: 12px;
  }

  .button,
  .ghost-button,
  .pill-link {
    width: min(100%, 320px);
  }

  .lux-footer-links,
  .lux-footer-socials {
    gap: 12px;
  }

  .lux-social-pill {
    min-height: 40px;
    padding: 0 14px;
  }

  .craft-page main {
    padding-bottom: 88px;
  }

  .craft-hero-grid {
    padding-top: 28px;
  }

  .craft-photo-main,
  .craft-photo-side,
  .craft-photo-band {
    min-height: 340px;
    border-radius: 28px;
  }

  .craft-photo-accent {
    width: min(62%, 198px);
    margin-top: -48px;
    border-radius: 24px;
  }

  .craft-value-card {
    padding: 28px 24px 24px;
    border-radius: 26px;
  }

  .brand-page main {
    padding-bottom: 82px;
  }

  .lux-hero-grid,
  .brand-hero-grid,
  .contacts-hero-grid,
  .about-hero-grid {
    padding-top: 24px;
  }

  .lux-hero-object,
  .brand-visual-card {
    min-height: 320px;
    border-radius: 28px;
  }

  .contacts-hero-card,
  .about-visual-card {
    min-height: 320px;
    padding: 22px 16px;
    border-radius: 28px;
  }

  .brand-visual-card-hero {
    padding: 22px 16px;
  }

  .lux-image-stage-hero img,
  .brand-visual-card-hero img {
    width: min(100%, 420px);
    max-height: 300px;
  }

  .brand-photo-band-image {
    min-height: 280px;
    border-radius: 28px;
  }

  .brand-product-card {
    min-height: 340px;
    padding: 24px 18px;
    border-radius: 26px;
  }

  .brand-product-card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .brand-product-card-philosophy,
  .brand-product-card-image {
    min-height: 400px;
    padding: 34px 24px;
  }

  .brand-product-card-philosophy img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 318px;
  }

  .brand-product-card-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 306px;
  }

  .brand-mini-card,
  .brand-timeline-card,
  .brand-value-card {
    padding: 26px 22px 22px;
    border-radius: 24px;
  }

  .about-intro-card-editorial {
    padding: 36px 24px;
  }

  .maria-portrait::before {
    width: 74%;
    height: 58%;
    bottom: 14%;
    filter: blur(22px);
  }

  .maria-portrait::after {
    width: 64%;
    bottom: 9%;
  }

  .about-musician-figure img {
    width: min(100%, 360px);
    max-height: 440px;
  }

  .about-page main {
    padding-bottom: 80px;
  }

  .about-visual-mark {
    font-size: 2rem;
  }

  .about-intro-card,
  .about-musician-card,
  .about-process-step,
  .about-process-footnote,
  .about-audience-card,
  .about-process-card,
  .about-info-card {
    padding: 26px 22px 22px;
    border-radius: 24px;
  }

  .about-musician-card {
    padding: 36px 24px;
  }

.about-transfer-item {
  min-height: 92px;
  padding: 20px 18px;
  border-radius: 22px;
  }

  .contact-representation-note {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .contact-representation-title,
  .contact-representation-meta,
  .lux-legal-meta {
    text-align: center;
  }
}

/* Catalog sizing overrides */
.compact-catalog-top {
  padding-top: 48px;
  padding-bottom: 0;
}

.catalog-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.catalog-heading .lux-kicker {
  margin: 0;
}

.catalog-heading h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.catalog-note {
  margin-bottom: 28px;
  max-width: 720px;
}

.catalog-note p {
  margin: 0 0 8px;
  color: rgba(227, 214, 196, 0.56);
  font-size: 0.9rem;
  line-height: 1.65;
}

.catalog-note p:last-child {
  margin-bottom: 0;
}

.catalog-page .lux-catalog-filters {
  margin-bottom: 18px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 22px 0 34px;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid rgba(241, 226, 204, 0.1);
  background: rgba(18, 14, 13, 0.46);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.catalog-search-wrap {
  flex: 1 1 260px;
  min-width: min(320px, 100%);
}

.catalog-search,
.catalog-sort {
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(241, 226, 204, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(241, 226, 204, 0.88);
  padding: 0 18px;
  outline: none;
  box-shadow: none;
}

.catalog-search::placeholder {
  color: rgba(227, 214, 196, 0.42);
}

.catalog-search:focus,
.catalog-sort:focus {
  border-color: rgba(198, 151, 93, 0.4);
}

.catalog-sort {
  flex: 0 0 auto;
  min-width: 210px;
  appearance: none;
  cursor: pointer;
}

.catalog-toggle {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(198, 151, 93, 0.24);
  color: rgba(227, 214, 196, 0.78);
  font-size: 0.88rem;
  cursor: pointer;
  user-select: none;
}

.catalog-toggle input {
  accent-color: #c6975d;
}

.catalog-page .lux-catalog-section {
  padding-top: 0;
}

.catalog-page .lux-catalog-grid-page {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 72px;
}

.catalog-page .lux-product-card {
  gap: 28px;
}

.catalog-page .lux-product-card[hidden] {
  display: none !important;
}

.catalog-empty-state {
  justify-items: center;
  text-align: center;
}

.catalog-empty-state p {
  max-width: 36ch;
}

.lux-product-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 40px;
}

.lux-product-image-link .lux-image-stage {
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease);
}

.lux-product-image-link:hover .lux-image-stage {
  transform: translateY(-3px);
  border-color: rgba(215, 185, 140, 0.24);
}

.lux-product-image-link:focus-visible {
  outline: 2px solid rgba(215, 185, 140, 0.72);
  outline-offset: 6px;
}

.lux-product-title-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}

.lux-product-title-link:hover {
  color: var(--accent);
}

.catalog-page .lux-product-card .lux-image-stage {
  min-height: 400px;
  padding: 28px 24px;
}

.catalog-page .lux-product-card .lux-image-stage img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: center;
}

.catalog-page .lux-product-card .lux-card-body {
  gap: 18px;
  padding: 0 8px;
}

.catalog-page .lux-product-card h3 {
  font-size: clamp(1.45rem, 1.3vw, 1.72rem);
  line-height: 1.14;
}

.catalog-feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(198, 151, 93, 0.34);
  background: rgba(198, 151, 93, 0.1);
  color: rgba(241, 226, 204, 0.88);
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.catalog-feature-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 14px;
  margin-left: 0;
  margin-right: 0;
}

.catalog-page .lux-product-card .lux-card-body > p {
  line-height: 1.7;
}

.catalog-page .lux-card-price {
  font-size: 1.34rem;
}

.catalog-page .lux-product-card .button {
  width: auto;
  min-width: 0;
  justify-self: start;
}

@media (max-width: 1100px) {
  .catalog-page .lux-catalog-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 64px;
  }

  .catalog-page .lux-product-card .lux-image-stage {
    min-height: 360px;
    padding: 26px 22px;
  }

  .catalog-page .lux-product-card .lux-image-stage img {
    max-height: 320px;
  }
}

@media (min-width: 700px) and (max-width: 820px) {
  .catalog-heading {
    justify-items: center;
    text-align: center;
  }

  .catalog-note {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .catalog-page .lux-catalog-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 28px;
  }

  .catalog-page .lux-product-card .lux-card-body {
    justify-items: start;
    text-align: left;
  }

  .catalog-page .lux-product-card .button {
    justify-self: start;
  }
}

@media (max-width: 699px) {
  .compact-catalog-top {
    padding-top: 40px;
  }

  .catalog-heading {
    justify-items: center;
    text-align: center;
    margin-bottom: 16px;
  }

  .catalog-note {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .catalog-page .lux-catalog-grid-page {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .catalog-page .lux-product-card .lux-image-stage {
    min-height: 340px;
    padding: 24px 20px 28px;
  }

  .catalog-page .lux-product-card .lux-image-stage img {
    max-height: 300px;
  }

  .catalog-page .lux-product-card .button {
    justify-self: center;
  }
}

.contacts-hero-card-mark {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.contacts-hero-card-subtitle {
  margin: 0;
  max-width: 26ch;
  color: rgba(233, 221, 205, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.contacts-hero-card-lines {
  display: grid;
  gap: 10px;
  max-width: 28ch;
}

.contacts-hero-card-lines span {
  color: rgba(215, 185, 140, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contacts-hero-card .button {
  width: fit-content;
}

@media (max-width: 820px) {
  .contacts-hero-card-lines {
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts-hero-card .button {
    width: min(100%, 320px);
    justify-self: center;
  }
}

/* Unified page hero for index / brand / about / contacts */
.home-page:not(.catalog-page) .page-hero {
  padding-top: 150px;
  padding-bottom: 88px;
}

.home-page:not(.catalog-page) .page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
  min-height: 0;
}

.home-page:not(.catalog-page) .page-hero__copy {
  max-width: 620px;
  padding-top: 8px;
}

.home-page:not(.catalog-page) .page-hero__visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.home-page:not(.catalog-page) .page-hero__card {
  width: 100%;
  max-width: 700px;
  min-height: 500px;
  padding: 40px;
  border-radius: 36px;
  border: 1px solid rgba(241, 226, 204, 0.08);
  background:
    radial-gradient(circle at 50% 30%, rgba(170, 124, 73, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    rgba(18, 14, 13, 0.5);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.22);
}

.home-page:not(.catalog-page) .page-hero__card img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
}

.home-page:not(.catalog-page) .page-hero .lux-kicker {
  margin: 0 0 26px;
}

.home-page:not(.catalog-page) .page-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.home-page:not(.catalog-page) .page-hero__lead {
  margin-top: 28px;
  max-width: 470px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(227, 214, 196, 0.72);
}

.home-page:not(.catalog-page) .page-hero .lux-actions {
  margin-top: 40px;
}

.in-stock-feature {
  padding: 34px 0 72px;
}

.in-stock-feature__card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 36px;
  border: 1px solid rgba(241, 226, 204, 0.1);
  background:
    radial-gradient(circle at 75% 45%, rgba(198, 151, 93, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(18, 14, 13, 0.58);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.in-stock-feature__content {
  display: grid;
  align-content: start;
}

.in-stock-feature__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(198, 151, 93, 0.34);
  background: rgba(198, 151, 93, 0.1);
  color: rgba(241, 226, 204, 0.88);
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.in-stock-feature__content h2 {
  margin: 14px 0 0;
  max-width: 720px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.in-stock-feature__content > p:not(.lux-kicker):not(.in-stock-feature__note) {
  margin-top: 24px;
  max-width: 560px;
  color: rgba(227, 214, 196, 0.72);
  font-size: 1.04rem;
  line-height: 1.75;
}

.in-stock-feature__content .lux-actions {
  margin-top: 30px;
}

.in-stock-feature__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 38%),
    rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.in-stock-feature__visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 390px;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.32));
}

.in-stock-feature__note {
  margin-top: 18px;
  max-width: 520px;
  color: rgba(227, 214, 196, 0.5);
  font-size: 0.88rem;
  line-height: 1.55;
}

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 30%, rgba(198, 151, 93, 0.14), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(241, 226, 204, 0.06), transparent 32%),
    #0b0908;
}

.error-page .page-shell {
  min-height: 100vh;
  background: transparent;
}

.error-hero {
  padding: 140px 0 90px;
}

.error-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.error-copy {
  position: relative;
  z-index: 1;
}

.error-kicker {
  color: rgba(198, 151, 93, 0.9);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.error-title {
  margin: 22px 0 0;
  font-size: clamp(3.8rem, 9vw, 8rem);
  line-height: 0.9;
  color: rgba(245, 239, 230, 0.96);
}

.error-text {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(227, 214, 196, 0.72);
  font-size: 1.08rem;
  line-height: 1.8;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.error-visual {
  min-height: 420px;
  border-radius: 34px;
  border: 1px solid rgba(241, 226, 204, 0.1);
  background:
    radial-gradient(circle at 50% 45%, rgba(198, 151, 93, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.error-visual::before {
  content: "404";
  position: absolute;
  right: -18px;
  bottom: -24px;
  font-size: clamp(8rem, 17vw, 18rem);
  line-height: 1;
  color: rgba(241, 226, 204, 0.045);
}

.error-visual__line {
  position: absolute;
  inset: 10% auto 10% 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(241, 226, 204, 0),
    rgba(241, 226, 204, 0.34),
    rgba(241, 226, 204, 0)
  );
  transform: translateX(-50%);
}

.error-visual__glow {
  position: absolute;
  inset: auto 12% 12% auto;
  width: min(280px, 56%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 151, 93, 0.22), rgba(198, 151, 93, 0) 70%);
  filter: blur(16px);
}

.error-links {
  padding: 0 0 100px;
}

.error-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.error-link-card {
  display: block;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(241, 226, 204, 0.1);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.error-link-card__kicker {
  display: inline-block;
  color: rgba(198, 151, 93, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.error-link-card h3 {
  margin: 16px 0 0;
  color: rgba(245, 239, 230, 0.94);
  font-size: 1.25rem;
  line-height: 1.3;
}

.error-link-card p {
  margin: 12px 0 0;
  color: rgba(227, 214, 196, 0.68);
  line-height: 1.65;
}

.error-link-card:hover {
  border-color: rgba(198, 151, 93, 0.35);
  background: rgba(198, 151, 93, 0.08);
  transform: translateY(-2px);
}

.privacy-hero {
  padding-bottom: 54px;
}

.privacy-hero-card {
  min-height: 320px;
}

.privacy-panel p + p {
  margin-top: 18px;
}

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

.privacy-card {
  height: 100%;
}

.privacy-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: rgba(227, 214, 196, 0.72);
}

.privacy-list li {
  line-height: 1.72;
}

.cookie-notice {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 6000;
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 24px;
  border: 1px solid rgba(241, 226, 204, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(12, 10, 9, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  color: rgba(241, 226, 204, 0.82);
}

.cookie-notice.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-notice__text {
  max-width: 760px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-notice__text a,
.cookie-notice__more {
  color: rgba(229, 196, 139, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 196, 139, 0.35);
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-notice__accept {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(229, 196, 139, 0.4);
  background: rgba(229, 196, 139, 0.16);
  color: rgba(245, 239, 230, 0.96);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  cursor: pointer;
}

.cookie-notice__accept:hover {
  background: rgba(229, 196, 139, 0.24);
}

.about-page .page-hero__card--text,
.contacts-page .page-hero__card--text {
  display: grid;
  align-content: start;
  gap: 18px;
}

.about-page .page-hero__card--text .about-visual-points,
.contacts-page .page-hero__card--text .contacts-hero-card-lines {
  display: grid;
  gap: 10px;
}

.contacts-page .page-hero__card--text .button {
  width: fit-content;
}

.home-page .site-header {
  position: sticky;
  top: 0;
}

@media (max-width: 820px) {
  .home-page:not(.catalog-page) .page-hero {
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .home-page:not(.catalog-page) .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .home-page:not(.catalog-page) .page-hero__copy {
    max-width: 100%;
    padding-top: 0;
  }

  .home-page:not(.catalog-page) .page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
    line-height: 1;
  }

  .home-page:not(.catalog-page) .page-hero__lead {
    max-width: 34ch;
  }

  .in-stock-feature {
    padding: 22px 0 54px;
  }

  .error-hero {
    padding: 110px 0 70px;
  }

  .error-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .error-visual {
    min-height: 260px;
  }

  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-actions a {
    width: 100%;
    justify-content: center;
  }

  .error-links-grid {
    grid-template-columns: 1fr;
  }

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

  .in-stock-feature__card {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    text-align: center;
    border-radius: 28px;
  }

  .in-stock-feature__content {
    justify-items: center;
  }

  .in-stock-feature__content h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
    text-align: center;
  }

  .in-stock-feature__content > p:not(.lux-kicker):not(.in-stock-feature__note),
  .in-stock-feature__note {
    text-align: center;
  }

  .in-stock-feature__visual {
    min-height: 260px;
    width: 100%;
  }

  .in-stock-feature__visual img {
    max-height: 300px;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-notice__text {
    font-size: 0.82rem;
  }

  .cookie-notice__actions {
    justify-content: space-between;
  }

  .cookie-notice__accept {
    flex: 1;
  }

  .home-page:not(.catalog-page) .page-hero__card {
    min-height: 340px;
    padding: 28px;
  }

  .home-page:not(.catalog-page) .page-hero__visual {
    justify-content: center;
  }

  .contacts-page .page-hero__card--text .button {
    width: min(100%, 320px);
    justify-self: center;
  }
}

/* Final mobile consistency layer */
@media (max-width: 820px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    width: 100%;
  }

  .header-inner {
    display: flex;
    min-height: 74px;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
  }

  .brand {
    min-width: max-content;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .brand-mark,
  .brand-note {
    max-width: none;
  }

  .brand-mark {
    font-size: 1.08rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .brand-note {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 18px;
    border-radius: 28px;
    background: rgba(18, 14, 13, 0.96);
    border: 1px solid rgba(241, 226, 204, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 12px 10px;
    overflow-wrap: anywhere;
  }

  .site-nav a[href="contacts.html"] {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .header-actions .button,
  .header-actions .ghost-button,
  .header-actions a[href="contacts.html"] {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

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

  .header-actions,
  .home-luxury .header-actions,
  .catalog-page .header-actions {
    display: none;
  }

  .catalog-toolbar {
    width: 100%;
    max-width: 520px;
    margin: 28px auto 30px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 12px;
    border-radius: 28px;
    border: 1px solid rgba(241, 226, 204, 0.1);
    background: rgba(18, 14, 13, 0.58);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
  }

  .catalog-search-wrap {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
  }

  .catalog-search,
  .catalog-sort,
  .catalog-toggle {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    margin: 0;
    box-sizing: border-box;
  }

  .catalog-search,
  .catalog-sort {
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(241, 226, 204, 0.13);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(241, 226, 204, 0.9);
    font-size: 1rem;
    line-height: 1;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
  }

  .catalog-search {
    -webkit-text-fill-color: rgba(241, 226, 204, 0.9);
  }

  .catalog-search::placeholder {
    color: rgba(227, 214, 196, 0.42);
    -webkit-text-fill-color: rgba(227, 214, 196, 0.42);
  }

  .catalog-search:focus,
  .catalog-sort:focus {
    border-color: rgba(198, 151, 93, 0.4);
    background: rgba(255, 255, 255, 0.075);
  }

  .catalog-sort {
    flex: 0 0 auto;
    padding-right: 42px;
    background-image:
      linear-gradient(45deg, transparent 50%, rgba(241, 226, 204, 0.72) 50%),
      linear-gradient(135deg, rgba(241, 226, 204, 0.72) 50%, transparent 50%);
    background-position:
      calc(100% - 22px) calc(50% - 1px),
      calc(100% - 16px) calc(50% - 1px);
    background-size:
      7px 7px,
      7px 7px;
    background-repeat: no-repeat;
  }

  .catalog-toggle {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(198, 151, 93, 0.28);
    background: rgba(198, 151, 93, 0.08);
    color: rgba(241, 226, 204, 0.84);
    font-size: 0.92rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: center;
    cursor: pointer;
  }

  .catalog-toggle input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .catalog-toggle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    color: inherit;
    white-space: nowrap;
  }

  .catalog-toggle:has(input:checked) {
    border-color: rgba(198, 151, 93, 0.46);
    background: rgba(198, 151, 93, 0.18);
    box-shadow: inset 0 0 0 1px rgba(198, 151, 93, 0.08);
  }

  .catalog-toggle:has(input:focus-visible) {
    border-color: rgba(198, 151, 93, 0.52);
    box-shadow: 0 0 0 3px rgba(198, 151, 93, 0.18);
  }

  .page-hero,
  .page-hero__grid,
  .lux-product-layout,
  .lux-contact-layout,
  .lux-contact-grid,
  .lux-footer-grid,
  .lux-specs-grid,
  .lux-catalog-grid-page,
  .brand-split,
  .brand-product-showcase,
  .brand-values,
  .brand-timeline,
  .about-audience-grid,
  .about-process,
  .about-info-grid,
  .about-transfer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .product-page .lux-product-hero {
    text-align: center;
  }

  .page-hero__copy,
  .page-hero__visual,
  .product-page .lux-product-copy,
  .product-page .lux-product-visual,
  .brand-copy,
  .lux-contact-copy,
  .lux-footer-stack,
  .lux-footer-links,
  .lux-footer-socials {
    justify-items: center;
    text-align: center;
  }

  .page-hero__visual,
  .product-page .lux-product-visual,
  .lux-footer-grid {
    justify-content: center;
  }

  .page-hero__card,
  .lux-product-card,
  .lux-contact-card,
  .lux-contact-form-shell {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero__card,
  .lux-contact-card,
  .lux-contact-form-shell {
    min-width: 0;
  }

  .page-hero h1,
  .home-page:not(.catalog-page) .page-hero h1,
  .product-page h1,
  .lux-product-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
  }

  h2 {
    line-height: 1.05;
  }

  p,
  h1,
  h2,
  h3,
  span,
  strong,
  a {
    overflow-wrap: anywhere;
  }

  .product-included-item {
    padding: 18px 18px 18px 42px;
  }

  .product-included-item::before {
    left: 18px;
    top: 23px;
    width: 9px;
    height: 9px;
  }

  .product-option-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 18px;
  }

  .product-option-row strong {
    justify-self: start;
  }

  .product-included-card,
  .product-options-card {
    padding: 24px 18px;
  }

  .lux-actions,
  .lux-actions-centered,
  .page-hero .lux-actions,
  .product-page .lux-product-copy .lux-actions {
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .lux-actions a,
  .button,
  .ghost-button,
  .pill-link {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .catalog-page .lux-catalog-filters,
  .catalog-note,
  .catalog-note p,
  .lux-product-card,
  .lux-product-card .lux-card-body,
  .lux-card-price,
  .product-page .lux-product-copy,
  .product-page .lux-product-price,
  .product-page .lux-feature-block,
  .product-page .lux-breadcrumbs,
  .contacts-page .lux-contact-grid,
  .contacts-page .lux-contact-card,
  .contacts-page .lux-contact-card p,
  .contacts-page .lux-contact-form-shell,
  .site-footer,
  .lux-footer {
    text-align: center;
  }

  .catalog-page .lux-catalog-filters {
    justify-content: center;
    margin-bottom: 20px;
  }

  .catalog-note {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
    max-width: 38ch;
  }

  .catalog-page .lux-catalog-grid-page {
    gap: 42px;
  }

  .catalog-page .lux-product-card {
    max-width: 420px;
  }

  .catalog-page .lux-product-card .lux-image-stage {
    min-height: 340px;
    padding: 22px 18px 24px;
  }

  .catalog-page .lux-product-card .lux-image-stage img {
    max-height: 300px;
    object-fit: contain;
    object-position: center;
  }

  .product-page .lux-product-layout {
    gap: 32px;
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .product-page .lux-product-object,
  .product-page .lux-product-stage,
  .product-page .lux-product-stage img {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-page .lux-product-stage img {
    max-height: 360px;
    object-fit: contain;
    object-position: center;
  }

  .lux-specs-grid {
    gap: 18px;
  }

  .lux-spec-item,
  .lux-product-price,
  .lux-feature-block {
    min-width: 0;
  }

  .lux-feature-list {
    justify-items: center;
  }

  .lux-feature-list li {
    max-width: 100%;
    text-align: left;
  }

  .lux-contact-grid,
  .lux-contact-layout,
  .lux-footer-grid {
    gap: 22px;
  }

  .lux-footer {
    padding-top: 56px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-mark {
    font-size: 1.34rem;
    letter-spacing: 0.08em;
  }

  .brand-note {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .catalog-feature-badge {
    white-space: normal;
    text-align: center;
  }

  .catalog-feature-badges {
    justify-content: center;
  }

  .catalog-toolbar {
    width: 100%;
    max-width: 520px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    align-content: flex-start;
    gap: 12px;
    margin: 28px auto 30px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(241, 226, 204, 0.1);
    background: rgba(18, 14, 13, 0.58);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(16px);
  }

  .catalog-search-wrap {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
  }

  .catalog-search,
  .catalog-sort,
  .catalog-toggle {
    width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .catalog-search,
  .catalog-sort,
  .catalog-toggle {
    min-height: 52px;
  }

  .catalog-search,
  .catalog-sort {
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(241, 226, 204, 0.13);
    background: rgba(255, 255, 255, 0.055);
    color: rgba(241, 226, 204, 0.9);
    font-size: 1rem;
    line-height: 1;
    appearance: none;
    -webkit-appearance: none;
  }

  .catalog-search {
    -webkit-text-fill-color: rgba(241, 226, 204, 0.9);
  }

  .catalog-search::placeholder {
    color: rgba(227, 214, 196, 0.42);
    -webkit-text-fill-color: rgba(227, 214, 196, 0.42);
  }

  .catalog-search:focus,
  .catalog-sort:focus {
    border-color: rgba(198, 151, 93, 0.4);
    background: rgba(255, 255, 255, 0.075);
  }

  .catalog-sort {
    flex: 0 0 auto;
    padding-right: 42px;
    background-image:
      linear-gradient(45deg, transparent 50%, rgba(241, 226, 204, 0.72) 50%),
      linear-gradient(135deg, rgba(241, 226, 204, 0.72) 50%, transparent 50%);
    background-position:
      calc(100% - 22px) calc(50% - 1px),
      calc(100% - 16px) calc(50% - 1px);
    background-size:
      7px 7px,
      7px 7px;
    background-repeat: no-repeat;
  }

  .catalog-toggle {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(198, 151, 93, 0.28);
    background: rgba(198, 151, 93, 0.08);
    color: rgba(241, 226, 204, 0.84);
    font-size: 0.92rem;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-align: center;
    cursor: pointer;
  }

  .catalog-toggle input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .catalog-toggle span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    color: inherit;
  }

  .catalog-toggle:has(input:checked) {
    border-color: rgba(198, 151, 93, 0.46);
    background: rgba(198, 151, 93, 0.18);
    box-shadow: inset 0 0 0 1px rgba(198, 151, 93, 0.08);
  }

  .catalog-toggle:has(input:focus-visible) {
    border-color: rgba(198, 151, 93, 0.52);
    box-shadow: 0 0 0 3px rgba(198, 151, 93, 0.18);
  }

  .page-hero__card,
  .lux-product-card,
  .lux-contact-card,
  .lux-contact-form-shell {
    max-width: 100%;
  }

  .catalog-page .lux-product-card .lux-card-body,
  .product-page .lux-product-copy,
  .lux-footer-stack {
    justify-items: center;
  }
}

@media (max-width: 1100px) {
  .in-stock-product-layout,
  .in-stock-media-layout,
  .in-stock-info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .in-stock-gold-grid {
    grid-template-columns: 1fr;
  }

  .stock-video-grid {
    grid-template-columns: 1fr;
  }

  .in-stock-photo-gallery {
    grid-template-columns: 1fr;
  }

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

  .in-stock-product-copy,
  .in-stock-panel,
  .in-stock-rich-copy,
  .in-stock-panel-copy,
  .in-stock-specs-note,
  .in-stock-purchase-note,
  .in-stock-final-note {
    max-width: 100%;
  }

  .in-stock-product-visual {
    justify-content: center;
    padding-top: 0;
  }

  .in-stock-product-object {
    width: min(100%, 720px);
    padding: 0 8px 12px;
  }

  .in-stock-product-stage img {
    width: min(100%, 620px);
    max-height: 520px;
    object-position: center;
  }
}

@media (max-width: 820px) {
  .stock-video-section {
    padding: 54px 0;
  }

  .in-stock-product-layout {
    gap: 36px;
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .in-stock-product-copy {
    justify-items: center;
    text-align: center;
  }

  .in-stock-product-topline,
  .in-stock-product-highlights,
  .in-stock-product-copy .lux-actions {
    justify-content: center;
  }

  .in-stock-product-copy h1 {
    font-size: clamp(2.9rem, 13vw, 4.4rem);
    line-height: 1;
  }

  .in-stock-product-subtitle,
  .in-stock-product-body,
  .in-stock-product-note {
    max-width: 100%;
    text-align: center;
  }

  .in-stock-product-price {
    justify-items: center;
    text-align: center;
  }

  .in-stock-product-highlights {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .in-stock-panel {
    padding: 30px 24px;
    border-radius: 28px;
  }

  .in-stock-panel .lux-section-heading {
    justify-items: start;
    text-align: left;
  }

  .in-stock-photo-stage img {
    max-height: 420px;
  }

  .in-stock-photo-card img {
    height: 300px;
  }

  .stock-video-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stock-video-card {
    border-radius: 24px;
  }

  .stock-video-card__preview {
    min-height: 190px;
  }

  .stock-video-button,
  .in-stock-video-card .ghost-button {
    width: 100%;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal__dialog {
    border-radius: 20px;
  }

  .video-modal__close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 640px) {
  #instrument-media {
    scroll-margin-top: 92px;
  }

  .in-stock-product-copy {
    gap: 16px;
  }

  .in-stock-product-badge {
    letter-spacing: 0.08em;
  }

  .in-stock-panel {
    padding: 24px 18px;
  }

  .in-stock-product-highlight,
  .in-stock-video-card {
    padding: 18px 18px 20px;
  }

  .in-stock-photo-stage img {
    max-height: 340px;
  }

  .in-stock-photo-card {
    padding: 12px;
    border-radius: 20px;
  }

  .in-stock-photo-card img {
    height: 260px;
  }

  .in-stock-bullet-list {
    padding-left: 16px;
  }
}
