/* Danigo Hospitality — layout & composants (fidèle à la plaquette) */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--royal);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; }
h1, h2, h3, p, ul { margin: 0; }
ul { padding: 0; list-style: none; }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--indigo);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.kicker {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--royal);
}

:focus-visible {
  outline: 2px solid var(--royal);
  outline-offset: 3px;
}

::selection { background: var(--indigo); color: var(--cream); }

/* ---------- Cartouches taupe ---------- */
.cartouche-tl, .cartouche-tr, .cartouche-b,
.cartouche-br, .cartouche-tl-big, .cartouche-tr-big { position: relative; }

.cartouche-tl img, .cartouche-tr img, .cartouche-b img,
.cartouche-br img, .cartouche-tl-big img, .cartouche-tr-big img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cartouche-tl::before, .cartouche-tr::before, .cartouche-b::before,
.cartouche-br::before, .cartouche-tl-big::before, .cartouche-tr-big::before {
  content: "";
  position: absolute;
  background: var(--taupe);
  z-index: 0;
}

.cartouche-tl::before { top: -2.25rem; left: -2.25rem; width: 100%; height: 100%; }
.cartouche-tr::before { top: -2.25rem; right: -2.25rem; width: 100%; height: 100%; }
.cartouche-b::before  { bottom: -2.25rem; left: 8%; width: 100%; height: 60%; }
.cartouche-br::before { bottom: -2rem; right: -2rem; width: 100%; height: 100%; }
.cartouche-tl-big::before { top: -2.75rem; left: -2.75rem; width: 55%; height: 50%; }
.cartouche-tr-big::before { top: -2.75rem; right: -2.75rem; width: 60%; height: 70%; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem var(--gutter);
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--indigo);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--royal);
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}

.nav-links a:hover { opacity: 0.6; }

.nav-actions { display: flex; align-items: center; gap: 1.25rem; }

.lang-toggle { display: flex; align-items: center; gap: 0.35rem; }

.lang-btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0.15rem 0.1rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--royal);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}

.lang-btn:hover { opacity: 0.8; }
.lang-btn.is-active { opacity: 1; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.lang-sep { color: var(--taupe); }

.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cream);
  background: var(--indigo);
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease);
  white-space: nowrap;
}

.nav-cta:hover { background: var(--royal); }

/* ---------- 1. Hero ---------- */
.hero { padding-top: 3.6rem; }

.hero-media {
  height: clamp(320px, 56vh, 640px);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 68%;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--indigo);
  text-transform: uppercase;
  font-size: clamp(2.1rem, 8.3vw, 7.2rem);
  line-height: 1;
  letter-spacing: 0.015em;
  white-space: nowrap;
  text-align: center;
  margin-top: clamp(1.5rem, 4vw, 3.5rem);
}

.hero-sub {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(1.25rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--royal);
}

/* ---------- 2. Bio ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.bio-title {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.bio-portrait {
  width: min(430px, 82%);
  margin-inline: auto;
}

.bio-text p { margin-bottom: 1.1em; font-size: 0.9rem; }
.bio-text p:last-child { margin-bottom: 0; }

/* ---------- 3. Identité culinaire ---------- */
.identite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.identite-photo {
  width: min(370px, 88%);
}

.identite-title {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  margin-top: clamp(-2.5rem, -3vw, -1.5rem);
  position: relative;
  z-index: 2;
}

.identite-left .kicker { margin-top: 1rem; max-width: 40ch; }

.identite-body {
  margin-top: 1.5rem;
  max-width: 48ch;
  font-size: 0.9rem;
}

.identite-right {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 8vw, 7rem);
}

.identite-taupe {
  position: absolute;
  top: 0;
  left: 0;
  right: calc(-1 * var(--gutter));
  bottom: 0;
  background: var(--taupe-soft);
}

.identite-camomille {
  position: relative;
  z-index: 1;
  width: 86%;
  margin-top: calc(-1 * clamp(3rem, 7vw, 6rem));
  margin-inline: auto 0;
}

/* ---------- 4 & 7. Galeries ---------- */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* ---------- 5. Chiffres ---------- */
.chiffres-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.chiffres-main > .display {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.chiffres-circles {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  flex-wrap: wrap;
}

.circle {
  width: clamp(145px, 13.5vw, 192px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.1rem;
  flex-shrink: 0;
}

.circle-indigo { background: var(--royal); color: var(--white); }

.circle-outline {
  background: var(--white);
  border: 1px solid var(--taupe);
  color: var(--indigo);
}

.circle-num {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
}

.circle-label {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 0.3rem;
  max-width: 12ch;
}

.circle-label-strong {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
  max-width: 10ch;
}

.circle-fleur { width: 34%; margin-top: 0.6rem; }

.circle-handle {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 0.35rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chiffres-lines {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  font-size: 0.82rem;
  max-width: 620px;
}

.stat-line { line-height: 1.9; }
.stat-line strong, .stat-maisons strong, .stat-pays strong { font-weight: 600; color: var(--royal); }
.stat-maisons { text-align: center; line-height: 1.7; }

.chiffres-photo {
  width: min(420px, 78%);
  margin-top: clamp(2rem, 4vw, 3.5rem);
  margin-left: calc(-1 * var(--gutter));
}

.chiffres-presse {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-top: clamp(0.5rem, 2vw, 1.5rem);
}

.presse-item:first-child { width: 92%; align-self: flex-end; }
.presse-item:nth-child(2) { width: 62%; }

.stat-pays {
  text-align: right;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ---------- 6. Expertises ---------- */
.expertises { position: relative; padding-bottom: 0; }

.expertises-taupe {
  position: absolute;
  top: clamp(2rem, 6vw, 5rem);
  right: 0;
  width: clamp(120px, 16vw, 230px);
  height: clamp(70px, 9vw, 130px);
  background: var(--taupe);
}

.expertises-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.expertises-portrait { width: min(430px, 92%); }

.expertises-left .kicker { margin-top: 1.4rem; }

.expertises-intro {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  max-width: 40ch;
}

.expertises-right .display { font-size: clamp(2.6rem, 5.4vw, 4.5rem); }

.expertises-list {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.expertises-list a {
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--royal);
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}

.expertises-list a:hover { opacity: 0.6; text-decoration: underline; text-underline-offset: 5px; }

.expertise-title { font-size: clamp(2.3rem, 4.6vw, 4rem); }

.expertise-text p { margin-bottom: 1em; font-size: 0.9rem; }
.expertise-text p:last-child { margin-bottom: 0; }

/* Consulting */
.expertise-bloc { padding-top: var(--space-section); }

.consulting-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3.5vw, 3rem) clamp(1.5rem, 4vw, 4rem);
}

.consulting-grid .expertise-title {
  grid-column: 1 / 3;
  grid-row: 1;
}

.consulting-photo {
  grid-column: 3;
  grid-row: 1 / 3;
  width: min(390px, 100%);
  justify-self: end;
}

.consulting-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

.consulting-sauce {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  width: min(340px, 100%);
}

.consulting-sauce img {
  aspect-ratio: 5 / 6;
  object-fit: cover;
  width: 100%;
}

.consulting-grid .expertise-text {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  max-width: 44ch;
}

/* Événementiel */
.evenementiel { padding-top: var(--space-section); }

.evenementiel-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
}

.evenementiel-text {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 4rem) clamp(2rem, 5vw, 4rem) var(--gutter);
  max-width: 640px;
  margin-left: auto;
}

.evenementiel-text .expertise-text { margin-top: clamp(1.5rem, 3vw, 2.5rem); max-width: 46ch; }

.evenementiel-photo img {
  width: 100%;
  height: clamp(420px, 78vh, 720px);
  object-fit: cover;
}

/* Direction artistique */
.da { position: relative; padding-bottom: var(--space-section); }

.da-taupe {
  position: absolute;
  top: clamp(3rem, 8vw, 7rem);
  right: 0;
  width: clamp(140px, 20vw, 300px);
  height: clamp(50px, 6vw, 90px);
  background: var(--taupe);
}

.da-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3.5vw, 3rem) clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.da-title { grid-column: 1 / 3; grid-row: 1; align-self: start; }

.da-photo-left {
  grid-column: 1;
  grid-row: 2;
  width: min(400px, 100%);
  margin-left: calc(-1 * var(--gutter));
}

.da-text { grid-column: 2; grid-row: 2; max-width: 36ch; }

.da-photo-right {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  margin-top: clamp(3rem, 8vw, 7rem);
  margin-right: calc(-1 * var(--gutter));
}

/* ---------- 8. Clients ---------- */
.clients-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.clients-intro { max-width: 52ch; font-size: 0.9rem; }

.clients-head .display {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  justify-self: end;
  text-align: right;
}

.clients-logos {
  background: var(--taupe-band);
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 4vw, 4rem);
}

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

.logo-cell img {
  max-height: clamp(110px, 13vw, 170px);
  width: auto;
  max-width: min(340px, 90%);
  object-fit: contain;
}

/* ---------- 9. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.contact-photo { margin-top: 2.75rem; }

.contact-right .display {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-coords {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 1.02rem;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.contact-coords a {
  text-decoration: none;
  transition: opacity 0.25s var(--ease);
}

.contact-coords a:hover { opacity: 0.6; text-decoration: underline; text-underline-offset: 4px; }

/* Formulaire */
.contact-form { max-width: 620px; }

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

.form-field { margin-bottom: 1.25rem; display: flex; flex-direction: column; }

.form-field label {
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--royal);
  margin-bottom: 0.45rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  background: var(--white);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--indigo);
  transition: border-color 0.25s var(--ease);
  width: 100%;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23133c78' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  cursor: pointer;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--royal);
  outline: 2px solid var(--royal);
  outline-offset: 1px;
}

.form-field input.is-invalid,
.form-field select.is-invalid,
.form-field textarea.is-invalid { border-color: #b3402e; }

.form-feedback {
  min-height: 1.4em;
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
}

.form-feedback.is-error { color: #b3402e; }
.form-feedback.is-success { color: var(--royal); font-weight: 500; }

.form-submit {
  appearance: none;
  border: none;
  cursor: pointer;
  background: var(--indigo);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 1rem 2.75rem;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), opacity 0.25s var(--ease);
}

.form-submit:hover { background: var(--royal); }
.form-submit:disabled { opacity: 0.55; cursor: wait; }

/* ---------- 10. Footer ---------- */
.footer { padding-bottom: 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.footer-photo { width: min(520px, 92%); margin-top: 2.75rem; }

.footer-merci {
  font-size: clamp(3rem, 7vw, 6rem);
  text-align: center;
}

.footer-brand {
  margin-top: clamp(3rem, 7vw, 6rem);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--royal);
}

/* ---------- Animations (reveal) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

html.js .reveal[data-reveal-delay="1"] { transition-delay: 0.14s; }
html.js .reveal[data-reveal-delay="2"] { transition-delay: 0.28s; }

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-media img { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-media img { will-change: auto; transform: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .nav-links { display: none; }

  .consulting-grid {
    grid-template-columns: 1fr 1fr;
  }
  .consulting-grid .expertise-title { grid-column: 1 / 3; }
  .consulting-photo { grid-column: 2; grid-row: 2; }
  .consulting-sauce { grid-column: 1; grid-row: 2; align-self: start; }
  .consulting-grid .expertise-text { grid-column: 1 / 3; grid-row: 3; }

  .da-grid { grid-template-columns: 1fr 1fr; }
  .da-title { grid-column: 1 / 3; }
  .da-photo-left { grid-column: 1; }
  .da-text { grid-column: 2; }
  .da-photo-right { grid-column: 1 / 3; grid-row: 3; margin-top: 0; justify-self: end; width: min(480px, 85%); }
}

@media (max-width: 820px) {
  .hero-title { white-space: normal; text-align: left; font-size: clamp(2.6rem, 11.5vw, 4.5rem); }
  .hero-sub { letter-spacing: 0.2em; font-size: 0.68rem; gap: 1rem; }

  .bio-grid,
  .identite-grid,
  .chiffres-grid,
  .expertises-grid,
  .clients-head,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .galerie-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .galerie-item { width: min(420px, 88%); margin-inline: auto; }

  .bio-portrait { margin-inline: 0; }

  .identite-right { margin-top: 3.5rem; }

  .chiffres-circles { justify-content: center; }
  .chiffres-lines { flex-direction: column; gap: 1rem; }
  .chiffres-photo { width: min(420px, 88%); }
  .presse-item:first-child { width: min(420px, 92%); align-self: flex-start; }
  .presse-item:nth-child(2) { width: min(320px, 62%); }
  .stat-pays { text-align: left; }

  .clients-head .display { justify-self: start; text-align: left; }
  .clients-logos { grid-template-columns: 1fr; gap: 3rem; }

  .consulting-grid { grid-template-columns: 1fr; }
  .consulting-grid .expertise-title { grid-column: 1; }
  .consulting-photo { grid-column: 1; grid-row: 2; justify-self: start; }
  .consulting-sauce { grid-column: 1; grid-row: 3; margin-top: 1rem; }
  .consulting-grid .expertise-text { grid-column: 1; grid-row: 4; }

  .evenementiel-grid { grid-template-columns: 1fr; }
  .evenementiel-text { padding: 0 var(--gutter) 2.5rem; margin-left: 0; }
  .evenementiel-photo img { height: auto; max-height: 70vh; }

  .da-grid { grid-template-columns: 1fr; }
  .da-title, .da-photo-left, .da-text, .da-photo-right { grid-column: 1; }
  .da-photo-left { grid-row: 2; }
  .da-text { grid-row: 3; max-width: 46ch; }
  .da-photo-right { grid-row: 4; width: min(420px, 85%); }

  .form-row { grid-template-columns: 1fr; gap: 0; }

  .footer-merci { padding-block: 1.5rem; }
}

@media (max-width: 480px) {
  .nav-cta { display: none; }
  .circle { width: 140px; }
  .cartouche-tl::before, .cartouche-tr::before { top: -1.4rem; }
  .cartouche-tl::before { left: -1.4rem; }
  .cartouche-tr::before { right: -1.4rem; }
  .cartouche-b::before { bottom: -1.4rem; }
}
