/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #1A1A1A;
  background: #FAFAF7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.8rem 1.5rem;
  background: #1A1A1A;
  color: #FAFAF7;
  font-size: 0.9rem;
  z-index: 9999;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus {
  top: 0;
}

/* ===== FOCUS VISIBLE ===== */
*:focus-visible {
  outline: 2px solid #C9A96E;
  outline-offset: 2px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
.logo {
  font-family: 'Lumanosimo', 'Lucida Handwriting', cursive;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #1A1A1A;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav--scrolled {
  background: rgba(250, 250, 247, 0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 0.8rem 5%;
}
.nav .logo { color: #FAFAF7; }
.nav--scrolled .logo { color: #1A1A1A; }
.nav__right { display: flex; align-items: center; gap: 2rem; }
.nav__links { display: flex; gap: 2rem; list-style: none; }
.nav__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
  color: rgba(250, 250, 247, 0.85);
}
.nav--scrolled .nav__links a { color: #1A1A1A; }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C9A96E;
  transition: width 0.3s;
}
.nav__links a:hover::after { width: 100%; }
.lang-toggle {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 247, 0.7);
  opacity: 0.6;
  transition: opacity 0.3s;
}
.lang-toggle:hover { opacity: 1; }
.lang-toggle .active { opacity: 1; font-weight: 600; color: #C9A96E; }
.nav--scrolled .lang-toggle { color: #1A1A1A; }
.lang-sep { margin: 0 0.2rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #FAFAF7;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav--scrolled .hamburger span { background: #1A1A1A; }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 250, 247, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
.mobile-menu .lang-toggle { font-size: 1rem; margin-top: 1rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1A1A1A;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.08;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  width: 100%;
  max-width: 1400px;
  padding: 0 3%;
}
.hero__content {
  flex: 0 0 auto;
  text-align: center;
}
.hero__logo {
  font-family: 'Lumanosimo', 'Lucida Handwriting', cursive;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #FAFAF7;
  margin-bottom: 0.2rem;
}
.hero__tagline--script {
  font-family: 'Lumanosimo', 'Lucida Handwriting', cursive;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #C9A96E;
  margin-bottom: 3.5rem;
  white-space: nowrap;
}
.hero__tagline,
.hero__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.8);
  margin-bottom: 0.4rem;
  white-space: nowrap;
}
.hero__subtitle {
  margin-top: 0.6rem;
}
.hero__image {
  flex: 1 1 0;
  max-height: 90vh;
  position: relative;
}
.hero__image img {
  -webkit-mask-image:
    linear-gradient(to right, transparent, black 20%, black 60%, transparent),
    linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, transparent, black 20%, black 60%, transparent),
    linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-composite: intersect;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250, 250, 247, 0.6);
  opacity: 0.6;
  animation: bounce 2s infinite;
}
.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 5%;
}
.section--beige { background: #F0EBE3; }
.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.section__divider {
  width: 60px;
  height: 1px;
  background: #C9A96E;
  margin: 0 auto;
}

/* ===== STORY / INTRO ===== */
.intro {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
}

/* Benefits */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.benefit {
  text-align: center;
  padding: 2rem 1.5rem;
}
.benefit__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: #C9A96E;
}
.benefit__icon svg { width: 100%; height: 100%; }
.benefit__title {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.benefit__text {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

/* ===== COLLECTION ===== */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.bag-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.4s, box-shadow 0.4s;
}
.bag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.bag-card__image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.bag-card__image img, .bag-card__image picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.bag-card:hover .bag-card__image img { transform: scale(1.03); }
.bag-card__info {
  padding: 1.2rem 1.5rem 1.5rem;
}
.bag-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.bag-card__desc {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.6;
}
.bag-card__detail {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  margin-top: 0.4rem;
}
.bag-card__meta {
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.04em;
  margin-top: 0.6rem;
  line-height: 1.5;
}
.bag-card--placeholder {
  cursor: default;
}
.bag-card--placeholder:hover {
  transform: none;
  box-shadow: none;
}
.bag-card--placeholder .bag-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0EBE3;
}
.bag-card--placeholder .bag-card__image img { object-fit: contain; padding: 2rem; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 26, 26, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  z-index: 2001;
  opacity: 0.7;
  transition: opacity 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__main {
  position: relative;
  max-width: 800px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__main img {
  max-height: 70vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  opacity: 0.6;
  transition: opacity 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 2001;
}
.lightbox__arrow:hover { opacity: 1; }
.lightbox__arrow--prev { left: -3rem; }
.lightbox__arrow--next { right: -3rem; }
.lightbox__info {
  text-align: center;
  color: #fff;
  margin-top: 1.2rem;
}
.lightbox__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.lightbox__desc {
  font-size: 0.85rem;
  opacity: 0.7;
}
.lightbox__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.lightbox__thumb {
  width: 60px;
  height: 60px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
  border: 2px solid transparent;
}
.lightbox__thumb.active { opacity: 1; border-color: #C9A96E; }
.lightbox__thumb:hover { opacity: 0.8; }
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CONTACT ===== */
.contact {
  text-align: center;
}
.contact__links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.contact__link:hover { color: #C9A96E; }
.contact__link svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.contact__tagline {
  margin-top: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #888;
}

/* ===== FOOTER ===== */
.footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem 5%;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.footer__attribution {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  opacity: 0.6;
}
.footer__attribution a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .benefits { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .nav { padding: 1.4rem 8%; }
  .nav--scrolled { padding: 0.9rem 8%; }
  .section { padding: 7rem 8%; }
}
@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .hero__inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 0;
  }
  .hero__image {
    margin-bottom: -2rem;
  }
  .hero__subtitle {
    padding-bottom: 1.5rem;
  }
  .hero__image { width: clamp(280px, 80vw, 420px); }
  .lightbox__arrow--prev { left: 0; }
  .lightbox__arrow--next { right: 0; }
  .lightbox__arrow { font-size: 1.8rem; padding: 0.5rem; }
}
