/* ═══════════════════════════════════════════════════════════════
   BOTANIC — Luxury Cinematic Design System
   Apple / Tesla / Awwwards editorial minimalism
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Outfit', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --space-lg: clamp(4rem, 8vw, 6rem);
  --space-xl: clamp(6rem, 12vw, 10rem);
  --space-2xl: clamp(8rem, 18vh, 14rem);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 12px;

  --header-h: 88px;
}

html {
  scroll-behavior: auto;
  font-size: clamp(15px, 0.9vw + 12px, 18px);
}

html[data-theme="dark"] {
  --bg: var(--color-dark-bg, #060908);
  --bg-elevated: #0c100e;
  --bg-subtle: #111816;
  --text: #f4f6f3;
  --text-muted: rgba(244, 246, 243, 0.42);
  --text-faint: rgba(244, 246, 243, 0.18);
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.12);
  --surface: rgba(255, 255, 255, 0.02);
  --surface-hover: rgba(255, 255, 255, 0.05);
  --glow: rgba(13, 79, 60, 0.35);
  --accent-glow: rgba(201, 169, 98, 0.25);
  --grain-opacity: 0.04;
  --hero-fade: linear-gradient(180deg, transparent 0%, rgba(6,9,8,0.4) 40%, rgba(6,9,8,0.92) 88%, var(--bg) 100%);
  --vignette: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 0%, rgba(6,9,8,0.6) 100%);
}

html[data-theme="light"] {
  --bg: var(--color-light-bg, #f8f9f6);
  --bg-elevated: #ffffff;
  --bg-subtle: #eef1ec;
  --text: #0a0d0b;
  --text-muted: rgba(10, 13, 11, 0.45);
  --text-faint: rgba(10, 13, 11, 0.2);
  --line: rgba(0, 0, 0, 0.06);
  --line-strong: rgba(0, 0, 0, 0.1);
  --surface: rgba(255, 255, 255, 0.6);
  --surface-hover: rgba(255, 255, 255, 0.9);
  --glow: rgba(13, 79, 60, 0.12);
  --accent-glow: rgba(201, 169, 98, 0.15);
  --grain-opacity: 0.03;
  --hero-fade: linear-gradient(180deg, transparent 0%, rgba(248,249,246,0.5) 50%, var(--bg) 100%);
  --vignette: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 0%, rgba(248,249,246,0.5) 100%);
}

body {
  font-family: var(--font-ui);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 1s var(--ease-out-expo), color 1s var(--ease-out-expo);
}

body.is-loading { overflow: hidden; }

/* ─── Ambient layers ─── */
.ambient-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  animation: orbFloat 20s var(--ease-in-out) infinite alternate;
}

.ambient-orb--1 {
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  background: var(--color-primary, #0d4f3c);
  top: -20%;
  right: -15%;
  opacity: 0.12;
}

.ambient-orb--2 {
  width: 40vw;
  height: 40vw;
  background: var(--color-accent, #c9a962);
  bottom: 10%;
  left: -10%;
  opacity: 0.06;
  animation-delay: -8s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, 5%) scale(1.08); }
}

/* ─── Scroll progress ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent, #c9a962), transparent);
  z-index: 10001;
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

/* ─── Custom cursor ─── */
@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor { cursor: none; }
  body.has-custom-cursor a,
  body.has-custom-cursor button { cursor: none; }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 10002;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), opacity 0.3s ease;
  }

  .cursor-dot {
    width: 6px;
    height: 6px;
    top: 0;
    left: 0;
    background: var(--color-accent, #c9a962);
    will-change: transform;
  }

  .cursor-ring {
    width: 40px;
    height: 40px;
    top: 0;
    left: 0;
    border: 1px solid var(--color-accent, #c9a962);
    opacity: 0.4;
    will-change: transform;
  }

  .cursor-ring.is-hover {
    width: 72px;
    height: 72px;
    opacity: 0.25;
    border-color: var(--text);
  }

  .cursor-ring.is-cta {
    width: 96px;
    height: 96px;
    background: rgba(201, 169, 98, 0.06);
    border-color: var(--color-accent, #c9a962);
    opacity: 0.5;
  }
}

/* Hide old glow */
.cursor-glow { display: none !important; }

/* ─── Typography ─── */
.font-display { font-family: var(--font-display); font-weight: 300; font-optical-sizing: auto; }
.font-ui { font-family: var(--font-ui); }

.t-display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-weight: 300;
}

.t-display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 300;
}

.t-display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.t-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent, #c9a962);
}

.t-body-lg {
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 42ch;
}

.t-body { font-size: 0.95rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }

.t-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

/* Split-line reveal */
.split-line {
  display: block;
  overflow: hidden;
}

.split-line > span {
  display: block;
  transform: translateY(110%);
}

.split-line.is-revealed > span {
  transform: translateY(0);
  transition: transform 1.2s var(--ease-out-expo);
}

/* ─── Layout utilities ─── */
.container-narrow { width: min(680px, 90vw); margin-inline: auto; }
.container-editorial { width: min(1200px, 92vw); margin-inline: auto; }
.container-wide { width: min(1600px, 96vw); margin-inline: auto; }

.section {
  position: relative;
  padding-block: var(--space-2xl);
}

.section--compact { padding-block: var(--space-xl); }

.section__inner { position: relative; z-index: 2; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  padding: 0.65rem 0;
  transition: background 0.8s var(--ease-out-expo), backdrop-filter 0.8s var(--ease-out-expo);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--line);
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out-expo);
}

.site-header.is-scrolled {
  background: rgba(6, 9, 8, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

html[data-theme="light"] .site-header.is-scrolled {
  background: rgba(248, 249, 246, 0.8);
}

.site-header.is-scrolled::after { transform: scaleX(1); }

.header-inner {
  width: min(1600px, 96vw);
  margin-inline: auto;
  padding-inline: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text);
}

/* Tagline varken ikon üst hizaya, yoksa ortada kalır */
.logo:has(.logo-tagline) {
  align-items: flex-start;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.logo:has(.logo-tagline) .logo-mark {
  margin-top: 0.2rem;
}

.logo:hover .logo-mark {
  border-color: var(--color-accent, #c9a962);
  transform: rotate(90deg);
}

.logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1.15;
  display: block;
  margin: 0;
  padding: 0;
}

.logo-tagline {
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: none;
  color: var(--color-accent, #c9a962);
  max-width: 18rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  position: relative;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.4s var(--ease-out-expo);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-accent, #c9a962);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-link.is-active {
  color: var(--text);
}

.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switch {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 3px;
  background: var(--surface);
}

.lang-btn {
  padding: 0.35rem 0.65rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  border-radius: 100px;
  transition: color 0.35s var(--ease-out-expo), background 0.35s var(--ease-out-expo);
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--text);
  background: var(--bg-elevated);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s, color 0.4s, transform 0.4s var(--ease-spring);
}

.theme-toggle:hover {
  border-color: var(--line-strong);
  color: var(--text);
  transform: scale(1.05);
}

.theme-toggle svg { width: 16px; height: 16px; }
.icon-moon.hidden, .icon-sun.hidden { display: none; }

/* Mobile navigation */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.4s, transform 0.4s var(--ease-spring);
}

.nav-toggle:hover {
  border-color: var(--line-strong);
  transform: scale(1.05);
}

.nav-toggle__bar {
  display: block;
  width: 14px;
  height: 1px;
  background: currentColor;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.35s var(--ease-out-expo);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 8990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) var(--space-sm) var(--space-md);
  background: rgba(6, 9, 8, 0.94);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s var(--ease-out-expo);
}

html[data-theme="light"] .nav-mobile {
  background: rgba(248, 249, 246, 0.96);
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 4vh, 2rem);
  width: min(420px, 100%);
}

.nav-mobile__link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-muted);
  text-decoration: none;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: color 0.35s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}

.nav-mobile.is-open .nav-mobile__link {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile.is-open .nav-mobile__link:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile.is-open .nav-mobile__link:nth-child(6) { transition-delay: 0.3s; }

.nav-mobile__link:hover,
.nav-mobile__link.is-active {
  color: var(--text);
}

.nav-mobile__link.is-active {
  color: var(--color-accent, #c9a962);
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nav-toggle,
  .nav-mobile {
    display: none;
  }
}

@media (max-width: 1023px) {
  .logo-tagline {
    display: none;
  }
}

/* ═══ CINEMATIC HERO ═══ */
.hero {
  --hero-pad-x: clamp(1.5rem, 5vw, 4rem);
  --hero-pad-b: clamp(6rem, 14vh, 11rem);
  --hero-mx: 0;
  --hero-my: 0;
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__scene {
  position: absolute;
  inset: -8% -4%;
  z-index: 0;
  overflow: hidden;
}

/* Parallax layers */
.hero__media,
.hero__bg-parallax,
[data-hero-layer] {
  will-change: transform;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__bg-parallax {
  position: absolute;
  inset: -5%;
  overflow: hidden;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  filter: saturate(0.85) contrast(1.05) brightness(0.72);
  will-change: transform;
  pointer-events: none;
  user-select: none;
}

html[data-theme="light"] .hero__bg {
  filter: saturate(0.9) contrast(1) brightness(0.88);
}

/* Hero slider mode */
.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease-out-expo);
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide .hero__bg {
  width: 100%;
  height: 100%;
}

.hero__slider-ui {
  position: absolute;
  bottom: clamp(5rem, 12vh, 8rem);
  right: var(--hero-pad-x);
  z-index: 12;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__slider-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(10, 15, 13, 0.35);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, background 0.25s;
}

.hero__slider-btn:hover {
  border-color: var(--color-accent, #c9a962);
  background: rgba(10, 15, 13, 0.55);
}

.hero__slider-dots {
  display: flex;
  gap: 0.4rem;
}

.hero__slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.25s, background 0.25s;
}

.hero__slider-dot.is-active {
  background: var(--color-accent, #c9a962);
  transform: scale(1.2);
}

/* Ambient mesh canvas */
.hero__ambient-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: screen;
}

/* Aurora */
.hero__aurora {
  position: absolute;
  inset: -20% -10%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(13, 79, 60, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(201, 169, 98, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(26, 122, 92, 0.2) 0%, transparent 60%);
  animation: heroAurora 18s ease-in-out infinite alternate;
  opacity: 0.9;
}

@keyframes heroAurora {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: translate(2%, -3%) scale(1.05) rotate(1deg); opacity: 1; }
  100% { transform: translate(-2%, 2%) scale(0.98) rotate(-1deg); opacity: 0.75; }
}

/* Drifting mist */
.hero__mist {
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(6, 9, 8, 0.95) 0%, transparent 100%);
  opacity: 0.6;
}

.hero__mist--a {
  animation: mistDriftA 14s ease-in-out infinite alternate;
  mask-image: linear-gradient(90deg, transparent, black 30%, black 70%, transparent);
}

.hero__mist--b {
  height: 40%;
  opacity: 0.35;
  background: linear-gradient(0deg, rgba(13, 79, 60, 0.25) 0%, transparent 80%);
  animation: mistDriftB 20s ease-in-out infinite alternate-reverse;
}

@keyframes mistDriftA {
  0% { transform: translateX(-3%) scaleY(1); }
  100% { transform: translateX(3%) scaleY(1.08); }
}

@keyframes mistDriftB {
  0% { transform: translateX(2%); opacity: 0.25; }
  100% { transform: translateX(-4%); opacity: 0.4; }
}

/* Premium light pools */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  filter: blur(56px);
}

.hero__glow--primary {
  width: min(70vw, 600px);
  height: min(70vw, 600px);
  top: 10%;
  right: -10%;
  background: rgba(13, 79, 60, 0.45);
  animation: glowPulse 8s ease-in-out infinite alternate;
  transform: translate(
    calc(var(--hero-mx) * 28px),
    calc(var(--hero-my) * 18px)
  );
}

.hero__glow--accent {
  width: min(50vw, 400px);
  height: min(50vw, 400px);
  bottom: 20%;
  left: -5%;
  background: rgba(201, 169, 98, 0.15);
  animation: glowPulse 11s ease-in-out infinite alternate-reverse;
  transform: translate(
    calc(var(--hero-mx) * -20px),
    calc(var(--hero-my) * 14px)
  );
}

@keyframes glowPulse {
  0% { opacity: 0.5; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.15); }
}

/* Light rays */
.hero__rays {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: 5;
  pointer-events: none;
  background: conic-gradient(
    from 250deg at 70% -10%,
    transparent 0deg,
    rgba(201, 169, 98, 0.04) 15deg,
    transparent 30deg,
    rgba(13, 79, 60, 0.06) 45deg,
    transparent 60deg
  );
  opacity: 0.8;
  animation: raysRotate 60s linear infinite;
}

@keyframes raysRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  background:
    linear-gradient(180deg, rgba(6, 9, 8, 0.55) 0%, transparent 35%),
    linear-gradient(0deg, rgba(6, 9, 8, 0.98) 0%, rgba(6, 9, 8, 0.4) 45%, transparent 70%),
    var(--hero-fade);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 7;
  background:
    radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(6, 9, 8, 0.75) 100%),
    var(--vignette);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 8;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__leaves-canvas {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

.hero__horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 11;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
  opacity: 0.5;
}

/* ─── Hero content ─── */
.hero__content {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 0 var(--hero-pad-x) var(--hero-pad-b);
  pointer-events: none;
}

.hero__content-inner {
  width: min(1520px, 100%);
  margin-inline: auto;
  pointer-events: auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vh, 3.5rem);
  opacity: 0;
}

.hero__eyebrow-line {
  width: clamp(32px, 5vw, 56px);
  height: 1px;
  background: var(--color-accent, #c9a962);
  transform-origin: left;
  transform: scaleX(0);
}

.hero__eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent, #c9a962);
}

.hero__title-wrap {
  position: relative;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}

.hero__title-glow {
  position: absolute;
  top: 50%;
  left: 0;
  width: min(90%, 900px);
  height: 120%;
  transform: translate(
    calc(var(--hero-mx) * 24px),
    calc(-50% + var(--hero-my) * 16px)
  );
  background: radial-gradient(ellipse 80% 50% at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: titleGlowBreath 6s ease-in-out infinite alternate;
}

@keyframes titleGlowBreath {
  0% { opacity: 0.4; transform: translate(calc(var(--hero-mx) * 24px), calc(-50% + var(--hero-my) * 16px)) scale(0.98); }
  100% { opacity: 0.85; transform: translate(calc(var(--hero-mx) * 24px), calc(-50% + var(--hero-my) * 16px)) scale(1.02); }
}

.hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 10.5vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero__title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.hero__title-word {
  display: block;
  transform: translateY(108%);
  will-change: transform;
}

.hero__title-line:nth-child(even) .hero__title-word {
  color: transparent;
  background: linear-gradient(135deg, var(--text) 20%, var(--color-accent, #c9a962) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lower {
  display: grid;
  gap: clamp(2rem, 4vh, 3rem);
  max-width: 100%;
}

@media (min-width: 900px) {
  .hero__lower {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: clamp(3rem, 8vw, 6rem);
  }
}

.hero__subtitle {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 38ch;
  letter-spacing: 0.01em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero CTAs — magnetic, premium */
.btn-hero {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 2.1rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.6s var(--ease-out-expo);
}

.btn-hero--fill {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 0 0 0 rgba(201, 169, 98, 0);
}

.btn-hero--fill:hover {
  box-shadow: 0 8px 40px rgba(201, 169, 98, 0.25);
}

.btn-hero__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: btnShine 4s ease-in-out infinite;
}

@keyframes btnShine {
  0%, 80% { left: -100%; }
  100% { left: 150%; }
}

.btn-hero--line {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}

.btn-hero--line:hover {
  border-color: var(--color-accent, #c9a962);
  color: var(--color-accent, #c9a962);
}

.btn-hero__text {
  position: relative;
  z-index: 1;
}

.btn-magnetic-hero {
  will-change: transform;
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  right: var(--hero-pad-x);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__scroll-line {
  width: 1px;
  height: clamp(48px, 8vh, 72px);
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-accent, #c9a962);
  border-radius: 1px;
  animation: heroScrollDot 2.4s var(--ease-in-out) infinite;
}

@keyframes heroScrollDot {
  0% { transform: translateY(-100%); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(600%); opacity: 0; }
}

/* Legacy particle id */
#particle-canvas { display: none; }

/* ─── Buttons ─── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.5s var(--ease-out-expo);
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
  border-radius: 0;
}

html[data-theme="light"] .btn--primary {
  background: var(--text);
  color: var(--bg);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent, #c9a962);
  transform: translateY(100%);
  transition: transform 0.55s var(--ease-out-expo);
  z-index: 0;
}

.btn--primary span { position: relative; z-index: 1; }

.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover { color: var(--bg); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 0;
}

.btn--outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--surface-hover);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-out-expo);
  z-index: 0;
}

.btn--outline span { position: relative; z-index: 1; }
.btn--outline:hover::after { transform: scaleX(1); }

.btn__arrow {
  display: inline-block;
  transition: transform 0.5s var(--ease-out-expo);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

.btn-magnetic { will-change: transform; }

/* ─── Marquee ─── */
.marquee-wrap {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: var(--space-md);
  background: var(--bg-subtle);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee:hover { animation-play-state: paused; }

.marquee__item {
  flex-shrink: 0;
  padding-inline: clamp(2rem, 5vw, 4rem);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-faint);
  white-space: nowrap;
}

.marquee__item span { color: var(--color-accent, #c9a962); margin-inline: 0.5em; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Experience 3D ─── */
.experience {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

@media (min-width: 1024px) {
  .experience { grid-template-columns: 1fr 1fr; }
}

.experience__copy {
  padding: var(--space-xl) var(--space-sm);
  padding-left: max(var(--space-sm), 5vw);
  align-self: center;
}

@media (min-width: 1024px) {
  .experience__copy {
    padding: var(--space-xl) max(5vw, var(--space-md)) var(--space-xl) max(5vw, var(--space-lg));
    max-width: 36rem;
  }
}

.experience__index {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-faint);
  margin-bottom: var(--space-md);
}

.experience__visual {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.experience__canvas-wrap {
  position: relative;
  width: min(90vw, 560px);
  aspect-ratio: 1;
}

.experience__canvas-wrap canvas {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0;
}

.experience__frame {
  position: absolute;
  inset: -12%;
  border: 1px solid var(--line);
  pointer-events: none;
}

.experience__frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20%;
  right: -20%;
  height: 1px;
  background: var(--line);
}

.experience__glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

/* ─── Products — horizontal editorial ─── */
.collection {
  overflow: hidden;
}

.collection__header {
  display: grid;
  gap: var(--space-md);
  padding-inline: max(var(--space-sm), 5vw);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .collection__header {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.collection__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
  padding-inline: max(var(--space-sm), 5vw);
  margin-bottom: var(--space-md);
}

.filter-btn {
  position: relative;
  padding: 1rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.4s var(--ease-out-expo);
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-accent, #c9a962);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out-expo);
}

.filter-btn:hover,
.filter-btn.active { color: var(--text); }
.filter-btn.active::after { transform: scaleX(1); }

.products-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.products-track-wrap::-webkit-scrollbar {
  display: none;
}

.products-track-wrap.is-dragging { cursor: grabbing; }

.products-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding-inline: max(var(--space-sm), 5vw);
  padding-bottom: var(--space-md);
  will-change: transform;
}

.product-item {
  flex: 0 0 clamp(280px, 38vw, 420px);
  text-decoration: none;
  color: inherit;
  opacity: 1;
  transition: opacity 0.6s var(--ease-out-expo);
}

.product-item.is-hidden {
  opacity: 0.15;
  pointer-events: none;
}

.product-item__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--bg-subtle);
}

.product-item__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
  transition: border-color 0.6s var(--ease-out-expo);
}

.product-item:hover .product-item__media::after {
  border-color: var(--color-accent, #c9a962);
}

.product-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out-expo), filter 0.8s ease;
  will-change: transform;
}

.product-item:hover .product-item__img {
  transform: scale(1.06);
}

.product-item__index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--text);
  mix-blend-mode: difference;
  z-index: 2;
}

.product-item__reveal {
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.9s var(--ease-out-expo);
  z-index: 3;
}

.product-item__reveal.is-revealed {
  transform: scaleY(0);
  pointer-events: none;
}

.product-item__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(6,9,8,0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease-out-expo);
}

.product-item:hover .product-item__hover { opacity: 1; }

.product-item__cta {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transform: translateY(12px);
  transition: transform 0.6s var(--ease-out-expo);
}

.product-item:hover .product-item__cta { transform: translateY(0); }

.product-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  transition: color 0.4s ease;
}

.product-item:hover .product-item__name { color: var(--color-accent, #c9a962); }

.product-item__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-item__price {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-accent, #c9a962);
}

.collection__footer {
  padding: var(--space-lg) max(var(--space-sm), 5vw) 0;
  border-top: 1px solid var(--line);
  margin-top: var(--space-md);
}

/* ─── Story — editorial pinned ─── */
.story { position: relative; }

.story__chapter {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .story__chapter {
    grid-template-columns: 55% 45%;
  }

  .story__chapter--flip {
    grid-template-columns: 45% 55%;
  }

  .story__chapter--flip .story__visual { order: 2; }
  .story__chapter--flip .story__text { order: 1; padding-left: max(8vw, 4rem); padding-right: var(--space-md); }
}

.story__visual {
  position: relative;
  width: 100%;
  min-height: 70vh;
  height: 100%;
  overflow: hidden;
  background: var(--bg-subtle);
}

@media (min-width: 1024px) {
  .story__visual {
    min-height: 100vh;
    height: 100%;
  }
}

.story__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  display: block;
}

.story__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 30%);
  pointer-events: none;
}

.story__chapter--flip .story__visual-overlay {
  background: linear-gradient(270deg, var(--bg) 0%, transparent 30%);
}

.story__text {
  padding: var(--space-xl) max(var(--space-sm), 5vw);
}

@media (min-width: 1024px) {
  .story__text {
    padding: var(--space-xl) var(--space-lg) var(--space-xl) max(8vw, 4rem);
  }
}

.story__num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--text-faint);
  margin-bottom: var(--space-md);
}

/* ─── Gallery — asymmetric ─── */
.gallery-section { overflow: hidden; }

.gallery__intro {
  padding-inline: max(var(--space-sm), 5vw);
  margin-bottom: var(--space-lg);
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .gallery__intro {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding-inline: max(var(--space-sm), 5vw);
}

.gallery__cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-subtle);
}

.gallery__cell--a { grid-column: span 12; aspect-ratio: 21/9; }
.gallery__cell--b { grid-column: span 12; aspect-ratio: 4/5; }
.gallery__cell--c { grid-column: span 12; aspect-ratio: 16/10; }

@media (min-width: 768px) {
  .gallery__cell--a { grid-column: span 7; grid-row: span 2; aspect-ratio: auto; min-height: 520px; }
  .gallery__cell--b { grid-column: span 5; aspect-ratio: 3/4; }
  .gallery__cell--c { grid-column: span 5; aspect-ratio: 16/10; }
  .gallery__cell--d { grid-column: span 7; aspect-ratio: 21/9; }
}

.gallery__cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  display: block;
  transition: transform 1.6s var(--ease-out-expo), filter 0.8s ease;
}

.gallery__cell > img,
.gallery__cell .before-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery__cell .before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.gallery__cell:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.gallery__cell-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(0deg, rgba(6,9,8,0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.7s var(--ease-out-expo);
}

.gallery__cell:hover .gallery__cell-meta { transform: translateY(0); }

/* Homepage gallery — 3 featured blogs */
.gallery__grid--home .gallery__cell {
  padding: 0;
  border: none;
}

.gallery-post--home {
  display: block;
}

.gallery-post__open--cell {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.gallery-post__open--cell .gallery-post__open-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.6s var(--ease-out-expo), filter 0.8s ease;
}

.gallery__cell:hover .gallery-post__open--cell .gallery-post__open-img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.gallery-post__open--cell .gallery__cell-meta {
  pointer-events: none;
}

.gallery-post--home .gallery-post__count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: auto;
}

.gallery__cell-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
}

.gallery__cell-caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Before/after */
.before-after { position: relative; height: 100%; }
.before-after-slider { clip-path: inset(0 50% 0 0); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-accent, #c9a962);
  left: 50%;
  cursor: ew-resize;
  z-index: 5;
}

.ba-handle::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-accent, #c9a962);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  background: var(--bg);
  color: var(--color-accent, #c9a962);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 9, 8, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(12px);
}

.lightbox.is-open { display: flex; }

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  transition: border-color 0.4s, transform 0.4s var(--ease-spring);
}

.lightbox__close:hover {
  border-color: var(--color-accent, #c9a962);
  transform: rotate(90deg);
}

.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}

/* ─── Trust — monumental stats ─── */
.trust {
  position: relative;
  border-top: 1px solid var(--line);
}

.trust__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 1024px) {
  .trust__stats { grid-template-columns: repeat(4, 1fr); }
}

.trust__stat {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.6s var(--ease-out-expo);
}

.trust__stat:hover { background: var(--surface); }

.trust__stat:nth-child(2n) { border-right: none; }
@media (min-width: 1024px) {
  .trust__stat { border-bottom: none; }
  .trust__stat:last-child { border-right: none; }
}

.trust__stat-value { color: var(--text); }
.trust__stat-value .accent { color: var(--color-accent, #c9a962); }

.trust__stat-label {
  margin-top: var(--space-sm);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust__certs {
  display: grid;
  gap: 1px;
  background: var(--line);
}

@media (min-width: 768px) {
  .trust__certs { grid-template-columns: repeat(3, 1fr); }
}

.trust__cert {
  background: var(--bg);
  padding: var(--space-lg) var(--space-md);
  transition: background 0.5s var(--ease-out-expo);
}

.trust__cert:hover { background: var(--bg-elevated); }

.trust__cert-num {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--text-faint);
  margin-bottom: var(--space-sm);
}

.trust__cert-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

/* ─── Contact — split cinematic ─── */
.contact {
  position: relative;
  min-height: 100vh;
  display: grid;
}

@media (min-width: 1024px) {
  .contact { grid-template-columns: 1fr 1fr; }
}

.contact__statement {
  padding: var(--space-2xl) max(var(--space-sm), 5vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.contact__form-wrap {
  padding: var(--space-2xl) max(var(--space-sm), 5vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-subtle);
}

.contact__whatsapp--form {
  margin-bottom: var(--space-md);
}

.contact__form-wrap .contact-form {
  margin-top: 0;
}

.form-field { margin-bottom: var(--space-md); }

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.65rem;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.85rem 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.5s var(--ease-out-expo);
  border-radius: 0;
}

.form-input:focus { border-color: var(--color-accent, #c9a962); }
.form-input::placeholder { color: var(--text-faint); }

textarea.form-input { min-height: 120px; resize: vertical; }

.alert {
  padding: 1rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.alert--success { border-color: var(--color-primary, #0d4f3c); color: var(--color-accent, #c9a962); }
.alert--error { border-color: rgba(239, 68, 68, 0.3); color: #f87171; }

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--space-lg) max(var(--space-sm), 5vw);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  max-width: 28ch;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
}

.footer-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.4s ease;
}

.footer-link:hover { color: var(--text); }

/* ─── Page transition ─── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10003;
  transform: scaleY(1);
  transform-origin: top;
  pointer-events: none;
}

.page-transition.is-done {
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1.1s var(--ease-out-expo);
}

/* Reveal helpers */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
  opacity: 0;
}

.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed,
.reveal-scale.revealed, .reveal-fade.revealed { opacity: 1; }

/* Legacy glass — refined, minimal use */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.35s var(--ease-out-expo), background 0.35s var(--ease-out-expo);
}

.glass-card:hover {
  border-color: var(--line-strong);
}

.perf-lite .glass-card:hover {
  transform: none;
  box-shadow: none;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent, #c9a962);
}

html.theme-transitioning * {
  transition: background 0.8s var(--ease-out-expo), color 0.8s var(--ease-out-expo), border-color 0.8s var(--ease-out-expo) !important;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .marquee { animation: none; }
}

/* ═══ Hero lite (static cinematic — no rAF / canvas / blur animation) ═══ */
.hero-lite .hero,
.hero-lite #hero {
  contain: layout paint style;
}

.hero-lite .hero__leaves-canvas,
.hero-lite .hero__ambient-canvas,
.hero-lite .hero__rays,
.hero-lite .hero__mist--b,
.hero-lite .hero__grain,
.hero-lite .hero__glow--accent {
  display: none !important;
}

.hero-lite .hero__aurora,
.hero-lite .hero__mist--a,
.hero-lite .hero__glow--primary,
.hero-lite .hero__title-glow,
.hero-lite .hero__scroll-dot {
  animation: none !important;
}

.hero-lite .hero__glow--primary {
  transform: none !important;
  filter: blur(48px);
  opacity: 0.55;
}

.hero-lite .hero__aurora {
  opacity: 0.65;
  transform: none !important;
}

.hero-lite .hero__mist--a {
  opacity: 0.5;
  transform: none !important;
  animation: none !important;
}

.hero-lite .hero__title-glow {
  transform: translateY(-50%) !important;
  opacity: 0.5;
}

.hero-lite .hero__media,
.hero-lite .hero__bg-parallax,
.hero-lite .hero__bg,
.hero-lite [data-hero-layer] {
  will-change: auto !important;
}

.hero-lite .ambient-orb {
  animation: none !important;
  opacity: 0.07;
}

.hero-lite .ambient-grain {
  opacity: 0.025;
}

/* ═══ Performance profiles (perf.js adds classes) ═══ */
.perf-lite .ambient-orb,
.perf-lite .ambient-grain,
.perf-lite .hero__ambient-canvas,
.perf-lite .hero__leaves-canvas,
.perf-lite .hero__rays,
.perf-lite .cursor-dot,
.perf-lite .cursor-ring,
.perf-mobile .ambient-orb,
.perf-mobile .has-custom-cursor .cursor-dot,
.perf-mobile .has-custom-cursor .cursor-ring {
  display: none !important;
}

.perf-lite .site-header,
.perf-lite .site-header.is-scrolled,
.perf-lite .glass-pill,
.perf-lite .lang-switch,
.perf-lite .theme-toggle,
.perf-lite .lightbox,
.perf-lite .btn-hero--line {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.perf-lite .hero__glow,
.perf-lite .hero__mist--b {
  filter: none;
}

.perf-lite .hero__aurora {
  animation: none;
  opacity: 0.5;
}

.perf-lite .hero__bg {
  filter: none !important;
  transform: scale(1.05) !important;
}

.perf-lite .hero__title-glow {
  animation: none;
  filter: none;
}

.perf-lite .btn-hero__shine,
.perf-lite .marquee,
.perf-lite .experience__glow,
.perf-lite .scroll-line,
.perf-lite .hero__scroll-dot {
  animation: none !important;
}

.perf-lite .product-item:hover .product-item__img,
.perf-lite .gallery__cell:hover img,
.perf-lite .glass-card:hover,
.perf-mobile .hero__mist--a,
.perf-mobile .hero__mist--b,
.perf-mobile .hero__aurora {
  animation: none;
}

.perf-mobile .ambient-orb {
  animation: none;
  opacity: 0.08;
}

.perf-mobile .hero__glow {
  filter: blur(40px);
}

.perf-lite .product-item__img,
.perf-lite .gallery__cell img,
.perf-lite .parallax-img {
  transition-duration: 0.35s;
}

.perf-lite * {
  will-change: auto !important;
}

/* Below-fold rendering */
.section:not(#hero),
.collection,
.story,
.gallery-section,
.trust,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

#hero {
  contain: layout style;
}

/* GPU-friendly defaults */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade,
.hero__title-word, .product-item__img {
  will-change: auto;
}

.is-animating {
  will-change: transform, opacity;
}

/* ─── Maintenance page (public, 503) ─── */
.maintenance-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.maintenance-page__ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.maintenance-page__ambient .ambient-orb { opacity: 0.14; }

.maintenance-page__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  width: min(90vw, 700px);
  height: min(60vh, 500px);
  transform: translateX(-50%);
  background: radial-gradient(ellipse 70% 60% at 50% 40%, var(--glow) 0%, transparent 70%);
  opacity: 0.85;
}

.maintenance-page__main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 5vh, 3rem);
}

.maintenance-page__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
  width: 100%;
  max-width: 28rem;
}

.maintenance-page__brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.maintenance-page__brand-lockup:has(.maintenance-page__brand-tagline-text) {
  align-items: flex-start;
}

.maintenance-page__logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.maintenance-page__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-top: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--color-accent, #c9a962);
  background: var(--surface);
}

.maintenance-page__brand-lockup:has(.maintenance-page__brand-tagline-text) .maintenance-page__logo-icon {
  margin-top: 0.2rem;
}

.maintenance-page__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}

.maintenance-page__brand-tagline-text {
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: none;
  color: var(--color-accent, #c9a962);
}

html[lang="tr"] .maintenance-page__brand-tagline-text {
  letter-spacing: 0.14em;
}

.maintenance-page__card {
  width: 100%;
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2rem, 5vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] .maintenance-page__card {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.maintenance-page__status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent, #c9a962);
  margin-bottom: 1.5rem;
}

.maintenance-page__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1rem;
}

.maintenance-page__message {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 42ch;
  margin-inline: auto;
}

.maintenance-page__countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.25rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.maintenance-page__countdown-item {
  flex: 1 1 4.5rem;
  min-width: 4.5rem;
  max-width: 6rem;
  padding: 1rem 0.5rem;
  background: var(--bg-subtle);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.maintenance-page__countdown-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--color-accent, #c9a962);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.maintenance-page__countdown-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.maintenance-page__contact {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}

.maintenance-page__contact-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.maintenance-page__contact-link {
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent, #c9a962);
  transition: color 0.35s var(--ease-out-expo), border-color 0.35s var(--ease-out-expo);
}

.maintenance-page__contact-link:hover {
  color: var(--color-accent, #c9a962);
}

.maintenance-page__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), background 0.35s ease;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.28);
}

.maintenance-page__whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.38);
}

.maintenance-page__whatsapp-icon {
  flex-shrink: 0;
}

.maintenance-page__foot {
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
}

/* ─── Products pages (listing + detail) ─── */
.page-products {
  padding-top: calc(var(--header-h) + var(--space-md));
  padding-bottom: var(--space-lg);
  min-height: 100vh;
}

.products-index__header {
  margin-bottom: var(--space-md);
}

.products-index__lead {
  color: var(--text-muted);
}

.products-index__filters {
  margin-bottom: var(--space-lg);
}

.products-index__empty {
  padding-block: var(--space-xl);
  color: var(--text-muted);
}

a.filter-btn {
  text-decoration: none;
  display: inline-block;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--bg-subtle);
}

.product-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
  transition: border-color 0.5s var(--ease-out-expo);
}

.product-card__link:hover .product-card__media::after {
  border-color: var(--color-accent, #c9a962);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.product-card__link:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__index {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--text);
  mix-blend-mode: difference;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.15;
  transition: color 0.4s var(--ease-out-expo);
}

.product-card__link:hover .product-card__name {
  color: var(--color-accent, #c9a962);
}

.product-card__desc {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-card__price {
  margin-top: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--color-accent, #c9a962);
}

/* Product detail */
.product-detail__wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.product-detail__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-detail__crumb-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.35s var(--ease-out-expo);
}

.product-detail__crumb-link:hover {
  color: var(--color-accent, #c9a962);
}

.product-detail__crumb-sep {
  opacity: 0.35;
}

.product-detail__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 900px) {
  .product-detail__hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.product-detail__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-subtle);
}

.product-detail__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  pointer-events: none;
}

.product-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 0.5rem;
}

.product-detail__category {
  margin: 0;
}

.product-detail__title {
  margin: 0;
  line-height: 1.05;
}

.product-detail__price {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.1em;
  color: var(--color-accent, #c9a962);
  margin: 0;
}

.product-detail__lead {
  margin: 0;
  color: var(--text-muted);
  max-width: 40ch;
}

.product-detail__body {
  max-width: 52ch;
  color: var(--text-muted);
  line-height: 1.75;
}

.product-detail__body p {
  margin: 0 0 1em;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.product-detail__back {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.35s var(--ease-out-expo);
  width: 100%;
}

@media (min-width: 600px) {
  .product-detail__back {
    width: auto;
    margin-left: auto;
  }
}

.product-detail__back:hover {
  color: var(--color-accent, #c9a962);
}

.product-detail__related {
  border-top: 1px solid var(--line);
  padding-top: var(--space-lg);
}

.product-detail__related-head {
  margin-bottom: var(--space-md);
}

.perf-lite .product-card__link:hover .product-card__img {
  transform: none;
}

/* ─── Contact page ─── */
.page-contact {
  padding-top: calc(var(--header-h) + var(--space-md));
  padding-bottom: var(--space-lg);
  min-height: 100vh;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-page__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
  }
}

.contact-page__address,
.contact-page__phone {
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.contact-page__phone a {
  color: inherit;
  text-decoration: none;
}

.contact-page__phone a:hover {
  color: var(--color-accent, #c9a962);
}

.contact-page__whatsapp {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-md);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.contact-page__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.2);
}

.contact-page__whatsapp strong {
  display: block;
  font-weight: 400;
  font-size: 1rem;
}

.contact-page__whatsapp small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-page__whatsapp-icon {
  color: #25d366;
}

.contact-page__form-wrap {
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--surface);
}

/* ─── About page (story + trust, same as homepage) ─── */
.page-about {
  padding-top: calc(var(--header-h) + var(--space-md));
}

.page-about__intro {
  padding-inline: max(var(--space-sm), 5vw);
  padding-bottom: var(--space-lg);
  max-width: 52ch;
}

.page-about__headline {
  color: var(--text-muted);
  max-width: 46ch;
}

.page-about .story {
  margin-top: 0;
}

.page-about__trust {
  margin-top: 0;
}

/* ─── Gallery blog ─── */
.page-gallery {
  padding-top: calc(var(--header-h) + var(--space-md));
  padding-bottom: var(--space-lg);
}

.gallery-blog__header {
  margin-bottom: var(--space-lg);
}

.gallery-blog__lead,
.gallery-blog__hint {
  color: var(--text-muted);
}

.gallery-blog__hint {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.gallery-blog__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gallery-post {
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.4s var(--ease-out-expo);
}

.gallery-post.is-open {
  border-color: var(--color-accent, #c9a962);
}

.gallery-post__open {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

@media (min-width: 768px) {
  .gallery-post__open {
    grid-template-columns: minmax(200px, 320px) 1fr;
  }
}

.gallery-post__cover {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-post__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo);
}

.gallery-post__open:hover .gallery-post__cover-img {
  transform: scale(1.04);
}

.gallery-post__count {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  background: rgba(6, 9, 8, 0.75);
  color: var(--text);
}

.gallery-post__meta {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-post__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
}

.gallery-post__excerpt {
  color: var(--text-muted);
  line-height: 1.6;
}

.gallery-post__cta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent, #c9a962);
}

.gallery-post__viewer {
  border-top: 1px solid var(--line);
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--bg-subtle);
}

.gallery-post__viewer-inner {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
}

.gallery-post__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.gallery-post__carousel {
  position: relative;
  outline: none;
}

.gallery-post__track {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg);
}

.gallery-post__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.gallery-post__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-post__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-post__before-after {
  width: 100%;
  height: 100%;
}

.gallery-post__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: rgba(6, 9, 8, 0.65);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.gallery-post__nav:hover {
  border-color: var(--color-accent, #c9a962);
  background: rgba(6, 9, 8, 0.9);
}

.gallery-post__nav--prev { left: 1rem; }
.gallery-post__nav--next { right: 1rem; }

.gallery-post__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.gallery-post__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line-strong);
  cursor: pointer;
  transition: background 0.35s ease, transform 0.35s ease;
}

.gallery-post__dot.is-active {
  background: var(--color-accent, #c9a962);
  transform: scale(1.2);
}

.gallery-post__viewer-caption {
  margin-top: 1.25rem;
  text-align: center;
}

.gallery-post__viewer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

body.gallery-viewer-open {
  overflow: hidden;
}

/* ─── Products filter layout ─── */
.products-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  align-items: start;
}

@media (min-width: 1024px) {
  .products-layout {
    grid-template-columns: minmax(240px, 300px) 1fr;
    gap: var(--space-lg);
  }
}

.products-filter__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
}

@media (max-width: 1023px) {
  .products-filter__form {
    display: none;
  }
  .products-filter.is-open .products-filter__form {
    display: flex;
  }
}

.products-filter__toggle {
  width: 100%;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .products-filter__toggle {
    display: none;
  }
}

.products-filter__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.products-filter__title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent, #c9a962);
}

.products-filter__reset {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}

.products-filter__reset:hover {
  color: var(--text);
}

.products-filter__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.products-filter__checks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.products-filter__check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.products-filter__check input {
  accent-color: var(--color-accent, #c9a962);
}

.products-filter__price-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.products-filter__price-row .form-input {
  flex: 1;
  min-width: 0;
}

.products-filter__price-sep {
  color: var(--text-faint);
}

/* Custom menu pages */
.page-custom__header {
  padding-bottom: var(--space-md);
}

.page-custom__lead {
  max-width: 46ch;
  margin-top: 1.25rem;
  color: var(--text-muted);
}

.page-custom__hero {
  margin-top: var(--space-md);
}

.page-custom__hero-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 2px;
}

.page-custom__body {
  margin-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.page-custom__prose {
  line-height: 1.75;
  color: var(--text-muted);
}

.page-hero__banner {
  position: relative;
  min-height: min(70vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 9, 8, 0.92) 0%, rgba(6, 9, 8, 0.35) 55%, transparent 100%);
}

.page-hero__banner-copy {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 6vw, 4rem) max(var(--space-sm), 5vw);
}

.page-hero__subtitle {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.page-hero__cta {
  display: inline-flex;
  margin-top: 1.5rem;
}

.page-blocks__row {
  display: grid;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-lg);
  padding-inline: max(var(--space-sm), 5vw);
}

@media (min-width: 768px) {
  .page-blocks__row {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  .page-blocks__row--reverse .page-blocks__visual {
    order: 2;
  }
}

.page-blocks__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.page-blocks__copy {
  padding: var(--space-sm) 0;
}

.products-filter__hint {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: var(--text-faint);
}

.products-filter__submit {
  width: 100%;
  margin-top: 0.5rem;
}

.products-index__count {
  margin-bottom: var(--space-md);
  color: var(--text-muted);
}

.products-index__count strong {
  color: var(--text);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.5rem;
  background: rgba(201, 169, 98, 0.2);
  border: 1px solid var(--color-accent, #c9a962);
  color: var(--color-accent, #c9a962);
}

.product-card__cat {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.35rem;
}

/* Admin styles: assets/css/admin.css (loaded separately in admin layout) */
