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

:root {
  --white:       #F4F4F2;
  --cream:       #EDEAE6;
  --beige:       #D8CFC2;
  --beige-dark:  #C8BBA8;
  --gold:        #c9a96e;
  --gold-light:  #dfc18e;
  --gold-pale:   #f5ead6;
  --brown:       #8b6a45;
  --text:        #3d2e22;
  --text-soft:   #7a6455;
  --text-light:  #a8917d;

  --blue:        #B8C6CC;
  --blue-light:  #CEDADE;
  --blue-pale:   #E4EAED;
  --blush:       #DEB8A0;
  --blush-pale:  #F0DDD2;
  --sage:        #8FA89C;
  --sage-pale:   #C8D8D0;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --max-w: 1100px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  padding-top: 10px;
  padding-bottom: 10px;
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── Typography helpers ───────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

h1, h2, h3 { font-family: var(--font-title); font-weight: 500; line-height: 1.2; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--text-soft); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Nav ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--beige-dark);
}

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

.nav__logo {
  display: inline-flex;
  align-items: center;
}

.nav__logo img {
  height: 70px;
  width: auto;
  display: block;
}

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

.nav__links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }

.nav__cta {
  margin-left: 1rem;
  background: var(--white) !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
}
.nav__burger:focus { outline: none; }
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* ── Mobile Menu ──────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 101;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 70px;
  border-bottom: 1px solid var(--beige);
  flex-shrink: 0;
}
.mobile-menu__header img { height: 50px; width: auto; }

.mobile-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 50%;
  color: var(--text-soft);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-close:hover { background: var(--gold-pale); color: var(--gold); }

.mobile-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2rem;
}

.mobile-link {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-link:first-child { border-top: 1px solid var(--beige); }
.mobile-link:hover { color: var(--gold); padding-left: 0.4rem; }
.mobile-link::after {
  content: '→';
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.mobile-link:hover::after { opacity: 1; transform: translateX(0); }

.mobile-menu__footer {
  padding: 1.5rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  border-top: 1px solid var(--beige);
  flex-shrink: 0;
}
.mobile-menu__footer .btn { justify-content: center; }

.mobile-menu__location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('img/fond-ordi.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 600px) {
  .hero__bg {
    background-position: 70% center;
  }
}

.hero__decor {
  display: none;
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(48%, 520px);
  aspect-ratio: 3/4;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: linear-gradient(145deg, var(--beige) 0%, var(--gold-pale) 100%);
  opacity: 0.7;
}

.hero__decor-ring {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-52%);
  width: min(42%, 460px);
  aspect-ratio: 3/4;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 1px solid rgba(201,169,110,0.4);
  overflow: hidden;
}

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

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding-top: 70px;
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0rem;
}

.hero__tagline::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__tagline span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--text);
}

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

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--text-soft);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 3rem;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
  background: transparent;
}

.hero__location svg { flex-shrink: 0; }

@media (min-width: 901px) {
  .hero__location {
    display: inline-flex;
    background: white;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-top: 1.25rem;
  }
  .hero__location svg { color: var(--gold); stroke: var(--gold); }
}

/* ── Section common ───────────────────────────── */
.section { padding-block: var(--section-pad); }

.section__header {
  text-align: center;
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section__header h2 { margin-bottom: 1rem; }
.section__header p { font-size: 1rem; }

/* ── Divider ornament ─────────────────────────── */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  opacity: 0.5;
}

/* ── Collections ──────────────────────────────── */
.collections {
  background: var(--cream);
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.collection-card {
  background: var(--white);
  border: 1.5px solid var(--beige);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  text-decoration: none;
  color: inherit;
}
.collection-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,169,110,0.14);
  transform: translateY(-4px);
}

.collection-card__photo {
  width: calc(100% + 3.5rem);
  margin: -2rem -1.75rem 0;
  height: 220px;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  background: var(--beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.collection-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* défaut */
  display: block;
  transform-origin: center center;
  transform: scale(1);
}

.collection-card__photo img.photo--empreinte {
  object-position: center 55%;
}
.collection-card__photo img.photo--nuance {
  object-position: center 41%;
}
.collection-card__photo img.photo--artmoment {
  object-position: center 50%;
}
.collection-card__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.collection-card__photo-placeholder svg { opacity: 0.35; color: var(--text-light); }
.collection-card__photo-placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.collection-card__num {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--beige-dark);
  user-select: none;
}

.collection-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.collection-card__badge::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.collection-card__title {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
}

.collection-card__desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
  flex: 1;
}

.collection-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--beige);
}

.collection-card__price {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
}
.collection-card__price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
}

.collection-card__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.collection-card:hover .collection-card__arrow {
  background: var(--gold);
  color: var(--white);
  transform: translateX(2px);
}

.collections__cta {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

/* ── About ────────────────────────────────────── */
.about { background: var(--white); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  position: relative;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--beige) 0%, var(--gold-pale) 100%);
  border: 2px solid var(--gold-light);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.25), 0 2px 8px rgba(201, 169, 110, 0.15);
}

.about__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.about__img-placeholder svg { opacity: 0.35; }
.about__img-placeholder span {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: 2rem;
  width: 110px;
  height: 110px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 30px rgba(201,169,110,0.2);
  border: 1px solid var(--beige-dark);
  text-align: center;
}

.about__badge strong {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.about__badge span {
  font-size: 0.62rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.about__text h2 { margin-bottom: 1.25rem; }
.about__text p { margin-bottom: 1.25rem; }

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.about__feature::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush);
  margin-top: 0.45em;
}

/* ── Process ──────────────────────────────────── */
.process { background: var(--cream); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  position: relative;
}

.process__step {
  text-align: center;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--beige-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.process__step-body {
  padding: 2rem 1.5rem;
}

.process__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(201,169,110,0.12);
}

.process__num {
  padding-bottom: 5px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.process__step h3 {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.process__step p { font-size: 0.93rem; }

.process__step-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ── Gallery ──────────────────────────────────── */
.gallery { background: var(--white); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
}

.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--beige) 0%, var(--gold-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid var(--gold-light);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.2), 0 2px 6px rgba(201, 169, 110, 0.12);
}

.gallery__item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(201, 169, 110, 0.35), 0 4px 12px rgba(201, 169, 110, 0.2); }
.gallery__item:hover .gallery__overlay { opacity: 1; }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(139, 106, 69, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery__item:nth-child(1) { grid-column: 1 / 6; grid-row: 1; }
.gallery__item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
.gallery__item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.gallery__item:nth-child(4) { grid-column: 1 / 5; grid-row: 2; }
.gallery__item:nth-child(5) { grid-column: 5 / 9; grid-row: 2; }
.gallery__item:nth-child(6) { grid-column: 9 / 13; grid-row: 2; }

.gallery__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 1;
}

.gallery__placeholder svg { opacity: 0.3; }

.gallery__placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.gallery__caption {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── Testimonial ──────────────────────────────── */
.testimonial {
  background: url('img/fond-ordi.png') center / cover no-repeat;
  padding-block: var(--section-pad);
  text-align: center;
}

.testimonial blockquote {
  max-width: 680px;
  margin-inline: auto;
}

.testimonial__quote {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial__quote::before { content: '\201C'; color: var(--gold); }
.testimonial__quote::after  { content: '\201D'; color: var(--gold); }

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial__name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.testimonial__loc {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── Events ───────────────────────────────────── */
.events {
  background: var(--cream);
  padding-block: var(--section-pad);
}

.events__content {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.events__content h2 { margin-bottom: 1rem; }

.events__occasions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.8rem 0 2rem;
}

.events__occasion {
  background-color: var(--gold);
  padding: 0.45rem 1.2rem;
  border: 1.5px solid var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.events__highlight {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 2rem;
}

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

.events__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.events__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto 2rem;
  border-radius: 2px;
}

/* ── Contact ──────────────────────────────────── */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.contact__info h2 { margin-bottom: 1rem; }
.contact__info p { margin-bottom: 2rem; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact__detail-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact__detail-text span {
  font-size: 0.93rem;
  color: var(--text-soft);
}

/* ── Form ─────────────────────────────────────── */
.form {
  background: var(--cream);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--beige-dark);
}

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

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

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

.form__submit {
  width: 100%;
  padding: 1rem;
  justify-content: center;
}

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

.form__success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--gold);
}

.form__success h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form__success p { font-size: 0.93rem; }

/* ── Footer ───────────────────────────────────── */
.footer {
  background: var(--white);
  color: var(--text-soft);
  padding-block: 2rem;
  border-top: 1px solid var(--beige-dark);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
}

.footer__logo img {
  height: 80px;
  width: auto;
  display: block;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.82rem;
  color: var(--text-soft);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--gold); }

.footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--gold); }

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ── Scroll reveal ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; }
  .about__visual { order: -1; max-width: 400px; margin-inline: auto; }
  .about__badge { right: -0.5rem; bottom: -0.5rem; }

  .process__steps { grid-template-columns: 1fr; gap: 60px; margin-bottom: 40px; }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item { grid-column: auto !important; grid-row: auto !important; }
  .gallery__item:nth-child(1) { grid-column: span 2 !important; }

  .contact__grid { grid-template-columns: 1fr; }

  .form__row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --section-pad: 3rem; }

  .hero { min-height: unset; }

  .process__step-img { height: 300px; }

  .nav__logo img { height: 48px; }

  .mobile-menu { gap: 1.5rem; }
  .mobile-menu a { font-size: 1.2rem; }

  .container { padding-top: 0px; padding-bottom: 0px; }

  .hero__bg {
    background-image: url('img/fond-tel.png');
  }
  .hero__decor, .hero__decor-ring { display: none; }
  .hero__content { display: flex; flex-direction: column; }
  .hero__tagline { order: 1; margin-top: 15px; }
  .hero__content h1 { order: 2; }
  .hero__sub { order: 3; }
  .hero__location { order: 4; margin-top: 0; margin-bottom: 1.5rem; }
  .hero__actions { order: 5; flex-direction: column; align-items: stretch; width: 100%; margin-bottom: 4rem; }
  .hero__actions .btn { justify-content: center; width: 100%; }
  .hero__actions .btn:nth-child(2) { background: var(--white); }

  .contact__grid { gap: 3.5rem; }

  .about__features { grid-template-columns: 1fr; }
  .footer__links { flex-wrap: wrap; gap: 1rem; }

  .events__occasion { font-size: 0.7rem; }

  .gallery__grid {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 10px 2.5rem 30px 2.5rem;
    margin-right: calc(clamp(1.25rem, 5vw, 3rem) * -1);
    -webkit-overflow-scrolling: touch;
  }
  .gallery__grid::-webkit-scrollbar { height: 4px; }
  .gallery__grid::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }
  .gallery__item {
    grid-column: auto !important;
    grid-row: auto !important;
    flex: 0 0 75%;
    height: 320px;
    scroll-snap-align: start;
  }
}
