/* ============================================================
   GUYASNACK'NJUS — Styles
   Palette festive tropicale inspirée du logo
   ============================================================ */

:root {
  --orange: #F39200;
  --orange-hot: #FF6B1A;
  --orange-deep: #E65100;
  --black: #0D0D0D;
  --ink: #1A1A1A;
  --cream: #FFF8EC;
  --cream-2: #FCEFD5;
  --green: #2E7D32;
  --green-light: #66BB6A;
  --magenta: #D81B60;
  --magenta-soft: #F06292;
  --sun: #FFC107;
  --white: #ffffff;

  --font-script: 'Pacifico', cursive;
  --font-display: 'Fraunces', serif;
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 4px 12px rgba(13, 13, 13, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 13, 13, 0.12);
  --shadow-lg: 0 20px 50px rgba(13, 13, 13, 0.25);
  --shadow-orange: 0 10px 30px rgba(243, 146, 0, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --nav-h: 76px;
  --container: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

[hidden] {
  display: none !important;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: var(--orange-deep);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--orange-hot); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
}

em { font-style: italic; color: var(--orange-hot); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============================================================
   SHARED SECTION
   ============================================================ */

.section {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0;
  overflow: hidden;
}

.section--cream { background: var(--cream); }
.section--dark {
  background: linear-gradient(160deg, #141414 0%, #1f1006 100%);
  color: #f5f5f5;
}
.section--orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hot) 50%, var(--magenta) 120%);
  color: var(--white);
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 70px);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--orange-hot);
  transform: translateY(-50%);
}
.eyebrow--light { color: var(--sun); }
.eyebrow--light::before { background: var(--sun); }

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
}
.section__title--light { color: var(--white); }

.section__lead {
  margin-top: 18px;
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.7;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all .3s var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-hot) 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(243, 146, 0, 0.5);
  color: var(--white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--ink);
  color: var(--sun);
  transform: translateY(-3px);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all .35s var(--ease);
  padding: 14px 0;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  transition: color .3s var(--ease);
}

.nav__logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all .3s var(--ease);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__brand-script {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: color .3s var(--ease);
}
.nav__brand-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 3px;
  color: var(--white);
  transition: color .3s var(--ease);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  padding: 10px 16px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all .25s var(--ease);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.nav__link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.nav__link--cta {
  background: var(--orange);
  text-shadow: none;
  box-shadow: var(--shadow-orange);
  margin-left: 10px;
}
.nav__link--cta:hover {
  background: var(--orange-hot);
  color: var(--white);
  transform: translateY(-2px);
}

/* Nav scrolled state */
.nav.scrolled {
  background: rgba(255, 248, 236, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.nav.scrolled .nav__brand-script,
.nav.scrolled .nav__brand-sub,
.nav.scrolled .nav__link {
  color: var(--black);
  text-shadow: none;
}
.nav.scrolled .nav__link:hover {
  background: var(--cream-2);
}
.nav.scrolled .nav__logo {
  border-color: var(--orange);
}
.nav.scrolled .nav__link--cta {
  color: var(--white);
  background: var(--orange);
}
.nav.scrolled .nav__burger span {
  background: var(--black);
}

/* Burger */
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 110;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.nav__burger.is-open span { background: var(--black); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 20s var(--ease) infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(243, 146, 0, 0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(216, 27, 96, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.75) 100%);
}

/* Decorative leaves */
.leaf {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  animation: float 8s var(--ease) infinite alternate;
}
.leaf--1 {
  top: -40px;
  left: -60px;
  width: 260px;
  transform: rotate(-40deg);
}
.leaf--2 {
  top: 15%;
  right: -80px;
  width: 220px;
  transform: rotate(60deg);
  animation-delay: -3s;
}
.leaf--3 {
  bottom: -60px;
  left: 40%;
  width: 180px;
  transform: rotate(-20deg);
  animation-delay: -5s;
  opacity: 0.7;
}

@keyframes float {
  from { transform: translateY(0) rotate(var(--r, -40deg)); }
  to { transform: translateY(-20px) rotate(var(--r, -40deg)); }
}
.leaf--1 { --r: -40deg; }
.leaf--2 { --r: 60deg; }
.leaf--3 { --r: -20deg; }

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 100px 24px 80px;
  max-width: 1000px;
}

.hero__badge {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--sun);
  margin-bottom: 28px;
  box-shadow: var(--shadow-md);
}

.hero__title {
  margin-bottom: 24px;
  line-height: 1;
}
.hero__title-script {
  font-family: var(--font-script);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: normal;
  color: var(--white);
  text-shadow:
    0 4px 0 var(--magenta),
    0 8px 30px rgba(0, 0, 0, 0.5);
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #ffd5a3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 0 rgba(216, 27, 96, 0.6)) drop-shadow(0 8px 30px rgba(0, 0, 0, 0.4));
}
.hero__title-n { color: var(--sun); }

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 40px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollHint 1.6s infinite;
}
@keyframes scrollHint {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(14px); }
}

/* ============================================================
   ABOUT
   ============================================================ */

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

.about__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.about__media:hover img { transform: scale(1.05); }

.about__media-sticker {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 120px;
  height: 120px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: var(--shadow-md);
  transform: rotate(12deg);
  border: 5px solid var(--cream);
}
.about__media-sticker span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.about__media-sticker strong {
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.about__badges {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.about__badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--orange);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease);
}
.about__badges li:hover {
  transform: translateY(-3px) translateX(3px);
}
.about__badge-icon { font-size: 1.4rem; }

/* ============================================================
   CARTE (TABS + GRIDS)
   ============================================================ */

.bg-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  z-index: 0;
}
.bg-leaf--tl {
  top: -80px; left: -120px; width: 380px;
  transform: rotate(-30deg);
}
.bg-leaf--br {
  bottom: -100px; right: -100px; width: 320px;
  transform: rotate(150deg);
}
.bg-leaf--right {
  top: 10%;
  right: -120px;
  width: 280px;
  opacity: 0.15;
}

.section--dark .container { position: relative; z-index: 1; }
.section--orange .container { position: relative; z-index: 1; }

.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.tabs__btn {
  padding: 14px 30px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all .3s var(--ease);
}
.tabs__btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.tabs__btn.is-active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn .5s var(--ease); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.menu-card {
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}
.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.menu-card:hover img { transform: scale(1.08); }
.menu-card__body { padding: 24px 24px 28px; }
.menu-card__body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--black);
}
.menu-card__body p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.6;
}

/* Jus */
.juice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.juice-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.juice-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, var(--juice-color, var(--orange)) 0%, transparent 60%);
  opacity: 0.15;
  transition: opacity .4s var(--ease);
}
.juice-card:hover {
  transform: translateY(-6px);
  border-color: var(--juice-color, var(--orange));
}
.juice-card:hover::before { opacity: 0.35; }
.juice-card > * { position: relative; z-index: 1; }
.juice-card__icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.juice-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.juice-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.menu-note {
  margin-top: 50px;
  text-align: center;
  padding: 26px 30px;
  background: rgba(243, 146, 0, 0.12);
  border: 2px dashed rgba(243, 146, 0, 0.5);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.menu-note span { font-size: 1.5rem; }
.menu-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* ============================================================
   GALERIE
   ============================================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 0;
  cursor: zoom-in;
  background: var(--cream-2);
  transition: all .35s var(--ease);
}
.gallery__item::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(13, 13, 13, 0.55);
  opacity: 0;
  transition: opacity .3s var(--ease);
  border-radius: var(--radius-md);
}
.gallery__item:hover::after,
.gallery__item:focus-visible::after { opacity: 1; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.95);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(10px);
  animation: fadeInLB .3s var(--ease);
}
@keyframes fadeInLB {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  transition: all .25s var(--ease);
  backdrop-filter: blur(10px);
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}
.lightbox__close {
  top: 20px; right: 20px;
  font-size: 2rem;
}
.lightbox__nav--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.1); }

.lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 600;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

/* ============================================================
   AVIS
   ============================================================ */

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  margin-top: 20px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
  justify-content: center;
}
.rating-badge__stars {
  color: var(--sun);
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.rating-badge__score {
  font-weight: 700;
  font-size: 1.1rem;
}
.rating-badge__count {
  opacity: 0.9;
  font-size: 0.9rem;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel__track {
  display: flex;
  transition: transform .6s var(--ease);
}

.review {
  flex: 0 0 100%;
  padding: 45px clamp(30px, 6vw, 60px);
  background: var(--white);
  color: var(--ink);
  text-align: center;
  position: relative;
}
.review::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  font-weight: 900;
}
.review__stars {
  color: var(--sun);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}
.review blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.review cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--orange-deep);
  letter-spacing: 0.5px;
}
.review cite strong { font-weight: 700; }

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: all .25s var(--ease);
}
.carousel__btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}
.carousel__btn--prev { left: -20px; }
.carousel__btn--next { right: -20px; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.carousel__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all .25s var(--ease);
}
.carousel__dots button.is-active {
  background: var(--white);
  width: 30px;
  border-radius: var(--radius-full);
}

.avis__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 4vw, 50px);
  align-items: stretch;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-block {
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block__icon { font-size: 1.2rem; }
.info-block p, .info-block a { font-size: 1rem; line-height: 1.5; }
.info-block a { color: var(--orange-deep); font-weight: 500; }

.hours {
  width: 100%;
  margin-top: 6px;
  border-collapse: collapse;
}
.hours th, .hours td {
  text-align: left;
  padding: 7px 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--cream-2);
}
.hours th { font-weight: 600; color: var(--ink); }
.hours td { color: #555; font-variant-numeric: tabular-nums; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours__highlight td { color: var(--orange-deep); font-weight: 600; }
.hours__closed td { color: var(--magenta); font-weight: 600; font-style: italic; }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 450px;
  background: var(--cream-2);
}
.contact__map iframe { display: block; min-height: 450px; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0;
  position: relative;
}
.footer__wave {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -60px;
  background: var(--cream);
}
.footer__inner {
  padding-top: 50px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.footer__name {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
}
.footer__tag {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}
.footer__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color .2s var(--ease);
}
.footer__links a:hover { color: var(--orange); }
.footer__copy {
  font-size: 0.82rem;
  opacity: 0.6;
  text-align: right;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 960px) {
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; margin: 0 auto; }
  .contact { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer__brand { justify-content: center; }
  .footer__copy { text-align: center; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85%, 340px);
    height: 100vh;
    height: 100svh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 28px 40px;
    gap: 6px;
    transition: right .35s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav__menu.is-open { right: 0; }
  .nav__link {
    color: var(--black);
    text-shadow: none;
    padding: 14px 18px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--cream-2);
    border-radius: 0;
  }
  .nav__link:hover { background: var(--cream-2); color: var(--orange-deep); }
  .nav__link--cta {
    margin-top: 20px;
    margin-left: 0;
    color: var(--white);
    border-radius: var(--radius-full);
    text-align: center;
  }

  .nav__burger { display: flex; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .carousel__btn--prev { left: 5px; }
  .carousel__btn--next { right: 5px; }
}

@media (max-width: 500px) {
  .about__media-sticker {
    width: 90px; height: 90px;
    bottom: -15px; right: -10px;
  }
  .about__media-sticker strong { font-size: 1.5rem; }
  .about__badges { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero__ctas .btn { justify-content: center; width: 100%; }
  .section__head { text-align: center; }
  .review::before { font-size: 5rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__bg-img { animation: none; }
  .leaf { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FOCUS STATES (a11y)
   ============================================================ */

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav__link:focus-visible,
.tabs__btn:focus-visible {
  outline-offset: 4px;
}

/* Body lock when menu open */
body.no-scroll { overflow: hidden; }
