/* CSS Variables */
:root {
  --noir: #0a0a0b;
  --blanc: #ffffff;
  --creme: #f7f4ee;
  --gris: #9ea3ae;
  --gold-1: #b38728;
  --gold-2: #f0c27b;
  --gold-3: #ffd27a;
  --gold-4: #fff2c5;
  --gold-grad: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 35%, var(--gold-3) 65%, var(--gold-1) 100%);
  --gold-soft: linear-gradient(180deg, rgba(240, 194, 123, 0.22), rgba(240, 194, 123, 0));
  --gold-stroke: rgba(240, 194, 123, 0.55);
  --gold-shadow: 0 0 0 1px var(--gold-stroke), 0 10px 36px rgba(240, 194, 123, 0.12);

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: clamp(3rem, 8vw, 6rem);
  --grid-gap: clamp(1rem, 3vw, 2rem);

  /* Transitions */
  --transition: 200ms ease;
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.3vw + 1rem, 1.125rem);
  line-height: 1.6;
  color: var(--blanc);
  background-color: var(--noir);
  font-display: swap;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subsection__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--gold-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--gold-stroke);
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.btn--primary {
  background: var(--noir);
  color: var(--blanc);
}

.btn--primary:hover {
  background: var(--gold-grad);
  color: var(--noir);
  transform: translateY(-2px);
}

.btn--secondary {
  background: transparent;
  color: var(--gold-2);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-stroke);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--noir);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav__menu.show-menu {
  right: 0;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
}

.nav__link {
  color: var(--blanc);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  font-size: 1.125rem;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-2);
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--blanc);
  cursor: pointer;
  padding: 0.5rem;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle {
  color: var(--blanc);
  cursor: pointer;
  padding: 0.5rem;
}

/* Desktop Navigation */
@media screen and (min-width: 768px) {
  .nav__menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
  }

  .nav__list {
    flex-direction: row;
    gap: 2rem;
  }

  .nav__link {
    font-size: 0.875rem;
  }

  .nav__close,
  .nav__toggle {
    display: none;
  }
}

/* Fixed CTA */
.fixed-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
}

.fixed-cta__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  color: var(--blanc);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.fixed-cta__whatsapp:hover {
  transform: scale(1.1);
}

.fixed-cta__devis {
  background: var(--gold-grad);
  color: var(--noir);
  padding: 0.75rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  transition: var(--transition);
}

.fixed-cta__devis:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-shadow);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--noir) 0%, #1a1a1b 100%);
  overflow: hidden;
}

.hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(240, 194, 123, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(240, 194, 123, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--gris);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

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

/* Badges Section */
.badges {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-bottom: 1px solid var(--gold-stroke);
}

.badges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--grid-gap);
}

.badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(240, 194, 123, 0.05);
  border: 1px solid var(--gold-stroke);
  border-radius: 12px;
  transition: var(--transition);
}

.badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-shadow);
}

.badge svg {
  color: var(--gold-2);
  flex-shrink: 0;
}

.badge span {
  font-weight: 500;
  font-size: 0.875rem;
}

/* About Section */
.about {
  padding: var(--section-padding) 0;
  background: var(--noir);
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__text {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--gris);
}

.about__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
}

.about__features li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--gold-2);
  font-weight: 500;
}

.about__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold-grad);
  border-radius: 50%;
}

/* Services Section */
.services {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
  margin-bottom: 2rem;
}

.service-card {
  padding: 2rem;
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gold-shadow);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--gold-grad);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  color: var(--noir);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gold-2);
}

.service-card__description {
  color: var(--gris);
  line-height: 1.6;
}

.services__note {
  text-align: center;
  font-style: italic;
  color: var(--gold-2);
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* Packs Section */
.packs {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.packs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--grid-gap);
}

.pack-card {
  position: relative;
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.pack-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--gold-shadow);
}

.pack-card--featured {
  border: 2px solid var(--gold-2);
  background: var(--gold-soft);
}

.pack-card--featured::before {
  content: "POPULAIRE";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: var(--noir);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pack-card__header {
  margin-bottom: 2rem;
}

.pack-card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pack-card__subtitle {
  color: var(--gris);
  font-style: italic;
}

.pack-card__content {
  margin-bottom: 2rem;
}

.pack-card__features {
  list-style: none;
  text-align: left;
}

.pack-card__features li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid rgba(240, 194, 123, 0.1);
}

.pack-card__features li:last-child {
  border-bottom: none;
}

.pack-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-card__features li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--noir);
  font-size: 0.75rem;
  font-weight: bold;
}

.pack-card__footer {
  border-top: 1px solid var(--gold-stroke);
  padding-top: 2rem;
}

.pack-card__price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 1.5rem;
}

/* Menus Section */
.menus {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.menus__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--grid-gap);
  margin-bottom: 2rem;
}

.menu-category {
  padding: 2rem;
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.menu-category:hover {
  transform: translateY(-6px);
  box-shadow: var(--gold-shadow);
}

.menu-category__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-2);
}

.menu-category__description {
  color: var(--gris);
  line-height: 1.6;
}

.menus__note {
  text-align: center;
  font-style: italic;
  color: var(--gold-2);
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* Réalisations Section */
.realisations {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

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

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold-stroke);
  border-radius: 25px;
  color: var(--gris);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
}

.filter-btn--active,
.filter-btn:hover {
  background: var(--gold-grad);
  color: var(--noir);
}

.realisations__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--grid-gap);
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--gold-shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 10, 11, 0.9));
  padding: 2rem 1.5rem 1.5rem;
  color: var(--blanc);
}

.gallery-item__overlay h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold-2);
}

.gallery-item__overlay p {
  font-size: 0.875rem;
  color: var(--gris);
}

/* Processus Section */
.processus {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

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

.step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 16px;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--gold-shadow);
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gold-grad);
  color: var(--noir);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step__content {
  flex: 1;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gold-2);
}

.step__description {
  color: var(--gris);
  line-height: 1.6;
}

/* Témoignages Section */
.temoignages {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.temoignages__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.temoignages__badge {
  background: var(--gold-grad);
  color: var(--noir);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.875rem;
}

.temoignages__slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  text-align: center;
  padding: 2rem;
}

.testimonial--active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial__text {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  line-height: 1.7;
  color: var(--gris);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial__text::before,
.testimonial__text::after {
  content: '"';
  color: var(--gold-2);
  font-size: 2rem;
  font-family: var(--font-heading);
}

.testimonial__author {
  border-top: 1px solid var(--gold-stroke);
  padding-top: 1.5rem;
}

.testimonial__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-2);
  margin-bottom: 0.25rem;
}

.testimonial__event {
  color: var(--gris);
  font-size: 0.875rem;
}

.temoignages__controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid var(--gold-stroke);
  border-radius: 50%;
  color: var(--gold-2);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-btn:hover {
  background: var(--gold-grad);
  color: var(--noir);
}

/* Équipe Section */
.equipe {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.equipe__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--grid-gap);
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 16px;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--gold-shadow);
}

.team-member__photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-stroke);
}

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

.team-member__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold-2);
}

.team-member__role {
  color: var(--gris);
  font-size: 0.875rem;
}

/* Lieux Section */
.lieux {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.lieux__content {
  display: grid;
  gap: 4rem;
}

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

.venue-card {
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.venue-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gold-shadow);
}

.venue-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.venue-card__content {
  padding: 1.5rem;
}

.venue-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold-2);
}

.venue-card__capacity,
.venue-card__style {
  color: var(--gris);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 12px;
  transition: var(--transition);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-shadow);
}

.partner-logo img {
  max-height: 60px;
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover img {
  opacity: 1;
}

.zone-couverte {
  text-align: center;
  padding: 2rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold-stroke);
  border-radius: 16px;
}

.zone-couverte__text {
  font-size: 1.125rem;
  color: var(--gold-2);
  font-weight: 500;
}

/* Engagements Section */
.engagements {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

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

.engagement {
  padding: 2rem;
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
}

.engagement:hover {
  transform: translateY(-6px);
  box-shadow: var(--gold-shadow);
}

.engagement__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-2);
}

.engagement__description {
  color: var(--gris);
  line-height: 1.6;
}

/* Corporate Section */
.corporate {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.corporate__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.corporate__description {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 3rem;
  color: var(--gris);
}

.corporate__services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.corporate-service {
  padding: 1.5rem;
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 12px;
  transition: var(--transition);
}

.corporate-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--gold-shadow);
}

.corporate-service h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold-2);
}

.corporate-service p {
  color: var(--gris);
  font-size: 0.875rem;
}

/* Blog Section */
.blog {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--grid-gap);
}

.blog-card {
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--gold-shadow);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--gold-2);
  line-height: 1.4;
}

.blog-card__excerpt {
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card__link {
  color: var(--gold-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
}

.blog-card__link:hover {
  color: var(--gold-3);
}

/* FAQ Section */
.faq {
  padding: var(--section-padding) 0;
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gold-stroke);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--gold-shadow);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(240, 194, 123, 0.03);
  border: none;
  color: var(--blanc);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.faq-item__question:hover {
  background: rgba(240, 194, 123, 0.08);
}

.faq-item__question svg {
  color: var(--gold-2);
  transition: var(--transition);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-item__answer {
  max-height: 200px;
}

.faq-item__answer p {
  padding: 1.5rem;
  color: var(--gris);
  line-height: 1.6;
  border-top: 1px solid var(--gold-stroke);
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--gold-soft);
  border-top: 1px solid var(--gold-stroke);
  border-bottom: 1px solid var(--gold-stroke);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Contact Section */
.contact {
  padding: var(--section-padding) 0;
  background: var(--noir);
}

.contact__content {
  display: grid;
  gap: 4rem;
}

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

/* Form Styles */
.contact-form {
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 20px;
  padding: 2rem;
}

.form-progress {
  margin-bottom: 2rem;
}

.form-progress__bar {
  width: 100%;
  height: 4px;
  background: rgba(240, 194, 123, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.form-progress__fill {
  height: 100%;
  background: var(--gold-grad);
  width: 33.33%;
  transition: width 0.3s ease;
}

.form-progress__steps {
  display: flex;
  justify-content: space-between;
}

.form-progress__step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(240, 194, 123, 0.2);
  color: var(--gris);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-progress__step--active {
  background: var(--gold-grad);
  color: var(--noir);
}

.form-step {
  display: none;
}

.form-step--active {
  display: block;
}

.form-step__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--gold-2);
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--blanc);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(10, 10, 11, 0.8);
  border: 1px solid var(--gold-stroke);
  border-radius: 8px;
  color: var(--blanc);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 2px rgba(240, 194, 123, 0.2);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.form-checkbox input {
  display: none;
}

.form-checkbox__checkmark {
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-stroke);
  border-radius: 4px;
  background: rgba(10, 10, 11, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox input:checked + .form-checkbox__checkmark {
  background: var(--gold-grad);
  border-color: var(--gold-2);
}

.form-checkbox input:checked + .form-checkbox__checkmark::after {
  content: "✓";
  color: var(--noir);
  font-size: 0.75rem;
  font-weight: bold;
}

.form-checkbox__text {
  color: var(--gris);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.form-next,
.form-prev {
  flex: 1;
}

/* Contact Info */
.contact-info {
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-info__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--gold-2);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__item svg {
  color: var(--gold-2);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__item div p:first-child {
  font-weight: 500;
  color: var(--blanc);
  margin-bottom: 0.25rem;
}

.contact-info__item div p:last-child {
  color: var(--gris);
}

.contact-info__social {
  border-top: 1px solid var(--gold-stroke);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.contact-info__social h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-2);
}

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

.social-links a {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--gold-2);
}

/* Contact Map */
.contact-map {
  background: rgba(240, 194, 123, 0.03);
  border: 1px solid var(--gold-stroke);
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gris);
}

.map-placeholder svg {
  color: var(--gold-2);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--noir);
  border-top: 1px solid var(--gold-stroke);
  padding: 3rem 0 1rem;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer__brand {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__brand {
    text-align: left;
  }
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__description {
  color: var(--gris);
  font-size: 0.875rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .footer__links {
    justify-content: flex-end;
  }
}

.footer__link {
  color: var(--gris);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

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

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-stroke);
}

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

.footer__copyright,
.footer__credits {
  color: var(--gris);
  font-size: 0.875rem;
}

/* Responsive Design */
@media screen and (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .fixed-cta {
    bottom: 1rem;
    right: 1rem;
  }

  .form-actions {
    flex-direction: column;
  }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

/* Print Styles */
@media print {
  .header,
  .fixed-cta,
  .nav__toggle,
  .nav__close {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section__title {
    color: #000;
  }
}

/* fix css */
/* ===== Header (polished) ===== */
.header{
  position:fixed; top:0; left:0; width:100%;
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--gold-stroke);
  z-index:1000; transition: background .2s ease, padding .2s ease, border-color .2s ease;
}
.nav{ display:flex; align-items:center; justify-content:space-between; gap:clamp(.5rem,2vw,2rem); padding-block:clamp(.65rem,1.2vw,.9rem); }
.nav__brand{ display:flex; align-items:center; }
.nav__logo{ font-family:var(--font-heading); font-weight:600;
  background:var(--gold-grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  white-space:nowrap; letter-spacing:.04em; }

/* Mobile drawer stays like you have */
.nav__menu{ position:fixed; inset:0 auto 0 0; right:-100%; width:100%; height:100vh; background:var(--noir);
  display:flex; flex-direction:column; align-items:center; justify-content:center; transition: right var(--transition); }
.nav__menu.show-menu{ right:0; }

.nav__list{ display:flex; flex-direction:column; gap:2rem; list-style:none; }
.nav__link{ position:relative; color:rgba(255,255,255,.86); text-decoration:none; font-weight:500; font-size:1.125rem; transition:color var(--transition); }
.nav__link::after{ content:""; position:absolute; left:0; bottom:-10px; height:2px; width:0; background:var(--gold-grad); transition:width .2s ease; }
.nav__link:hover::after, .nav__link.active::after{ width:100%; }
.nav__close,.nav__toggle{ color:var(--blanc); cursor:pointer; padding:.5rem; }

.nav__actions{ display:flex; align-items:center; gap:1rem; }
.btn.btn--primary{ background:transparent; color:var(--blanc); }             /* subtler CTA */
.btn.btn--primary:hover{ background:var(--gold-grad); color:var(--noir); }

/* Desktop layout */
@media (min-width: 768px){
  .nav__menu{ position:static; width:auto; height:auto; background:transparent; flex-direction:row; }
  .nav__list{ flex-direction:row; gap: clamp(.75rem,1.8vw,1.6rem); flex:1; justify-content:center; }
  .nav__link{ font-size:.9rem; }
  .nav__close, .nav__toggle{ display:none; }
}

/* Sticky shrink */
.scroll-header{ background:#0A0A0B; border-bottom-color:var(--gold-stroke); }
body.menu-open{ overflow:hidden; }

/* end fix v1 */