/* ═══════════════════════════════════════════════════════════════
   ClemArt — Award-Winning Luxury Design System
   ═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Colors */
  --black:       #080608;
  --night:       #100d10;
  --charcoal:    #1a161a;
  --graphite:    #2a252a;
  --ash:         #3a333a;
  --smoke:       #665f66;
  --silver:      #9e989e;
  --mist:        #cec8ce;
  --ivory:       #f5edd6;
  --white:       #faf7f0;

  /* Bright, high-contrast shiny metallic gold */
  --gold:        #d4a352;
  --gold-light:  #fdeca6;
  --gold-dark:   #8e6b2c;
  --gold-glow:   rgba(212, 163, 82, 0.15);

  /* No Burgundy anymore */

  --cream:       #f5edd6;

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --nav-h: 80px;
  --section-pad: clamp(80px, 12vw, 180px);
  --container: 1400px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.55, 1);
  --duration: 0.8s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--night);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--mist);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--night); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }

/* Utility */
.gold { color: var(--gold); }

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ═══════════════════════════════════════════════════════════════
   PRELOADER
   ═══════════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.preloader__bar {
  width: 180px;
  height: 2px;
  background: var(--graphite);
  margin: 0 auto 16px;
  border-radius: 2px;
  overflow: hidden;
}

.preloader__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: preloaderFill 1.8s var(--ease-smooth) 0.3s forwards;
}

.preloader__tagline {
  font-family: var(--font-accent);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0;
  animation: fadeInUp 0.6s var(--ease-out) 0.5s forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM CURSOR (desktop)
   ═══════════════════════════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184, 150, 42, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), border-color 0.3s;
}

body.cursor-hover .cursor {
  width: 50px;
  height: 50px;
  background: rgba(184, 150, 42, 0.15);
}

body.cursor-hover .cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Glassmorphism
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(184, 150, 42, 0.08);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 4vw, 60px);
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

/* Logo image in navbar */
.nav__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 0.4s var(--ease-out), filter 0.3s;
  filter: drop-shadow(0 2px 8px rgba(212, 163, 82, 0.3));
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 16px rgba(212, 163, 82, 0.5));
}

.nav__logo-text {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-right: 4px;
}
.lang-switch__opt {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  text-decoration: none;
  padding: 2px 0;
}
.lang-switch__opt:hover { color: var(--gold); }
.lang-switch__opt--active {
  color: var(--gold);
  cursor: default;
}
.lang-switch__sep { color: rgba(255,255,255,0.15); }

.nav__links {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(220, 164, 59, 0.35);
  padding: 10px 20px;
  border-radius: 2px;
  transition: all 0.4s var(--ease-out);
}

.nav__cta:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(220, 164, 59, 0.4);
}

.nav__cta svg {
  transition: transform 0.3s var(--ease-out);
}

.nav__cta:hover svg {
  transform: translate(3px, -3px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 1001;
}

.nav__burger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}

.nav.burger-open .nav__burger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav.burger-open .nav__burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav.burger-open .nav__burger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out);
}

.nav__mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-inner {
  text-align: center;
}

.nav__mobile-inner ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 400;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--graphite);
  transition: color 0.3s, padding-left 0.3s var(--ease-out);
}

.nav__mobile-link:hover {
  color: var(--gold);
  padding-left: 16px;
}

.nav__mobile-num {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  min-width: 32px;
}

.nav__mobile-footer {
  margin-top: 48px;
}

.nav__mobile-footer a {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav__mobile-footer p {
  font-family: var(--font-accent);
  font-size: 13px;
  color: var(--smoke);
  margin-top: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — Cinematic Full-Bleed
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img-container {
  position: absolute;
  inset: -20px;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s var(--ease-smooth);
  filter: brightness(0.5) contrast(1.1) saturate(0.9);
}

.hero.loaded .hero__img {
  transform: scale(1);
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.7) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 30px;
}

.hero__overline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__overline span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
}

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

.hero__title-line > span {
  display: inline-block;
  font-size: clamp(48px, 8vw, 110px);
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero__title-line--italic > span {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero__sub {
  font-family: var(--font-accent);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--mist);
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

.hero__side-text {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(184, 150, 42, 0.3);
  z-index: 5;
  transform-origin: center;
  white-space: nowrap;
}

/* ─── anim-up for hero elements ─── */
.anim-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.hero.loaded .anim-up {
  opacity: 1;
  transform: translateY(0);
}

.hero.loaded .anim-up:nth-child(1) { transition-delay: 0.2s; }
.hero.loaded .anim-up:nth-child(2) { transition-delay: 0.35s; }
.hero.loaded .anim-up:nth-child(3) { transition-delay: 0.5s; }
.hero.loaded .anim-up:nth-child(4) { transition-delay: 0.65s; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: none;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(220, 164, 59, 0.25);
}

.btn__shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s var(--ease-out);
}

.btn--primary:hover .btn__shine {
  left: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

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

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--large {
  padding: 20px 48px;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE RIBBON
   ═══════════════════════════════════════════════════════════════ */
.marquee {
  background: var(--charcoal);
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--font-accent);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 0 24px;
}

.marquee__dot {
  color: var(--gold) !important;
  font-size: 8px !important;
  display: inline-flex;
  align-items: center;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION LABEL (reusable)
   ═══════════════════════════════════════════════════════════════ */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-label__line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-label span:not(.section-label__line) {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   ATELIER SECTION
   ═══════════════════════════════════════════════════════════════ */
.atelier {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.atelier__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 120px);
  align-items: center;
}

.atelier__media {
  position: relative;
}

.atelier__img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.atelier__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-smooth);
}

.atelier__img-wrap:hover img {
  transform: scale(1.05);
}

.atelier__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 150, 42, 0.12);
  border-radius: 4px;
  pointer-events: none;
}

.atelier__float-stat {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gold);
  border: 1px solid rgba(220, 164, 59, 0.5);
  color: var(--black);
  padding: 28px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.atelier__float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.atelier__float-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.atelier__text {
  padding-right: clamp(0px, 3vw, 60px);
}

.atelier__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
}

.atelier__headline em {
  color: var(--gold);
  font-weight: 500;
}

.atelier__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mist);
  margin-bottom: 20px;
}

.atelier__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--graphite);
}

.atelier__stat {
  text-align: center;
}

.atelier__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.atelier__stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 8px;
  display: block;
}

.atelier__stat-divider {
  width: 1px;
  height: 48px;
  background: var(--graphite);
}

@media (max-width: 900px) {
  .atelier__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .atelier__float-stat {
    bottom: -16px;
    right: -8px;
    padding: 20px;
  }
  .atelier__float-num { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   FOUNDER — Ayşe
   ═══════════════════════════════════════════════════════════════ */
.founder {
  padding: var(--section-pad) 0;
  background: var(--night);
  overflow: hidden;
}

.founder__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 120px);
  align-items: center;
}

.founder__media {
  position: relative;
}

.founder__img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.founder__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s var(--ease-smooth);
}

.founder__img-wrap:hover img {
  transform: scale(1.04);
}

.founder__img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(184, 150, 42, 0.15);
  border-radius: 6px;
  z-index: 1;
  pointer-events: none;
}

.founder__img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(17,17,17,0.4), transparent);
  pointer-events: none;
}

.founder__text {
  padding-right: clamp(0px, 2vw, 40px);
}

.founder__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 28px;
}

.founder__headline em {
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
}

.founder__body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mist);
  margin-bottom: 16px;
}

.founder__signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--graphite);
}

.founder__sig-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.founder__signature span {
  font-family: var(--font-accent);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .founder__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .founder__img-wrap {
    aspect-ratio: 4 / 3;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COLLECTIONS — Immersive Grid
   ═══════════════════════════════════════════════════════════════ */
.collections {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--night) 0%, #0f090d 50%, var(--night) 100%);
}

.collections__header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px) 60px;
}

.collections__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.collections__headline em {
  color: var(--gold);
  font-weight: 500;
}

.collections__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

/* Hero card spans 2 cols */
.coll-card--hero {
  grid-column: span 2;
  grid-row: span 2;
}

/* Wide card spans 2 cols */
.coll-card--wide {
  grid-column: span 2;
}

.coll-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 340px;
  cursor: none;
}

.coll-card--hero {
  min-height: 700px;
}

.coll-card__img {
  position: absolute;
  inset: 0;
}

.coll-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-smooth);
}

.coll-card:hover .coll-card__img img {
  transform: scale(1.08);
}

.coll-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.85) 100%);
  transition: background 0.5s;
  z-index: 1;
}

.coll-card:hover .coll-card__overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(10,10,10,0.9) 100%);
}

.coll-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  transform: translateY(12px);
  transition: transform 0.5s var(--ease-out);
}

.coll-card:hover .coll-card__content {
  transform: translateY(0);
}

.coll-card__num {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.coll-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.coll-card__desc {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s var(--ease-out) 0.1s;
}

.coll-card:hover .coll-card__desc {
  opacity: 1;
  transform: translateY(0);
}

.coll-card__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-out) 0.2s;
}

.coll-card:hover .coll-card__link {
  opacity: 1;
  transform: translateY(0);
}

.coll-card__link span {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.coll-card__link:hover span {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .collections__grid {
    grid-template-columns: 1fr 1fr;
  }
  .coll-card--hero {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .collections__grid {
    grid-template-columns: 1fr;
  }
  .coll-card--hero, .coll-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .coll-card { min-height: 300px; }
  .coll-card--hero { min-height: 400px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERITAGE — Horizontal Carousel
   ═══════════════════════════════════════════════════════════════ */
.heritage {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.heritage__header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px) 60px;
}

.heritage__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.heritage__headline em {
  color: var(--gold);
  font-weight: 500;
}

.heritage__intro {
  font-family: var(--font-accent);
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--mist);
  max-width: 600px;
  line-height: 1.8;
}

.heritage__carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 clamp(24px, 4vw, 60px);
  scroll-snap-type: x mandatory;
}

.heritage__carousel::-webkit-scrollbar { display: none; }

.heritage__track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.heritage__card {
  flex-shrink: 0;
  width: clamp(300px, 30vw, 420px);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  background: var(--charcoal);
  border: 1px solid var(--graphite);
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.heritage__card:hover {
  border-color: rgba(184, 150, 42, 0.3);
  transform: translateY(-6px);
}

.heritage__card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.heritage__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s var(--ease-smooth);
}

.heritage__card:hover .heritage__card-img img {
  transform: scale(1.06);
}

.heritage__card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--charcoal) 100%);
}

.heritage__card-body {
  padding: 28px;
}

.heritage__card-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.heritage__card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.heritage__card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--silver);
}

/* ═══════════════════════════════════════════════════════════════
   CRAFT — Cinematic Parallax Section
   ═══════════════════════════════════════════════════════════════ */
.craft {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.craft__parallax-bg {
  position: absolute;
  inset: -60px;
}

.craft__parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.1);
}

.craft__parallax-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%);
}

.craft__content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  padding: var(--section-pad) 30px;
}

.craft__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 50px;
}

.craft__headline em {
  color: var(--gold);
  font-weight: 500;
}

.craft__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: left;
}

.craft__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  backdrop-filter: blur(16px);
  transition: border-color 0.4s, background 0.4s;
}

.craft__feature:hover {
  border-color: rgba(184, 150, 42, 0.2);
  background: rgba(184, 150, 42, 0.04);
}

.craft__feature-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.craft__feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.craft__feature span {
  font-size: 13px;
  color: var(--silver);
}

@media (max-width: 600px) {
  .craft__features {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SHOWCASE — Interior Full-Bleed
   ═══════════════════════════════════════════════════════════════ */
.showcase {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.showcase__media {
  position: absolute;
  inset: 0;
}

.showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: transform 8s var(--ease-smooth);
}

.showcase:hover .showcase__img {
  transform: scale(1.03);
}

.showcase__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 60%);
}

.showcase__content {
  position: relative;
  z-index: 5;
  max-width: var(--container);
  padding: 80px clamp(24px, 4vw, 60px);
}

.showcase__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.showcase__headline em {
  color: var(--gold);
  font-weight: 500;
}

.showcase__text {
  font-size: 16px;
  color: var(--mist);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIAL
   ═══════════════════════════════════════════════════════════════ */
.testimonial {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--night) 0%, #0a0809 40%, var(--night) 100%);
  border-top: 1px solid rgba(220, 164, 59, 0.15);
  border-bottom: 1px solid rgba(220, 164, 59, 0.15);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.testimonial__inner {
  position: relative;
  z-index: 1;
}

/* .testimonial__inner now also set above in ::before override */
.testimonial__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(24px, 4vw, 60px);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.4;
  text-shadow: 0 0 40px rgba(220, 164, 59, 0.3);
}

.testimonial__text {
  font-family: var(--font-accent);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 32px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial__author-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.testimonial__author span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ═══════════════════════════════════════════════════════════════
   COMMISSION / BESPOKE
   ═══════════════════════════════════════════════════════════════ */
.commission {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
}

.commission::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), var(--gold-light), var(--gold-dark), transparent);
  opacity: 0.8;
}

.commission__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.commission__header {
  margin-bottom: 60px;
}

.commission__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}

.commission__headline em {
  color: var(--gold);
  font-weight: 500;
}

.commission__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.commission__step {
  position: relative;
  padding: 40px 32px;
  background: var(--charcoal);
  border: 1px solid var(--graphite);
  border-top: 2px solid var(--gold-dark);
  border-radius: 6px;
  transition: border-color 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.commission__step:hover {
  border-color: rgba(220, 164, 59, 0.35);
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(220, 164, 59, 0.1);
}

.commission__step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.commission__step-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.commission__step-line {
  flex: 1;
  height: 1px;
  background: var(--graphite);
}

.commission__step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.commission__step-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--silver);
}

.commission__cta {
  text-align: center;
}

.commission__note {
  font-size: 13px;
  color: var(--smoke);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

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

/* ═══════════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════════ */
.final {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.final__bg {
  position: absolute;
  inset: 0;
}

.final__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) contrast(1.1);
}

.final__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
}

.final__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 80px 30px;
}

.final__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 40px;
}

.final__headline em {
  color: var(--gold);
  font-weight: 500;
}

.final__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, var(--night) 0%, #0c080b 100%);
  border-top: 1px solid rgba(220, 164, 59, 0.2);
}

.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
}

.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px clamp(24px, 4vw, 60px) 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 14px;
  color: var(--silver);
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 14px;
  color: var(--silver);
  transition: color 0.3s;
}

.footer__col ul li a:hover {
  color: var(--gold);
}

.footer__col--newsletter p {
  font-size: 13px;
  color: var(--smoke);
  margin-bottom: 16px;
}

.footer__form {
  display: flex;
  gap: 0;
}

.footer__input {
  flex: 1;
  background: var(--charcoal);
  border: 1px solid var(--graphite);
  border-right: none;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-body);
  border-radius: 3px 0 0 3px;
  outline: none;
  transition: border-color 0.3s;
}

.footer__input::placeholder {
  color: var(--smoke);
}

.footer__input:focus {
  border-color: var(--gold);
}

.footer__submit {
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 16px;
  border-radius: 0 3px 3px 0;
  color: var(--black);
  cursor: none;
  transition: background 0.3s;
  display: flex;
  align-items: center;
}

.footer__submit:hover {
  background: var(--gold-light);
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px clamp(24px, 4vw, 60px);
  border-top: 1px solid var(--graphite);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--smoke);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 12px;
  color: var(--smoke);
  transition: color 0.3s;
}

.footer__bottom-links a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.reveal-slide {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-block {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-block.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ═══════════════════════════════════════════════════════════════
   GOLD NOISE TEXTURE OVERLAY (whole page)
   ═══════════════════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9990;
  mix-blend-mode: overlay;
}

/* ════ INTERNAL HERO ANIMATION FIX ════ */
@keyframes internalFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.internal-hero .reveal-slide {
  opacity: 0;
  animation: internalFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.internal-hero .hero__overline { animation-delay: 2.2s; }
.internal-hero .hero__title { animation-delay: 2.3s; }
.internal-hero p { animation-delay: 2.4s; }

