/* ============================================================
   BRAID MAKEUR — Design System Global
   Mobile-First | SEO-Optimized | Performance-First
   ============================================================ */


/* --- Variables --- */
:root {
  --bg:        #F2EDE4;
  --bg-alt:    #EAE4DA;
  --dark:      #1a1a31;
  --gold:      #D4AF37;
  --gold-dark: #B8961F;
  --accent:    #E35C2A;
  --accent-dark:#C44D22;
  --white:     #FFFFFF;
  --text:      #2d2d2d;
  --text-light:#6b6b6b;
  --text-muted:#6b6b6b;
  --border:    rgba(26,26,49,0.08);
  --shadow-sm: 0 2px 8px rgba(26,26,49,0.06);
  --shadow-md: 0 8px 24px rgba(26,26,49,0.10);
  --shadow-lg: 0 20px 48px rgba(26,26,49,0.12);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.5rem;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:     72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1280px;
  --container-pad: 1.5rem;
}

/* --- 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: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--dark);
  line-height: 1.15;
  font-feature-settings: "pnum" on, "lnum" on;
}
h1 { font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 3.5vw, 2rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
p  { font-size: clamp(0.95rem, 2vw, 1.05rem); line-height: 1.75; color: var(--text); }

.italic-gold { font-style: italic; color: var(--gold); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px)  { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

section { position: relative; z-index: 1; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(242, 237, 228, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 52px; width: auto; }

/* Desktop nav links */
.nav-links {
  list-style: none;
  align-items: center;
  gap: 0.25rem;
  margin: 0; padding: 0;
  /* Mobile: hidden off-screen via transform (not display:none so transition works) */
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.nav-links.open {
  transform: translateX(0);
  pointer-events: all;
}
@media (min-width: 1024px) {
  /* Desktop: reset to inline nav */
  .nav-links {
    position: static;
    background: transparent;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.25rem;
    overflow: visible;
    transform: none !important;
    pointer-events: all;
    transition: none;
    z-index: auto;
  }
}

.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--dark);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--accent); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a .chevron {
  font-size: 0.7rem;
  display: inline-block;
  transition: transform var(--transition);
}
.has-dropdown:hover > a .chevron { transform: rotate(180deg); }

.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown .dropdown li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  color: var(--dark);
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.has-dropdown .dropdown li a:hover { background: var(--bg); color: var(--accent); }

/* Nav CTA button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--dark);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(227, 92, 42, 0.35);
}
@media (max-width: 1023px) { .nav-cta { display: none; } }

/* Burger button */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  z-index: 1002;
}
@media (min-width: 1024px) { .nav-burger { display: none; } }
.nav-burger:hover { background: var(--bg-alt); }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,49,0.4);
  z-index: 998;
}
.nav-overlay.open { display: block; }

/* Mobile nav items styling */
@media (max-width: 1023px) {
  .nav-links > li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links > li:last-child { border-bottom: none; }
  .nav-links > li > a {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0.75rem 0;
    width: 100%;
    color: var(--white);
    justify-content: center;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a.active { color: var(--gold); }
  /* Mobile dropdown: always visible, stacked */
  .has-dropdown .dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.75rem 0;
  }
  .has-dropdown .dropdown li a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
    color: rgba(255,255,255,0.55);
    text-align: center;
    justify-content: center;
  }
  .has-dropdown .dropdown li a:hover { color: var(--gold); }
  .has-dropdown > a .chevron { display: none; }
}

/* Burger becomes X (white on dark bg) when open */
.nav-burger.active span { background: var(--white); }

/* Body padding for fixed navbar */
.page-content { padding-top: var(--nav-h); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227,92,42,0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227,92,42,0.35);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* --- Badge / Label --- */
.badge {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.badge-gold { background: var(--gold); color: var(--dark); }
.badge-outline {
  background: transparent;
  border: 1.5px solid var(--dark);
  color: var(--dark);
}

/* --- Section headings --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 52ch; margin: 0 auto; }
@media (max-width: 767px) {
  .section-header { margin-bottom: 2.5rem; }
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
/* Row layout for section header with side link */
.section-header--row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.section-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  transition: color var(--transition), gap var(--transition);
  align-self: flex-start;
}
.section-header-link:hover { color: var(--accent-dark); gap: 0.6rem; }
@media (min-width: 768px) {
  .section-header--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    text-align: left;
  }
  .section-header--row > div { flex: 1; }
  .section-header-link { align-self: auto; margin-bottom: 0.25rem; }
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 56ch;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* --- Hero (homepage) --- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: var(--nav-h);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background image — full coverage */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,30,0.15) 0%,
    rgba(10,10,30,0.4) 55%,
    rgba(10,10,30,0.75) 100%
  );
}
/* On mobile: uniform dark overlay for readability */
@media (max-width: 767px) {
  .hero-overlay {
    background: rgba(10,10,30,0.55);
  }
}

/* Content over image */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3rem var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* On desktop: push content to the right half */
@media (min-width: 768px) {
  .hero-content {
    margin-left: auto;
    max-width: 680px;
    padding-right: 3rem;
    align-items: flex-start;
  }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin: 1rem 0 1.25rem;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Mobile: homepage hero */
@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    min-height: 100vh;
    align-items: center;
  }
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 3rem;
    text-align: center;
    align-items: center;
  }
  .hero-title { font-size: clamp(1.9rem, 9vw, 2.6rem); margin: 0.75rem 0 1rem; }
  .hero-sub { font-size: 0.95rem; max-width: 36ch; }
  .hero-actions { justify-content: center; margin-top: 1.5rem; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* Badge (used in hero + inner pages) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
}
.badge svg { flex-shrink: 0; }
.badge-gold { background: var(--gold); color: var(--dark); }

/* --- Marquee --- */
.marquee-band {
  background: var(--dark);
  padding: 0.9rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 22s linear infinite;
  width: max-content;
  align-items: center;
  gap: 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-track span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 0 0.75rem;
}
.marquee-track .sep {
  color: var(--gold);
  font-size: 0.6rem;
  padding: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- About section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  font-size: 0.85rem;
}

/* About page image grid */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.about-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.about-img-accent {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.about-img-main img,
.about-img-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-text h2 { margin-bottom: 0.5rem; }
.about-text em { color: var(--gold); font-style: italic; }
@media (max-width: 767px) {
  .about-images { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-img-main { aspect-ratio: 4/3; }
}

/* --- Services grid --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative; /* needed for card-link-overlay */
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
/* Full-card clickable overlay — sits behind text/buttons */
.card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  cursor: pointer;
}
.service-card-img,
.service-card-body { position: relative; z-index: 1; }
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

/* Card overlay: hidden by default, appears on hover with dark gradient */
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,30,.75) 0%, rgba(10,10,30,.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card-body p { font-size: 0.9rem; color: var(--text-light); flex: 1; }
.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.service-tag {
  background: var(--bg);
  color: var(--text-light);
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  font-weight: 500;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.6rem; }

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.95rem; line-height: 1.75; color: var(--text); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.testimonial-role { font-size: 0.8rem; color: var(--text-light); }

/* --- CTA band --- */
.cta-band {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(227,92,42,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-group { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-band-inner {
  position: relative; z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-band-text { flex: 1; min-width: 260px; }
.cta-band-text h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band-text p { color: rgba(255,255,255,0.7); margin-bottom: 0; max-width: 44ch; }
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cta-band { border-radius: 0; margin: 3rem 0; padding: 3rem 1.5rem; text-align: center; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-text p { max-width: 100%; }
  .cta-band-actions { justify-content: center; width: 100%; }
  .cta-band-actions .btn { flex: 1; justify-content: center; min-width: 140px; }
}

/* --- FAQ --- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  background: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.pricing-category h3 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  color: var(--dark);
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-name { font-size: 0.9rem; color: var(--text); flex: 1; }
.pricing-sub { font-size: 0.78rem; color: var(--text-light); display: block; }
.pricing-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* --- Team --- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card-avatar {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.team-card-body { padding: 1.5rem; }
.team-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.team-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.team-card-body p { font-size: 0.875rem; color: var(--text-light); }

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,49,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- Contact form --- */
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-label .required { color: var(--accent); margin-left: 2px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-input.error, .form-textarea.error { border-color: var(--accent); }
.form-error { font-size: 0.8rem; color: var(--accent); margin-top: 0.3rem; }
.form-textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* --- Booking --- */
.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  flex-shrink: 0;
}
.booking-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: var(--border);
}
.booking-step.done:not(:last-child)::after { background: var(--gold); }
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.booking-step.active .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.booking-step.done .step-circle {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.booking-step.active .step-label { color: var(--dark); }

.booking-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .booking-panel { padding: 3rem; } }

/* Service selection */
.service-select-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .service-select-grid { grid-template-columns: repeat(2, 1fr); } }

.service-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  text-align: left;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.service-option:hover { border-color: var(--gold); background: #FFF9EC; }
.service-option.selected { border-color: var(--gold); background: #FFF9EC; box-shadow: 0 0 0 3px rgba(212,175,55,0.2); }
.service-option-icon { font-size: 2rem; flex-shrink: 0; }
.service-option-name { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.service-option-duration { font-size: 0.8rem; color: var(--text-light); }
.service-option-price { font-family: var(--font-serif); font-weight: 700; color: var(--accent); font-size: 1rem; }

/* Calendar */
.calendar-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .calendar-wrap { grid-template-columns: 1fr 1fr; } }

.mini-calendar {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-nav {
  background: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-nav:hover { background: var(--bg-alt); }
.cal-title { font-weight: 700; font-size: 0.95rem; color: var(--dark); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day-name {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  padding: 0.4rem 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-weight: 500;
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--bg-alt); }
.cal-day.available { color: var(--dark); font-weight: 600; }
.cal-day.weekend { color: var(--accent); font-weight: 700; }
.cal-day.selected { background: var(--gold) !important; color: var(--dark) !important; font-weight: 700; }
.cal-day.today { border: 2px solid var(--gold); }
.cal-day.disabled { color: var(--border); cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.other-month { color: var(--border); }

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.time-slot {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition);
  background: var(--white);
}
.time-slot:hover:not(.taken) { border-color: var(--gold); background: #FFF9EC; }
.time-slot.selected { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.time-slot.taken { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* Booking summary */
.booking-summary {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.booking-summary-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.booking-summary-label { color: var(--text-light); font-weight: 500; }
.booking-summary-value { font-weight: 600; color: var(--dark); text-align: right; }
.booking-summary-total .booking-summary-label { font-weight: 700; color: var(--dark); font-size: 1rem; }
.booking-summary-total .booking-summary-value { color: var(--accent); font-family: var(--font-serif); font-size: 1.3rem; }

/* --- Admin --- */
.admin-sidebar {
  width: 260px;
  background: var(--dark);
  min-height: 100vh;
  padding: 1.5rem 1.25rem;
  position: fixed;
  left: 0; top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition);
}
.admin-sidebar.collapsed { transform: translateX(-260px); }
.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 2rem;
}
.admin-logo img { height: 36px; filter: brightness(0) invert(1); }
.admin-logo-text { color: var(--white); font-weight: 700; font-size: 1rem; }
.admin-logo-text span { color: var(--gold); }
.admin-nav-group {
  margin-bottom: 0.5rem;
}
.admin-nav-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.75rem 0.75rem 0.4rem;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.75rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.admin-nav-link:hover, .admin-nav-link.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.admin-nav-link.active { background: rgba(212,175,55,0.2); color: var(--gold); }
.admin-nav-link .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.admin-nav-badge {
  margin-left: auto;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
}

.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  background: #F7F5F0;
  transition: margin-left var(--transition);
}
.admin-main.expanded { margin-left: 0; }

.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-content { padding: 2rem; }
@media (max-width: 768px) {
  .admin-sidebar { transform: translateX(-260px); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .stat-cards { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; margin-bottom: 0.5rem; }
.stat-value { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--dark); }
.stat-change { font-size: 0.75rem; color: #16a34a; margin-top: 0.25rem; }
.stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }

/* Reservation table */
.reservations-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.reservations-table table {
  width: 100%;
  border-collapse: collapse;
}
.reservations-table th {
  background: var(--bg);
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.reservations-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  vertical-align: middle;
}
.reservations-table tr:last-child td { border-bottom: none; }
.reservations-table tr:hover td { background: #FAFAF8; }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.status-pending  { background: #FEF3C7; color: #92400E; }
.status-confirmed{ background: #D1FAE5; color: #065F46; }
.status-cancelled{ background: #FEE2E2; color: #991B1B; }
.status-done     { background: #E0E7FF; color: #3730A3; }

.action-btn {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
}
.action-confirm { background: #D1FAE5; color: #065F46; border-color: #6EE7B7; }
.action-confirm:hover { background: #065F46; color: #FFFFFF; }
.action-reject  { background: #FEE2E2; color: #991B1B; border-color: #FCA5A5; }
.action-reject:hover  { background: #991B1B; color: #FFFFFF; }
.action-details { background: var(--bg); color: var(--dark); border-color: var(--border); }
.action-details:hover { background: var(--dark); color: var(--white); }

/* Admin modal */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.admin-modal-overlay.open { opacity: 1; visibility: visible; }
.admin-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  transform: translateY(20px);
  transition: transform var(--transition);
}
.admin-modal-overlay.open .admin-modal { transform: translateY(0); }

/* --- Footer --- */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.5fr 2fr; gap: 4rem; }
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 28ch;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition);
}
.social-link:hover { background: var(--accent); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) {
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer-col ul li a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0;
  transition: color var(--transition), transform var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); }

.footer-hours {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-hours h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.footer-hours p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* --- Page header (inner pages) --- */
.page-header {
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}
.page-header h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 56ch;
  margin: 1rem auto 0;
}
.page-header-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-top: 2rem;
}

/* --- Section spacing --- */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-light); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 600px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* --- Toast notification --- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #22c55e; }
.toast.error   { border-left: 4px solid var(--accent); }
.toast.info    { border-left: 4px solid var(--gold); }

/* --- Lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--accent); }

/* --- Responsive helpers --- */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .booking-steps { gap: 0.5rem; }
  .booking-step:not(:last-child)::after { display: none; }
  .admin-sidebar { position: fixed; }
}
@media (min-width: 769px) { .hide-desktop { display: none !important; } }

/* --- Scroll animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Loading spinner */
.spinner {
  width: 24px; height: 24px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Print --- */
@media print {
  .navbar, .footer, .btn, .hamburger { display: none !important; }
  body { background: white; }
  .page-content { padding-top: 0; }
}

/* ═══════════════════════════════════════════════════
   SECTION BASE (padding + color variants)
═══════════════════════════════════════════════════ */
.section {
  padding: 5rem 0;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .section-eyebrow { color: var(--gold); }
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

@media (max-width: 767px) {
  .section { padding: 3rem 0; }
}

/* ═══════════════════════════════════════════════════
   SECTION UTILITIES (additions)
═══════════════════════════════════════════════════ */
.section-cream { background: #EDE8DF; }
.section-lead {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.section-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   ABOUT — stats + badge float
═══════════════════════════════════════════════════ */
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.about-badge-float {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
}
.badge-dark {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   VALUES SECTION
═══════════════════════════════════════════════════ */
.values-section {}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(212,175,55,.15), rgba(212,175,55,.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.value-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   GALLERY PREVIEW (homepage)
═══════════════════════════════════════════════════ */
.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,49,.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: .1em;
  border: 1px solid rgba(255,255,255,.7);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--tall img { aspect-ratio: auto; height: 100%; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--wide img { aspect-ratio: 2/1; }

@media (max-width: 640px) {
  .gallery-grid-preview {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }
}

/* ═══════════════════════════════════════════════════
   FOOTER HOURS
═══════════════════════════════════════════════════ */
.footer-hours {
  margin-top: 1.5rem;
}
.footer-hours h4 { color: var(--gold); }
.footer-hours p { font-size: 0.875rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   ANIMATE CLASSES (used with IntersectionObserver)
═══════════════════════════════════════════════════ */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-fade-up { transform: translateY(30px); }
.animate-fade-left { transform: translateX(-30px); }
.animate-fade-right { transform: translateX(30px); }

.animate-fade-up.is-visible,
.animate-fade-left.is-visible,
.animate-fade-right.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered delays for grid children */
[style*="--delay:0"] { transition-delay: 0ms; }
[style*="--delay:1"] { transition-delay: 100ms; }
[style*="--delay:2"] { transition-delay: 200ms; }
[style*="--delay:3"] { transition-delay: 300ms; }
[style*="--delay:4"] { transition-delay: 400ms; }
[style*="--delay:5"] { transition-delay: 500ms; }

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,.7);
  font-size: 0.75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Service card link */
.service-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition);
}
.service-link:hover { color: var(--accent); }

/* Btn ghost */
.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

/* btn-outline-light */
.btn-outline-light {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex; align-items: flex-end;
  padding-bottom: 5rem;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero--short { min-height: 40vh; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,30,.85) 0%, rgba(10,10,30,.3) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 var(--container-pad);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  color: var(--white);
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin: 0.75rem 0 0.5rem;
  color: var(--white);
}
.page-hero-content h1 em { color: var(--gold); font-style: italic; }
.page-hero-content p { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 540px; }

/* Mobile: inner page heroes */
@media (max-width: 767px) {
  .page-hero {
    min-height: 42vh;
    padding-bottom: 2.5rem;
    align-items: flex-end;
  }
  .page-hero--short { min-height: 30vh; padding-bottom: 2rem; }
  .page-hero-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    margin: 0.5rem 0 0.4rem;
  }
  .page-hero-content p { font-size: 0.9rem; }
  .page-hero-overlay {
    background: linear-gradient(to top, rgba(10,10,30,.9) 0%, rgba(10,10,30,.45) 70%, rgba(10,10,30,.1) 100%);
  }
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb span:last-child { color: var(--gold); }

/* Breadcrumb on light background (outside hero) */
.breadcrumb--light,
.breadcrumb--light a { color: var(--text-muted); }
.breadcrumb--light a:hover { color: var(--accent); }
.breadcrumb--light span { color: var(--border); }
.breadcrumb--light span:last-child { color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   SERVICE INTRO GRID
═══════════════════════════════════════════════════ */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-intro-text {}
.service-features {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 0.5rem;
}
.service-intro-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.service-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.service-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.service-img-secondary {
  grid-column: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.service-img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .service-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-intro-images { order: -1; }
}

/* ═══════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover { transform: translateY(-4px); }
.price-card--featured {
  background: rgba(212,175,55,.1);
  border-color: var(--gold);
}
.price-badge-best {
  position: absolute;
  top: -0.75rem; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card-header { margin-bottom: 1.5rem; }
.price-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
}
.price-features {
  list-style: none;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,.7);
  padding-left: 1.25rem;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}
.pricing-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}
.process-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   TARIFS TABLE
═══════════════════════════════════════════════════ */
.tarifs-category {
  margin-bottom: 4rem;
}
.tarifs-cat-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(212,175,55,.3);
}
.tarifs-cat-header h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--dark);
}
.tarifs-cat-header h2 em { color: var(--gold); font-style: italic; }
.tarifs-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tarif-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.tarif-row:hover { box-shadow: var(--shadow-md); }
.tarif-row--featured {
  border-left: 3px solid var(--gold);
  background: linear-gradient(to right, rgba(212,175,55,.05), var(--white));
}
.tarif-name span {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.tarif-name small {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.tarif-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.tarif-price {
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-serif);
  font-size: 1rem;
  white-space: nowrap;
}
.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}
.tarifs-note {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(212,175,55,.08);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-md);
  margin-top: 2rem;
  color: var(--text-muted);
}
.tarifs-note svg { color: var(--gold); min-width: 20px; margin-top: 2px; }
.tarifs-note p { font-size: 0.875rem; margin: 0; }

@media (max-width: 640px) {
  .tarif-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .tarifs-cat-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ═══════════════════════════════════════════════════
   GALLERY FULL PAGE
═══════════════════════════════════════════════════ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  aspect-ratio: 1/1;
  cursor: zoom-in;
}
.gallery-full-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full-item:hover img { transform: scale(1.06); }
.gallery-full-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(10,10,30,.8), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
}
.gallery-full-item:hover .gallery-full-overlay { opacity: 1; }
.gallery-full-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-serif);
}

@media (max-width: 640px) {
  .gallery-masonry { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS / AVIS (full page)
═══════════════════════════════════════════════════ */
.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.avis-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.avis-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.avis-card blockquote {
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.avis-author {
  display: flex; align-items: center; gap: 0.75rem;
}
.avis-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-serif);
}
.avis-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.avis-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(212,175,55,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-text h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 0.25rem; }
.contact-info-text p { font-size: 0.95rem; color: var(--dark); margin: 0; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════
   BOOKING PAGE
═══════════════════════════════════════════════════ */
.booking-header {
  background: var(--dark);
  padding: 0.9rem 0 1.1rem;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.booking-title {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  text-align: center;
  margin-bottom: 0.75rem;
}
.booking-title em { color: var(--gold); font-style: italic; }

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 70px;
}
.step-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
  transition: all var(--transition);
}
.booking-step span {
  font-size: 0.68rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  transition: color var(--transition);
}
.booking-step.active .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.booking-step.active span { color: var(--gold); }
.booking-step.done .step-circle {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.booking-step.done .step-circle::after { content: '✓'; }
.booking-step.done span { color: rgba(255,255,255,.6); }

.step-line {
  height: 2px;
  width: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Booking body */
.booking-body {
  padding: 3rem 0 5rem;
}
/* Animation d'entrée des panneaux */
@keyframes bookingPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.booking-panel { display: none; }
.booking-panel.active {
  display: block;
  animation: bookingPanelIn 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ── Collapse des cartes de prestation après sélection ── */
.services-booking-grid.has-selection .service-booking-card:not(.selected) {
  display: none;
}
/* La carte sélectionnée : légèrement agrandie et mise en valeur */
.services-booking-grid.has-selection .service-booking-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.2);
  background: rgba(212,175,55,.04);
  cursor: default;
  pointer-events: none; /* désactive le re-click — le bouton Modifier est prévu */
}

/* Bouton "Modifier la prestation" */
.service-change-wrap {
  display: none;
  margin: -0.5rem 0 1.25rem;
}
.service-change-link {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.service-change-link:hover { color: var(--gold-dark); }

/* ── Grisage des créneaux non-sélectionnés ── */
.slots-grid.has-selection .time-slot--free:not(.selected) {
  opacity: 0.35;
  pointer-events: auto; /* toujours cliquable pour changer */
}
.slots-grid.has-selection .time-slot--free:not(.selected):hover {
  opacity: 0.7;
}
.slots-grid.has-selection .time-slot--free.selected {
  opacity: 1;
  transform: scale(1.04);
  box-shadow: 0 2px 12px rgba(212,175,55,.3);
}

.booking-step-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.booking-step-title em { color: var(--gold); font-style: italic; }
.booking-step-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Service grid (booking) */
.services-booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.service-booking-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.service-booking-card:hover {
  border-color: rgba(212,175,55,.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.service-booking-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.2);
}
.service-booking-img {
  width: 72px; height: 72px; min-width: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.service-booking-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-booking-info { flex: 1; }
.service-booking-info h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}
.service-booking-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.service-booking-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8rem;
}
.service-duration { color: var(--text-muted); }
.service-price { color: var(--gold); font-weight: 600; }

/* Calendar */
.booking-calendar-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.booking-calendar-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  width: 320px;
}
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-month {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: capitalize;
}
.cal-nav {
  width: 32px; height: 32px;
  border: none; background: var(--bg);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.cal-nav:hover { background: var(--gold); color: var(--dark); }
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px; margin-bottom: 4px;
}
.cal-day-name {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  padding: 4px 0;
}
.cal-day-name.cal-weekend { color: var(--gold); }
.calendar-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1/1;
  border: none;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: default;
  background: transparent;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.cal-day--weekend:not(.cal-day--past) {
  background: rgba(212,175,55,.12);
  color: var(--dark);
  cursor: pointer;
  font-weight: 600;
}
.cal-day--weekend:not(.cal-day--past):hover {
  background: var(--gold);
  color: var(--dark);
}
.cal-day--selected {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 700;
}
.cal-day--past { opacity: 0.35; }
.cal-day--disabled { color: rgba(0,0,0,.2); }
.cal-blank { visibility: hidden; }

/* Slots */
.booking-slots-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.slots-placeholder {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
  text-align: center;
}
.slots-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: var(--dark);
  text-transform: capitalize;
}
.slots-grid {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.time-slot {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot--free {
  background: var(--bg);
  border-color: rgba(212,175,55,.3);
  color: var(--dark);
}
.time-slot--free:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.time-slot--free.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.time-slot--taken {
  background: rgba(0,0,0,.05);
  color: rgba(0,0,0,.25);
  cursor: not-allowed;
  text-decoration: line-through;
}
.slots-empty { color: var(--text-muted); text-align: center; }

/* Step 3 form + summary */
.booking-form-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.booking-summary-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  height: fit-content;
  position: sticky;
  top: calc(var(--nav-h) + 140px);
}
.booking-summary-card h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 1rem;
}
.summary-row {
  display: flex; justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.summary-row span { color: rgba(255,255,255,.6); }
.summary-row strong { color: var(--white); text-align: right; max-width: 60%; }
.summary-price {
  display: flex; justify-content: space-between;
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 1rem;
}
.summary-price span { color: rgba(255,255,255,.6); }
.summary-price strong { color: var(--gold); font-family: var(--font-serif); font-size: 1.2rem; }
.summary-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
}

/* Booking nav */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 1rem;
}

/* Booking success */
.booking-success {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}
.success-icon {
  margin-bottom: 2rem;
}
.booking-success h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.booking-success h2 em { color: var(--gold); font-style: italic; }
.booking-success > p { color: var(--text-muted); margin-bottom: 2rem; }
.confirm-recap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.confirm-recap-row {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 0.9rem;
}
.confirm-recap-row:last-child { border-bottom: none; }
.confirm-recap-row span { color: var(--text-muted); }
.confirm-recap-row strong { color: var(--dark); }
.confirm-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.confirm-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Booking : Responsive tablet (≤900px) ── */
@media (max-width: 900px) {
  .booking-calendar-layout { grid-template-columns: 1fr; }
  .booking-calendar-wrap { width: 100%; }
  .booking-form-layout { grid-template-columns: 1fr; }
  .booking-summary-card { position: static; order: -1; }
  .step-line { width: 30px; }
  .booking-step span { display: none; }
}

/* ══════════════════════════════════════════════════
   BOOKING — MOBILE OPTIMIZATIONS (≤767px)
   Chaque section de la réservation est repensée
   pour un usage fluide au pouce, une seule main.
══════════════════════════════════════════════════ */
@media (max-width: 767px) {

  /* ── 1. Header & barre de progression ── */
  .booking-header {
    padding: 0.65rem 0 0.8rem;
  }
  .booking-title {
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
  }
  .booking-steps {
    gap: 0;
    justify-content: center;
  }
  .booking-step {
    min-width: 0;
    flex: 1;
    max-width: 72px;
    gap: 0.25rem;
  }
  .step-circle {
    width: 28px; height: 28px;
    font-size: 0.78rem;
  }
  /* Labels masqués sur tablette : re-affichés sur mobile petit en miniature */
  .booking-step span {
    display: block;
    font-size: 0.58rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 64px;
  }
  .step-line {
    flex: 0 0 20px;
    width: 20px;
  }

  /* ── 2. Corps et panneau ── */
  .booking-body { padding: 1.25rem 0 3rem; }
  .booking-panel {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }
  .booking-step-title {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
  }
  .booking-step-desc {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  /* ── 3. Step 1 : Cartes de prestation ── */
  .services-booking-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }
  .service-booking-card {
    flex-direction: row;
    align-items: center;
    padding: 0.8rem 0.9rem;
    gap: 0.8rem;
    border-radius: var(--radius-md);
    /* grande zone de tap */
    min-height: 76px;
  }
  .service-booking-card:hover {
    transform: none; /* évite les décalages au tap */
  }
  .service-booking-img {
    width: 58px; height: 58px; min-width: 58px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }
  .service-booking-info h3 {
    font-size: 0.92rem;
    margin-bottom: 0.1rem;
  }
  .service-booking-info p {
    font-size: 0.74rem;
    margin-bottom: 0.3rem;
    line-height: 1.4;
  }
  .service-booking-meta { gap: 0.4rem; flex-wrap: wrap; }
  .service-duration,
  .service-price {
    font-size: 0.7rem;
    padding: 0.2rem 0.45rem;
  }

  /* ── 4. Step 2 : Calendrier ── */
  .booking-calendar-layout { gap: 1rem; }
  .booking-calendar-wrap {
    padding: 1rem 0.85rem;
    border-radius: var(--radius-md);
  }
  .calendar-header { margin-bottom: 0.75rem; }
  .cal-month { font-size: 0.95rem; }
  .cal-nav {
    width: 30px; height: 30px;
    /* grande zone de tap */
    min-width: 40px; min-height: 40px;
  }
  .cal-day-name { font-size: 0.65rem; padding: 3px 0; }
  .cal-day {
    font-size: 0.78rem;
    border-radius: 6px;
    /* min tap target 44px recommandé Apple HIG */
    min-height: 38px;
  }

  /* ── 5. Step 2 : Créneaux horaires ── */
  .booking-slots-wrap {
    padding: 1rem 0.85rem;
    border-radius: var(--radius-md);
    min-height: auto;
  }
  .slots-placeholder {
    padding: 1.5rem 0.5rem;
  }
  .slots-placeholder p { font-size: 0.82rem; }
  .slots-title { font-size: 0.9rem; margin-bottom: 0.75rem; }
  .slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .time-slot {
    padding: 0.65rem 0.5rem;
    font-size: 0.85rem;
    text-align: center;
    /* grande zone de tap */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
  }

  /* ── 6. Step 3 : Formulaire ── */
  .booking-form-layout { gap: 1rem; }
  .booking-summary-card {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    position: static;
    order: -1;
  }
  .booking-summary-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.65rem;
  }
  .summary-row,
  .summary-price {
    padding: 0.4rem 0;
    font-size: 0.82rem;
  }
  .summary-note {
    font-size: 0.75rem;
    margin-top: 0.65rem;
    line-height: 1.9;
  }

  /* Prévenir le zoom iOS sur focus input (font < 16px) */
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px !important;
    padding: 0.85rem 0.9rem;
  }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 0.9rem; }
  .form-textarea { min-height: 80px; }

  /* ── 7. Boutons de navigation ── */
  .booking-nav {
    flex-direction: column-reverse;
    gap: 0.65rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
  .booking-nav .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
  }

  /* ── 8. Step 4 : Écran de confirmation ── */
  .booking-success {
    padding: 2rem 0.5rem 1.5rem;
  }
  .success-icon { margin-bottom: 1rem; }
  .booking-success h2 { font-size: 1.8rem; }
  .booking-success > p { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .confirm-recap {
    padding: 0.75rem 1rem;
    margin: 1rem 0 1.25rem;
  }
  .confirm-recap-row {
    font-size: 0.85rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .confirm-recap-row strong { text-align: right; max-width: 60%; }
  .confirm-actions {
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }
  .confirm-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .confirm-note { font-size: 0.75rem; }
}

/* ── Booking : très petits écrans (≤380px) ── */
@media (max-width: 380px) {
  .booking-step { max-width: 60px; }
  .booking-step span { display: none; } /* masquer les labels sur <380px */
  .step-line { flex: 0 0 12px; width: 12px; }
  .step-circle { width: 26px; height: 26px; font-size: 0.72rem; }
  .booking-panel { padding: 1rem 0.75rem; }
  .service-booking-img { width: 50px; height: 50px; min-width: 50px; }
}

/* Form elements shared */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.required { color: var(--accent); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  box-sizing: border-box;
  /* Empêche le zoom Safari iOS sur focus */
  -webkit-text-size-adjust: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.form-input.error, .form-select.error, .form-textarea.error {
  border-color: var(--accent);
}
.form-error {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 0.25rem;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }

@media (max-width: 540px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   LIGHT CARDS INSIDE DARK SECTIONS
   White cards (.service-card, .testimonial-card, .card)
   must keep dark text even when nested in .section-dark
═══════════════════════════════════════════════════ */
.service-card,
.service-card a:not(.btn),
.service-card-body h3,
.service-card-body p,
.service-card-body .service-link {
  color: var(--dark);
}
.service-card-body p { color: var(--text-light); }
.service-card-body .service-link { color: var(--accent); }

.testimonial-card,
.testimonial-card blockquote,
.testimonial-card strong,
.testimonial-card footer span { color: var(--dark); }
.testimonial-card footer span { color: var(--text-light); }

/* General: any .card inside .section-dark keeps dark text */
.section-dark .card { color: var(--dark); }
.section-dark .card h3 { color: var(--dark); }
.section-dark .card p  { color: var(--text-light); }

/* ═══════════════════════════════════════════════════
   STATS BAND (preuve sociale)
═══════════════════════════════════════════════════ */
.stats-band {
  background: var(--dark);
  padding: 3.5rem 0;
  position: relative;
  z-index: 1;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-band-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.stat-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-band-item:last-child { border-right: none; }
@media (max-width: 767px) {
  .stat-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.5rem; }
  .stat-band-item:nth-child(2n) { border-right: none; }
  .stat-band-item:last-child { border-bottom: none; }
}
.stat-band-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-band-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
  max-width: 140px;
}

/* ═══════════════════════════════════════════════════
   TRUST BAR
   Bandeau de réassurance sous le hero
═══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  position: relative;
  z-index: 1;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(255,255,255,0.92);
}
.trust-bar-item svg { flex-shrink: 0; color: var(--gold); }
.trust-bar-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}
@media (max-width: 600px) {
  .trust-bar-inner { gap: 0.5rem 1rem; }
  .trust-bar-item { font-size: 0.78rem; }
  .trust-bar-sep { display: none; }
}

/* ═══════════════════════════════════════════════════
   DURÉE PRESTATION (badge sur les cartes)
═══════════════════════════════════════════════════ */
.service-duree {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 9999px;
  padding: 0.2rem 0.65rem;
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════════════════
   SECTION "POURQUOI NOUS FAIRE CONFIANCE"
═══════════════════════════════════════════════════ */
.trust-section {
  background: var(--bg-alt);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.trust-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.trust-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}
.trust-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.trust-rating-stars { color: #F5A623; font-size: 1rem; letter-spacing: 1px; }
.trust-rating-num { font-size: 0.85rem; font-weight: 700; color: var(--dark); }

/* ═══════════════════════════════════════════════════
   BLOC INFOS PRATIQUES (homepage)
═══════════════════════════════════════════════════ */
.info-pratiques {
  background: var(--dark);
  color: var(--white);
}
.info-pratiques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .info-pratiques-grid { grid-template-columns: repeat(4, 1fr); }
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,175,55,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.info-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.info-item-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.45;
}
.info-item-value a {
  color: var(--gold);
  text-decoration: none;
}
.info-item-value a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS — dates
═══════════════════════════════════════════════════ */
.testimonial-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
