/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  background: #F2EDE5;
  color: #18160E;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== IMAGE PLACEHOLDERS ===== */
.img-ph {
  background: #D4CDBD;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #7A7565;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 46%, #C3BCB0 46%, #C3BCB0 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #C3BCB0 46%, #C3BCB0 54%, transparent 54%);
  background-size: 16px 16px;
  opacity: 0.4;
}
.img-ph > * { position: relative; z-index: 1; }
.img-ph-icon { font-size: 1.6rem; opacity: 0.4; line-height: 1; }
.img-ph-label { text-align: center; padding: 0 1.25rem; opacity: 0.75; font-family: 'Inter', sans-serif; }
.img-ph.dark { background: #22201A; }
.img-ph.dark::before {
  background-image:
    linear-gradient(45deg, transparent 46%, #2C2A22 46%, #2C2A22 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #2C2A22 46%, #2C2A22 54%, transparent 54%);
}
.img-ph.dark .img-ph-icon,
.img-ph.dark .img-ph-label { color: rgba(201,168,106,0.35); }

/* ===== NAV ===== */
nav {
  background: #3C3C1A;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: rgba(242,237,229,0.65);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.nav-links a:hover { color: #F2EDE5; }
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.nav-logo-box {
  width: 110px;
  height: 46px;
  border: 1px dashed rgba(242,237,229,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,237,229,0.35);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle { display: flex; align-items: center; gap: 0.25rem; }
.lang-btn {
  background: none;
  border: none;
  color: rgba(242,237,229,0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.2rem 0.35rem;
  transition: color 0.2s;
  text-decoration: none;
}
.lang-btn.active { color: #F2EDE5; font-weight: 500; }
.lang-sep { color: rgba(242,237,229,0.25); font-size: 0.68rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(242,237,229,0.65);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: #3C3C1A;
  padding: 1.5rem 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
  border-top: 1px solid rgba(242,237,229,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(242,237,229,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  background: #18160E;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg .img-ph {
  height: 100%;
  background: #201E16;
}
.hero-bg .img-ph::before {
  background-image:
    linear-gradient(45deg, transparent 46%, #28261C 46%, #28261C 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #28261C 46%, #28261C 54%, transparent 54%);
}
.hero-bg .img-ph-icon,
.hero-bg .img-ph-label { color: rgba(201,168,106,0.2); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(24,22,14,0.82) 0%,
    rgba(24,22,14,0.55) 55%,
    rgba(24,22,14,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 4.5rem;
  max-width: 720px;
}
.hero-tag {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C9A86A;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: #F2EDE5;
  margin-bottom: 1rem;
}
.hero-title em { font-style: italic; }
.hero-subtitle {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(242,237,229,0.55);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.hero-body {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  color: rgba(242,237,229,0.6);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s;
}
.btn-primary { background: #3C3C1A; color: #F2EDE5; }
.btn-primary:hover { background: #525228; }
.btn-outline {
  background: transparent;
  color: #F2EDE5;
  border: 1px solid rgba(242,237,229,0.35);
}
.btn-outline:hover { background: rgba(242,237,229,0.08); }
.btn-dark { background: #18160E; color: #F2EDE5; }
.btn-dark:hover { background: #2A2820; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(201,168,106,0.5), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===== SHARED ===== */
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #3C3C1A;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.section-label.gold { color: #C9A86A; }
.section-title {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
}
.section-title em { font-style: italic; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 2.5rem; }
section { padding: 7rem 0; }

/* ===== ABOUT ===== */
.about { background: #FAF7F2; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.about .section-title { margin-bottom: 1.75rem; }
.about-body { font-size: 0.975rem; color: #4A4640; line-height: 1.9; }
.about-body p + p { margin-top: 1.25rem; }
.about-img { height: 620px; }

/* ===== PROCESS ===== */
.process { background: #1E1C12; }
.process .section-label { color: #C9A86A; }
.process .section-title { color: #F2EDE5; }
.process-intro { max-width: 680px; margin-bottom: 4.5rem; }
.process-intro .section-title { margin-bottom: 1.5rem; }
.process-body {
  font-size: 0.975rem;
  color: rgba(242,237,229,0.5);
  line-height: 1.85;
}
.process-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 0.875rem;
}
.process-grid > *:nth-child(1) { grid-row: 1 / 3; min-height: 582px; }
.process-grid > *:nth-child(2),
.process-grid > *:nth-child(3),
.process-grid > *:nth-child(4),
.process-grid > *:nth-child(5) { min-height: 282px; }
.process-grid > *:nth-child(6) { grid-column: 1 / -1; min-height: 210px; }

/* ===== COLLECTION ===== */
.collection { background: #F2EDE5; }
.collection-header { margin-bottom: 0; }
.collection-header .section-title { margin-bottom: 2rem; }
.tabs {
  display: flex;
  border-bottom: 1px solid #D4CDBD;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8A856F;
  padding: 0.875rem 1.75rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.tab-btn.active { color: #18160E; border-bottom-color: #3C3C1A; }
.tab-panel { display: none; padding-top: 4rem; }
.tab-panel.active { display: block; }
.col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.col-img { height: 620px; }
.col-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}
.col-text { font-size: 0.975rem; color: #5A5548; line-height: 1.9; }
.col-text p + p { margin-top: 1.25rem; }
.drops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.drop-card { background: #FAF7F2; overflow: hidden; }
.drop-img { height: 200px; }
.drop-info { padding: 1.1rem 1rem 1.25rem; }
.drop-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: #18160E;
  margin-bottom: 0.4rem;
}
.drop-desc { font-size: 0.8rem; color: #8A856F; line-height: 1.65; }
.sub-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #3C3C1A;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.elements-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.875rem;
  margin-top: 2.5rem;
}
.el-card { text-align: center; }
.el-img { height: 130px; margin-bottom: 0.75rem; }
.el-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

/* ===== SLOW ===== */
.slow {
  background: #1E1C12;
  text-align: center;
  padding: 9rem 2.5rem;
}
.slow .section-label { color: #C9A86A; margin-bottom: 0; }
.slow-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, #C9A86A, transparent);
  margin: 1.75rem auto 2.5rem;
  opacity: 0.5;
}
.slow-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: #F2EDE5;
  max-width: 960px;
  margin: 0 auto 2.5rem;
}
.slow-text {
  font-size: 0.975rem;
  color: rgba(242,237,229,0.45);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== VIDEO ===== */
.video-section { background: #F2EDE5; }
.video-header { text-align: center; margin-bottom: 4rem; }
.video-header .section-title { margin-top: 1rem; }
.video-wrap {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  height: 560px;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  inset: 0;
  background: #18160E;
}
.video-bg::before {
  background-image:
    linear-gradient(45deg, transparent 46%, #201E14 46%, #201E14 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, #201E14 46%, #201E14 54%, transparent 54%);
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 2;
}
.video-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,106,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A86A;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
  padding-left: 4px;
}
.video-play:hover {
  background: rgba(201,168,106,0.12);
  border-color: #C9A86A;
}
.video-cap {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,168,106,0.45);
}

/* ===== WHOLESALE ===== */
.wholesale { background: #FAF7F2; }
.wholesale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}
.wholesale .section-title { margin-bottom: 1.75rem; }
.wholesale-body { font-size: 0.975rem; color: #5A5548; line-height: 1.9; margin-bottom: 2.5rem; }
.contact-list { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.875rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 38px;
  height: 38px;
  background: #E8E3D8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-text { font-size: 0.88rem; color: #4A4640; }
.contact-text a { color: #4A4640; text-decoration: none; border-bottom: 1px solid #D4CDBD; transition: border-color 0.2s; }
.contact-text a:hover { border-color: #3C3C1A; }
.contact-text span { color: #8A856F; }
.doc-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid #C8C2B6;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4A4640;
  text-decoration: none;
  transition: all 0.2s;
}
.doc-link:hover { background: #3C3C1A; color: #F2EDE5; border-color: #3C3C1A; }
.wholesale-img { height: 600px; }

/* ===== FOOTER ===== */
footer { background: #3C3C1A; padding: 4rem 0 2.5rem; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,237,229,0.12);
  margin-bottom: 2rem;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  font-style: italic;
  color: #F2EDE5;
  margin-bottom: 0.4rem;
}
.footer-tagline { font-size: 0.65rem; letter-spacing: 0.22em; color: rgba(242,237,229,0.35); text-transform: uppercase; }
.footer-col h4 { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(242,237,229,0.35); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { color: rgba(242,237,229,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #F2EDE5; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.68rem; color: rgba(242,237,229,0.3); letter-spacing: 0.08em; }
.footer-lang { display: flex; align-items: center; gap: 0.25rem; }
.footer-lang .lang-btn { color: rgba(242,237,229,0.35); }
.footer-lang .lang-btn.active { color: rgba(242,237,229,0.75); }

/* ===== ERROR PAGES ===== */
.error-page {
  min-height: 100svh;
  background: #18160E;
  color: #F2EDE5;
}
.error-nav { position: absolute; }
.error-logo { color: inherit; text-decoration: none; }
.error-logo .nav-logo-box {
  border-style: solid;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: none;
}
.error-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.error-main::before {
  content: '';
  position: absolute;
  width: min(75vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(201,168,106,0.12);
  border-radius: 50%;
}
.error-content {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  text-align: center;
}
.error-code {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(6rem, 20vw, 13rem);
  font-weight: 300;
  line-height: 0.7;
  color: rgba(201,168,106,0.12);
  margin-bottom: 2rem;
}
.error-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  margin: 0.8rem 0 1.5rem;
}
.error-text {
  max-width: 540px;
  margin: 0 auto 2.5rem;
  color: rgba(242,237,229,0.58);
  font-size: 0.95rem;
}
.error-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.error-retry {
  border: 1px solid rgba(242,237,229,0.3);
  background: transparent;
  color: #F2EDE5;
}
.error-retry:hover { border-color: #F2EDE5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-grid, .col-layout, .wholesale-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-img, .wholesale-img { height: 420px; }
  .col-img { height: 420px; }
  section { padding: 5.5rem 0; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-logo {
    position: static;
    transform: none;
    flex-shrink: 0;
  }
  .nav-logo-box {
    width: 90px;
    height: 40px;
  }
  .nav-right { gap: 0.5rem; }
  .nav-right .lang-toggle { gap: 0.1rem; }
  .nav-right .lang-btn {
    padding-inline: 0.2rem;
    letter-spacing: 0.08em;
  }
  .nav-hamburger { display: flex; }
  .container { padding: 0 1.5rem; }
  .hero-content { padding: 3.5rem 1.5rem; }
  section { padding: 4.5rem 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid > *:nth-child(1) { grid-column: 1 / -1; grid-row: auto; min-height: 280px; }
  .process-grid > *:nth-child(6) { grid-column: 1 / -1; }
  .drops-grid { grid-template-columns: 1fr; }
  .elements-grid { grid-template-columns: repeat(3, 1fr); }
  .video-wrap { height: 280px; }
  .slow { padding: 6rem 1.5rem; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  nav { padding-inline: 1rem; }
  .nav-logo-box { width: 80px; }
  .hero-title { font-size: clamp(3rem, 13vw, 4.5rem); }
  .elements-grid { grid-template-columns: 1fr 1fr; }
}
