/* ==========================================================================
   LYKIA Legacy — Landing
   Tufanlar 1952 × Bars Antique
   ========================================================================== */

:root {
  --cream: #f6f1e7;
  --cream-2: #eee7d8;
  --cream-3: #e5dcc8;
  --ink: #3b2a1a;
  --brown: #6b5138;
  --brown-soft: #8a7258;
  --gold: #a97c2a;
  --gold-deep: #8a6520;
  --gold-light: #c9a75e;
  --dark: #221709;
  --white: #fffdf9;
  --shadow: 0 20px 60px rgba(59, 42, 26, 0.12);
  --shadow-sm: 0 8px 28px rgba(59, 42, 26, 0.1);
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-deep);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ------- typography ------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow::before,
.eyebrow.centered::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-light);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
}

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 0.9rem 0 1.1rem;
}

.section-lead {
  max-width: 66ch;
  color: var(--brown);
  font-size: 1.02rem;
}

.section-head {
  margin-bottom: clamp(2.2rem, 5vw, 3.6rem);
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
}

/* ------- reveal animations ------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ------- header ------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: box-shadow 0.35s ease, padding 0.35s ease;
  padding: 1rem 0;
  background: linear-gradient(to bottom, rgba(246, 241, 231, 0.94) 0%, rgba(246, 241, 231, 0.75) 55%, rgba(246, 241, 231, 0));
}

/* Blur lives on a pseudo-element: backdrop-filter on the header itself would
   turn it into the containing block for the fixed mobile menu. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(246, 241, 231, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(169, 124, 42, 0.18);
  padding: 0.55rem 0;
}

.site-header.scrolled::before {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
}

.brand img {
  height: 48px;
  width: auto;
  transition: height 0.35s ease;
}

.site-header.scrolled .brand img {
  height: 40px;
}

.brand-name {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.42em;
  font-size: 1.18rem;
  translate: 0 1px;
  line-height: 1.15;
}

.brand-name small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.56em;
  font-weight: 300;
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  padding: 0.4rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    transform: translateY(-100%);
    transition: transform 0.45s var(--ease);
  }

  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1rem; }

  body.menu-open { overflow: hidden; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav-toggle { position: relative; z-index: 70; }
}

/* ------- hero (split) ------- */

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  position: relative;
  padding: 0;
  background: var(--cream);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(7rem, 12vh, 9rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vh, 6rem);
  background:
    radial-gradient(70% 50% at 30% 20%, rgba(201, 167, 94, 0.14), transparent 70%),
    var(--cream);
}

.hero-content::before {
  content: "";
  position: absolute;
  width: min(60vw, 720px);
  height: min(60vw, 720px);
  top: 50%;
  left: 8%;
  translate: 0 -50%;
  border-radius: 50%;
  border: 1px solid rgba(169, 124, 42, 0.12);
  pointer-events: none;
}

.hero-logo {
  width: clamp(130px, 15vw, 176px);
  height: auto;
  margin-bottom: 2.2rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  font-weight: 500;
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
}

.hero-sub {
  margin-top: 1.3rem;
  max-width: 52ch;
  color: var(--brown);
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
}

.hero-ctas {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 2.1rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-solid {
  background: var(--ink);
  color: var(--cream);
}

.btn-solid:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(107, 81, 56, 0.45);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

.hero-partners {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-partners span {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

.hero-partners img {
  height: 38px;
  width: auto;
}

.hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual {
  border-left: 1px solid rgba(169, 124, 42, 0.35);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  translate: -50%;
  z-index: 3;
  width: 1px;
  height: 56px;
  background: linear-gradient(var(--gold), transparent);
  overflow: hidden;
}

.scroll-hint::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto 0;
  height: 100%;
  background: linear-gradient(var(--cream), transparent);
  animation: drip 2.2s ease-in-out infinite;
}

@keyframes drip {
  to { inset: 100% 0 auto 0; }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(320px, 44svh);
  }
  .hero-content {
    align-items: center;
    text-align: center;
    padding-top: 7.5rem;
  }
  .hero-content::before { left: 50%; translate: -50% -50%; }
  .hero-ctas { justify-content: center; }
  .hero-partners { align-items: center; }
  .hero-visual { min-height: 320px; border-left: 0; border-top: 1px solid rgba(169, 124, 42, 0.35); }
  .scroll-hint { display: none; }
}

/* ------- intro (Işık Ülkesi) ------- */

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.intro-media {
  position: relative;
}

.intro-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.intro-media::after {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid rgba(169, 124, 42, 0.3);
  border-radius: var(--radius);
  z-index: -1;
}

.intro-facts {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.6rem;
}

.fact {
  border-top: 1px solid var(--cream-3);
  padding-top: 1rem;
}

.fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1.2;
}

.fact span {
  font-size: 0.8rem;
  color: var(--brown-soft);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { order: -1; max-width: 480px; }
}

/* ------- stories ------- */

.stories {
  background: var(--cream);
}

.stories-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 320px);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  overflow-x: auto;
  padding: 0.5rem 4vw 2rem;
  margin: 0 -4vw;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4vw;
  scrollbar-width: none;
}

.stories-scroller::-webkit-scrollbar { display: none; }

.story-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.story-media {
  position: relative;
  aspect-ratio: 9 / 12;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s var(--ease);
}

.story-card:hover .story-media img {
  transform: scale(1.05);
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34, 23, 9, 0.42), transparent 45%);
}

.play-badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(246, 241, 231, 0.92);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

.play-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
  translate: 2px 0;
}

.story-media:hover .play-badge {
  transform: scale(1.08);
  background: var(--gold-light);
}

.story-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.story-body h3 {
  font-size: 1.45rem;
  font-weight: 600;
}

.story-body p {
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.7;
}

.story-cta {
  margin-top: auto;
  padding-top: 0.9rem;
  align-self: flex-start;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.story-cta:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.scroller-nav {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 0.4rem;
}

.scroller-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(107, 81, 56, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.scroller-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.scroller-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.scroller-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

/* ------- story player (IG-style) ------- */

.story-player {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(18, 12, 4, 0.96);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.story-player.open {
  opacity: 1;
  pointer-events: auto;
}

.sp-frame {
  position: relative;
  height: min(92svh, 900px);
  aspect-ratio: 9 / 16;
  max-width: 94vw;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  touch-action: pan-y;
}

.sp-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-progress {
  position: absolute;
  top: 0.7rem;
  left: 0.8rem;
  right: 0.8rem;
  z-index: 5;
  display: flex;
  gap: 5px;
}

.sp-progress i {
  flex: 1;
  height: 2.5px;
  border-radius: 2px;
  background: rgba(255, 253, 249, 0.3);
  overflow: hidden;
  position: relative;
}

.sp-progress i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(var(--p, 0));
  transform-origin: left;
}

.sp-close {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  z-index: 6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.sp-mute {
  position: absolute;
  top: 1.1rem;
  right: 3.6rem;
  z-index: 6;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--cream);
  display: grid;
  place-items: center;
}

.sp-mute svg { width: 18px; height: 18px; fill: currentColor; }

.sp-tap {
  position: absolute;
  top: 0;
  bottom: 30%;
  width: 30%;
  z-index: 4;
  border: 0;
  background: transparent;
}

.sp-tap.prev { left: 0; }
.sp-tap.next { right: 0; }

.sp-info {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 5;
  padding: 3.4rem 1.4rem 1.5rem;
  background: linear-gradient(to top, rgba(10, 6, 0, 0.82), rgba(10, 6, 0, 0.35) 55%, transparent);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sp-info h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
}

.sp-info p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(246, 241, 231, 0.85);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sp-cta {
  margin-top: 0.6rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 1.6rem;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sp-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.sp-arrow {
  position: fixed;
  top: 50%;
  translate: 0 -50%;
  z-index: 6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(246, 241, 231, 0.1);
  color: var(--cream);
  display: grid;
  place-items: center;
  transition: background 0.3s ease;
}

.sp-arrow:hover { background: rgba(246, 241, 231, 0.28); }
.sp-arrow.prev { left: max(2vw, calc(50vw - min(46svh, 450px) * 0.5625 - 90px)); }
.sp-arrow.next { right: max(2vw, calc(50vw - min(46svh, 450px) * 0.5625 - 90px)); }
.sp-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.sp-arrow:disabled { opacity: 0.25; pointer-events: none; }

@media (max-width: 700px) {
  .sp-frame { height: 100svh; max-width: 100vw; border-radius: 0; aspect-ratio: auto; width: 100vw; }
  .sp-arrow { display: none; }
}

/* ------- collection ------- */

.collection {
  background: var(--white);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.filter-btn:hover {
  color: var(--gold-deep);
}

.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: rgba(201, 167, 94, 0.08);
}

.motif-chip {
  display: none;
  margin: 0 auto clamp(1.6rem, 3vw, 2.4rem);
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(201, 167, 94, 0.1);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.motif-chip.on { display: flex; }

.motif-chip button {
  font-size: 1rem;
  line-height: 1;
  color: var(--brown);
  padding: 0 0.1rem;
}

.motif-chip button:hover { color: var(--ink); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2.2rem);
  margin-top: clamp(1.2rem, 2.6vw, 2rem);
}

.product-card {
  cursor: pointer;
  border: 0;
  padding: 0;
  background: none;
  text-align: left;
  display: block;
}

.product-card.hidden { display: none; }

.product-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 0 rgba(169, 124, 42, 0.16), var(--shadow-sm);
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.55s ease, transform 0.8s var(--ease);
}

.product-media .alt {
  opacity: 0;
}

.product-card:hover .product-media .alt {
  opacity: 1;
}

.product-card:hover .product-media img.main {
  transform: scale(1.04);
}

.product-info {
  display: block;
  padding: 1rem 0.2rem 0;
}

.product-info h3 {
  font-size: 1.22rem;
  font-weight: 600;
}

.product-info p {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-top: 0.25rem;
}

.collection-note {
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  text-align: center;
  font-size: 0.9rem;
  color: var(--brown);
}

.collection-note a {
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 1px;
}

/* ------- campaign band ------- */

.campaign {
  padding: 0;
}

.campaign img {
  width: 100%;
  height: auto;
}

/* ------- gallery (story videos) ------- */

.gallery {
  background: var(--cream);
}

/* ------- footer ------- */

.site-footer {
  background: var(--dark);
  color: rgba(246, 241, 231, 0.85);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
  text-align: center;
}

.footer-brand img {
  margin-inline: auto;
}

.footer-brand .f-logo {
  width: 150px;
  height: auto;
  opacity: 0.98;
}

.footer-quote {
  margin: 2.2rem auto 0;
  max-width: 46ch;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}

.footer-quote small {
  display: block;
  margin-top: 0.8rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.5);
}

.footer-nav {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.4rem, 4vw, 3rem);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(246, 241, 231, 0.75);
  transition: color 0.3s ease;
}

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

.footer-partners {
  margin: 2.8rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.footer-partners span {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.45);
}

.footer-partners img {
  height: 44px;
  width: auto;
  opacity: 0.95;
}

.footer-bottom {
  margin-top: clamp(2.6rem, 5vw, 3.6rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(246, 241, 231, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(246, 241, 231, 0.45);
}

@media (max-width: 640px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ------- lightbox ------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(24, 16, 6, 0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(246, 241, 231, 0.12);
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
  background: var(--gold-deep);
  transform: rotate(90deg);
}

.lightbox-stage {
  width: min(92vw, 1040px);
  max-height: 88svh;
  display: grid;
  place-items: center;
}

.lightbox-stage video {
  height: 84svh;
  max-height: 84svh;
  width: auto;
  max-width: 92vw;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  background: #000;
}

/* product mode */
.lb-product {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  max-height: 84svh;
  width: 100%;
}

.lb-media {
  position: relative;
  background: #fff;
  min-height: 320px;
}

.lb-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1;
  max-height: 84svh;
  cursor: zoom-in;
}

.lb-media video {
  width: 100%;
  height: 100%;
  max-height: 84svh;
  object-fit: contain;
  background: #000;
}

.lb-zoom-hint {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(59, 42, 26, 0.08);
  color: var(--brown);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.lb-zoom-hint svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.lb-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(59, 42, 26, 0.08);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.lb-arrow:hover { background: var(--ink); color: var(--cream); }
.lb-arrow.prev { left: 0.8rem; }
.lb-arrow.next { right: 0.8rem; }
.lb-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.lb-info {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow-y: auto;
}

.lb-info .eyebrow { font-size: 0.66rem; }

.lb-info h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 600;
}

.lb-info .lb-story {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

.lb-info .lb-desc {
  color: var(--brown);
  font-size: 0.9rem;
}

.lb-info .lb-code {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

.lb-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.lb-thumbs button {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid transparent;
  padding: 0;
  opacity: 0.65;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  background: #fff;
  position: relative;
}

.lb-thumbs button.active,
.lb-thumbs button:hover {
  opacity: 1;
  border-color: var(--gold);
}

.lb-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lb-thumbs .video-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 23, 9, 0.35);
}

.lb-thumbs .video-thumb svg {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 18px;
  height: 18px;
  fill: var(--cream);
}

.lb-note {
  font-size: 0.78rem;
  color: var(--brown-soft);
  border-top: 1px solid var(--cream-3);
  padding-top: 0.9rem;
}

@media (max-width: 780px) {
  .lb-product {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .lb-media img { max-height: 46svh; }
  .lb-media video { max-height: 46svh; }
}

/* ------- image zoom layer ------- */

.zoom-layer {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(255, 253, 249, 0.98);
  display: none;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
}

.zoom-layer.open { display: block; }
.zoom-layer.dragging { cursor: grabbing; }

.zoom-layer img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(92vw, 92svh);
  height: auto;
  transform: translate(-50%, -50%) translate(var(--tx, 0px), var(--ty, 0px)) scale(var(--s, 1));
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

.zoom-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(59, 42, 26, 0.08);
  color: var(--ink);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
}

.zoom-close:hover { background: var(--ink); color: var(--cream); }

.zoom-controls {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  translate: -50%;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
  background: rgba(59, 42, 26, 0.08);
  border-radius: 999px;
  padding: 0.35rem;
}

.zoom-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--ink);
  display: grid;
  place-items: center;
}

.zoom-controls button:hover { background: var(--cream-3); }

.zoom-hint-text {
  position: absolute;
  bottom: 4.6rem;
  left: 50%;
  translate: -50%;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-soft);
  pointer-events: none;
}

/* ---------- language switcher (dropdown) ---------- */
.nav-links .lang-switch { position: relative; }
.lang-current {
  font-family: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.lang-current::after {
  content: "▾";
  margin-inline-start: 0.35rem;
  font-size: 0.6rem;
  color: var(--gold);
}
.lang-switch:hover .lang-current,
.lang-switch.open .lang-current {
  background: var(--gold);
  color: var(--white);
}
.lang-switch:hover .lang-current::after,
.lang-switch.open .lang-current::after { color: var(--white); }
.lang-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  inset-inline-end: 0;
  min-width: 8.5rem;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.35rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 60;
}
.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu,
.lang-switch.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lang-menu a {
  display: block;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--brown);
}
.lang-menu a:hover { background: var(--cream-2); color: var(--gold-deep); }
.lang-menu a.active { color: var(--gold-deep); font-weight: 500; }
.lang-menu a::after { display: none; }

@media (max-width: 860px) {
  .lang-current {
    font-size: 1rem;
    padding: 0.4rem 1.1rem;
  }
  .lang-menu {
    inset-inline-end: auto;
    left: 50%;
    transform: translate(-50%, -6px);
  }
  .lang-switch:hover .lang-menu,
  .lang-switch:focus-within .lang-menu,
  .lang-switch.open .lang-menu {
    transform: translate(-50%, 0);
  }
  .lang-menu a {
    font-size: 1rem;
    text-align: center;
  }
}
