/* =========================================================
   BORA HEALTHY — CSS Principal
   Stack : vanilla CSS, OKLCH, CSS custom properties, mobile-first
   ========================================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: oklch(20% 0.02 200);
  background-color: oklch(97% 0.01 130);
  overflow-x: hidden;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --color-primary:      oklch(65% 0.18 160);
  --color-primary-dark: oklch(52% 0.18 160);
  --color-secondary:    oklch(72% 0.17 220);
  --color-accent:       oklch(75% 0.20 55);
  --color-dark:         oklch(20% 0.02 200);
  --color-dark-2:       oklch(15% 0.02 200);
  --color-light:        oklch(97% 0.01 130);
  --color-surface:      oklch(100% 0 0);
  --color-error:        oklch(60% 0.18 25);
  --color-text:         oklch(25% 0.02 200);
  --color-text-muted:   oklch(50% 0.02 200);

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px oklch(0% 0 0 / 0.08), 0 1px 2px oklch(0% 0 0 / 0.06);
  --shadow-md: 0 4px 16px oklch(0% 0 0 / 0.10), 0 2px 6px oklch(0% 0 0 / 0.07);
  --shadow-lg: 0 12px 40px oklch(0% 0 0 / 0.14), 0 4px 12px oklch(0% 0 0 / 0.08);

  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 72px;
  --container-max: 1200px;
  --section-pad: clamp(4rem, 8vw, 7rem) 0;
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

.section-title.light {
  color: white;
}

.section-title.center {
  text-align: center;
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
}

.section-sub.light {
  color: oklch(90% 0.02 200);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-primary);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-badge.badge-light {
  background: oklch(100% 0 0 / 0.15);
  color: white;
  border: 1px solid oklch(100% 0 0 / 0.3);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: 0 6px 20px oklch(65% 0.18 160 / 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: oklch(100% 0 0 / 0.15);
  color: white;
  border-color: oklch(100% 0 0 / 0.4);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: oklch(100% 0 0 / 0.25);
  border-color: white;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

.btn-white {
  background: white;
  color: var(--color-dark);
  border-color: white;
}

.btn-white:hover {
  background: oklch(95% 0.01 130);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
  min-height: 56px;
}

.btn-small {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  min-height: 40px;
}

/* ===== LOGO ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: 'Pacifico', cursive;
  font-size: 1.4rem;
  color: var(--color-dark);
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

.logo-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-leaf {
  flex-shrink: 0;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: oklch(100% 0 0 / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(0% 0 0 / 0.06);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--color-primary);
  background: oklch(65% 0.18 160 / 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-toggle {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background var(--transition);
  min-height: 36px;
  min-width: 44px;
}

.lang-toggle:hover {
  background: var(--color-primary-dark);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.burger:hover {
  background: oklch(0% 0 0 / 0.05);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 768px) {
  .burger {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem) 2rem;
  border-bottom: 1px solid oklch(0% 0 0 / 0.06);
  box-shadow: var(--shadow-md);
  transform: translateY(-110%);
  transition: transform var(--transition-slow);
  z-index: 99;
}

.mobile-menu[aria-hidden="false"] {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid oklch(0% 0 0 / 0.06);
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--color-primary);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg source {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(15% 0.02 200 / 0.6) 0%,
    oklch(15% 0.02 200 / 0.4) 40%,
    oklch(10% 0.02 200 / 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) clamp(1rem, 6vw, 3rem) 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: white;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: white;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px oklch(0% 0 0 / 0.3);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: oklch(92% 0.02 200);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: white;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: oklch(80% 0.02 200);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: oklch(100% 0 0 / 0.25);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== SOLD OUT BANNER ===== */
.soldout-banner {
  background: var(--color-accent);
  color: var(--color-dark);
  padding: 0.9rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  text-align: center;
  flex-wrap: wrap;
}

/* ===== CONCEPT ===== */
.concept {
  background: var(--color-surface);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .concept-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.concept-body {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.concept-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: oklch(75% 0.20 55 / 0.12);
  color: oklch(55% 0.18 55);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid oklch(75% 0.20 55 / 0.25);
}

.concept-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.concept-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.concept-image:hover img {
  transform: scale(1.03);
}

.image-badge-float {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: white;
  color: var(--color-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

/* USP Grid */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  list-style: none;
}

@media (min-width: 768px) {
  .usp-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.usp-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid oklch(0% 0 0 / 0.06);
}

.usp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.usp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

.usp-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.usp-body {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== MENU ===== */
.menu-section {
  background: var(--color-dark);
}

.section-dark {
  background: var(--color-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.menu-card {
  background: oklch(100% 0 0 / 0.06);
  border: 1px solid oklch(100% 0 0 / 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px oklch(0% 0 0 / 0.3);
}

.menu-card--star {
  background: oklch(65% 0.18 160 / 0.15);
  border-color: var(--color-primary);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-primary);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.5rem;
}

.menu-desc {
  font-size: 0.875rem;
  color: oklch(75% 0.02 200);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-price {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1rem;
}

.price-usd {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Customize Block */
.customize-block {
  background: oklch(100% 0 0 / 0.05);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.customize-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

.customize-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .customize-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.customize-col h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.col-emoji {
  font-size: 1rem;
}

.customize-col ul {
  list-style: none;
}

.customize-col li {
  font-size: 0.9rem;
  color: oklch(80% 0.02 200);
  padding: 0.35rem 0;
  border-bottom: 1px solid oklch(100% 0 0 / 0.06);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.star-badge {
  color: var(--color-accent);
  font-size: 0.8rem;
}

.customize-note {
  font-size: 0.8rem;
  color: oklch(55% 0.02 200);
  text-align: center;
  font-style: italic;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--color-light);
}

.rating-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.rating-stars {
  color: var(--color-accent);
  font-size: 1.3rem;
  letter-spacing: -0.05em;
}

.rating-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  font-family: 'Playfair Display', serif;
}

.rating-max {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.rating-source {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding: 0.2rem 0.7rem;
  background: oklch(0% 0 0 / 0.06);
  border-radius: var(--radius-full);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(0% 0 0 / 0.05);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-card--featured {
  border-color: var(--color-primary);
  border-width: 2px;
}

.review-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.review-card blockquote {
  flex: 1;
}

.review-card p {
  font-size: 0.975rem;
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.reviews-cta {
  text-align: center;
}

/* ===== SOLD OUT SECTION ===== */
.soldout-section {
  background: linear-gradient(135deg, oklch(75% 0.20 55 / 0.08), oklch(65% 0.18 160 / 0.08));
}

.soldout-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: white;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  border: 2px solid oklch(75% 0.20 55 / 0.2);
}

.soldout-icon {
  margin-bottom: 1.5rem;
}

.soldout-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.soldout-body {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.soldout-badge-big {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.65rem 2rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--color-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
  }

  .gallery-item--tall {
    grid-row: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
  min-height: 180px;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ===== LOCALISATION ===== */
.localisation-section {
  background: var(--color-light);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .loc-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(0% 0 0 / 0.05);
}

.info-block--warning {
  border-color: oklch(75% 0.20 55 / 0.3);
  background: oklch(75% 0.20 55 / 0.04);
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.info-block p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap var(--transition);
}

.info-link:hover {
  gap: 0.55rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--color-dark);
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(0% 0 0 / 0.07);
  transition: box-shadow var(--transition), transform var(--transition);
  min-height: 44px;
}

.social-link:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.loc-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-embed {
  width: 100%;
  height: 380px;
  background: var(--color-light);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-caption {
  background: var(--color-dark);
  color: oklch(80% 0.02 200);
  font-size: 0.8rem;
  padding: 0.6rem 1rem;
  text-align: center;
}

/* ===== FAQ ===== */
.faq-section {
  background: white;
}

.faq-container {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid oklch(0% 0 0 / 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid oklch(0% 0 0 / 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  margin: 0;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border: none;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  transition: background var(--transition), color var(--transition);
  min-height: 56px;
}

.faq-trigger:hover {
  background: var(--color-light);
  color: var(--color-primary);
}

.faq-trigger[aria-expanded="true"] {
  color: var(--color-primary);
  background: oklch(65% 0.18 160 / 0.05);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-a {
  padding: 0 1.5rem 1.25rem;
  background: oklch(65% 0.18 160 / 0.03);
}

.faq-a p {
  font-size: 0.975rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ===== CTA FINAL ===== */
.cta-final {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8rem) 1rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px oklch(0% 0 0 / 0.4);
}

.cta-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: oklch(90% 0.02 200);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-dark-2);
  color: oklch(70% 0.02 200);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

.footer-tagline {
  font-size: 0.9rem;
  color: oklch(55% 0.02 200);
  margin-top: 0.5rem;
  font-style: italic;
}

.footer-info p {
  font-size: 0.875rem;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: oklch(100% 0 0 / 0.07);
  color: oklch(70% 0.02 200);
  transition: background var(--transition), color var(--transition);
  min-width: 44px;
  min-height: 44px;
}

.footer-links a:hover {
  background: var(--color-primary);
  color: white;
}

.footer-legal {
  border-top: 1px solid oklch(100% 0 0 / 0.07);
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}

.footer-legal p {
  font-size: 0.8rem;
  color: oklch(45% 0.02 200);
}

.footer-legal a {
  color: oklch(60% 0.02 200);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--color-primary);
}

/* ===== LEGAL PANEL ===== */
.legal-panel {
  background: oklch(12% 0.02 200);
  padding: 3rem 0;
  border-top: 1px solid oklch(100% 0 0 / 0.08);
}

.legal-panel h2 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.legal-panel p {
  font-size: 0.875rem;
  color: oklch(65% 0.02 200);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: min(600px, calc(100vw - 2rem));
  width: 100%;
  z-index: 200;
  flex-wrap: wrap;
  border: 1px solid oklch(100% 0 0 / 0.1);
}

.cookie-banner p {
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner.hidden {
  display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* Intersection Observer animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 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;
  }

  .scroll-indicator {
    animation: none;
  }
}

/* ===== DARK MODE (respect system preference) ===== */
@media (prefers-color-scheme: dark) {
  /* Bora Healthy garde une identité tropicale vibrante — pas de dark mode complet.
     On ajuste juste les contrastes les plus agressifs. */
  body {
    background-color: oklch(15% 0.02 200);
    color: oklch(88% 0.01 200);
  }

  .site-header {
    background: oklch(15% 0.02 200 / 0.95);
  }

  .nav-link, .section-title {
    color: oklch(90% 0.01 200);
  }

  .concept, .reviews-section, .faq-section, .gallery-section {
    background: oklch(18% 0.02 200);
  }

  .usp-card, .review-card, .info-block, .soldout-card {
    background: oklch(22% 0.02 200);
    border-color: oklch(100% 0 0 / 0.08);
  }

  .faq-trigger {
    background: oklch(22% 0.02 200);
    color: oklch(90% 0.01 200);
  }

  .faq-a {
    background: oklch(20% 0.02 200);
  }

  .mobile-menu {
    background: oklch(18% 0.02 200);
  }
}

/* ===== PRINT ===== */
@media print {
  .site-header, .cookie-banner, .scroll-indicator {
    display: none;
  }

  body {
    font-size: 12pt;
    color: black;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }
}
