/* ===================================
   ROSA AUREA — Feuille de style principale
   Concept : Grimoire végétal derrière les remparts
   =================================== */

/* --- 0. Variables --- */
:root {
  --rose: #8B2252;
  --rose-light: #C76B8F;
  --rose-pale: #F0D4E0;
  --gold: #C4A35A;
  --gold-light: #D4B97A;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --vert: #2D4A3E;
  --vert-light: #3D6A56;
  --noir: #1A1A1A;
  --blanc: #FEFCF9;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --container: 1200px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

/* --- 1. Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--noir);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--rose);
  color: var(--blanc);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  z-index: 9999;
  font-size: 0.85rem;
  transition: top 0.3s;
}
.skip-link:focus { top: 1rem; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* --- 2. Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--rose); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* --- 3. Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--scale { transform: scale(0.92); opacity: 0; }
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* --- Focus --- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  transition: background 0.5s, box-shadow 0.5s;
}
.nav.is-scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--blanc);
  transition: color 0.5s;
}
.nav.is-scrolled .nav__logo { color: var(--rose); }

.nav__center {
  display: flex;
  gap: 2.5rem;
}
.nav__center a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav__center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav__center a:hover::after,
.nav__center a:focus-visible::after { width: 100%; }
.nav.is-scrolled .nav__center a { color: var(--noir); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav__cta {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.4s, color 0.4s, border-color 0.4s, transform 0.3s, box-shadow 0.4s;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 163, 90, 0.25);
}
.nav.is-scrolled .nav__cta {
  border-color: var(--rose);
  color: var(--rose);
}
.nav.is-scrolled .nav__cta:hover {
  background: var(--rose);
  color: var(--blanc);
  box-shadow: 0 6px 24px rgba(139, 34, 82, 0.25);
}
.nav__social {
  display: flex;
  gap: 0.4rem;
}
.nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s, background 0.3s;
}
.nav__social a:hover {
  background: rgba(196, 163, 90, 0.15);
  color: var(--gold);
}
.nav.is-scrolled .nav__social a { color: var(--noir); }
.nav__social svg { width: 17px; height: 17px; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 2px 0;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--blanc);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s, background 0.5s;
  transform-origin: center;
}
.nav.is-scrolled .nav__burger span { background: var(--noir); }
.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4.5px); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4.5px); }

/* Mobile nav */
.nav__mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  box-shadow: -10px 0 50px rgba(0,0,0,0.12);
  z-index: 999;
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--noir);
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--rose); }
.nav__mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.7rem 2rem !important;
  border: 1px solid var(--rose) !important;
  border-radius: 50px;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose) !important;
  transition: background 0.4s, color 0.4s, transform 0.3s, box-shadow 0.4s;
}
.nav__mobile-cta:hover {
  background: var(--rose);
  color: var(--blanc) !important;
  box-shadow: 0 6px 24px rgba(139, 34, 82, 0.25);
}
.nav__mobile-social {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
}
.nav__mobile-social a {
  border: none;
  font-size: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-dark);
  color: var(--noir);
}
.nav__mobile-social svg { width: 18px; height: 18px; }
.nav__overlay-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav__overlay-bg.is-open { opacity: 1; visibility: visible; }

/* Nav legal page override */
.page-legal .nav {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.06);
}
.page-legal .nav__logo { color: var(--rose); }
.page-legal .nav__center a { color: var(--noir); }
.page-legal .nav__social a { color: var(--noir); }
.page-legal .nav__burger span { background: var(--noir); }

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--vert);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45,74,62,0.78) 0%, rgba(26,48,40,0.85) 50%, rgba(21,35,29,0.9) 100%),
              url('../assets/photo16.jpg') center/cover no-repeat;
}
.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 256px 256px;
}
.hero__rose-deco {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  max-width: 550px;
  opacity: 0.06;
  pointer-events: none;
  color: var(--gold);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--blanc);
  padding: 0 1.5rem;
}
.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.3s forwards;
}
.hero__title {
  margin: 0.8rem 0 0.4rem;
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--blanc);
  opacity: 0;
  animation: heroReveal 1s var(--ease-out) 0.5s forwards;
}
.hero__line {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0.8rem auto 1rem;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.7s forwards;
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.8s forwards;
}
.hero__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin: 0.5rem 0 2rem;
  letter-spacing: 0.06em;
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 0.95s forwards;
}
.hero__cta {
  opacity: 0;
  animation: heroReveal 0.8s var(--ease-out) 1.1s forwards;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  opacity: 0;
  animation: heroReveal 0.6s var(--ease-out) 1.6s forwards;
}
.hero__scroll svg {
  width: 22px;
  height: 22px;
  animation: heroBounce 2.5s var(--ease-smooth) infinite 2s;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===================================
   CTA BUTTON
   =================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 0.4s, color 0.4s, transform 0.3s, box-shadow 0.4s;
}
.cta-btn:hover {
  background: var(--gold);
  color: var(--noir);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 163, 90, 0.25);
}
.cta-btn:active { transform: translateY(0); box-shadow: none; }
.cta-btn--filled {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--blanc);
}
.cta-btn--filled:hover {
  background: var(--rose-light);
  border-color: var(--rose-light);
  color: var(--blanc);
  box-shadow: 0 6px 24px rgba(139, 34, 82, 0.25);
}
.cta-btn--dark {
  border-color: var(--rose);
  color: var(--rose);
}
.cta-btn--dark:hover {
  background: var(--rose);
  color: var(--blanc);
}

/* ===================================
   STORY SECTION
   =================================== */
.story {
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.story__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.story__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cream-dark), var(--rose-pale));
  transform: translateY(-1.5rem);
}
.story__visual-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.story__visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.story__visual:hover .story__visual-inner img {
  transform: scale(1.04);
}
.story__text { padding-right: clamp(0rem, 3vw, 2rem); }
.story__text h2 { margin-bottom: 1.5rem; }
.story__text p {
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  color: rgba(26,26,26,0.72);
  margin-bottom: 1rem;
}

/* ===================================
   TREASURES SECTION
   =================================== */
.treasures {
  padding: var(--section-pad) 0;
  background: var(--cream-dark);
}
.treasures__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.treasures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px) auto;
  gap: 1.5rem;
}
.treasure-card {
  position: relative;
  background: rgba(254,252,249,0.85);
  border: 1px solid rgba(196,163,90,0.12);
  border-radius: 14px;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.treasure-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(196,163,90,0.1),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.treasure-card:hover::before { opacity: 1; }
.treasure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(139,34,82,0.07);
}

/* Grid placement */
.treasure-card:nth-child(1) { grid-row: span 2; }
.treasure-card:nth-child(6) { grid-column: 1 / -1; }

/* Card 6: horizontal layout (image left, text right) */
.treasure-card:nth-child(6).treasure-card--featured {
  flex-direction: row;
  height: 260px;
}
.treasure-card:nth-child(6) .treasure-card__img {
  width: 35%;
  flex: none;
  height: 100%;
}
.treasure-card:nth-child(6) .treasure-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treasure-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.treasure-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--noir);
}
.treasure-card__desc {
  font-size: 0.82rem;
  color: rgba(26,26,26,0.58);
  line-height: 1.6;
}

/* Featured treasure cards with images */
.treasure-card--featured {
  padding: 0;
}
.treasure-card__img {
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.treasure-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.treasure-card--featured:hover .treasure-card__img img {
  transform: scale(1.06);
}
.treasure-card__body {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}
.treasure-card__body .treasure-card__icon {
  margin-bottom: 0.6rem;
}

/* ===================================
   PARALLAX IMAGE BREAK
   =================================== */
.parallax-break {
  height: clamp(280px, 35vh, 450px);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.parallax-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--cream-dark) 0%,
    rgba(232,223,208,0.2) 20%,
    rgba(45,74,62,0.15) 80%,
    var(--vert) 100%
  );
  pointer-events: none;
}
.parallax-break__quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: var(--blanc);
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.parallax-break__quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5;
}

/* ===================================
   RITUAL / MORTAR SECTION
   =================================== */
.ritual {
  padding: var(--section-pad) 0;
  background: var(--vert);
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}
.ritual__bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 256px 256px;
}
.ritual__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.ritual__header h2 { color: var(--gold-light); }
.ritual__header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.8rem;
}
.ritual__workspace {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.ritual__ingredients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.ingredient {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid rgba(196,163,90,0.25);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  cursor: grab;
  transition: transform 0.3s, border-color 0.3s, background 0.3s, opacity 0.3s;
  user-select: none;
  -webkit-user-select: none;
  min-width: 90px;
}
.ingredient:hover {
  border-color: var(--gold);
  background: rgba(196,163,90,0.1);
  transform: translateY(-3px);
}
.ingredient.is-selected {
  border-color: var(--gold);
  background: rgba(196,163,90,0.2);
}
.ingredient.is-used {
  opacity: 0.3;
  pointer-events: none;
  transform: scale(0.9);
}
.ingredient svg {
  width: 32px;
  height: 32px;
  color: var(--gold-light);
}
.ingredient span {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

.ritual__mortar {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ritual__mortar svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
  opacity: 0.4;
  transition: opacity 0.5s;
}
.ritual__mortar.has-items svg { opacity: 0.7; }
.ritual__mortar-zone {
  position: absolute;
  inset: 20%;
  border-radius: 50%;
  border: 2px dashed rgba(196,163,90,0.3);
  transition: border-color 0.3s, background 0.3s;
}
.ritual__mortar-zone.is-hover {
  border-color: var(--gold);
  background: rgba(196,163,90,0.1);
}
.ritual__mortar-items {
  position: absolute;
  bottom: 30%;
  display: flex;
  gap: 0.3rem;
}
.ritual__mortar-items .mini-ingredient {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  animation: popIn 0.3s var(--ease-out);
}
.ritual__particles {
  position: absolute;
  inset: -50%;
  pointer-events: none;
}

.ritual__mix-btn {
  padding: 0.8rem 2.5rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.4s;
  animation: pulse 2s infinite;
}
.ritual__mix-btn:hover {
  background: var(--gold);
  color: var(--vert);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,163,90,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(196,163,90,0); }
}

.ritual__result {
  text-align: center;
  max-width: 500px;
  animation: fadeUp 0.8s var(--ease-out);
}
.ritual__result-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.ritual__reset {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.ritual__reset:hover { color: rgba(255,255,255,0.7); }
.ritual__disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1.5rem;
}
.ritual__mobile-hint {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: -0.5rem;
}

/* Ritual decorative image */
.ritual__deco-img {
  position: absolute;
  right: -2%;
  bottom: 8%;
  width: clamp(160px, 18vw, 280px);
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0.12;
  pointer-events: none;
}
.ritual__deco-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__text h2 { margin-bottom: 1.5rem; }
.about__text p {
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  color: rgba(26,26,26,0.72);
  margin-bottom: 1rem;
}
.about__visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream-dark), #d4c4b0);
}
.about__visual-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about__visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.about__visual:hover .about__visual-inner img {
  transform: scale(1.04);
}
/* Seal */
.about__seal {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
  z-index: 2;
}
.wax-seal {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(139,34,82,0.3), inset 0 2px 6px rgba(255,255,255,0.15);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.wax-seal::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(
    circle at var(--sx, 50%) var(--sy, 50%),
    rgba(255,255,255,0.2),
    transparent 60%
  );
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.wax-seal:hover::after { opacity: 1; }
.wax-seal:hover {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 30px rgba(139,34,82,0.4);
}
.wax-seal__text {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blanc);
  text-align: center;
  line-height: 1.3;
}

/* ===================================
   VOICES SECTION
   =================================== */
.voices {
  padding: var(--section-pad) 0;
  background: var(--cream-dark);
}
.voices__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.voice-card {
  background: var(--blanc);
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition: transform 0.4s var(--ease-out);
}
.voice-card:hover { transform: translateY(-3px); }
.voice-card__quote {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-style: italic;
  color: var(--noir);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.voice-card__quote::before {
  content: '\201C';
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}
.voice-card__source {
  font-size: 0.75rem;
  color: rgba(26,26,26,0.45);
  letter-spacing: 0.03em;
}
.voice-card--todo {
  border: 2px dashed var(--cream-dark);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.voice-card--todo p {
  font-size: 0.85rem;
  color: rgba(26,26,26,0.4);
  font-style: italic;
}

/* ===================================
   INFO SECTION
   =================================== */
.info {
  padding: var(--section-pad) 0;
}
.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.info__block h2 { margin-bottom: 1.5rem; }
.info__address {
  font-size: 0.92rem;
  color: rgba(26,26,26,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.info__address strong {
  color: var(--noir);
  font-weight: 500;
}
.info__emails {
  margin-bottom: 1.5rem;
}
.info__emails p {
  font-size: 0.85rem;
  color: rgba(26,26,26,0.65);
  margin-bottom: 0.3rem;
}
.info__emails a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.info__emails a:hover { color: var(--rose-light); }

.info__hours h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--rose);
  margin-bottom: 1rem;
}
.hours-table {
  width: 100%;
  font-size: 0.88rem;
}
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table td {
  padding: 0.65rem 0;
  vertical-align: top;
}
.hours-table td:first-child {
  font-weight: 500;
  color: var(--noir);
  width: 45%;
}
.hours-table td:last-child {
  color: rgba(26,26,26,0.6);
}
.hours-table .is-closed td:last-child { color: rgba(26,26,26,0.35); }
.hours-table .is-special td:last-child { color: var(--gold); font-weight: 500; }

.info__cta-row {
  margin-top: 2rem;
}

/* ===================================
   MAP SECTION
   =================================== */
.map-section {
  padding: 0 0 var(--section-pad);
}
.map-section__box {
  background: var(--blanc);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.map-section__header {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.map-section__header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--noir);
}
.map-section__embed {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--noir);
  color: rgba(255,255,255,0.5);
  padding: clamp(3rem, 5vw, 4.5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.footer__brand .footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer__brand p {
  font-size: 0.78rem;
  line-height: 1.6;
}
.footer__links {
  text-align: center;
}
.footer__links a {
  display: block;
  font-size: 0.8rem;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold); }
.footer__social-col {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
}
.footer__social-col a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.3s, color 0.3s;
}
.footer__social-col a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__social-col svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
}
.footer__health {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}

/* Easter egg cocoon */
.footer__cocoon {
  width: 18px;
  height: 18px;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  color: rgba(255,255,255,0.4);
}
.footer__cocoon:hover {
  opacity: 0.5;
  transform: scale(1.2);
}

/* Secret mode */
.secret-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(45, 74, 62, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--blanc);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s, visibility 0.8s;
  cursor: pointer;
}
.secret-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.secret-overlay__content {
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}
.secret-overlay__rose {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--gold);
  animation: spinSlow 8s linear infinite;
}
.secret-overlay__text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--gold-light);
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.secret-overlay__hint {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===================================
   PHONE OVERLAY
   =================================== */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(26,26,26,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.overlay__card {
  position: relative;
  background: var(--blanc);
  border-radius: 20px;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s var(--ease-out);
}
.overlay__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(26,26,26,0.35);
  transition: color 0.3s, background 0.3s;
}
.overlay__close svg {
  width: 18px;
  height: 18px;
}
.overlay__close:hover {
  color: var(--noir);
  background: rgba(26,26,26,0.06);
}
.overlay.is-open .overlay__card {
  transform: scale(1) translateY(0);
}
.overlay__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.overlay__phone {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--noir);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.overlay__actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.overlay__copy {
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--rose);
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  transition: all 0.3s;
}
.overlay__copy:hover {
  background: var(--rose);
  color: var(--blanc);
}
.overlay__copy.is-copied {
  background: var(--vert);
  border-color: var(--vert);
  color: var(--blanc);
}
.overlay__call {
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--vert);
  border-radius: 50px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vert);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.overlay__call:hover {
  background: var(--vert);
  color: var(--blanc);
}

/* ===================================
   SILK THREAD SVG
   =================================== */
.silk-thread {
  position: fixed;
  top: 0;
  right: 5%;
  width: 60px;
  height: 100vh;
  height: 100dvh;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s;
}
.silk-thread.is-visible { opacity: 1; }
.silk-thread__path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.8;
  opacity: 0.25;
  stroke-linecap: round;
}
.silk-thread__rose {
  opacity: 0;
  transform-origin: center;
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
.silk-thread__rose.is-bloomed {
  opacity: 0.35;
  transform: scale(1);
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-page {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: var(--section-pad);
  min-height: 100vh;
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--rose);
  margin-bottom: 0.5rem;
}
.legal-page__updated {
  font-size: 0.78rem;
  color: rgba(26,26,26,0.4);
  margin-bottom: 2.5rem;
}
.legal-page h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  color: var(--noir);
  margin: 2.5rem 0 1rem;
}
.legal-page p,
.legal-page li {
  font-size: 0.92rem;
  color: rgba(26,26,26,0.7);
  margin-bottom: 0.8rem;
  line-height: 1.8;
}
.legal-page ul {
  padding-left: 1.2rem;
  list-style: disc;
}
.legal-page a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page .todo {
  background: #FFF3CD;
  border-left: 3px solid var(--gold);
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: #856404;
  margin: 1rem 0;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .treasures__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .treasure-card:nth-child(1) { grid-row: span 2; }
  .treasure-card:nth-child(6) { grid-column: 1 / -1; }
  .treasure-card:nth-child(6).treasure-card--featured { height: 220px; }
}

@media (max-width: 768px) {
  .nav__center { display: none; }
  .nav__social { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { display: flex; }

  .story__grid {
    grid-template-columns: 1fr;
  }
  .story__visual {
    transform: none;
    max-height: 350px;
  }

  .treasures__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .treasure-card:nth-child(n) {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .treasure-card--featured { max-height: 400px; }
  .treasure-card__img { height: 200px; flex: none !important; }
  .treasure-card:nth-child(6).treasure-card--featured {
    flex-direction: column;
    height: auto;
  }
  .treasure-card:nth-child(6) .treasure-card__img {
    width: 100%;
    height: 200px;
    flex: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__visual { order: -1; max-height: 300px; }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__links { text-align: center; }
  .footer__social-col { justify-content: center; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .silk-thread { display: none; }

  .map-section__header { flex-direction: column; text-align: center; }

  .ritual__deco-img { display: none; }
  .parallax-break { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: 0.06em; }
  .ingredient { min-width: 75px; padding: 0.75rem; }
  .ingredient svg { width: 26px; height: 26px; }
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .silk-thread { display: none; }
  .hero__scroll svg { animation: none; }
}

/* ===================================
   PRINT
   =================================== */
@media print {
  .nav, .overlay, .silk-thread, .hero__scroll, .ritual, .secret-overlay { display: none; }
  .hero { min-height: auto; background: white; color: black; padding: 2rem 0; }
  .hero__bg, .hero__texture, .hero__rose-deco { display: none; }
  .hero__content { color: black; }
  .hero__label, .hero__subtitle { color: #666; }
  body { background: white; }
}
