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

:root {
  --bg:     #f7f5f2;
  --fg:     #111111;
  --muted:  #7a7670;
  --border: #e2ddd8;
  --dark:   #141412;
  --serif:  'Inter', system-ui, sans-serif;
  --sans:   'Inter', system-ui, sans-serif;
  --footer-left-align-offset: 0rem;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: clip; /* clip instead of hidden — doesn't create a scroll container, so position:sticky works on mobile */
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--fg); }

/* ============================================================
   OVERLAY
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  transform-origin: right;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  opacity: 0;
  transition: background 0.4s, border-color 0.4s;
}

.nav.scrolled {
  background: rgba(247, 245, 242, 0.70);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* Nav adapts when mobile menu is open */
body.menu-open .nav {
  background: rgba(20,20,18,0.95) !important;
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(247,245,242,0.08) !important;
}
body.menu-open .nav-logo-white {
  display: block !important;
  animation: navLogoFadeIn 0.22s ease;
}
body.menu-open .nav-logo-red {
  display: none !important;
}
body.menu-open .nav-cta { display: none; }
body.menu-open .lang-switcher { display: none; }

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  display: block;
}

/* White logo shown on top, red logo hidden */
.nav-logo-white { display: block; }
.nav-logo-red   { display: none; }

/* When scrolled: swap to red logo, darken links */
.nav.scrolled .nav-logo-white { display: none; }
.nav.scrolled .nav-logo-red   { display: block; }

@keyframes navLogoFadeIn {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

/* Nav links white on top */
.nav-links a,
.nav-cta,
.lang-current {
  transition: color 0.3s;
}
.nav:not(.scrolled) .nav-links a { color: #fff; }
.nav:not(.scrolled) .nav-cta { color: #fff; border-color: rgba(255,255,255,0.6); }
.nav:not(.scrolled) .lang-current { color: #fff; }

.footer-logo-img {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
  filter: brightness(0) invert(1);
  transform: none;
}

.nav.scrolled .nav-logo {
  color: #c0392b;
}

.nav-logo-year {
  font-size: 0.46rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.18em;
  opacity: 0.65;
  color: var(--fg);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.3s;
  position: relative;
}
.nav-links a:hover { opacity: 1; }

.nav-links a.nav-active {
  opacity: 1;
}
.nav-links a.nav-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--fg);
}

.nav-cta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  border: 1px solid rgba(17,17,17,0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--fg); color: var(--bg); }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(17,17,17,0.2);
  border-radius: 2px;
  padding: 0.5rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s;
}

.lang-current:hover { border-color: var(--fg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(247,245,242,0.97);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 2px;
  list-style: none;
  padding: 0.4rem 0;
  min-width: 70px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 300;
}

.lang-switcher:hover .lang-dropdown,
.lang-switcher:focus-within .lang-dropdown,
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.lang-dropdown li {
  padding: 0.45rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s;
  text-align: center;
}

.lang-dropdown li:hover { color: var(--fg); }
.lang-dropdown li.lang-active { color: var(--fg); font-weight: 600; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 13, 12, 0.75) 0%,
    rgba(14, 13, 12, 0.25) 55%,
    rgba(14, 13, 12, 0.15) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 4rem;
  color: #f5f2ee;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.55;
}

.hero-year {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.5;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 9.5vw, 8.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-left: 0;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  translate: 0 110%;
}

.hero-line-inner.italic {
  font-style: italic;
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 242, 238, 0.15);
}

.hero-desc {
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 0.04em;
  margin-left: 0;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #f5f2ee;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.3s, gap 0.3s;
}
.hero-cta:hover { opacity: 1; gap: 1.3rem; }

.hero-cta-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245,242,238,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.hero-cta:hover .hero-cta-arrow { background: rgba(245,242,238,0.1); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--bg);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-track .sep {
  color: var(--border);
  letter-spacing: 0;
}

/* ============================================================
   INTRO STATEMENT
   ============================================================ */
.intro {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 4rem;
}

.intro-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.45;
  max-width: 820px;
  opacity: 0;
}

.intro-text em {
  font-style: italic;
  color: var(--muted);
}

/* ============================================================
   SECTION LABEL / TITLE
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.section-label.light { color: rgba(245,242,238,0.5); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: italic;
}

.body-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ============================================================
   COLLECTIONS — alternating full-width rows
   ============================================================ */
.collections { padding: 5rem 0; }

.collections-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.view-all {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  opacity: 0.5;
  transition: opacity 0.3s;
}
.view-all:hover { opacity: 1; }

/* Each row is a full-width flex pair */
.coll-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-top: 1px solid var(--border);
  opacity: 0;
  translate: 0 40px;
}

.coll-row--flip { direction: rtl; }
.coll-row--flip > * { direction: ltr; }

.coll-img-wrap { overflow: hidden; }

.coll-img-inner {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
  transition: scale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.coll-row:hover .coll-img-inner { scale: 1.025; }

.coll-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coll-img--hover-fade {
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.coll-img-hit:hover .coll-img-inner--amber-fade .coll-img--hover-fade,
.coll-img-hit:focus-visible .coll-img-inner--amber-fade .coll-img--hover-fade {
  opacity: 1;
}

/* Decorative shapes */
.coll-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.s-a { width: 260px; height: 260px; bottom: 40px; right: 50px; }
.s-b { width: 180px; height: 180px; top: 60px; left: 60px; }
.s-c { width: 220px; height: 110px; border-radius: 110px; bottom: 60px; left: 50%; translate: -50% 0; }

.coll-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  gap: 1.5rem;
}

.coll-num {
  font-family: var(--serif);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.2em;
}

.coll-name {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.coll-name-link {
  color: inherit;
  text-decoration: none;
}

.coll-name-link:hover {
  color: inherit;
  text-decoration: none;
}

.coll-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 420px;
}

.coll-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coll-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  margin-top: 0.5rem;
  opacity: 0.6;
  transition: opacity 0.3s, gap 0.3s;
}
.link-arrow:hover { opacity: 1; gap: 0.8rem; }

/* ============================================================
   SCROLL STORY
   ============================================================ */
.scroll-story {
  /* Height = sticky height + scroll travel */
  height: 380vh;
  position: relative;
}

.scroll-story-backdrop {
  position: relative; /* GSAP handles pinning via JS — more reliable on mobile */
  height: 100vh;
  overflow: hidden;
}

.scroll-story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  /* GSAP controls scale */
}

/* Night image — starts invisible, GSAP crossfades it in */
.scroll-story-img--night {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.scroll-story-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 12, 0.45);
  z-index: 3;
}

.story-panels {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  z-index: 4;
}

.story-panel {
  position: absolute;
  color: #f5f2ee;
  max-width: 680px;
  opacity: 0;
}

.story-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 1.4rem;
}

.story-heading {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.8vw, 6.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
}

.story-heading em { font-style: italic; }

.story-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 242, 238, 0.58);
  max-width: 420px;
}

/* Progress indicator — vertical dots on right */
.story-progress {
  position: absolute;
  right: 3rem;
  top: 50%;
  translate: 0 -50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.story-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245, 242, 238, 0.3);
  transition: background 0.4s, scale 0.4s;
}

.story-dot.active {
  background: rgba(245, 242, 238, 0.9);
  scale: 1.5;
}

/* Scroll hint that fades once user starts scrolling in the story */
.story-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  translate: -50% 0;
  z-index: 4;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 242, 238, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.story-scroll-hint-line {
  width: 1px;
  height: 40px;
  background: rgba(245, 242, 238, 0.2);
  transform-origin: top;
  animation: lineDown 1.8s ease-in-out infinite;
}

@keyframes lineDown {
  0%   { scaleY: 0; opacity: 0; transform-origin: top; }
  50%  { scaleY: 1; opacity: 1; }
  100% { scaleY: 0; opacity: 0; transform-origin: bottom; }
}

/* ============================================================
   DARK QUOTE
   ============================================================ */
.dark-quote {
  background: var(--dark);
  padding: 10rem 0;
}

.dark-quote .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: rgba(245, 242, 238, 0.9);
  quotes: none;
  opacity: 0;
}

.quote-text em {
  font-style: italic;
  color: rgba(245, 242, 238, 0.55);
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.quote-line {
  width: 60px;
  height: 1px;
  background: rgba(245,242,238,0.2);
  scale: 0 1;
  transform-origin: left;
}

.quote-meta span {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.3);
  opacity: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 6rem 0 10rem;
  background: #0e0d0c;
  color: #f5f2ee;
}

.about .section-label { color: rgba(245, 242, 238, 0.4); }
.about .section-title { color: #f5f2ee; }
.about .body-text { color: rgba(245, 242, 238, 0.65); }

.about .about-list,
.about .about-list li { border-color: rgba(245, 242, 238, 0.1); }

.about .about-list-num { color: #f5f2ee; }
.about .about-list li strong { color: #f5f2ee; }
.about .about-list li p { color: rgba(245, 242, 238, 0.45); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.about-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  scale: 1.14;
  transform-origin: center;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: rgba(247, 245, 242, 0.9);
  color: var(--fg);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  opacity: 0;
  translate: 0 8px;
}

.about-text-col .section-title { margin: 0.5rem 0 2rem; }

.about-list {
  list-style: none;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  translate: 0 16px;
}

.about-list-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
  min-width: 60px;
}

.about-list li strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.about-list li p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

.marquee-track .dot { font-style: normal; color: var(--border); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-img-wrap {
  position: absolute;
  inset: 0;
}

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

.contact-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,13,12,0.82) 0%, rgba(14,13,12,0.4) 55%, transparent 100%);
}

.contact-body {
  position: relative;
  z-index: 2;
  color: #f5f2ee;
  padding: 0 4rem;
  max-width: 600px;
}

.contact-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin: 0.8rem 0 1.4rem;
  opacity: 0;
  translate: 0 40px;
}

.contact-title em { font-style: italic; }

.contact-desc {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(245,242,238,0.55);
  margin-bottom: 2.5rem;
  opacity: 0;
  translate: 0 20px;
}

.btn-outline {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid rgba(245,242,238,0.4);
  color: #f5f2ee;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.35s, border-color 0.35s;
  opacity: 0;
  translate: 0 16px;
}
.btn-outline:hover {
  background: rgba(245,242,238,0.1);
  border-color: rgba(245,242,238,0.7);
}

.contact-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.72rem;
  color: rgba(245,242,238,0.3);
  letter-spacing: 0.1em;
  opacity: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(245,242,238,0.5);
  padding: 5rem 4rem 2.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245,242,238,0.08);
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.42em;
  color: rgba(245,242,238,0.85);
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.78rem;
  opacity: 0.4;
  line-height: 1.7;
  margin-left: var(--footer-left-align-offset);
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.2rem;
  margin-left: var(--footer-left-align-offset);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f2ee;
  background: #c0392b;
  transition: background 0.25s, transform 0.25s;
}

.footer-social a:hover {
  background: #a93226;
  transform: scale(1.12);
}

.footer-nav {
  display: flex;
  gap: 5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.28);
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: rgba(245,242,238,0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: rgba(245,242,238,0.9); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  opacity: 0.28;
}

.footer-bottom > span:first-child {
  margin-left: var(--footer-left-align-offset);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   FLOATING CTA BUTTON
   ============================================================ */
.float-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 4rem;
  left: auto;
  /* matches .nav right padding; GSAP xPercent stays 0 — magnetic uses x only */
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  /* GSAP handles translate for magnetic effect */
}

.float-btn.visible {
  pointer-events: auto;
}

.float-btn-link {
  display: block;
  position: relative;
  width: 90px;
  height: 90px;
  text-decoration: none;
  color: #f5f2ee;
}

.float-btn-circle {
  position: absolute;
  inset: 0;
  background: #c0392b;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  transition: background 0.4s;
  z-index: 2;
}

.float-btn-link:hover .float-btn-circle {
  background: #a93226;
}

.float-btn-text {
  font-family: var(--sans);
  font-size: clamp(0.46rem, 1.08vw, 0.58rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
  opacity: 0.85;
}

.float-btn-icon {
  width: 15px;
  height: 15px;
  opacity: 0.6;
  transition: opacity 0.3s, translate 0.3s;
}
.float-btn-link:hover .float-btn-icon {
  opacity: 1;
  translate: 3px 0;
}

/* SVG ring that draws in on hover */
.float-btn-ring {
  position: absolute;
  inset: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  color: rgba(192, 57, 43, 0.6);
  rotate: -90deg;
  pointer-events: none;
  z-index: 1;
}

.float-btn-ring circle {
  transition: stroke-dashoffset 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.float-btn-link:hover .float-btn-ring circle {
  stroke-dashoffset: 0;
}

/* ============================================================
   SOCIAL FLOAT
   ============================================================ */
.social-float {
  position: fixed;
  bottom: 2.5rem;
  left: 2rem;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
}

.social-float.visible {
  pointer-events: auto;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f2ee;
  text-decoration: none;
  background: #c0392b;
  transition: background 0.25s, transform 0.25s;
}

.social-icon:hover {
  background: #a93226;
  transform: scale(1.12);
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  position: relative;
}

.nav-hamburger span {
  display: block;
  height: 0.8px;
  background: var(--fg);
  border-radius: 1px;
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1), opacity 0.22s, background 0.25s, width 0.28s;
  transform-origin: center;
}

.nav-hamburger span:nth-child(1) { width: 38px; }
.nav-hamburger span:nth-child(2) { width: 28px; }
.nav-hamburger span:nth-child(3) { width: 38px; }

/* Hover: middle line extends */
.nav-hamburger:hover span:nth-child(2) { width: 38px; }

/* Open (X) state */
.nav-hamburger.open span { background: #f7f5f2; }
.nav-hamburger.open span:nth-child(1) { width: 38px; transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { width: 38px; transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 250;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5.5rem 2.5rem 8rem;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0s;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  text-align: left;
  width: 100%;
  counter-reset: nav-c;
}

.mobile-menu ul li {
  counter-increment: nav-c;
}

.mobile-menu ul li a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-weight: 700;
  color: rgba(247,245,242,0.65);
  text-decoration: none;
  padding: 0.45rem 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.77,0,0.175,1), opacity 0.25s ease, color 0.2s;
}

.mobile-menu ul li a::before {
  content: '0' counter(nav-c);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(247,245,242,0.28);
  flex-shrink: 0;
  margin-bottom: 0.15rem;
}

/* Stagger links in */
.mobile-menu.open ul li:nth-child(1) a { transform: translateX(0); opacity: 1; transition-delay: 0.04s; }
.mobile-menu.open ul li:nth-child(2) a { transform: translateX(0); opacity: 1; transition-delay: 0.08s; }
.mobile-menu.open ul li:nth-child(3) a { transform: translateX(0); opacity: 1; transition-delay: 0.12s; }
.mobile-menu.open ul li:nth-child(4) a { transform: translateX(0); opacity: 1; transition-delay: 0.16s; }
.mobile-menu.open ul li:nth-child(5) a { transform: translateX(0); opacity: 1; transition-delay: 0.20s; }
.mobile-menu.open ul li:nth-child(6) a { transform: translateX(0); opacity: 1; transition-delay: 0.24s; }

/* Reset on close */
.mobile-menu:not(.open) ul li a { transition-delay: 0s; }

.mobile-menu ul li a:hover,
.mobile-menu ul li a.nav-active { color: #f7f5f2; }

.mobile-menu ul li a.nav-active::before { color: #c0392b; }

.mobile-menu-footer {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1.4rem 2.5rem;
  border-top: 1px solid rgba(247,245,242,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.2s ease 0.18s;
}

.mobile-menu.open .mobile-menu-footer { opacity: 1; }
.mobile-menu:not(.open) .mobile-menu-footer { transition-delay: 0s; }

.mobile-menu-phone {
  color: rgba(247,245,242,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu-phone:hover { color: #f7f5f2; }

.mobile-menu-footer a:last-child {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: #c0392b;
  color: #f5f2ee;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s;
}
.mobile-menu-footer a:last-child:hover { background: #a93226; }

/* ============================================================
   RESPONSIVE — SMALL DESKTOP / LAPTOP
   ============================================================ */
@media (max-width: 1400px) {
  .nav { padding: 0 2.6rem; }
  .nav-logo-img { height: 108px; }
  .nav-links { gap: clamp(0.6rem, 1.1vw, 1rem); }
  .nav-links a {
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }
  .lang-current {
    padding: 0.45rem 0.75rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 1180px) {
  .nav { padding: 0 1.8rem; }
  .nav-logo-img { height: 96px; }
  .nav-links { gap: 0.65rem; }
  .nav-links a {
    font-size: 0.6rem;
    letter-spacing: 0.09em;
  }
  .lang-current {
    padding: 0.4rem 0.65rem;
    font-size: 0.58rem;
  }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { gap: 0.5rem; }
  .nav-links a {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }
  .about-grid { gap: 4rem; }
  .coll-text { padding: 3.5rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE / iPHONE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --page-gutter: max(1.4rem, env(safe-area-inset-left, 0px));
    --page-gutter-right: max(1.4rem, env(safe-area-inset-right, 0px));
  }

  /* NAV — keep symmetric edge spacing on mobile */
  .nav { padding: 1.2rem var(--page-gutter-right) 1.2rem var(--page-gutter); }
  .nav-logo-img {
    transform: none;
    transform-origin: left center;
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switcher { margin-left: auto; margin-right: 0.5rem; }
  .lang-dropdown { right: 0; left: auto; transform: none; }
  .lang-switcher:hover .lang-dropdown,
  .lang-switcher:focus-within .lang-dropdown,
  .lang-switcher.open .lang-dropdown { transform: translateY(0); }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* FLOAT CTA + SOCIAL — single scale, safe-area, 44px+ touch targets */
  .float-btn {
    top: auto;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    left: auto;
    right: var(--page-gutter-right);
    transform: none;
  }
  .float-btn-link {
    width: 94px;
    height: 94px;
  }
  .float-btn-circle {
    gap: 0;
  }
  .float-btn-text {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    line-height: 1.1;
    font-weight: 600;
  }
  .float-btn-icon { display: none; }
  .float-btn-ring { display: none; }

  .social-float {
    display: none !important;
  }
  .social-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  /* HERO */
  .hero-body { padding: 2rem var(--page-gutter-right) 2rem var(--page-gutter); }
  .hero-top { flex-direction: column; gap: 0.4rem; }
  .hero-heading { font-size: clamp(2.5rem, 12vw, 4.8rem); line-height: 0.92; margin-left: 0; }
  .hero-desc { margin-left: 0; }
  .hero-bottom { flex-direction: column; gap: 1.4rem; align-items: flex-start; }

  /* TICKER */
  .ticker { padding: 0.9rem 0; }

  /* INTRO */
  .container { padding: 0 var(--page-gutter-right) 0 var(--page-gutter); }
  .intro { padding: 4rem 0; }
  .intro-text { font-size: clamp(1.2rem, 5vw, 1.8rem); }

  /* COLLECTIONS */
  .coll-row { grid-template-columns: 1fr; min-height: auto; direction: ltr; }
  .coll-row--flip { direction: ltr; }
  .coll-img-wrap { height: 260px; }
  .coll-img-inner { min-height: 260px; }
  .coll-text { padding: 2rem var(--page-gutter-right) 2rem var(--page-gutter); order: 2; direction: ltr; }
  .coll-text-left, .coll-text-right { text-align: left; }
  .coll-img-left, .coll-img-right { order: 1; }

  /* SCROLL STORY */
  .scroll-story { height: 260vh; }
  .story-panels { padding: 0 var(--page-gutter-right) 0 var(--page-gutter); }
  .story-heading { font-size: clamp(2.2rem, 8.5vw, 4.2rem); }
  .story-sub { font-size: 0.85rem; }
  .story-progress { right: var(--page-gutter-right); }

  /* DARK QUOTE */
  .dark-quote { padding: 5rem 0; }
  .dark-quote .container { padding: 0 var(--page-gutter-right) 0 var(--page-gutter); }
  .quote-text { font-size: clamp(1.4rem, 6vw, 2.4rem); }

  /* ABOUT */
  .about { padding: 5rem 0; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { clip-path: none !important; }
  .about-img { height: 300px; clip-path: none !important; }
  .about-img-col { order: 1; }
  .about-text-col { order: 2; padding: 0 var(--page-gutter-right) 0 var(--page-gutter); }
  .about-list li { gap: 1rem; }
  .about-list-num { font-size: 1.8rem; }

  /* MARQUEE */
  .marquee-strip { padding: 1.2rem 0; }

  /* CONTACT SECTION (index) */
  .contact-body { padding: 0 var(--page-gutter-right) 0 var(--page-gutter); }
  .contact-desc {
    max-width: 26ch;
  }
  .contact-info { flex-direction: column; gap: 0.4rem; }

  /* FOOTER */
  .footer { padding: 3rem var(--page-gutter-right) 2rem var(--page-gutter); }
  .footer-top { flex-direction: column; gap: 2.5rem; }
  .footer-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1rem;
  }
  .footer-nav .footer-col:nth-child(1) {
    align-items: flex-start;
    text-align: left;
  }
  .footer-nav .footer-col:nth-child(2) {
    align-items: center;
    text-align: center;
  }
  .footer-nav .footer-col:nth-child(3) {
    align-items: flex-end;
    text-align: right;
  }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .footer-brand p,
  .footer-social,
  .footer-bottom > span:first-child { margin-left: 0; }
  .footer-logo-img {
    transform: none;
    transform-origin: left center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL iPHONE (SE, 375px)
   ============================================================ */
@media (max-width: 390px) {
  .hero-heading { font-size: 3rem; }
  .story-heading { font-size: 2.4rem; }
  .coll-name { font-size: 1.6rem; }
  .section-title { font-size: 1.8rem; }
  .quote-text { font-size: 1.3rem; }
}

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-after {
  position: relative;
  width: 100%;
  height: 100%;
}
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
}
.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.ba-handle-line { flex: 1; width: 2px; background: #fff; opacity: 0.85; }
.ba-handle-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #141412;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.ba-label {
  position: absolute;
  top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  pointer-events: none;
  z-index: 10;
}
.ba-label--before { left: 1.5rem; }
.ba-label--after  { right: 1.5rem; }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #c0392b;
  z-index: 9998;
  pointer-events: none;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px; height: 42px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 500;
  pointer-events: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#backToTop:hover { background: #c0392b; }

@media (max-width: 768px) {
  #backToTop { display: none; }
}

/* ============================================================
   FILM STRIP
   ============================================================ */
.film-section { position: relative; }
.film-pin {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.film-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 4rem;
  will-change: transform;
}
.film-slide {
  flex-shrink: 0;
  width: 70vw;
  max-width: 900px;
  height: 75vh;
  overflow: hidden;
  border-radius: 4px;
}
.film-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.film-label {
  position: absolute;
  bottom: 2rem;
  left: 4rem;
}
.film-label-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.film-label-link:hover { opacity: 0.8; }
@media (max-width: 768px) {
  .film-pin {
    height: auto;
    overflow: visible;
    display: block;
    padding: 0 0 2rem;
  }
  .film-track {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 1.4rem;
    gap: 0.8rem;
    transform: none !important;
    will-change: auto;
  }
  .film-slide {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .film-label {
    position: static;
    left: auto;
    bottom: auto;
    padding: 0 1.4rem;
    margin-top: 1rem;
  }
}

