/* =============================================================
   NAYOU CAFÉ — Single-page vitrine
   Palette inspirée du logo : terracotta profond, crème, espresso
   ============================================================= */

:root {
  --terracotta: #a54225;
  --terracotta-deep: #8a3519;
  --terracotta-soft: #c56a4a;
  --cream: #f4ead8;
  --cream-light: #faf3e4;
  --sand: #ead8b9;
  --espresso: #2b1810;
  --espresso-soft: #3d241a;
  --gold: #c89557;
  --leaf: #3f5641;

  --ink: var(--espresso);
  --bg: var(--cream-light);

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 20px -8px rgba(43, 24, 16, 0.2);
  --shadow-md: 0 20px 60px -20px rgba(43, 24, 16, 0.35);

  --container: 1200px;
  --section-py: clamp(72px, 9vw, 140px);
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}
button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 0.6em;
}
em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

/* ================= HELPERS ================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 20px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--light {
  color: var(--sand);
}

.h2 {
  font-size: clamp(34px, 5vw, 62px);
  margin-bottom: 0.4em;
}
.h2--light {
  color: var(--cream);
}
.h2--light em,
.h3--light em {
  color: var(--gold);
}
.h3 {
  font-size: clamp(26px, 3.2vw, 40px);
}
.h3--light {
  color: var(--cream);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease,
    color 0.25s ease, border-color 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terracotta);
  color: var(--cream-light);
  box-shadow: 0 10px 25px -10px rgba(165, 66, 37, 0.55);
}
.btn--primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  opacity: 1;
}
.btn--ghost {
  color: var(--espresso);
  border-color: rgba(43, 24, 16, 0.25);
}
.btn--ghost:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  opacity: 1;
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 18px 0;
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.is-scrolled {
  background: rgba(250, 243, 228, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 rgba(43, 24, 16, 0.06), 0 10px 30px -20px rgba(43, 24, 16, 0.25);
  padding: 10px 0;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.nav.is-scrolled .nav__brand { color: var(--espresso); }
.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 14px -4px rgba(43, 24, 16, 0.35);
}
.nav__brand-accent {
  font-style: italic;
  color: var(--gold);
  margin-left: 4px;
}
.nav.is-scrolled .nav__brand-accent { color: var(--terracotta); }

.nav__links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
}
.nav.is-scrolled .nav__links { color: var(--espresso); }
.nav__links a {
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--cream);
  color: var(--terracotta-deep);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.nav__cta:hover { background: var(--gold); color: var(--espresso); opacity: 1; }
.nav.is-scrolled .nav__cta {
  background: var(--terracotta);
  color: var(--cream);
}
.nav.is-scrolled .nav__cta:hover { background: var(--terracotta-deep); }

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled .nav__burger span { background: var(--espresso); }
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 24px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  padding: 24px;
  background: var(--cream-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--font-display);
  font-size: 22px;
  z-index: 39;
  border: 1px solid rgba(43, 24, 16, 0.08);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__ig {
  margin-top: 8px;
  color: var(--terracotta);
  font-style: italic;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 0 120px;
  background: radial-gradient(
      1200px 600px at 80% 20%,
      rgba(200, 149, 87, 0.35),
      transparent 60%
    ),
    linear-gradient(180deg, #a54225 0%, #8a3519 100%);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  width: 100%;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%23f4ead8' stroke-width='1'><path d='M60 0L0 60l60 60 60-60z'/><path d='M60 20L20 60l40 40 40-40z'/><path d='M60 40L40 60l20 20 20-20z'/><circle cx='60' cy='60' r='3'/></g></svg>");
  background-size: 180px 180px;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 234, 216, 0.18), transparent 60%);
  top: -400px;
  right: -300px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 640px;
  z-index: 2;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(244, 234, 216, 0.12);
  border: 1px solid rgba(244, 234, 216, 0.22);
  backdrop-filter: blur(6px);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 32px;
}
.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero__title {
  font-size: clamp(54px, 9vw, 120px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}
.hero__title em {
  color: var(--gold);
  font-weight: 300;
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 560px;
  color: rgba(244, 234, 216, 0.88);
  margin: 0 0 40px;
  line-height: 1.65;
}
.hero__lede em {
  color: var(--gold);
  font-weight: 400;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero .btn--ghost {
  color: var(--cream);
  border-color: rgba(244, 234, 216, 0.4);
}
.hero .btn--ghost:hover {
  background: var(--cream);
  color: var(--terracotta-deep);
  border-color: var(--cream);
}

.hero__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 234, 216, 0.2);
  max-width: 560px;
}
.hero__meta-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 234, 216, 0.55);
  margin-bottom: 4px;
}
.hero__meta-value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
}
.hero__meta a.hero__meta-value:hover { color: var(--gold); opacity: 1; }

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4.2;
  margin-left: auto;
  z-index: 1;
}
.hero__photo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.55),
    0 20px 40px -20px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
  z-index: 2;
}
.hero__visual-frame {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(244, 234, 216, 0.3);
  border-radius: 24px;
  transform: rotate(-2deg) translate(14px, 14px);
  z-index: 1;
}
.hero__visual-tag {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  z-index: 3;
  transform: rotate(-6deg);
  transition: transform 0.6s ease;
}
.hero__visual:hover .hero__visual-tag {
  transform: rotate(0deg) scale(1.05);
}
.hero__visual-tag img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  border-radius: 50%;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 234, 216, 0.7);
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ================= MARQUEE ================= */
.marquee {
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(244, 234, 216, 0.08);
  border-bottom: 1px solid rgba(244, 234, 216, 0.08);
}
.marquee__track {
  display: flex;
  gap: 44px;
  padding: 22px 0;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--sand);
  width: max-content;
}
.marquee__track .diamond {
  color: var(--gold);
  font-style: normal;
  font-size: 14px;
  align-self: center;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ================= SECTIONS ================= */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section--cream {
  background: var(--cream-light);
}
.section--sand {
  background: var(--sand);
  color: var(--espresso);
}
.section--terracotta {
  background: var(--terracotta);
  color: var(--cream);
  overflow: hidden;
}
.section--terracotta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23f4ead8' stroke-width='0.8'><path d='M40 0v80M0 40h80M0 0l80 80M80 0L0 80'/><circle cx='40' cy='40' r='20'/><circle cx='40' cy='40' r='10'/></g></svg>");
  background-size: 120px 120px;
  pointer-events: none;
}
.section--dark {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><g fill='none' stroke='%23c89557' stroke-width='1'><path d='M30 5l25 25-25 25L5 30z'/><path d='M30 15l15 15-15 15-15-15z'/></g></svg>");
  background-size: 90px 90px;
  pointer-events: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
}

.section__head { margin-bottom: 70px; position: relative; }
.section__head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section__head--center .eyebrow { justify-content: center; }
.section__lede {
  font-size: 18px;
  max-width: 560px;
  opacity: 0.78;
  margin: 0;
}
.section--terracotta .section__lede { color: rgba(244, 234, 216, 0.85); }
.section__head--center .section__lede { margin: 0 auto; }

.section__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s ease;
}
.section__media:hover img { transform: scale(1.03); }
.section__media-frame {
  position: absolute;
  inset: -18px;
  border: 1px solid var(--terracotta);
  border-radius: var(--radius-lg);
  pointer-events: none;
  transform: translate(18px, 18px);
  z-index: -1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(43, 24, 16, 0.12);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.8vw, 48px);
  color: var(--terracotta);
  font-weight: 400;
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-top: 8px;
}

/* ================= CARDS (origines) ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 80px;
}
.card {
  position: relative;
  background: rgba(244, 234, 216, 0.06);
  border: 1px solid rgba(244, 234, 216, 0.18);
  padding: 38px 32px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.card:hover {
  transform: translateY(-4px);
  background: rgba(244, 234, 216, 0.1);
  border-color: var(--gold);
}
.card__icon {
  width: 54px;
  height: 54px;
  color: var(--gold);
  margin-bottom: 28px;
}
.card h3 {
  font-size: 30px;
  color: var(--cream);
  margin-bottom: 6px;
}
.card__origin {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.card p {
  color: rgba(244, 234, 216, 0.82);
  margin: 0 0 22px;
  font-size: 15px;
}
.card__notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card__notes li {
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(244, 234, 216, 0.08);
  border: 1px solid rgba(244, 234, 216, 0.18);
  color: var(--sand);
}

/* ================= CEREMONY ================= */
.ceremony {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(43, 24, 16, 0.35), rgba(43, 24, 16, 0.1));
  border: 1px solid rgba(244, 234, 216, 0.15);
  overflow: hidden;
}
.ceremony__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
}
.ceremony__text p {
  color: rgba(244, 234, 216, 0.85);
  max-width: 520px;
}
.ceremony__viz {
  color: var(--gold);
  opacity: 0.9;
  justify-self: center;
  width: min(260px, 100%);
}
.ceremony__viz svg { width: 100%; height: auto; }

/* ================= MENU ================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.menu-col__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--terracotta-deep);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(43, 24, 16, 0.2);
  position: relative;
}
.menu-col__title::after {
  content: "◆";
  position: absolute;
  right: 0;
  bottom: -9px;
  background: var(--sand);
  color: var(--terracotta);
  padding: 0 6px;
  font-size: 12px;
  font-style: normal;
}
.menu-item { margin-bottom: 26px; }
.menu-item__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 4px;
}
.menu-item__head .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(43, 24, 16, 0.3);
  transform: translateY(-4px);
}
.menu-item__head .price {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}
.menu-item__desc {
  font-size: 14px;
  color: var(--espresso-soft);
  opacity: 0.82;
  margin: 0;
}

/* ================= MENU DE LA SEMAINE ================= */
.section--tight { padding: clamp(64px, 7vw, 110px) 0; }

.week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.week-day {
  position: relative;
  padding: 28px 22px 24px;
  background: #fff;
  border: 1px solid rgba(43, 24, 16, 0.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}
.week-day::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  opacity: 0.7;
}
.week-day:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--terracotta);
}
.week-day__label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted rgba(43, 24, 16, 0.2);
}
.week-day__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}
.week-day__name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.week-day__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin: 0;
  line-height: 1.15;
}
.week-day__desc {
  font-size: 14px;
  color: var(--espresso-soft);
  margin: 0;
  line-height: 1.55;
  opacity: 0.85;
}
.week-day--highlight {
  background: var(--espresso);
  border-color: var(--espresso);
}
.week-day--highlight .week-day__title { color: var(--cream); }
.week-day--highlight .week-day__desc { color: rgba(244, 234, 216, 0.82); }
.week-day--highlight .week-day__name { color: var(--gold); }
.week-day--highlight .week-day__label { border-color: rgba(244, 234, 216, 0.15); }

.week-footer {
  margin-top: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--espresso-soft);
}
.week-footer strong {
  color: var(--terracotta);
  font-weight: 500;
}
.week-footer a {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  font-style: italic;
}
.week-footer a:hover { color: var(--terracotta-deep); opacity: 1; }

/* ================= MENU BLOCKS (structurés par catégorie) ================= */
.menu-block {
  margin-bottom: clamp(44px, 5vw, 72px);
  padding-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid rgba(43, 24, 16, 0.15);
}
.menu-block:first-of-type { border-top: 0; padding-top: 0; }
.menu-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.menu-block__head h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  color: var(--terracotta-deep);
  margin: 0;
  font-weight: 500;
}
.menu-block__head h3 span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  color: var(--espresso-soft);
  opacity: 0.7;
  margin-left: 10px;
}
.menu-block__head em {
  color: var(--terracotta);
}
.menu-block__note {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin: 0;
  opacity: 0.8;
}

.menu-grid--2 { grid-template-columns: 1fr 1fr; }
.menu-grid--3 { grid-template-columns: repeat(3, 1fr); }

.menu-sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--terracotta);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px dotted rgba(43, 24, 16, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-sub__price {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--terracotta-deep);
  font-size: 16px;
}
.menu-sub__desc {
  font-size: 13px;
  color: var(--espresso-soft);
  opacity: 0.75;
  margin: 0 0 14px;
  font-style: italic;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-bottom: 1px dotted rgba(43, 24, 16, 0.15);
  font-size: 15px;
  color: var(--espresso);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--terracotta);
  font-size: 10px;
}

.menu-col--card {
  background: rgba(165, 66, 37, 0.06);
  border: 1px solid rgba(165, 66, 37, 0.18);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.menu-block--highlight {
  padding: clamp(36px, 4vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  border: 1px solid rgba(43, 24, 16, 0.1);
  border-top: 0;
  box-shadow: var(--shadow-sm);
}
.menu-block--highlight + .menu-block { border-top: 1px solid rgba(43, 24, 16, 0.15); }

.menu-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--espresso-soft);
  opacity: 0.8;
  margin-top: 48px;
  font-style: italic;
}
.menu-footnote a {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
}
.menu-footnote a:hover { color: var(--terracotta-deep); opacity: 1; }

/* ================= HOURS CARD (dans histoire) ================= */
.hours-card {
  margin-top: 40px;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: rgba(165, 66, 37, 0.06);
  border: 1px solid rgba(165, 66, 37, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.hours-card h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 14px;
  font-weight: 500;
}
.hours-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 1px dotted rgba(43, 24, 16, 0.15);
}
.hours-card li:last-child { border-bottom: 0; }
.hours-card li em {
  font-family: var(--font-display);
  color: var(--terracotta-deep);
  font-size: 16px;
  font-style: italic;
}
.hours-card p {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--espresso);
  line-height: 1.45;
}
.hours-card__link {
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.hours-card__link:hover { color: var(--terracotta-deep); opacity: 1; }

/* ================= CEREMONY LINK ================= */
.ceremony__link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.ceremony__link:hover { opacity: 1; color: var(--cream); }

/* ================= GALERIE INSTAGRAM ================= */
/* Layout en colonnes (masonry) pour supporter les hauteurs variables
   des blockquotes générés par Instagram embed.js */
.ig-grid {
  column-count: 3;
  column-gap: 20px;
}
.ig-embed {
  break-inside: avoid;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px -15px rgba(43, 24, 16, 0.25);
  border: 1px solid rgba(43, 24, 16, 0.08);
  margin-bottom: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
}
.ig-embed:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -20px rgba(43, 24, 16, 0.35);
}

/* Reset du blockquote Instagram : on laisse embed.js gérer les dimensions
   mais on neutralise ses marges/ombres qui doubleraient les nôtres */
.ig-embed .instagram-media,
.ig-embed blockquote.instagram-media {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  background: #fff !important;
  display: block !important;
}

/* Fallback visible avant que embed.js n'ait traité le blockquote */
.ig-embed .instagram-media a {
  display: block;
  padding: 60px 30px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--terracotta);
  text-decoration: none;
  line-height: 1.4;
}

/* Après traitement par embed.js, un iframe est injecté dans le blockquote */
.ig-embed iframe {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  border: 0 !important;
  display: block !important;
}

.ig-embed--cta {
  break-inside: avoid;
  display: grid;
  place-items: center;
  aspect-ratio: 9 / 14;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  color: var(--cream);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.ig-embed--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23f4ead8' stroke-width='1'><path d='M40 0v80M0 40h80'/><circle cx='40' cy='40' r='24'/></g></svg>");
  background-size: 100px 100px;
}
.ig-embed-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 30px;
  color: var(--cream);
}
.ig-embed-cta__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.15;
}
.ig-embed-cta__title em {
  color: var(--gold);
  font-weight: 400;
}
.ig-embed-cta__handle {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 234, 216, 0.75);
  padding: 8px 16px;
  border: 1px solid rgba(244, 234, 216, 0.35);
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}
.ig-embed--cta:hover .ig-embed-cta__handle {
  background: var(--cream);
  color: var(--terracotta-deep);
  border-color: var(--cream);
}

/* ================= VISITE ================= */
.visit__text .h2 { margin-bottom: 24px; }
.visit__lede { color: rgba(244, 234, 216, 0.78); max-width: 500px; margin: 0 0 40px; }

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.visit__block h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
  font-weight: 500;
}
.visit__block p {
  margin: 0;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.55;
}
.visit__block a { border-bottom: 1px solid rgba(200, 149, 87, 0.5); }
.visit__block a:hover { color: var(--gold); opacity: 1; }

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200, 149, 87, 0.25);
  height: 540px;
  background: #1a1008;
  position: relative;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(0.95);
}

/* ================= IG CTA ================= */
.ig-cta {
  background: var(--terracotta);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.ig-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23f4ead8' stroke-width='1'><path d='M40 0v80M0 40h80'/><circle cx='40' cy='40' r='24'/></g></svg>");
  background-size: 140px 140px;
}
.ig-cta__inner {
  padding: clamp(60px, 7vw, 110px) clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.ig-cta .eyebrow { color: var(--gold); }
.ig-cta .h2 { color: var(--cream); margin: 0; }
.ig-cta .h2 em { color: var(--gold); }
.ig-cta .btn--primary { background: var(--cream); color: var(--terracotta-deep); }
.ig-cta .btn--primary:hover { background: var(--gold); color: var(--espresso); }

/* ================= FOOTER ================= */
.footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; max-width: 280px; }
.footer__logo { width: 72px; height: 72px; border-radius: 14px; }
.footer__brand p { margin: 0; font-family: var(--font-display); font-size: 18px; color: var(--sand); font-style: italic; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__cols h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer__cols p { margin: 0; color: rgba(244, 234, 216, 0.78); font-size: 15px; line-height: 1.7; }
.footer__cols a { border-bottom: 1px solid rgba(200, 149, 87, 0.35); padding-bottom: 1px; }
.footer__cols a:hover { color: var(--gold); opacity: 1; }

.footer__bottom {
  border-top: 1px solid rgba(244, 234, 216, 0.08);
  padding: 24px 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
  font-size: 13px;
  color: rgba(244, 234, 216, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}
.footer__amh {
  font-family: var(--font-display);
  color: var(--gold);
  font-style: italic;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__burger { display: block; }

  .grid-2 { grid-template-columns: 1fr; }
  .section__media img { min-height: 380px; }
  .section__media-frame { inset: -10px; transform: translate(10px, 10px); }

  .hero { padding: 130px 0 90px; min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__visual {
    margin: 0 auto;
    max-width: min(320px, 75vw);
  }
  .hero__visual-tag { width: 84px; height: 84px; bottom: -22px; left: -22px; }

  .menu-grid,
  .menu-grid--2,
  .menu-grid--3 { grid-template-columns: 1fr; gap: 36px; }
  .menu-block__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hours-card { grid-template-columns: 1fr; gap: 24px; padding: 24px; }

  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .week-day { padding: 22px 18px 20px; }

  .ig-grid { column-count: 2; column-gap: 16px; }
  .ig-embed { margin-bottom: 16px; }

  .ceremony__inner { grid-template-columns: 1fr; text-align: left; }
  .ceremony__viz { order: -1; width: 160px; }

  .visit__grid { grid-template-columns: 1fr; gap: 24px; }
  .visit__map { height: 360px; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr 1fr; }

  .stats { grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
}

@media (max-width: 560px) {
  :root { --section-py: 70px; }
  .hero__title { font-size: 52px; }
  .h2 { font-size: 36px; }
  .card { padding: 30px 26px; }
  .card h3 { font-size: 26px; }
  .ig-grid { column-count: 1; }
  .ig-embed { max-width: 420px; margin: 0 auto 16px; }
  .ig-embed--cta { max-width: 420px; margin: 0 auto; }
  .footer__cols { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; text-align: left; }
  .week-grid { grid-template-columns: 1fr; }
}

/* ================= SELECTION ================= */
::selection { background: var(--terracotta); color: var(--cream); }
