/* ============================================================
   LITTLE MINOUCHE — Styles
   ============================================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Couleurs */
  --color-bg-primary:    #FFF9F4;
  --color-bg-secondary:  #F5EDE4;
  --color-accent:        #C4692A;
  --color-accent-hover:  #A8551E;
  --color-text-primary:  #3D2E1F;
  --color-text-secondary:#8B7A6B;
  --color-detail:        #7A9A6D;
  --color-star:          #E8A55A;
  --color-white:         #FFFFFF;
  --color-footer-bg:     #3D2E1F;
  --color-footer-text:   #F5EDE4;

  /* Typographies */
  --font-heading:  'Quicksand', sans-serif;
  --font-body:     'Nunito', sans-serif;
  --font-accent:   'Caveat', cursive;

  /* Tailles de texte — mobile-first (rem) */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   2rem;
  --text-3xl:   2.5rem;
  --text-4xl:   3rem;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-section: 5rem;

  /* Rayons de bordure */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-pill:  50px;
  --radius-round: 50%;

  /* Ombres */
  --shadow-sm:  0 2px 8px rgba(61, 46, 31, 0.06);
  --shadow-md:  0 4px 20px rgba(61, 46, 31, 0.08);
  --shadow-lg:  0 8px 40px rgba(61, 46, 31, 0.12);

  /* Transitions */
  --transition-fast:   0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow:   0.4s ease;

  /* Layout */
  --container-max:     1200px;
  --container-padding: 1.25rem;
  --header-height:     72px;
  --header-height-scrolled: 60px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

/* --- UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--space-section);
}

.section--alt {
  background-color: var(--color-bg-secondary);
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-secondary { color: var(--color-text-secondary); }
.font-accent { font-family: var(--font-accent); }

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background-color: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

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

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 249, 244, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
  box-shadow: none;
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 40px;
  width: auto;
  transition: height var(--transition-normal);
}

.header.scrolled .header__logo img {
  height: 34px;
}

.header__logo-fallback {
  display: none;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-text-primary);
  white-space: nowrap;
}

/* Nav desktop */
.header__nav {
  display: none;
}

.header__links {
  display: flex;
  gap: var(--space-xl);
}

.header__links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding-block: var(--space-xs);
}

.header__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-normal);
  border-radius: 1px;
}

.header__links a:hover::after,
.header__links a.active::after {
  width: 100%;
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1001;
}

.header__burger span {
  display: block;
  height: 2px;
  background-color: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
  transform-origin: center;
}

.header__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.open span:nth-child(2) {
  opacity: 0;
}

.header__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Banner */
.header__banner {
  background-color: var(--color-detail);
  color: var(--color-white);
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-xs) var(--space-md);
  letter-spacing: 0.02em;
  max-height: 32px;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.header.scrolled .header__banner {
  max-height: 0;
  padding: 0 var(--space-md);
}

/* Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__phone svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav > a {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  transition: color var(--transition-fast), opacity var(--transition-normal), transform var(--transition-normal);
  opacity: 0;
  transform: translateY(12px);
}

.mobile-nav.open > a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav > a:hover {
  color: var(--color-accent);
}

.mobile-nav__info {
  position: absolute;
  bottom: var(--space-2xl);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.mobile-nav__info a {
  color: var(--color-text-secondary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--color-accent);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 46, 31, 0.45) 0%,
    rgba(61, 46, 31, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: var(--space-3xl);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: var(--space-xs) var(--space-md);
  margin-bottom: var(--space-lg);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: var(--color-star);
  flex-shrink: 0;
}

.hero__title {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  max-width: 700px;
  margin-inline: auto;
}

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 550px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.btn--hero-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--hero-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
}

.btn--hero-secondary svg {
  display: inline-block;
}

/* Hero animations */
.hero__anim {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.6s ease forwards;
}

.hero__anim:nth-child(1) { animation-delay: 0s; }
.hero__anim:nth-child(2) { animation-delay: 0.1s; }
.hero__anim:nth-child(3) { animation-delay: 0.25s; }
.hero__anim:nth-child(4) { animation-delay: 0.4s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   DECORATIVE LEAVES
   ============================================================ */
.deco {
  position: relative;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
  color: var(--color-detail);
}

.deco svg {
  position: absolute;
  opacity: 0.18;
}

.deco--right svg {
  right: 5%;
  top: -20px;
}

.deco--left svg {
  left: 5%;
  top: -25px;
}

.deco--low svg {
  top: -15px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about__description {
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.about__cta-text {
  font-size: var(--text-xl);
  color: var(--color-accent);
}

.about__image {
  position: relative;
}

.about__image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background-color: var(--color-bg-secondary);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background-color: var(--color-bg-secondary);
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--transition-slow);
  background-color: var(--color-bg-secondary);
}

.gallery__item:hover img {
  transform: scale(1.03);
}

/* Masonry-like: every 3rd+1 item spans 2 rows */
.gallery__item:nth-child(3n + 1) {
  grid-row: span 2;
}

.gallery__item:nth-child(3n + 1) img {
  aspect-ratio: auto;
  height: 100%;
}

.gallery__footer {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl) var(--space-3xl);
}

.brands__item {
  flex: 0 0 auto;
}

.brands__item img {
  height: 48px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(30%);
  transition: all var(--transition-normal);
}

.brands__item:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.brands__fallback {
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-secondary);
  padding: var(--space-sm) var(--space-xl);
  border: 2px solid var(--color-bg-secondary);
  border-radius: var(--radius-md);
  background-color: var(--color-bg-secondary);
  white-space: nowrap;
  opacity: 0.7;
  transition: all var(--transition-normal);
}

.brands__item:hover .brands__fallback {
  opacity: 1;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  background: var(--color-bg-primary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.reviews__badge strong {
  color: var(--color-star);
}

.reviews__badge svg {
  flex-shrink: 0;
}

.reviews__count {
  font-weight: 400;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.reviews__carousel {
  position: relative;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: var(--space-xs);
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.reviews__card {
  flex: 0 0 100%;
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  scroll-snap-align: start;
}

.reviews__stars {
  color: var(--color-star);
  font-size: var(--text-xl);
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.reviews__quote p {
  font-size: var(--text-md);
  font-style: italic;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.reviews__author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  font-style: normal;
  display: block;
}

.reviews__source {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.reviews__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.reviews__arrow {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background: var(--color-bg-primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: var(--color-text-primary);
}

.reviews__arrow:hover {
  box-shadow: var(--shadow-md);
  background: var(--color-accent);
  color: var(--color-white);
}

.reviews__arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.reviews__arrow svg {
  width: 18px;
  height: 18px;
}

.reviews__dots {
  display: flex;
  gap: var(--space-sm);
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-round);
  background: var(--color-text-secondary);
  opacity: 0.3;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  padding: 0;
}

.reviews__dot.active {
  opacity: 1;
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

.reviews__leave-review {
  display: block;
  margin: var(--space-2xl) auto 0;
  width: fit-content;
}

/* ============================================================
   INFO
   ============================================================ */
.info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: var(--color-bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-detail);
}

.info__item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.info__item p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
}

.info__link {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: var(--space-xs);
}

/* Hours table */
.info__hours {
  border-collapse: collapse;
  width: 100%;
}

.info__hours td {
  padding: var(--space-xs) var(--space-md) var(--space-xs) 0;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  border-bottom: 1px solid rgba(138, 122, 107, 0.15);
}

.info__hours td:first-child {
  font-weight: 600;
  color: var(--color-text-primary);
  width: 120px;
}

.info__closed {
  color: var(--color-accent) !important;
  font-weight: 600;
}

.info__hours tr.today td {
  background-color: rgba(196, 105, 42, 0.08);
}

.info__hours tr.today td:first-child {
  border-radius: 4px 0 0 4px;
}

.info__hours tr.today td:last-child {
  border-radius: 0 4px 4px 0;
}

.info__walkin {
  font-size: var(--text-xl);
  color: var(--color-accent);
  margin-top: var(--space-md);
}

.info__map iframe {
  width: 100%;
  min-height: 350px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.footer__brand img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.footer__logo-fallback {
  display: none;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-footer-text);
  opacity: 0.9;
}

.footer__contact p {
  font-size: var(--text-sm);
  opacity: 0.8;
  line-height: 1.8;
}

.footer__contact a {
  color: var(--color-footer-text);
}

.footer__contact a:hover {
  color: var(--color-star);
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  border: 1px solid rgba(245, 237, 228, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--color-footer-text);
  stroke: var(--color-footer-text);
}

.footer__legal {
  font-size: var(--text-xs);
  opacity: 0.6;
}

.footer__credit a {
  color: var(--color-star);
  font-weight: 600;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-round);
  background-color: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: all var(--transition-normal);
}

.floating-cta.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.floating-cta:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.05);
  color: var(--color-white);
}

.floating-cta svg {
  width: 24px;
  height: 24px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(61, 46, 31, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  cursor: pointer;
}

.lightbox.open {
  opacity: 1;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  cursor: default;
}

.lightbox.open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}

.lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__arrow--prev {
  left: var(--space-lg);
}

.lightbox__arrow--next {
  right: var(--space-lg);
}

/* ============================================================
   RESPONSIVE — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
    --space-section: 6rem;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  /* Header: show nav */
  .header__nav {
    display: block;
  }

  .header__burger {
    display: none;
  }

  /* Hero */
  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__ctas {
    flex-direction: row;
    justify-content: center;
  }

  /* About */
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .about__image {
    order: 2;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  /* Brands */
  .brands__item img {
    height: 56px;
  }

  /* Reviews */
  .reviews__card {
    flex: 0 0 calc(50% - var(--space-md) / 2);
  }

  /* Info */
  .info__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
  }

  .info__map iframe {
    min-height: 100%;
    height: 100%;
  }
}

/* ============================================================
   RESPONSIVE — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --container-padding: 2.5rem;
    --space-section: 7rem;
  }

  /* Hero */
  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero__subtitle {
    font-size: var(--text-lg);
  }

  /* Reviews */
  .reviews__card {
    flex: 0 0 calc(33.333% - var(--space-lg) * 2 / 3);
  }

  /* Floating CTA hidden on desktop */
  .floating-cta {
    display: none;
  }
}

/* ============================================================
   IMAGE FALLBACKS
   ============================================================ */
/* When images fail to load, show placeholder backgrounds */
.hero__bg img[src=""],
.hero__bg img:not([src]) {
  display: none;
}

.about__image img,
.gallery__item img {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, #E8DDD3 100%);
}

.gallery__item {
  position: relative;
  min-height: 200px;
}

.gallery__item:nth-child(3n + 1) {
  min-height: 400px;
}

/* Gallery placeholder colors for variety */
.gallery__item:nth-child(1) { background: linear-gradient(135deg, #F5EDE4 0%, #E8DDD3 100%); }
.gallery__item:nth-child(2) { background: linear-gradient(135deg, #FAEEE3 0%, #EDD9C7 100%); }
.gallery__item:nth-child(3) { background: linear-gradient(135deg, #E8F0E4 0%, #D4E0CE 100%); }
.gallery__item:nth-child(4) { background: linear-gradient(135deg, #F5EDE4 0%, #E0D4C6 100%); }
.gallery__item:nth-child(5) { background: linear-gradient(135deg, #F0E8E0 0%, #E5D8CC 100%); }
.gallery__item:nth-child(6) { background: linear-gradient(135deg, #FCF0E5 0%, #EDD9C7 100%); }
.gallery__item:nth-child(7) { background: linear-gradient(135deg, #E8F0E4 0%, #D8E4D2 100%); }
.gallery__item:nth-child(8) { background: linear-gradient(135deg, #F5EDE4 0%, #E8DDD3 100%); }
.gallery__item:nth-child(9) { background: linear-gradient(135deg, #FAEEE3 0%, #E5D8CC 100%); }
