/* ============================================
   ROMAIN SOUDET - Videaste Mariage
   Pure CSS - Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

/* --- Accessibility --- */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1.25rem;
  z-index: 10000;
  border-radius: 0 0 var(--radius) 0;
  font-size: 0.875rem;
  font-weight: 500;
  transition: top 0.2s;
}

.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--foreground);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Hide focus outline on mouse click, keep for keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --background: hsl(36, 25%, 97%);
  --foreground: hsl(20, 15%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(20, 15%, 15%);
  --primary: hsl(22, 80%, 48%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(36, 20%, 93%);
  --secondary-foreground: hsl(20, 15%, 15%);
  --muted: hsl(36, 15%, 92%);
  --muted-foreground: hsl(20, 10%, 45%);
  --border: hsl(36, 15%, 85%);
  --destructive: hsl(0, 84%, 60%);
  --radius: 0.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  outline: none;
}

/* --- Typography --- */
.font-heading {
  font-family: var(--font-heading);
}

.font-body {
  font-family: var(--font-body);
}

/* --- Utilities --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: hsla(36, 25%, 97%, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(36, 15%, 85%, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--foreground);
  transition: color 0.3s;
}

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

.navbar__links {
  display: none;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

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

.navbar__link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.3s;
  font-weight: 400;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--primary);
}

.navbar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--foreground);
}

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

.navbar__toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  background: hsla(36, 25%, 97%, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(36, 15%, 85%, 0.3);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.navbar__mobile.open {
  display: block;
  max-height: 400px;
  opacity: 1;
}

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

.navbar__mobile-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.navbar__mobile-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.navbar__mobile-link:hover,
.navbar__mobile-link.active {
  color: var(--primary);
}

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

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

.hero__video-bg video,
.hero__video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4rem;
  }
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.125rem;
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.3s;
}

.hero__cta:hover {
  background: hsl(22, 80%, 42%);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

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

/* ============================================
   SECTION HEADING
   ============================================ */
.section {
  padding: 6rem 0;
}

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

.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-heading__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.section-heading__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-heading__title {
    font-size: 3rem;
  }
}

.section-heading__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-foreground);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-heading__desc {
    font-size: 1.125rem;
  }
}

/* ============================================
   VIDEO CARDS (Portfolio)
   ============================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.video-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
  opacity: 0.6;
  transition: opacity 0.5s;
}

.video-card:hover .video-card__overlay {
  opacity: 0.8;
}

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: hsla(22, 80%, 48%, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(22, 80%, 48%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.5s, transform 0.5s;
}

.video-card:hover .video-card__play-btn {
  opacity: 1;
  transform: scale(1);
}

.video-card__play-btn svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  fill: var(--primary);
  margin-left: 2px;
}

.video-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: white;
  margin-bottom: 0.25rem;
}

.video-card__date {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.pricing-card {
  position: relative;
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  background: var(--card);
  transition: all 0.5s;
}

.pricing-card--popular {
  background: hsla(22, 80%, 48%, 0.05);
  border-color: hsla(22, 80%, 48%, 0.3);
  box-shadow: 0 10px 40px hsla(22, 80%, 48%, 0.05);
}

.pricing-card:hover {
  border-color: hsla(22, 80%, 48%, 0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.375rem 1rem;
  border-radius: 999px;
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .pricing-card__title {
    font-size: 1.5rem;
  }
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.pricing-card__price-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .pricing-card__price-value {
    font-size: 3rem;
  }
}

.pricing-card__price-unit {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pricing-card__feature svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card__feature span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.pricing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
}

.pricing-card__cta--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.pricing-card__cta--primary:hover {
  background: hsl(22, 80%, 42%);
}

.pricing-card__cta--secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.pricing-card__cta--secondary:hover {
  background: hsl(36, 20%, 88%);
}

/* ============================================
   QUOTE GENERATOR
   ============================================ */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .quote-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.quote-section {
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.quote-section--disabled {
  opacity: 0.4;
  pointer-events: none;
}

.quote-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.quote-section__header svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.quote-section__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--foreground);
}

.quote-section__subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Option cards (shooting, packages) */
.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

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

.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  text-align: left;
  transition: all 0.2s;
  width: 100%;
  background: transparent;
}

.option-card:hover {
  border-color: hsla(22, 80%, 48%, 0.2);
  background: hsla(36, 20%, 93%, 0.5);
}

.option-card.selected {
  border-color: hsla(22, 80%, 48%, 0.6);
  background: hsla(22, 80%, 48%, 0.05);
}

.option-card__check {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  display: none;
  align-items: center;
  justify-content: center;
}

.option-card.selected .option-card__check {
  display: flex;
}

.option-card__check svg {
  width: 12px;
  height: 12px;
  color: white;
}

.option-card__label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.25rem;
  padding-right: 1.5rem;
}

.option-card__desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.option-card__price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
}

/* Checkbox options (editing, extras) */
.checkbox-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  text-align: left;
  transition: all 0.2s;
  width: 100%;
  background: transparent;
}

.checkbox-option:hover {
  border-color: hsla(22, 80%, 48%, 0.2);
  background: hsla(36, 20%, 93%, 0.5);
}

.checkbox-option.selected {
  border-color: hsla(22, 80%, 48%, 0.5);
  background: hsla(22, 80%, 48%, 0.05);
}

.checkbox-option__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkbox-option__box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid hsla(36, 15%, 85%, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.checkbox-option.selected .checkbox-option__box {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-option__box svg {
  width: 12px;
  height: 12px;
  color: white;
  display: none;
}

.checkbox-option.selected .checkbox-option__box svg {
  display: block;
}

.checkbox-option__label {
  font-size: 0.875rem;
  color: var(--foreground);
}

.checkbox-option__price {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
  margin-left: 1rem;
}

/* Counter */
.counter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.counter__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid hsla(36, 15%, 85%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.counter__btn:hover {
  background: var(--secondary);
}

.counter__btn svg {
  width: 12px;
  height: 12px;
}

.counter__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
  width: 40px;
  text-align: center;
}

.counter__result {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-left: 0.5rem;
}

/* Address input */
.address-row {
  display: flex;
  gap: 0.5rem;
}

.input {
  width: 100%;
  font-size: 0.875rem;
  font-family: var(--font-body);
  background: var(--secondary);
  border: 1px solid hsla(36, 15%, 85%, 0.5);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  color: var(--foreground);
  transition: border-color 0.2s;
}

.input::placeholder {
  color: hsla(20, 10%, 45%, 0.5);
}

.input:focus {
  border-color: hsla(22, 80%, 48%, 0.5);
}

.input--readonly {
  cursor: default;
}

.btn-primary {
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: background 0.2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: hsl(22, 80%, 42%);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary--full {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Info box */
.info-box {
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
}

.info-box--primary {
  background: hsla(22, 80%, 48%, 0.05);
  border: 1px solid hsla(22, 80%, 48%, 0.2);
  color: var(--muted-foreground);
}

.info-box--primary strong {
  color: var(--foreground);
}

.info-box--primary .highlight {
  color: var(--primary);
  font-weight: 600;
}

.info-box--warn {
  background: hsl(48, 100%, 96%);
  border: 1px solid hsl(45, 90%, 80%);
  color: hsl(30, 60%, 30%);
}

.info-box--success {
  background: hsla(22, 80%, 48%, 0.05);
  border: 1px solid hsla(22, 80%, 48%, 0.2);
  color: var(--primary);
}

/* Travel estimate result */
.travel-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--primary);
  font-size: 0.75rem;
}

.travel-result svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.travel-error {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.5rem;
}

/* Separator */
.separator {
  border-top: 1px solid hsla(36, 15%, 85%, 0.3);
  padding-top: 1rem;
  margin-top: 1rem;
}

/* ============================================
   QUOTE SUMMARY (Right Panel)
   ============================================ */
.quote-summary {
  position: sticky;
  top: 7rem;
}

.quote-summary__card {
  background: var(--card);
  border: 1px solid hsla(22, 80%, 48%, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.quote-summary__section {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.quote-summary__label {
  font-size: 0.65rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.quote-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.quote-summary__row span:first-child {
  color: var(--foreground);
}

.quote-summary__row span:last-child {
  flex-shrink: 0;
  color: var(--foreground);
}

.quote-summary__row--discount {
  color: var(--primary) !important;
  margin-top: 0.5rem;
}

.quote-summary__row--discount span {
  color: var(--primary) !important;
}

.quote-summary__row--discount span:first-child {
  font-style: italic;
  font-size: 0.75rem;
}

.quote-summary__row--discount span:last-child {
  font-weight: 500;
  font-size: 0.875rem;
}

.quote-summary__divider {
  border-top: 1px solid hsla(36, 15%, 85%, 0.3);
  padding-top: 1rem;
  margin-top: 1rem;
}

.quote-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid hsla(22, 80%, 48%, 0.2);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.quote-summary__total-label {
  font-size: 0.65rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-summary__total-value {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  color: var(--primary);
}

.quote-summary__warning {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

/* Quote form */
.quote-form {
  border-top: 1px solid hsla(36, 15%, 85%, 0.3);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.quote-form__title {
  font-size: 0.65rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.quote-form__note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background: hsla(36, 20%, 93%, 0.6);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
}

.quote-form .input {
  margin-bottom: 0.75rem;
}

.quote-form__error {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-bottom: 0.5rem;
}

.quote-form__success {
  text-align: center;
  padding: 1rem 0;
}

.quote-form__success-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.quote-form__success-text {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================
   ABOUT / TEXT SECTIONS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text__label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.about-text__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-text__title {
    font-size: 2.5rem;
  }
}

.about-text p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--foreground);
  transition: color 0.3s;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-info__item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info__item span,
.contact-info__item a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.contact-info__item a:hover {
  color: var(--foreground);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* ============================================
   EVENTS
   ============================================ */
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.event-card {
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.event-card:hover {
  border-color: hsla(22, 80%, 48%, 0.2);
  transform: translateY(-4px);
}

.event-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.event-card__body {
  padding: 1.5rem;
}

.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.event-card__desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--card);
  border-top: 1px solid hsla(36, 15%, 85%, 0.3);
}

.footer__inner {
  padding: 4rem 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

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

.footer__brand-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer__heading {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--foreground);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer__contact-item span,
.footer__contact-item a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

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

.footer__bottom {
  border-top: 1px solid hsla(36, 15%, 85%, 0.3);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer__copyright {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================
   SPINNER
   ============================================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid hsla(36, 15%, 85%, 0.5);
  border-top-color: var(--primary-foreground);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
}

.lightbox__close svg {
  width: 32px;
  height: 32px;
}

.lightbox iframe,
.lightbox video {
  width: 90vw;
  max-width: 1280px;
  max-height: 80vh;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius);
  background: #000;
  display: block;
}

/* ============================================
   V2 DESIGN - HERO BOTTOM ALIGNED
   ============================================ */
.hero--v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

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

.hero--v2 .hero__video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero--v2 .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background), hsla(36, 25%, 97%, 0.4), transparent);
  z-index: 1;
}

.hero--v2 .hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem 4rem;
  max-width: 48rem;
  width: 100%;
}

.hero--v2 .hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: inline-block;
  background: hsla(36, 25%, 97%, 0.6);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero--v2 .hero__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .hero--v2 .hero__title {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .hero--v2 .hero__title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero--v2 .hero__title {
    font-size: 4.5rem;
  }
}

.hero--v2 .hero__title .italic-primary {
  font-style: italic;
  color: var(--primary);
}

.hero--v2 .hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.hero--v2 .hero__location svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero--v2 .hero__location span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  background: hsla(36, 25%, 97%, 0.6);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.hero--v2 .hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  left: auto;
  transform: none;
  z-index: 2;
  color: var(--muted-foreground);
  animation: bounce-v2 2s infinite;
}

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

/* ============================================
   V2 - HELLO / ABOUT SECTION
   ============================================ */
.hello-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hello-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.hello-img {
  position: relative;
}

.hello-img__photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
}

.hello-img__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hello-img__decor {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 5rem;
  height: 5rem;
  border: 2px solid hsla(22, 80%, 48%, 0.3);
  border-radius: var(--radius);
}

.hello-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--foreground);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hello-text h2 {
    font-size: 2.5rem;
  }
}

.hello-text h2 .italic-primary {
  font-style: italic;
  color: var(--primary);
}

.hello-text__paragraphs {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hello-text__paragraphs p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.hello-text__paragraphs p strong {
  color: var(--foreground);
}

.hello-text__buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hello-text__buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

.hello-text__buttons .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.3s;
}

.hello-text__buttons .btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.hello-text__buttons .btn--primary:hover {
  background: hsl(22, 80%, 42%);
  transform: translateY(-2px);
}

.hello-text__buttons .btn--outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.hello-text__buttons .btn--outline:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

/* ============================================
   V2 - STATS ROW (3 items)
   ============================================ */
.stats-v2 {
  padding: 3rem 1.5rem;
  background: hsla(0, 0%, 100%, 0.4);
  border-top: 1px solid hsla(36, 15%, 85%, 0.3);
  border-bottom: 1px solid hsla(36, 15%, 85%, 0.3);
}

.stats-v2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.stats-v2__item p:first-child {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stats-v2__item p:first-child {
    font-size: 3.5rem;
  }
}

.stats-v2__item p:last-child {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

/* ============================================
   V2 - CATEGORIES (aspect-ratio 2/3 cards)
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

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

.category-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 2/3;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(36, 25%, 97%, 0.8), transparent, transparent);
}

.category-card__text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

.category-card__text .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: hsla(22, 80%, 48%, 0.8);
  font-style: italic;
  margin-bottom: 0.25rem;
  display: block;
}

.category-card__text .title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--foreground);
}

/* ============================================
   V2 - SHOWREEL
   ============================================ */
.showreel-section {
  padding: 3rem 1.5rem 5rem;
  background: hsla(0, 0%, 100%, 0.3);
}

@media (min-width: 768px) {
  .showreel-section {
    padding: 5rem 1.5rem 8rem;
  }
}

.showreel-video {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding-bottom: 56.25%;
}

.showreel-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   V2 - CITATION / PARALLAX QUOTE
   ============================================ */
.citation-section {
  position: relative;
  height: 40vh;
  overflow: hidden;
}

@media (min-width: 640px) {
  .citation-section {
    height: 50vh;
  }
}

.citation-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.citation-section__overlay {
  position: absolute;
  inset: 0;
  background: hsla(36, 25%, 97%, 0.5);
}

.citation-section__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.citation-section__text p {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--foreground);
  text-align: center;
  font-style: italic;
  max-width: 48rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

@media (min-width: 768px) {
  .citation-section__text p {
    font-size: 3rem;
  }
}

/* ============================================
   V2 - PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

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

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

.process-step {
  text-align: center;
}

.process-step__icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.process-step__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsla(22, 80%, 48%, 0.1);
  border: 1px solid hsla(22, 80%, 48%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step__icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.process-step__number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid hsla(36, 15%, 85%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ============================================
   V2 - CTA SECTION
   ============================================ */
.cta-section {
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 1.5rem 8rem;
  }
}

.cta-section__inner {
  max-width: 40rem;
  margin: 0 auto;
}

.cta-section__inner .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.cta-section__inner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section__inner h2 {
    font-size: 2.5rem;
  }
}

.cta-section__inner p {
  font-family: var(--font-body);
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================
   V2 - PHOTOGRAPHE PARTENAIRE
   ============================================ */
.partner-section {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  padding: 2rem;
}

@media (min-width: 768px) {
  .partner-section {
    padding: 3rem;
  }
}

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

@media (min-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-text .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.partner-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .partner-text h3 {
    font-size: 2rem;
  }
}

.partner-text p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.partner-text .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
}

.partner-text .price-note {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.partner-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.partner-visual img {
  width: 100%;
  height: 12rem;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
}

.partner-visual .quote {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* ============================================
   V2 - FAQ CATEGORIES
   ============================================ */
.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.faq-category__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.faq-category__card {
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  padding: 0 1.5rem;
}

.faq-item--v2 {
  border-bottom: 1px solid hsla(36, 15%, 85%, 0.4);
}

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

.faq-item--v2 .faq-item__question {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--foreground);
  line-height: 1.6;
  padding: 1.25rem 0;
}

@media (min-width: 768px) {
  .faq-item--v2 .faq-item__question {
    font-size: 1rem;
  }
}

.faq-item--v2 .faq-item__icon {
  transition: transform 0.3s;
}

.faq-item--v2.open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item--v2 .faq-item__answer-inner {
  padding: 0 0 1.25rem;
}

/* FAQ CTA card */
.faq-cta {
  margin-top: 4rem;
  text-align: center;
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: 0.75rem;
  padding: 2.5rem;
}

.faq-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.faq-cta p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* ============================================
   V2 - CONTACT PAGE
   ============================================ */
.contact-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.contact-v2-info .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.contact-v2-info h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .contact-v2-info h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .contact-v2-info h1 {
    font-size: 3rem;
  }
}

.contact-v2-info h1 .italic-primary {
  font-style: italic;
  color: var(--primary);
}

.contact-v2-info > p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-v2-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-v2-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-v2-item__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(22, 80%, 48%, 0.1);
  border: 1px solid hsla(22, 80%, 48%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

a:hover .contact-v2-item__icon,
.contact-v2-item:hover .contact-v2-item__icon {
  background: hsla(22, 80%, 48%, 0.2);
}

.contact-v2-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-v2-item__text p:first-child {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted-foreground);
  margin-bottom: 0.125rem;
}

.contact-v2-item__text p:nth-child(2) {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--foreground);
}

.contact-v2-item__text p:nth-child(3) {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

/* Contact form v2 */
.contact-v2-form {
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .contact-v2-form {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .contact-v2-form {
    padding: 2.5rem;
  }
}

.contact-v2-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-v2-form .form-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-v2-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .contact-v2-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-v2-form .input {
  width: 100%;
}

.contact-v2-form select {
  width: 100%;
  font-size: 0.875rem;
  font-family: var(--font-body);
  background: var(--secondary);
  border: 1px solid hsla(36, 15%, 85%, 0.5);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  color: var(--foreground);
  transition: border-color 0.2s;
}

.contact-v2-form select:focus {
  border-color: hsla(22, 80%, 48%, 0.5);
}

.contact-v2-form textarea {
  width: 100%;
  min-height: 120px;
  resize: none;
  font-size: 0.875rem;
  font-family: var(--font-body);
  background: var(--secondary);
  border: 1px solid hsla(36, 15%, 85%, 0.5);
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  color: var(--foreground);
  transition: border-color 0.2s;
}

.contact-v2-form textarea:focus {
  border-color: hsla(22, 80%, 48%, 0.5);
}

.contact-v2-form .btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.3s, transform 0.3s;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
}

.contact-v2-form .btn-submit:hover {
  background: hsl(22, 80%, 42%);
  transform: translateY(-2px);
}

.contact-v2-form .btn-submit svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   V2 - TARIF CARD (evenements)
   ============================================ */
.tarif-card {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .tarif-card {
    padding: 3rem;
  }
}

.tarif-card .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.tarif-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .tarif-card h3 {
    font-size: 2rem;
  }
}

.tarif-card .desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto 0.5rem;
  line-height: 1.7;
}

.tarif-card .price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin: 1rem 0;
}

.tarif-card .price-note {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* ============================================
   V2 - PORTFOLIO TEASERS GRID
   ============================================ */
.teasers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .teasers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem;
  }
}

.teaser-card {
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.18);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}

.teaser-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.28);
}

.teaser-card__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.teaser-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.teaser-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.teaser-card:hover .teaser-card__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.85) 100%);
}

.teaser-card__play-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(22, 80%, 48%, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.teaser-card:hover .teaser-card__play-circle {
  background: var(--primary);
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.teaser-card__play-circle .play-triangle {
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}

.teaser-card__title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  right: 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

@media (max-width: 767px) {
  .teaser-card__title {
    font-size: 1.15rem;
    bottom: 1rem;
    left: 1.25rem;
    right: 1.25rem;
  }
  .teaser-card__play-circle {
    width: 4rem;
    height: 4rem;
  }
  .teaser-card__play-circle .play-triangle {
    border-left: 11px solid white;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 56rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--foreground);
  margin: 2.5rem 0 1rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner__text {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border: none;
  font-family: var(--font-body);
}

.cookie-banner__btn--accept {
  background: var(--primary);
  color: var(--primary-foreground);
}

.cookie-banner__btn--accept:hover {
  background: hsl(22, 80%, 42%);
  transform: translateY(-1px);
}

.cookie-banner__btn--refuse {
  background: var(--secondary);
  color: var(--foreground);
}

.cookie-banner__btn--refuse:hover {
  background: var(--border);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  padding: 2rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.testimonial-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
}

.testimonial-card__info p:first-child {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-card__info p:last-child {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

/* ============================================
   FOOTER SOCIALS & LEGAL LINKS
   ============================================ */
.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__socials a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: hsla(22, 80%, 48%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: background 0.3s, color 0.3s;
}

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

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.75rem;
}

.footer__legal-links a {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__legal-links a:hover {
  color: var(--primary);
}

/* ============================================
   RGPD CHECKBOX & FORM FEEDBACK
   ============================================ */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.form-consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.form-consent label a {
  color: var(--primary);
  text-decoration: underline;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  pointer-events: none !important;
}

.form-success,
.form-error {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.visible,
.form-error.visible {
  display: block;
}

.form-error__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(0, 80%, 55%, 0.1);
  color: hsl(0, 80%, 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-error h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-error p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.form-error p a {
  color: var(--primary);
  text-decoration: underline;
}

.form-success__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: hsla(120, 50%, 45%, 0.1);
  color: hsl(120, 50%, 45%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.blog-card {
  background: var(--card);
  border: 1px solid hsla(36, 15%, 85%, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.15);
}

.blog-card__link {
  display: block;
  color: inherit;
}

.blog-card__link[aria-disabled="true"] {
  opacity: 0.65;
  pointer-events: none;
}

.blog-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--secondary);
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--foreground);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__more {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.breadcrumb span {
  color: var(--foreground);
}

/* Article */
.article-header {
  margin-bottom: 2.5rem;
}

.article-date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--foreground);
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .article-header h1 {
    font-size: 2.75rem;
  }
}

.article-lede {
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-style: italic;
}

.article-img {
  margin: 2.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: auto;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--foreground);
  margin: 2.5rem 0 1rem;
}

.article-body p {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.article-body ul li {
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.article-body strong {
  color: var(--foreground);
  font-weight: 600;
}

.article-cta {
  background: var(--secondary);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta p {
  margin-bottom: 1.25rem;
}

/* ============================================
   VIDEO POSTER (lazy-load iframe)
   ============================================ */
.video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-poster:hover img {
  transform: scale(1.03);
}

.video-poster__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%);
  transition: background 0.3s;
}

.video-poster:hover .video-poster__overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
}

.video-poster__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(22, 80%, 48%, 0.92);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.3s;
}

.video-poster:hover .video-poster__play {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-poster__play svg {
  margin-left: 4px;
}

/* ============================================
   QUOTE DISCLAIMER
   ============================================ */
.quote-disclaimer {
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted-foreground);
  margin-top: 1.5rem;
  font-style: italic;
}
