:root {
  --bg: #f6efe6;
  --paper: #fffaf3;
  --ink: #231913;
  --muted: #7a6a5c;
  --gold: #c59b5d;
  --brown: #5c3b28;
  --dark: #100b08;
  --shadow: 0 24px 70px rgba(35, 25, 19, 0.15);
  --radius: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff8ed, var(--bg) 42%, #ead9c6);
  overflow-x: hidden;
}
img, video { width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,155,93,0.24), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 28px));
  height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,250,243,0.72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(35,25,19,0.08);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.brand img { width: 38px; height: 38px; object-fit: contain; border-radius: 50%; }
.nav-menu { display: flex; gap: 28px; font-size: 0.88rem; font-weight: 500; color: var(--brown); }
.nav-menu a { position: relative; }
.nav-menu a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: 0.3s; }
.nav-menu a:hover::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 26px; height: 2px; background: var(--brown); }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 140px 8% 80px;
  color: #fffaf3;
  overflow: hidden;
}
.hero-video, .hero-image-fallback, .hero-overlay { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-video { z-index: -2; background: linear-gradient(135deg, #22140d, #7e5435); }
.hero-image-fallback {
  z-index: -3;
  background:
    linear-gradient(135deg, rgba(34,20,13,0.36), rgba(126,84,53,0.4)),
    url("../assets/media/IMG_3426.jpg") center / cover no-repeat,
    linear-gradient(135deg, #22140d, #7e5435);
}
.hero-overlay { z-index: -1; background: linear-gradient(90deg, rgba(16,11,8,0.86), rgba(16,11,8,0.42), rgba(16,11,8,0.78)); }
.hero-content { max-width: 720px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; font-weight: 700; color: var(--gold); margin-bottom: 18px; }
.eyebrow.dark { color: var(--brown); }
h1, h2 { font-family: 'Cormorant Garamond', serif; line-height: 0.95; font-weight: 700; }
h1 { font-size: clamp(3.5rem, 9vw, 8.5rem); max-width: 900px; }
h2 { font-size: clamp(2.3rem, 5vw, 5rem); }
h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; }
.hero-text { max-width: 530px; margin: 28px 0; color: rgba(255,250,243,0.82); font-size: 1.08rem; line-height: 1.8; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { padding: 15px 24px; border-radius: 999px; font-weight: 700; font-size: 0.9rem; transition: 0.35s; }
.btn.primary { background: var(--gold); color: var(--dark); }
.btn.secondary { border: 1px solid rgba(255,250,243,0.45); color: #fffaf3; }
.btn.primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(197,155,93,0.35); }
.btn.secondary:hover { background: rgba(255,250,243,0.12); }
.btn.light.secondary { border-color: rgba(255,250,243,0.45); }

.floating-card {
  position: absolute;
  right: 8%;
  bottom: 9%;
  width: 230px;
  padding: 24px;
  background: rgba(255,250,243,0.13);
  border: 1px solid rgba(255,250,243,0.25);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.floating-card span, .floating-card small { color: rgba(255,250,243,0.7); }
.floating-card strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; margin: 8px 0; }

.section { padding: 120px 8%; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.section-text p:not(.eyebrow), .video-text p:not(.eyebrow) { color: var(--muted); line-height: 1.9; margin-top: 20px; max-width: 620px; }
.image-composition { position: relative; min-height: 560px; }
.photo { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #d9c3aa; }
.photo img { height: 100%; object-fit: cover; transition: 0.6s; }
.photo:hover img, .product-card:hover img { transform: scale(1.06); }
.photo-main { height: 520px; width: 78%; margin-left: auto; }
.photo-small { position: absolute; left: 0; bottom: 0; width: 45%; height: 280px; border: 10px solid var(--bg); }

.collection-section { background: rgba(255,250,243,0.58); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.7); }
.product-image { height: 380px; overflow: hidden; background: #dcc7ad; }
.product-image img { height: 100%; object-fit: cover; transition: 0.6s; }
.product-info { padding: 28px; }
.product-info span { color: var(--gold); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; }
.product-info p { color: var(--muted); line-height: 1.7; margin-top: 10px; }

.quote-section { padding: 130px 8%; background: linear-gradient(135deg, #130d09, #5c3b28); color: #fffaf3; text-align: center; }
.quote-section p { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 5rem); line-height: 1.08; max-width: 960px; margin: auto; }

.ritual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ritual-item { padding: 34px; background: rgba(255,250,243,0.7); border: 1px solid rgba(255,255,255,0.8); border-radius: var(--radius); }
.ritual-item strong { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.2em; }
.ritual-item p { color: var(--muted); line-height: 1.7; margin-top: 10px; }

.video-section { padding: 70px 8% 120px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 54px; align-items: center; }
.video-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #1a100b; }
.video-box video { aspect-ratio: 16 / 10; object-fit: cover; }

.media-error {
  opacity: 0;
}

.photo:has(.media-error),
.product-image:has(.media-error),
.video-box:has(.media-error) {
  background:
    linear-gradient(135deg, rgba(35,25,19,0.15), rgba(197,155,93,0.2)),
    #d9c3aa;
}

.contact-section { background: radial-gradient(circle at top, rgba(197,155,93,0.2), transparent 40%), #130d09; }
.contact-card { max-width: 980px; margin: auto; text-align: center; padding: 80px 40px; color: #fffaf3; border-radius: 40px; border: 1px solid rgba(255,250,243,0.18); background: rgba(255,250,243,0.06); backdrop-filter: blur(15px); }
.contact-card p { color: rgba(255,250,243,0.75); margin: 22px auto; max-width: 560px; line-height: 1.8; }
.contact-actions { justify-content: center; }
.footer { padding: 26px 8%; display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 0.88rem; background: #fffaf3; }

.reveal { opacity: 0; transform: translateY(28px); transition: 0.85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 84px;
    right: 0;
    width: 100%;
    padding: 24px;
    background: rgba(255,250,243,0.96);
    border-radius: 28px;
    flex-direction: column;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .split-section, .cards-grid, .ritual-grid, .video-section { grid-template-columns: 1fr; }
  .floating-card { position: relative; right: auto; bottom: auto; margin-top: 40px; }
  .hero { align-items: flex-end; flex-direction: column; justify-content: center; }
  .image-composition { min-height: 460px; }
  .photo-main { width: 88%; height: 420px; }
  .photo-small { height: 240px; }
  .footer { flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header { height: 64px; top: 10px; }
  .brand span { font-size: 0.9rem; }
  .section { padding: 82px 6%; }
  .hero { padding: 120px 6% 60px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { text-align: center; }
  .image-composition { min-height: auto; display: grid; gap: 18px; }
  .photo-main, .photo-small { position: static; width: 100%; height: auto; aspect-ratio: 4 / 5; border: 0; }
  .product-image { height: 300px; }
  .video-box video { aspect-ratio: 4 / 5; }
  .contact-card { padding: 54px 24px; }
}
