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

:root {
  --gold: #bf8d30;
  --gold-light: #d4a843;
  --gold-dark: #9a7025;
  --cream: #f7f3ed;
  --cream-dark: #ede7db;
  --charcoal: #1a1814;
  --charcoal-soft: #2c2820;
  --text: #3d3830;
  --text-light: #7a7268;
  --white: #ffffff;
  --header-h: 128px;
  --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'EB Garamond', Georgia, 'Times New Roman', serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  font-size: 16px;
}

body {
  font-family: var(--font-serif);
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 0 3rem;
  background: #ffffff;
  border-bottom: 1px solid var(--cream-dark);
}

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

.header__nav--left {
  grid-column: 1;
  justify-content: flex-start;
  justify-self: start;
  min-width: 0;
}

.header__nav--right {
  grid-column: 3;
  justify-content: flex-end;
  justify-self: end;
  min-width: 0;
}

.header__nav a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s;
  white-space: nowrap;
}

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

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  grid-column: 2;
  grid-row: 1;
}

.header__logo:hover img { transform: scale(1.05); }

.header__logo img {
  height: 114px;
  width: auto;
  display: block;
  transition: transform 0.3s;
}

.header__cart {
  color: var(--charcoal);
  transition: color 0.3s;
  padding: 4px;
}

.header__cart:hover { color: var(--gold); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.lang-switcher__btn {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 24, 20, 0.4);
  padding: 4px 2px;
  transition: color 0.3s;
}

.lang-switcher__btn:hover {
  color: var(--charcoal);
}

.lang-switcher__btn--active {
  color: var(--charcoal);
  font-weight: 600;
}

.lang-switcher__sep {
  font-size: 0.65rem;
  color: rgba(26, 24, 20, 0.25);
  user-select: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--charcoal);
}


.hero__slides {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
  perspective: 1400px;
  isolation: isolate;
}

.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide picture,
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__slide::after {
  display: none;
}

.hero__content {
  position: absolute;
  bottom: 12%;
  left: clamp(1.5rem, 6vw, 5rem);
  z-index: 2;
  max-width: min(480px, 85vw);
  text-align: left;
  color: #000000;
  transform-style: preserve-3d;
}

.hero__title,
.hero__info {
  opacity: 0;
  transform: translate3d(0, 30px, -180px) scale(1.1);
}

.hero__content--enter .hero__title {
  animation: heroDepthIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero__content--enter .hero__info {
  animation: heroDepthIn 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}

@keyframes heroDepthIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 36px, -220px) scale(1.14);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1.25rem;
  color: #000000;
}

.hero__desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #000000;
  margin-bottom: 2rem;
}

.hero__cta {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #000000;
  border: 1px solid #000000;
  padding: 0.9rem 2.5rem;
  transition: background 0.4s, border-color 0.4s, color 0.4s;
}

.hero__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.hero__controls {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 3;
}

.hero__arrow {
  color: var(--charcoal);
  transition: color 0.3s;
  padding: 8px;
}

.hero__arrow:hover { color: var(--gold-dark); }

.hero__dots {
  display: flex;
  gap: 0.75rem;
}

.hero__dot {
  width: 32px;
  height: 2px;
  background: rgba(26, 24, 20, 0.25);
  transition: background 0.4s, width 0.4s;
}

.hero__dot--active {
  background: var(--gold);
  width: 48px;
}

.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 3;
}

.hero__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* ── Collection ── */
.collection {
  padding: 2rem clamp(1.25rem, 3vw, 2.5rem) 5rem;
  background: #ffffff;
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.product-card[id] {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  max-width: 1440px;
  margin: 0 auto;
}

/* ── Product Card ── */
.product-card {
  display: flex;
  flex-direction: column;
  min-height: auto;
  background: #ffffff;
}

.product-card__image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  background: #ffffff;
}

.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.8s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.03);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 1.25rem 0.75rem 0;
  background: #ffffff;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.product-card__notes {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.product-card__desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 0;
  max-width: none;
}

/* ── Features ── */
.features {
  background: #ffffff;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
}

.features__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.features__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: rgba(26, 24, 20, 0.12);
}

.features__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.75rem;
  color: var(--gold);
}

.features__icon svg {
  width: 100%;
  height: 100%;
}

.features__title {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.features__text {
  font-family: var(--font-serif);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  max-width: 280px;
}

/* ── Spotlight ── */
.spotlight {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.spotlight__slides {
  position: relative;
  min-height: clamp(420px, 50vh, 680px);
}

.spotlight__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(420px, 50vh, 680px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.spotlight__slide--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.spotlight__visual {
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.spotlight__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
  .spotlight__visual {
    min-height: clamp(360px, 35vw, 620px);
  }
}

.spotlight__slide--active .spotlight__visual img {
  transform: scale(1);
}

.spotlight__slide:not(.spotlight__slide--active) .spotlight__visual img {
  transform: scale(1.04);
}

.spotlight__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
  background: #ffffff;
}

.spotlight__label,
.spotlight__divider,
.spotlight__title,
.spotlight__text,
.spotlight__cta {
  opacity: 0;
  transform: translateY(16px);
  transition: none;
}

.spotlight__slide--active .spotlight__label,
.spotlight__slide--active .spotlight__divider,
.spotlight__slide--active .spotlight__title,
.spotlight__slide--active .spotlight__text,
.spotlight__slide--active .spotlight__cta {
  opacity: 1;
  transform: translateY(0);
}

.spotlight__slide--active .spotlight__label {
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.spotlight__slide--active .spotlight__divider {
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.35s, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}

.spotlight__slide--active .spotlight__title {
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.5s, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.spotlight__slide--active .spotlight__text {
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.65s, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.65s;
}

.spotlight__slide--active .spotlight__cta {
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.8s, transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.spotlight__label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.spotlight__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin-bottom: 2rem;
}

.spotlight__divider::before,
.spotlight__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--charcoal);
  opacity: 0.3;
}

.spotlight__divider span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--charcoal);
  transform: rotate(45deg);
  opacity: 0.45;
  margin: 0 0.85rem;
  flex-shrink: 0;
}

.spotlight__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.8vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}

.spotlight__text {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  max-width: 400px;
  margin-bottom: 2.75rem;
}

.spotlight__cta {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--charcoal);
  border: none;
  padding: 1.05rem 2.75rem;
  border-radius: 0;
  transition: background 0.35s ease;
}

.spotlight__cta:hover {
  background: var(--gold-dark);
  color: #ffffff;
}

.spotlight__controls {
  position: absolute;
  bottom: 2.5rem;
  left: 75%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  pointer-events: none;
}

.spotlight__controls > * {
  pointer-events: auto;
}

.spotlight__arrow {
  color: var(--charcoal);
  padding: 6px;
  transition: color 0.3s ease;
}

.spotlight__arrow:hover {
  color: var(--gold-dark);
}

.spotlight__dots {
  display: flex;
  gap: 0.65rem;
}

.spotlight__dot {
  width: 28px;
  height: 2px;
  background: rgba(26, 24, 20, 0.25);
  transition: background 0.5s ease, width 0.5s ease;
}

.spotlight__dot--active {
  width: 40px;
  background: var(--gold-dark);
}

/* ── About ── */
.about {
  padding: 7rem 2rem;
  background: var(--charcoal);
  color: var(--white);
}

.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual {
  overflow: hidden;
  border-radius: 2px;
}

.about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.about__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about__text {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.about__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about__features li {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-left: 1.2rem;
  position: relative;
}

.about__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ── Footer ── */
.footer {
  padding: 4rem 2rem;
  background: #ffffff;
  text-align: center;
}

.footer__inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  width: 100%;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__contact-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.footer__contact-item a,
.footer__contact-value {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--charcoal);
}

.footer__contact-item a {
  transition: color 0.3s;
}

.footer__contact-item a:hover {
  color: var(--gold-dark);
}

.footer__contact-value {
  max-width: 36ch;
  margin: 0 auto;
}

.footer__logo {
  height: 70px;
  width: auto;
  opacity: 0.9;
}

.footer__nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 24, 20, 0.55);
  transition: color 0.3s;
}

.footer__nav a:hover { color: var(--gold-dark); }

.footer__copy {
  font-size: 0.7rem;
  color: rgba(26, 24, 20, 0.4);
  letter-spacing: 0.05em;
}

/* ── Mobile Menu Toggle (hidden on desktop) ── */
.header__menu-toggle { display: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  :root { --header-h: 96px; }

  .header {
    padding: 0 1.25rem;
    column-gap: 1rem;
    grid-template-columns: 1fr auto 1fr;
  }

  .header__nav--left { display: none; }

  .header__nav--right a { display: none; }

  .header__nav--right {
    gap: 1rem;
  }

  .lang-switcher__btn {
    font-size: 0.6rem;
  }

  .header__logo img { height: 83px; }

  .hero__content {
    top: calc(var(--header-h) + 1rem);
    bottom: auto;
    left: 1.5rem;
    max-width: calc(100% - 3rem);
    color: #000000;
  }

  .hero__title,
  .hero__info {
    transform: translate3d(0, 20px, -120px) scale(1.08);
  }

  @keyframes heroDepthIn {
    0% {
      opacity: 0;
      transform: translate3d(0, 24px, -140px) scale(1.1);
    }
    100% {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 1rem;
    color: #000000;
  }

  .hero__desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #000000;
  }

  .hero__controls { bottom: 2rem; gap: 1rem; }

  .hero__arrow { display: none; }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features__item {
    padding: 0 0.5rem;
  }

  .features__item:not(:last-child)::after {
    top: auto;
    bottom: -1.25rem;
    right: 15%;
    left: 15%;
    width: auto;
    height: 1px;
  }

  .features__text {
    max-width: none;
  }

  .collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .collection {
    padding-top: 3rem;
    position: relative;
    z-index: 2;
  }

  .spotlight {
    z-index: 1;
  }

  .spotlight__slides {
    min-height: 0;
    height: auto;
  }

  .spotlight__slide {
    position: relative;
    inset: auto;
    display: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    height: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .spotlight__slide--active {
    display: grid;
  }

  .spotlight__visual {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    min-height: clamp(200px, 52vw, 380px);
    max-height: none;
  }

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

  .spotlight__content {
    padding: 2.25rem 1.5rem 1.5rem;
  }

  .spotlight__title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
    margin-bottom: 1.25rem;
  }

  .spotlight__text {
    max-width: none;
    margin-bottom: 2rem;
    font-size: 0.92rem;
  }

  .spotlight__arrow {
    display: none;
  }

  .spotlight__controls {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    justify-content: center;
    padding: 0 1.5rem 2.5rem;
    pointer-events: auto;
  }

  .product-card__body {
    padding: 1rem 0.25rem 0;
  }

  .product-card__name {
    font-size: 1.25rem;
  }

  .product-card__notes {
    font-size: 0.55rem;
    line-height: 1.5;
  }

  .product-card__desc {
    font-size: 0.75rem;
  }

  .product-card__image {
    background: #ffffff;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__features { grid-template-columns: 1fr; }
}