/* --------------------------------------------------------------------------
   DREAM Bath — premium floating navbar (reference-aligned)
   -------------------------------------------------------------------------- */

:root {
  --gold-metallic: linear-gradient(
    135deg,
    #a67c2e 0%,
    #e6c36a 25%,
    #fff3b0 38%,
    #d4af37 52%,
    #a67c2e 70%,
    #f0d77a 100%
  );
  --gold-flat-mid: #e6c36a;
  --gold-dim: rgba(212, 175, 55, 0.45);
  --glass-bg: linear-gradient(
    168deg,
    rgba(10, 10, 12, 0.88) 0%,
    rgba(6, 6, 8, 0.86) 45%,
    rgba(4, 4, 6, 0.92) 100%
  );
  --glass-bg-scroll: linear-gradient(
    168deg,
    rgba(26, 26, 30, 0.94) 0%,
    rgba(12, 12, 14, 0.92) 100%
  );
  --glass-border: rgba(255, 255, 255, 0.07);
  /* Top cap: cool silver highlight */
  --edge-top-shine: linear-gradient(
    90deg,
    rgba(90, 96, 108, 0.4) 0%,
    rgba(220, 228, 238, 0.55) 28%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(200, 210, 224, 0.62) 72%,
    rgba(100, 108, 118, 0.42) 100%
  );
  /* Bottom cap: gold flare between deep black bands */
  --edge-bottom-shine: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(8, 8, 10, 0.98) 18%,
    rgba(255, 242, 190, 0.92) 42%,
    rgba(230, 195, 106, 1) 50%,
    rgba(255, 248, 220, 0.88) 58%,
    rgba(6, 6, 8, 0.98) 82%,
    rgba(0, 0, 0, 0.96) 100%
  );
  --text: rgba(255, 255, 255, 0.95);
  --nav-max: 1400px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-bar: 0;
  --bp-tablet: 1180px;
  --bp-mobile: 900px;
  /* Logo height band — keep below inner row / controls */
  --navbar-logo-h: clamp(52px, 5.2vw, 64px);
  --navbar-logo-h-scroll: clamp(48px, 5vw, 58px);
  --navbar-arc-h: clamp(56px, 5.6vw, 70px);
  --navbar-arc-h-scroll: clamp(52px, 5.2vw, 64px);
  --hero-ease: cubic-bezier(0.45, 0, 0.15, 1);
  --hero-ease-drift: cubic-bezier(0.4, 0, 0.2, 1);
  --hero-light-ease: cubic-bezier(0.42, 0, 0.58, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

/* Three bands: fixed header + scrollable main + fixed footer — no window scroll */
body {
  margin: 0;
  height: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", system-ui, sans-serif;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #1a1510 0%, #060606 45%, #020202 100%);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: #111;
  color: #fff;
}

.skip-link:focus {
  left: 0;
}

/* ----- Header shell (fixed band — does not scroll) ----- */
.site-header {
  flex: 0 0 auto;
  position: relative;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: padding 0.35s var(--ease);
}

.site-header.menu-open {
  z-index: 1100;
}

.site-header.is-scrolled {
  padding-top: 0;
}

.site-header.is-scrolled .navbar {
  background: var(--glass-bg-scroll);
  box-shadow: 0 14px 56px rgba(0, 0, 0, 0.72), 0 4px 20px rgba(0, 0, 0, 0.35),
    0 0 48px rgba(212, 175, 55, 0.05);
}

.site-header.is-scrolled .navbar__logo {
  height: var(--navbar-logo-h-scroll);
  max-height: 58px;
  min-height: 44px;
}

.site-header.is-scrolled .navbar__brand-arc {
  height: var(--navbar-arc-h-scroll);
  width: auto;
}

/* Full-bleed bar; content capped inside .navbar__inner */
/* Stays above .mobile-backdrop so the slide-out menu and links are visible / clickable */
.navbar__viewport {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Full-width strip under browser chrome — square corners, edge-to-edge */
.navbar {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius-bar);
  padding: 0.52rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(14px) saturate(125%);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  overflow: hidden;
  width: 100%;
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.72), 0 24px 48px rgba(0, 0, 0, 0.35);
  transition: padding 0.3s var(--ease), background 0.35s var(--ease), box-shadow 0.35s ease;
}

/* Thin top edge — silver / bright metal (no full perimeter frame) */
.navbar__top-edge {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  z-index: 4;
  border-radius: 0;
  background: var(--edge-top-shine);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.42), 0 0 22px rgba(230, 238, 250, 0.18),
    0 1px 8px rgba(255, 255, 255, 0.12);
}

.navbar__top-edge::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 3px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.06) 45%,
    transparent 100%
  );
  filter: blur(1px);
  opacity: 0.65;
  pointer-events: none;
}

/* Gloss sheen — top cool highlight + soft bottom read (edges carry gold/black line) */
.navbar__specular {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  opacity: 0.68;
  mix-blend-mode: screen;
  background: radial-gradient(ellipse 95% 50% at 50% -8%, rgba(255, 255, 255, 0.09), transparent 48%),
    radial-gradient(ellipse 90% 28% at 50% 102%, rgba(249, 226, 125, 0.08), transparent 46%);
}

.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(178deg, rgba(255, 255, 255, 0.07) 0%, transparent 36%, transparent 100%);
}

/* Bottom gold / black gradient rail */
.navbar__bottom-trim {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.navbar__bottom-trim-core {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 0;
  background: var(--edge-bottom-shine);
  box-shadow: 0 0 18px rgba(249, 226, 125, 0.42), 0 0 36px rgba(212, 175, 55, 0.2),
    0 4px 14px rgba(0, 0, 0, 0.75), 0 2px 6px rgba(255, 243, 176, 0.15);
}

/* Subtle lift so gold reads above deep black rail */
.navbar__bottom-trim-core::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 248, 210, 0.35) 0%,
    transparent 65%
  );
  opacity: 0.5;
  pointer-events: none;
}

/* Animated sweep along bottom rail */
.nav-glow-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.nav-glow-line::before {
  content: "";
  position: absolute;
  left: -35%;
  width: 32%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    rgba(249, 226, 125, 0.9),
    rgba(184, 134, 11, 0.55),
    transparent
  );
  animation: sweep-glow 5s ease-in-out infinite;
}

@keyframes sweep-glow {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateX(380%);
    opacity: 0;
  }
}

/* Inner flex — content width aligned with site max-width */
.navbar__inner {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.35rem, 1.2vw, 1rem);
  width: 100%;
  max-width: var(--nav-max);
  margin: 0 auto;
  padding: 0 clamp(0.85rem, 2.4vw, 1.55rem);
  font-family: "Montserrat", system-ui, sans-serif;
}

/* ----- Toggle: hidden desktop/tablet, shown on mobile ----- */
.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.12);
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
}

.navbar__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold-metallic);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}

.site-header.menu-open .navbar__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Logo cluster + curved divider (no box around logo — arc only) ----- */
.navbar__brand-cluster {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.12rem;
}

@media (min-width: 901px) {
  .navbar__brand-cluster {
    padding-right: clamp(0.25rem, 1vw, 0.9rem);
  }
}

.navbar__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0;
}

.navbar__brand-arc {
  flex-shrink: 0;
  display: block;
  align-self: center;
  height: var(--navbar-arc-h);
  width: auto;
  filter: drop-shadow(0 0 10px rgba(249, 226, 125, 0.35));
}

.navbar__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.navbar__logo-link:hover {
  opacity: 0.92;
}

.navbar__logo {
  display: block;
  height: var(--navbar-logo-h);
  width: auto;
  max-height: 64px;
  min-height: 48px;
  object-fit: contain;
  object-position: left center;
  transition: height 0.3s var(--ease);
}

/* ----- Menu ----- */
.navbar__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(1rem, 2vw, 1.8rem);
}

.navbar__menu li {
  position: relative;
  display: flex;
  align-items: center;
}

.navbar__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4af37;
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease), text-shadow 0.3s ease;
}

.navbar__link-icon {
  display: none;
  width: 22px;
  height: 22px;
  color: #e6c36a;
  opacity: 0.95;
}

.navbar__link-icon svg {
  width: 100%;
  height: 100%;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(166, 124, 46, 0.35) 18%,
    rgba(255, 248, 210, 0.95) 42%,
    rgba(230, 195, 106, 0.95) 52%,
    rgba(166, 124, 46, 0.35) 82%,
    transparent 100%
  );
  box-shadow: 0 0 14px rgba(255, 243, 176, 0.65), 0 0 28px rgba(212, 175, 55, 0.45),
    0 2px 12px rgba(249, 226, 125, 0.35);
  transition: width 0.35s var(--ease), opacity 0.3s ease;
  opacity: 0;
}

.navbar__link:hover {
  color: #fff4cc;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.55);
}

.navbar__link:hover::after {
  width: 100%;
  opacity: 1;
}

.navbar__link.is-active {
  color: #fff9e6;
  text-shadow: 0 0 14px rgba(255, 243, 176, 0.65), 0 0 36px rgba(212, 175, 55, 0.45);
}

.navbar__link.is-active::after {
  width: 100%;
  opacity: 1;
}

/* Tablet: icons + vertical gold dividers */
@media (max-width: 1180px) and (min-width: 901px) {
  .navbar__menu {
    gap: 0;
  }

  .navbar__menu li + li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 62%;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.55), transparent);
    box-shadow: 0 0 10px rgba(249, 226, 125, 0.2);
  }

  .navbar__menu li + li .navbar__link {
    padding-left: clamp(0.85rem, 1.8vw, 1.35rem);
  }

  .navbar__link {
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.15rem 0.5rem;
  }

  .navbar__link-icon {
    display: flex;
  }

  .navbar__link::after {
    bottom: -2px;
  }
}

/* Desktop wide: text-only row */
@media (min-width: 1181px) {
  .navbar__link {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
}

/* ----- CTA — order + Zoho login (replaces phone) ----- */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.navbar__actions--split {
  gap: 0.4rem;
}

.navbar__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.78rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease), transform 0.2s ease;
}

.navbar__pill--ghost {
  color: rgba(255, 252, 248, 0.92);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar__pill--ghost:hover {
  background: rgba(230, 195, 106, 0.1);
  border-color: rgba(230, 195, 106, 0.55);
  color: rgba(255, 252, 248, 1);
}

.navbar__pill--gold {
  color: rgba(18, 16, 12, 0.95);
  background: linear-gradient(135deg, #e8d49a 0%, #c9a24a 45%, #f0e0a8 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.navbar__pill--gold:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.navbar__pill-text--brief {
  display: none;
}

@media (max-width: 520px) {
  .navbar__pill {
    padding: 0.35rem 0.5rem;
    font-size: 0.55rem;
    letter-spacing: 0.06em;
  }

  .navbar__pill-text--full {
    display: none;
  }

  .navbar__pill-text--brief {
    display: inline;
  }
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s ease,
    transform 0.25s ease;
}

.navbar__cta--desktop {
  padding: 0.48rem 1.05rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.035);
  position: relative;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.48), inset 0 0 12px rgba(212, 175, 55, 0.12),
    0 8px 26px rgba(0, 0, 0, 0.42);
}

.navbar__cta--desktop::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--gold-metallic);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Bottom-edge metallic glint on CTA */
.navbar__cta--desktop::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 210, 0.55), transparent);
  opacity: 0.75;
  filter: blur(0.5px);
}

.navbar__cta-icon--inline {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: var(--gold-flat-mid);
}

.navbar__cta--desktop:hover {
  background: var(--gold-metallic);
  color: #121214;
  box-shadow: 0 0 36px rgba(249, 226, 125, 0.42), 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.navbar__cta--desktop:hover::after {
  opacity: 0.35;
}

.navbar__cta--desktop:hover .navbar__cta-icon--inline {
  color: #121214;
}

.navbar__cta-text {
  white-space: nowrap;
}

/* Compact phone control: tablet + mobile — rounded square (reference) */
.navbar__cta--mobile {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  color: var(--gold-flat-mid);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.48);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 1180px) {
  .navbar__cta--desktop {
    display: none;
  }

  .navbar__cta--mobile {
    display: inline-flex;
  }
}

@media (min-width: 1181px) {
  .navbar__cta--desktop {
    display: inline-flex;
  }

  .navbar__cta--mobile {
    display: none;
  }
}

.navbar__cta--mobile:hover {
  background: var(--gold-metallic);
  color: #121214;
  box-shadow: 0 0 26px rgba(249, 226, 125, 0.32);
}

.navbar__cta--mobile .navbar__cta-icon {
  width: 21px;
  height: 21px;
}

/* ----- Mobile layout: hamburger | centered logo (no arc) | phone ----- */
@media (max-width: 900px) {
  .navbar__brand-arc {
    display: none;
  }

  .navbar {
    border-radius: 0;
    padding-top: max(0.55rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.55rem;
    padding-left: 0;
    padding-right: 0;
    /* Let the drawer escape the bar; backdrop-filter + overflow:hidden trap fixed children */
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(
      168deg,
      rgba(10, 10, 12, 0.97) 0%,
      rgba(6, 6, 8, 0.96) 45%,
      rgba(4, 4, 6, 0.98) 100%
    );
  }

  .site-header.is-scrolled .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: linear-gradient(168deg, rgba(26, 26, 30, 0.98) 0%, rgba(12, 12, 14, 0.97) 100%);
  }

  .navbar__inner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0 clamp(0.65rem, 3.5vw, 1.15rem);
    min-width: 0;
  }

  .navbar__toggle {
    display: flex;
    order: 1;
    position: relative;
    z-index: 8;
    flex-shrink: 0;
  }

  .navbar__brand-cluster {
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    flex-shrink: 1;
    justify-content: center;
    padding: 0.15rem 0.25rem;
    margin: 0 auto;
    gap: 0;
  }

  .navbar__logo {
    max-width: min(200px, 46vw);
    margin: 0 auto;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 86vw);
    height: 100vh;
    height: 100dvh;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 4.25rem)) max(1.5rem, env(safe-area-inset-right, 0px)) 2rem
      1.5rem;
    background: rgba(10, 10, 11, 0.96);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    border-left: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: -16px 0 56px rgba(0, 0, 0, 0.55);
    transform: translateX(100%);
    transition: transform 0.42s var(--ease);
    z-index: 30;
    order: unset;
  }

  .site-header.menu-open .navbar__menu {
    transform: translateX(0);
  }

  .navbar__menu li + li::before {
    display: none;
  }

  .navbar__menu li + li .navbar__link {
    padding-left: 0;
  }

  .navbar__menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .navbar__link {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.85rem;
    font-size: 0.78rem;
    padding: 1rem 0;
    letter-spacing: 0.1em;
  }

  .navbar__link-icon {
    display: flex;
    width: 22px;
    height: 22px;
  }

  .navbar__link::after {
    left: 2.7rem;
    transform: none;
    bottom: 0.75rem;
    width: 0;
  }

  .navbar__link:hover::after,
  .navbar__link.is-active::after {
    width: 48px;
  }

  .navbar__actions {
    order: 3;
    margin-left: 0;
    position: relative;
    z-index: 8;
    flex-shrink: 0;
  }
}

@media (max-width: 420px) {
  .navbar {
    border-radius: 0;
    padding-top: max(0.45rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.45rem;
    padding-left: 0;
    padding-right: 0;
  }

  .navbar__inner {
    padding: 0 clamp(0.5rem, 4vw, 0.85rem);
  }
}

/* Backdrop — below .navbar__viewport (z-index:2) so nav + slide-out sit on top */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.mobile-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ----- Hero — fills space between header & footer; full image visible (contain) ----- */
.hero-landing {
  position: relative;
  width: 100%;
  margin: 0;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.hero-landing__frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  background: #030303;
}

/* Static showcase vignette — no pulse (motion lives only in keylight) */
.hero-landing__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  box-shadow: inset 0 0 72px rgba(0, 0, 0, 0.45), inset 0 0 120px rgba(212, 175, 55, 0.045),
    inset 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-landing__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-landing__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Depth — tuned to hero art: warm falloff upper-left, cool marble read on the right */
.hero-landing__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 85% at 12% 22%, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.12) 72%),
    radial-gradient(ellipse 70% 60% at 88% 70%, rgba(0, 0, 0, 0.18) 0%, transparent 55%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.22) 0%, transparent 36%, transparent 62%, rgba(0, 0, 0, 0.08) 100%);
}

/* Hairline inner frame — gold lift toward bottom (product shelf in the art) */
.hero-landing__rim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.055),
    inset 0 -28px 56px -24px rgba(212, 175, 55, 0.07);
}

/* Film grain — print / campaign texture */
.hero-landing__grain {
  position: absolute;
  inset: 0;
  z-index: 7;
  opacity: 0.038;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/*
 * Keylight — matches the poster: strong warm rim from upper-left, softer fill.
 * Only animation on the page: slow drift + intensity (no sweeps, no spin, no particles).
 */
.hero-landing__keylight {
  position: absolute;
  inset: -12%;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background: radial-gradient(
      ellipse 68% 88% at 14% 26%,
      rgba(255, 232, 175, 0.3) 0%,
      rgba(212, 165, 72, 0.1) 32%,
      transparent 58%
    ),
    radial-gradient(ellipse 55% 70% at 8% 18%, rgba(255, 250, 235, 0.09) 0%, transparent 42%),
    radial-gradient(ellipse 80% 55% at 78% 88%, rgba(255, 248, 230, 0.045) 0%, transparent 50%);
  animation: hero-keylight-life 42s var(--hero-light-ease) infinite alternate;
}

@keyframes hero-keylight-life {
  0% {
    opacity: 0.62;
    transform: translate(-1.2%, -0.8%) scale(1);
  }
  100% {
    opacity: 0.88;
    transform: translate(1.8%, 1.4%) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-landing__keylight {
    animation: none;
    opacity: 0.74;
    transform: translate(0.4%, 0.2%) scale(1.02);
  }
}

/* Middle pane: flex-fill hero — fits viewport; add overflow-y: auto if you stack content below the hero */
.site-main {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
}

.site-main__anchor {
  flex: 0 0 0;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-main:focus {
  outline: none;
}

.site-main:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.45);
  outline-offset: -4px;
}

/* Inner pages: scroll inside main (header + footer stay fixed in viewport) */
.site-main--scroll {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* About: long-scroll editorial (about-v2 markup); main is the scroll container */
.site-main--about {
  position: relative;
  background: #0a090d;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  min-height: 0;
}

.about-page {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.about-page__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 0%, black 20%, transparent 72%);
}

.about-page__orb {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.14;
}

.about-page__orb--a {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  top: -8%;
  right: 5%;
  background: radial-gradient(circle at 40% 40%, rgba(230, 195, 106, 0.5), transparent 68%);
}

.about-page__orb--b {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  bottom: 10%;
  left: 18%;
  background: radial-gradient(circle at 50% 50%, rgba(120, 140, 180, 0.22), transparent 70%);
}

/* Orbs: static wash only — no motion (calmer page) */

.about-page__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(100px, 13vw) minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
  align-items: stretch;
}

.about-page__rail {
  position: relative;
  padding: clamp(0.4rem, 1dvh, 0.65rem) clamp(0.35rem, 1vw, 0.55rem) clamp(0.35rem, 1dvh, 0.55rem)
    clamp(0.45rem, 1.1vw, 0.7rem);
  background: radial-gradient(ellipse 90% 70% at 50% 20%, #12100e 0%, #030201 55%, #020101 100%);
  border-right: 1px solid rgba(212, 175, 55, 0.24);
}

.about-page__rail-frame {
  position: sticky;
  top: 0;
  height: min(100dvh, 100%);
  min-height: 280px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 12px 40px rgba(0, 0, 0, 0.45);
}

.about-page__rail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  transform: scale(1.03);
}

.about-page__rail-scrim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26) 0%, transparent 16%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 34%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.03) 38%,
      rgba(6, 5, 4, 0.72) 86%,
      rgba(4, 3, 2, 0.97) 100%
    );
}

.about-page__rail-tag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem clamp(0.65rem, 1.8vw, 1.05rem) 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  text-align: center;
}

.about-page__rail-tag-primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 0.45rem;
}

.about-page__rail-tag-line {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, rgba(230, 195, 106, 0.85), transparent);
}

.about-page__rail-tag-text {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 246, 220, 0.78);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-page__rail-tag-enterprise {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.5rem 0.6rem 0.55rem;
  font-size: clamp(0.58rem, 0.22vw + 0.52rem, 0.74rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: rgba(255, 248, 232, 0.92);
  text-align: center;
  text-wrap: balance;
  writing-mode: horizontal-tb;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 18px rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, rgba(4, 3, 2, 0.2) 0%, rgba(6, 5, 4, 0.78) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 2px;
}

.about-page__body {
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: clamp(0.45rem, 1.2dvh, 0.75rem) clamp(0.55rem, 1.6vw, 1.1rem) clamp(0.4rem, 1dvh, 0.65rem);
  background: #0b0b0f;
}

.about-page__sheet {
  --about-spine: 3px;
  --about-copy-gap: clamp(0.55rem, 1.1vw, 0.95rem);
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  margin-inline: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 1.05dvh, 0.75rem);
}

.about-page__hero {
  margin-bottom: clamp(0.55rem, 1.8vw, 1rem);
}

.about-page__hero--atelier {
  position: relative;
  margin-bottom: 0;
  padding: clamp(0.2rem, 0.65dvh, 0.45rem) 0 clamp(0.65rem, 1.35dvh, 1rem);
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.about-page__hero--atelier::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(0.2rem, 0.65dvh, 0.45rem);
  bottom: clamp(0.65rem, 1.35dvh, 1rem);
  width: var(--about-spine);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(230, 195, 106, 0.15), rgba(230, 195, 106, 0.55), rgba(230, 195, 106, 0.12));
  opacity: 0.85;
}

.about-page__hero-inner {
  margin: 0;
  padding: 0 0 0 calc(var(--about-spine) + var(--about-copy-gap));
  display: flex;
  flex-direction: column;
  gap: clamp(0.32rem, 0.75dvh, 0.48rem);
  max-width: 100%;
}

.about-page__eyebrow--hero {
  margin: 0;
  font-size: clamp(0.58rem, 0.12vw + 0.52rem, 0.68rem);
  letter-spacing: 0.36em;
}

.about-page__hero--atelier .about-page__title {
  margin: 0;
  max-width: min(42ch, 100%);
}

.about-page__hero--atelier .about-page__title-row {
  font-size: clamp(1.12rem, 0.38rem + 2.15vw + 0.45dvh, 1.95rem);
  line-height: 1.06;
}

.about-page__lede--hero {
  margin: 0;
  padding-top: clamp(0.12rem, 0.35dvh, 0.28rem);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.7rem, 0.18vw + 0.58rem, 0.86rem);
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.01em;
  max-width: min(72ch, 100%);
  color: rgba(255, 255, 255, 0.7);
}

.about-page__eyebrow {
  margin: 0 0 0.35rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(230, 200, 130, 0.75);
}

.about-page__title {
  margin: 0 0 0.75rem;
  max-width: 18ch;
}

.about-page__title-row {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 1.1rem + 2.8vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-feature-settings: "kern" 1, "liga" 1, "pnum" 1, "lnum" 1;
  color: rgba(255, 252, 248, 0.98);
  text-wrap: balance;
}

.about-page__title-row--shine {
  color: rgba(232, 212, 168, 0.96);
}

.about-page__lede {
  margin: 0;
  max-width: 52ch;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.82rem, 0.35vw + 0.78rem, 0.98rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-page__deck {
  display: flex;
  flex-direction: column;
  gap: clamp(0.42rem, 0.9dvh, 0.65rem);
  min-width: 0;
}

.about-page__deck + .about-page__deck {
  margin-top: clamp(0.1rem, 0.4dvh, 0.28rem);
  padding-top: clamp(0.45rem, 1dvh, 0.72rem);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.about-page__deck:last-of-type {
  flex: 1 1 auto;
  min-height: 0;
}

.about-page__deck-head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-shrink: 0;
  gap: clamp(0.55rem, 1.2vw, 0.95rem);
}

.about-page__deck-rail {
  flex: 0 0 auto;
  width: var(--about-spine, 3px);
  align-self: stretch;
  min-height: 3.25rem;
  margin-top: 0.12rem;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(60, 48, 24, 0.15) 0%,
    rgba(230, 195, 106, 0.92) 38%,
    rgba(230, 195, 106, 0.45) 70%,
    rgba(90, 72, 36, 0.12) 100%
  );
}

.about-page__deck-intro {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 0.02rem;
  max-width: 100%;
}

.about-page__deck-intro--tight .about-page__deck-title {
  margin-top: 0;
}

.about-page__deck-eyebrow {
  margin: 0 0 0.28rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.52rem, 0.08vw + 0.48rem, 0.6rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.58);
}

.about-page__deck-title {
  margin: 0 0 0.42rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.12rem, 0.35vw + 0.92rem, 1.45rem);
  letter-spacing: 0.028em;
  line-height: 1.12;
  font-feature-settings: "kern" 1, "liga" 1, "pnum" 1, "lnum" 1;
  color: rgba(255, 250, 242, 0.98);
  text-wrap: balance;
}

.about-page__deck-lede {
  margin: 0;
  max-width: min(68ch, 100%);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.66rem, 0.12vw + 0.58rem, 0.78rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.012em;
  color: rgba(255, 255, 255, 0.62);
}

.about-page__bento--pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.5rem, 1vw, 0.85rem);
  margin-bottom: 0;
  flex-shrink: 0;
  align-items: stretch;
}

@media (min-width: 1100px) {
  .about-page__bento--pillars {
    gap: clamp(0.65rem, 1.25vw, 1.1rem);
  }

  .about-page__tile.about-page__tile--pillar {
    padding: clamp(0.85rem, 1.4dvh, 1.05rem) clamp(0.85rem, 1.35vw, 1.1rem);
  }
}

.about-page__bento--pillars .about-page__tile-title {
  font-size: clamp(0.84rem, 0.16vw + 0.74rem, 0.98rem);
  margin-bottom: 0.38rem;
  line-height: 1.2;
  letter-spacing: 0.018em;
}

.about-page__bento--pillars .about-page__tile-body {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.66rem, 0.1vw + 0.6rem, 0.78rem);
  line-height: 1.48;
  letter-spacing: 0.01em;
  flex: 1 1 auto;
}

.about-page__bento--pillars .about-page__tile-kicker {
  margin-bottom: 0.32rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.5rem, 0.06vw + 0.47rem, 0.56rem);
  letter-spacing: 0.26em;
}

.about-page__tile--pillar[data-pillar-index]::after {
  content: none;
}

/* Vision + mission: grows to use leftover column height */
.about-page__deck--vision-mission {
  gap: clamp(0.38rem, 0.85dvh, 0.58rem);
  flex: 1 1 auto;
  min-height: 0;
}

.about-page__vm-stack {
  --about-lower-body: clamp(0.72rem, 0.11vw + 0.64rem, 0.84rem);
  --about-lower-body-lh: 1.52;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.45rem, 0.95vw, 0.65rem);
  flex: 1 1 auto;
  min-height: 0;
}

@media (min-width: 720px) {
  .about-page__vm-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    align-items: stretch;
  }
}

.about-page__deck--vision-mission .about-page__quote--vision p {
  font-size: clamp(0.88rem, 0.16vw + 0.78rem, 1.02rem);
  line-height: 1.5;
}

.about-page__vision {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  height: 100%;
  padding: clamp(0.85rem, 1.5dvh, 1.15rem) clamp(0.85rem, 1.4vw, 1.2rem);
  text-align: left;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 16, 20, 0.92);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

.about-page__vision .about-page__quote--vision {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: none;
}

.about-page__quote--vision p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.88rem, 0.18vw + 0.76rem, 1.06rem);
  line-height: 1.52;
  letter-spacing: 0.01em;
  font-feature-settings: "kern" 1, "liga" 1;
  color: rgba(255, 250, 242, 0.96);
}

.about-page__vision-caption {
  margin: 0;
  margin-top: auto;
  padding-top: 0.48rem;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.about-page__vision-caption .about-page__quote-label {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.24em;
}

.about-page__mission-strip {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 100%;
  height: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 16, 20, 0.92);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

.about-page__mission-strip-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.48rem;
  min-height: 0;
  padding: clamp(0.75rem, 1.4dvh, 1rem) clamp(0.75rem, 1.5vw, 1.1rem);
}

.about-page__mission-tag {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(0.62rem, 0.1vw + 0.56rem, 0.72rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.72);
}

.about-page__mission-text {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: var(--about-lower-body);
  line-height: var(--about-lower-body-lh);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.76);
}

@media (min-width: 640px) {
  .about-page__mission-strip-inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.85rem, 2vw, 1.35rem);
  }

  .about-page__mission-tag {
    flex: 0 0 auto;
    min-width: 4.75rem;
    padding-top: 0;
  }

  .about-page__mission-text {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.about-page__tile {
  position: relative;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 6px;
  background: rgba(18, 18, 22, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.about-page__tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse 120% 80% at 10% 0%, rgba(230, 195, 106, 0.12), transparent 55%);
  transition: opacity 0.45s var(--ease);
}

.about-page__tile:hover::before {
  opacity: 1;
}

.about-page__tile--accent {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.22);
}

.about-page__tile--dark {
  background: rgba(14, 14, 17, 0.96);
}

.about-page__tile.about-page__tile--pillar {
  display: flex;
  flex-direction: column;
  padding: clamp(0.62rem, 1.25dvh, 0.88rem) clamp(0.65rem, 1.2vw, 0.88rem);
  text-align: left;
  min-height: 100%;
}

.about-page__tile--pillar > * {
  position: relative;
  z-index: 1;
}

.about-page__mission-strip.about-page__tile {
  padding: 0;
}

.about-page__tile--wide {
  padding: clamp(1.1rem, 2.2vw, 1.45rem) clamp(1.15rem, 2.5vw, 1.65rem);
  display: flex;
  align-items: center;
}

.about-page__tile--mission {
  position: relative;
}

.about-page__tile-kicker {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 200, 130, 0.55);
}

.about-page__tile-title {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 0.4vw + 0.95rem, 1.25rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-feature-settings: "kern" 1, "liga" 1, "pnum" 1, "lnum" 1;
  color: rgba(255, 248, 235, 0.96);
  text-wrap: balance;
}

.about-page__tile-body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: clamp(0.75rem, 0.2vw + 0.7rem, 0.84rem);
  line-height: 1.52;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
}

.about-page__tile-body--tight {
  position: relative;
  z-index: 1;
}

.about-page__quote {
  margin: 0;
  width: 100%;
}

.about-page__quote:not(.about-page__quote--vision) p {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.35rem);
  line-height: 1.38;
  color: rgba(255, 252, 245, 0.9);
}

.about-page__quote footer {
  margin: 0;
}

.about-page__quote-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.75);
}

@media (prefers-reduced-motion: no-preference) {
  .about-page__hero-inner > * {
    animation: aboutReveal 0.55s var(--hero-ease) backwards;
  }

  .about-page__hero-inner > *:nth-child(1) {
    animation-delay: 0.03s;
  }

  .about-page__hero-inner > *:nth-child(2) {
    animation-delay: 0.07s;
  }

  .about-page__hero-inner > *:nth-child(3) {
    animation-delay: 0.11s;
  }

  .about-page__hero-inner > *:nth-child(4) {
    animation-delay: 0.15s;
  }
}

@keyframes aboutReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page__hero-inner > * {
    animation: none !important;
  }
}

@media (max-height: 700px) {
  .about-page__hero--atelier .about-page__title-row {
    font-size: clamp(0.82rem, 0.2rem + 1.35vw, 1.32rem);
  }

  .about-page__bento--pillars .about-page__tile-body {
    font-size: clamp(0.54rem, 0.05vw + 0.5rem, 0.64rem);
    line-height: 1.3;
  }

  .about-page__quote--vision p {
    font-size: clamp(0.72rem, 0.1vw + 0.64rem, 0.84rem);
    line-height: 1.4;
  }

  .about-page__mission-text {
    font-size: clamp(0.64rem, 0.06vw + 0.58rem, 0.74rem);
  }
}

@media (max-width: 900px) {
  .about-page__layout {
    grid-template-columns: 1fr;
  }

  .about-page__rail {
    border-right: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    padding: 0.4rem 0.7rem 0.25rem;
  }

  .about-page__rail-frame {
    position: relative;
    height: min(28dvh, 220px);
    max-height: none;
    border-radius: 5px;
  }

  .about-page__rail-img {
    object-position: 52% 36%;
    transform: scale(1.02);
  }

  .about-page__rail-tag {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 0.5rem 0.85rem 0.55rem;
    gap: 0.35rem 0.5rem;
  }

  .about-page__rail-tag-primary {
    flex-direction: row;
    align-items: center;
    align-self: center;
    gap: 0.65rem;
  }

  .about-page__rail-tag-line {
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 195, 106, 0.85), transparent);
  }

  .about-page__rail-tag-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.62rem;
  }

  .about-page__rail-tag-enterprise {
    flex: 1 0 100%;
    font-size: clamp(0.62rem, 1.65vw, 0.78rem);
    letter-spacing: 0.055em;
    padding: 0.48rem 0.75rem 0.52rem;
    margin-top: 0.1rem;
  }

  .about-page__title {
    max-width: none;
  }

  .about-page__bento--pillars {
    grid-template-columns: 1fr;
  }

  .about-page__mission-text {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.5;
    max-width: none;
  }

  .about-page__quote--vision p {
    font-size: clamp(0.88rem, 2.2vw, 1rem);
    line-height: 1.42;
  }
}

/* --------------------------------------------------------------------------
   About v2 — long-scroll editorial (pairs with about.html)
   -------------------------------------------------------------------------- */

.about-v2 {
  position: relative;
  min-height: 100%;
}

.about-v2__ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-v2__ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}

.about-v2__ambient-glow--a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  top: -12%;
  right: -5%;
  background: radial-gradient(circle at 40% 40%, rgba(230, 195, 106, 0.55), transparent 65%);
}

.about-v2__ambient-glow--b {
  width: min(42vw, 360px);
  height: min(42vw, 360px);
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(100, 120, 160, 0.35), transparent 70%);
}

.about-v2__ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 15%, transparent 70%);
}

.about-v2__scroll {
  position: relative;
  z-index: 1;
  max-width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(1.1rem, 2.8vw, 2.25rem) clamp(1rem, 3.5vw, 2rem) clamp(2.5rem, 6vh, 4rem);
}

.about-v2__masthead {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 900px) {
  .about-v2__masthead {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
  }
}

.about-v2__kicker {
  margin: 0 0 0.65rem;
  font-size: clamp(0.58rem, 0.12vw + 0.52rem, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.72);
}

.about-v2__headline {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 0.65rem + 3.8vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  color: rgba(255, 252, 248, 0.98);
}

.about-v2__headline-line {
  display: block;
}

.about-v2__headline-line--gold {
  color: rgba(232, 212, 168, 0.96);
}

.about-v2__intro {
  margin: 0 0 1.25rem;
  max-width: 56ch;
  font-size: clamp(0.82rem, 0.2vw + 0.74rem, 0.98rem);
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
}

.about-v2__masthead-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.about-v2__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.75rem 0.42rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 248, 232, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.about-v2__chip--outline {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.35);
  color: rgba(255, 236, 210, 0.9);
}

.about-v2__masthead-visual {
  min-width: 0;
}

.about-v2__frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 620px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.about-v2__frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  display: block;
}

.about-v2__frame-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, transparent 40%),
    linear-gradient(180deg, transparent 40%, rgba(4, 3, 2, 0.88) 100%);
  pointer-events: none;
}

.about-v2__frame-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: clamp(0.58rem, 0.1vw + 0.52rem, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.9);
  background: linear-gradient(180deg, transparent, rgba(6, 5, 4, 0.92));
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.about-v2__band {
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.about-v2__band--metrics {
  padding: clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 18, 0.85);
}

.about-v2__metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

@media (min-width: 700px) {
  .about-v2__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-v2__metric {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 700px) {
  .about-v2__metric {
    padding: 0.35rem 0.65rem 0.35rem 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about-v2__metric:last-child {
    border-right: none;
  }
}

.about-v2__metric-value {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 0.35vw + 1rem, 1.45rem);
  color: rgba(255, 250, 242, 0.96);
}

.about-v2__metric-label {
  font-size: clamp(0.68rem, 0.12vw + 0.6rem, 0.78rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

.about-v2__section {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.about-v2__section--dark {
  margin-left: calc(-1 * clamp(1rem, 3.5vw, 2rem));
  margin-right: calc(-1 * clamp(1rem, 3.5vw, 2rem));
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1rem, 3.5vw, 2rem);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 14, 0.94);
}

.about-v2__section-head {
  margin-bottom: clamp(1.1rem, 2.5vw, 1.65rem);
}

.about-v2__section-head--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 800px) {
  .about-v2__section-head--row {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 1.5rem;
  }
}

.about-v2__eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.65);
}

.about-v2__section-title {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 0.4vw + 1.1rem, 1.85rem);
  line-height: 1.15;
  color: rgba(255, 250, 242, 0.98);
}

.about-v2__section-lede {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(0.78rem, 0.15vw + 0.7rem, 0.92rem);
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.66);
}

.about-v2__section-lede--narrow {
  max-width: 48ch;
}

.about-v2__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

@media (min-width: 800px) {
  .about-v2__split {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  }
}

.about-v2__pullquote {
  margin: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 8px;
  border-left: 3px solid rgba(230, 195, 106, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.about-v2__pullquote p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 0.2vw + 0.88rem, 1.2rem);
  line-height: 1.48;
  color: rgba(255, 250, 245, 0.94);
}

.about-v2__split-body p {
  margin: 0 0 1rem;
  font-size: clamp(0.8rem, 0.14vw + 0.72rem, 0.92rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.7);
}

.about-v2__split-body p:last-child {
  margin-bottom: 0;
}

.about-v2__line-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.65rem, 1.5vw, 0.9rem);
}

@media (min-width: 640px) {
  .about-v2__line-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .about-v2__line-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-v2__line-card {
  padding: clamp(1rem, 2vw, 1.2rem);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 22, 0.88);
}

.about-v2__line-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.65rem;
  color: rgba(230, 195, 106, 0.85);
}

.about-v2__line-icon svg {
  width: 100%;
  height: 100%;
}

.about-v2__line-title {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1rem, 0.15vw + 0.88rem, 1.12rem);
  color: rgba(255, 250, 242, 0.96);
}

.about-v2__line-text {
  margin: 0;
  font-size: clamp(0.72rem, 0.1vw + 0.64rem, 0.82rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.about-v2__north {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

@media (min-width: 720px) {
  .about-v2__north {
    grid-template-columns: 1fr 1fr;
  }
}

.about-v2__north-card {
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(16, 16, 20, 0.9);
}

.about-v2__north-card--vision {
  border-color: rgba(212, 175, 55, 0.22);
}

.about-v2__north-label {
  margin: 0 0 0.55rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.75);
}

.about-v2__north-quote,
.about-v2__north-body {
  margin: 0;
  font-size: clamp(0.88rem, 0.16vw + 0.78rem, 1.02rem);
  line-height: 1.55;
  color: rgba(255, 250, 245, 0.88);
}

.about-v2__north-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Inner pages — Catalogue & Contact
   -------------------------------------------------------------------------- */

.site-main--inner {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  min-height: 0;
  background: #0b0b0f;
}

.site-main--order-form {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
  min-height: 0;
  background: #0b0b0f;
}

.simple-page {
  max-width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 1.75rem) clamp(2rem, 5vh, 3rem);
}

.simple-page__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.7);
}

.simple-page__title {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 0.5rem + 3vw, 2.5rem);
  line-height: 1.12;
  color: rgba(255, 252, 248, 0.98);
}

.simple-page__lede {
  margin: 0 0 2rem;
  font-size: clamp(0.82rem, 0.16vw + 0.74rem, 0.95rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 58ch;
}

.simple-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .simple-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.simple-page__card {
  padding: clamp(1rem, 2vw, 1.25rem);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 22, 0.9);
}

.simple-page__card h2 {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: rgba(255, 250, 242, 0.96);
}

.simple-page__card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.65);
}

.simple-page__note {
  margin: 2rem 0 0;
  padding: 1rem 1.1rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.simple-page__contact-block {
  margin-bottom: 1.5rem;
}

.simple-page__contact-block h2 {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.72);
}

.simple-page__contact-block p,
.simple-page__contact-block a {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.simple-page__contact-block a {
  color: rgba(230, 195, 106, 0.95);
  text-decoration: none;
}

.simple-page__contact-block a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Contact page — two-column (showcase + form), Dream-style layout / luxury theme
   -------------------------------------------------------------------------- */

.contact-page {
  max-width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(1.1rem, 2.8vw, 2rem) clamp(1rem, 3vw, 1.75rem) clamp(2rem, 5vh, 3rem);
}

.contact-page__hero {
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.contact-page__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.72);
}

.contact-page__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 0.55rem + 3.2vw, 2.65rem);
  line-height: 1.1;
  color: rgba(255, 252, 248, 0.98);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}

@media (min-width: 960px) {
  .contact-page__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(1.75rem, 3.5vw, 2.5rem);
  }
}

.contact-page__aside {
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 18, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.contact-page__aside-title {
  margin: 0 0 0.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 0.3vw + 1.05rem, 1.45rem);
  color: rgba(255, 250, 242, 0.96);
}

.contact-page__aside-lede {
  margin: 0 0 1rem;
  font-size: clamp(0.76rem, 0.12vw + 0.68rem, 0.86rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}

.contact-page__carousel {
  margin-bottom: 0.85rem;
}

.contact-page__carousel-viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  background: #060608;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.contact-page__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.55s var(--ease);
}

.contact-page__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.contact-page__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-page__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.contact-page__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.contact-page__dot:hover {
  background: rgba(230, 195, 106, 0.55);
}

.contact-page__dot.is-active {
  background: rgba(230, 195, 106, 0.95);
  transform: scale(1.15);
}

.contact-page__aside-foot {
  margin: 0;
  font-size: 0.78rem;
}

.contact-page__aside-foot a {
  color: rgba(230, 195, 106, 0.95);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.contact-page__aside-foot a:hover {
  text-decoration: underline;
}

.contact-page__form-panel {
  padding: clamp(1.1rem, 2vw, 1.45rem);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 18, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.contact-page__form-heading {
  margin: 0 0 1.1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 0.28vw + 1rem, 1.38rem);
  color: rgba(255, 250, 242, 0.96);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 235, 0.78);
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.62rem 0.75rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.86rem;
  color: rgba(255, 252, 248, 0.95);
  background: rgba(6, 6, 10, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.contact-form__input:hover,
.contact-form__textarea:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: rgba(230, 195, 106, 0.55);
  box-shadow: 0 0 0 2px rgba(230, 195, 106, 0.12);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 7.5rem;
  line-height: 1.5;
}

.contact-form__submit {
  margin-top: 0.25rem;
  align-self: flex-start;
  padding: 0.68rem 1.35rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(18, 16, 12, 0.95);
  background: linear-gradient(135deg, #e8d49a 0%, #c9a24a 45%, #f0e0a8 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}

.contact-form__submit:hover {
  filter: brightness(1.06);
}

.contact-form__submit:active {
  transform: translateY(1px);
}

.contact-form__status {
  margin: 0.75rem 0 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(200, 230, 200, 0.95);
  background: rgba(30, 48, 32, 0.55);
  border: 1px solid rgba(120, 180, 130, 0.35);
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Catalogue page — Dream-style page images + index (luxury theme)
   -------------------------------------------------------------------------- */

.site-main--inner.site-main--catalog {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.catalog-layout {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  row-gap: 0.45rem;
  column-gap: 0;
  max-width: min(1240px, 100%);
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 960px) {
  .catalog-layout {
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    column-gap: clamp(0.85rem, 2vw, 1.35rem);
    row-gap: 0.4rem;
    padding: clamp(0.65rem, 1.5vw, 1rem) clamp(0.65rem, 2vw, 1.15rem) clamp(0.5rem, 1.5vh, 0.85rem);
  }
}

@media (max-width: 959px) {
  .catalog-layout {
    padding: clamp(0.65rem, 2vw, 0.85rem) clamp(0.75rem, 3vw, 1rem) clamp(0.5rem, 2vh, 0.75rem);
  }
}

.catalog-sidebar {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 16, 0.92);
}

@media (min-width: 960px) {
  .catalog-sidebar {
    grid-column: 1;
    grid-row: 1 / -1;
    max-height: none;
    overflow: hidden;
  }
}

@media (max-width: 959px) {
  .catalog-sidebar {
    max-height: min(38vh, 320px);
  }
}

.catalog-search {
  flex-shrink: 0;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.catalog-search__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(230, 195, 106, 0.72);
}

.catalog-search__input {
  width: 100%;
  padding: 0.5rem 0.6rem;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.76rem;
  color: rgba(255, 252, 248, 0.95);
  background: rgba(6, 6, 8, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.catalog-search__input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.catalog-search__input:focus {
  border-color: rgba(230, 195, 106, 0.45);
  box-shadow: 0 0 0 1px rgba(230, 195, 106, 0.12);
}

.index-nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.35) transparent;
}

.index-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.index-nav li {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.index-nav li:first-child {
  border-top: 0;
}

.index-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 246, 235, 0.82);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.index-nav a:hover {
  background: rgba(230, 195, 106, 0.06);
  color: rgba(255, 252, 248, 0.98);
  border-left-color: rgba(230, 195, 106, 0.35);
}

.index-nav a.active {
  background: linear-gradient(90deg, rgba(230, 195, 106, 0.12) 0%, transparent 88%);
  color: rgba(230, 195, 106, 0.98);
  font-weight: 600;
  border-left-color: rgba(230, 195, 106, 0.85);
}

.catalog-main {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0%;
  overflow: hidden;
  padding: 0;
}

@media (min-width: 960px) {
  .catalog-main {
    grid-column: 2;
    grid-row: 1;
    padding: 0 0.15rem 0 0;
  }
}

.catalog-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catalog-viewer {
  flex: 1 1 0%;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: linear-gradient(180deg, rgba(18, 16, 22, 0.6) 0%, rgba(6, 6, 10, 0.95) 100%);
}

.catalog-viewer__stage {
  flex: 1 1 0%;
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  padding: clamp(0.25rem, 1vw, 0.5rem);
  overflow: hidden;
}

.catalog-page-wrap {
  flex: 1 1 auto;
  width: 100%;
  max-width: min(1100px, 100%);
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: zoom-in;
  box-sizing: border-box;
}

.catalog-page-wrap.animating {
  pointer-events: none;
}

.catalog-page-wrap img,
.catalog-lightbox img#lightbox-image {
  -webkit-clip-path: none;
  clip-path: none;
}

.catalog-page-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 2px;
  box-sizing: border-box;
  transition: opacity 0.45s ease;
}

.catalog-page-wrap img#catalog-image {
  margin-inline: auto;
}

.catalog-page-wrap img.fade-out {
  opacity: 0;
}

.catalog-page-wrap img.fade-in {
  opacity: 1;
}

.page-nav-bottom {
  grid-row: 3;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.12rem 0.3rem;
  gap: 0.2rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 14, 0.92);
}

@media (min-width: 960px) {
  .page-nav-bottom {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    border-radius: 6px;
  }
}

.page-nav-bottom__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  justify-content: center;
}

.page-nav-bottom .btn-page {
  min-width: 1.65rem;
  min-height: 1.65rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 4px;
}

.btn-page {
  padding: 0.45rem 0.85rem;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: rgba(255, 248, 235, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn-page:hover {
  background: rgba(230, 195, 106, 0.1);
  border-color: rgba(230, 195, 106, 0.35);
  color: rgba(255, 252, 248, 1);
}

.btn-page.btn-primary {
  color: rgba(18, 16, 12, 0.95);
  background: linear-gradient(135deg, #e8d49a 0%, #c9a24a 45%, #f0e0a8 100%);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn-page.btn-primary:hover {
  filter: brightness(1.06);
}

.catalog-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 3rem);
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.catalog-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.catalog-lightbox img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-sizing: border-box;
  transform: scale(0.96);
  transition: transform 0.35s var(--ease);
}

.catalog-lightbox.open img {
  transform: scale(1);
}

.catalog-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.catalog-lightbox-close:hover {
  background: rgba(230, 195, 106, 0.2);
}

/* Fixed bottom band — does not scroll */
.site-footer {
  flex: 0 0 auto;
  padding: 0.42rem 1rem;
  background: linear-gradient(180deg, #030303 0%, #050506 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.site-footer__legal {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.28);
}
