:root {
  --ink: #07111f;
  --ink-2: #142033;
  --paper: #fffaf2;
  --surface: #ffffff;
  --muted: #6b7280;
  --line: #d9dde5;
  --red: #e21728;
  --red-dark: #b90f1d;
  --teal: #107987;
  --green: #128c53;
  --blue: #2457d6;
  --gold: #c99637;
  --shadow: 0 18px 45px rgba(7, 17, 31, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: #f4f6f8;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: #fff;
  background: rgba(7, 17, 31, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__mark {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 42px;
  place-items: center;
}

.brand__mark svg {
  width: 52px;
  height: 42px;
  fill: none;
  stroke: #fff;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__mark svg path:last-child {
  stroke: var(--red);
  stroke-width: 4;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: #dfe6f2;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 24px);
  color: #eef3fb;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.header-call {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(226, 23, 40, 0.28);
}

.header-call svg,
.button svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-call:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(620px, 86svh, 790px);
  padding: 116px clamp(20px, 5vw, 68px) 70px;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.86) 35%, rgba(7, 17, 31, 0.34) 70%, rgba(7, 17, 31, 0.1) 100%),
    url("assets/flyer-dream-evenementiel.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  content: "";
  background: linear-gradient(0deg, rgba(7, 17, 31, 0.86), rgba(7, 17, 31, 0));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.8rem, 9vw, 7.8rem);
}

.hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #f1f5fb;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button--primary {
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  box-shadow: 0 14px 30px rgba(226, 23, 40, 0.28);
}

.button--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button--whatsapp {
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green);
  box-shadow: 0 14px 30px rgba(18, 140, 83, 0.24);
}

.button--whatsapp:hover {
  background: #0f7546;
  border-color: #0f7546;
}

.button--sms {
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 14px 30px rgba(36, 87, 214, 0.2);
}

.button--sms:hover {
  background: #1f49b4;
  border-color: #1f49b4;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero__tags li {
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 40px));
  margin: -44px auto 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-facts__item {
  min-height: 96px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.quick-facts__item:last-child {
  border-right: 0;
}

.quick-facts__item span,
.contact-panel__label,
.contact-panel__note {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-facts__item strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
}

.section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 68px);
  background: #f4f6f8;
}

.section--white {
  background: #fff;
}

.section--intro {
  padding-top: clamp(86px, 10vw, 140px);
  background: #f4f6f8;
}

.section__inner,
.contact-section__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: end;
}

.section h2,
.contact-section h2 {
  max-width: 800px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
}

.intro-text,
.split__copy p,
.visual-copy p,
.zones-grid p,
.contact-copy p,
.package-card p,
.proof-grid > div > p,
.local-grid p,
.faq-list p {
  margin: 0;
  color: #465061;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 255px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 17, 31, 0.06);
}

.service-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.step h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-card p,
.step p,
.feature-list span {
  margin: 12px 0 0;
  color: #596374;
}

.section--dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(226, 23, 40, 0.16), rgba(16, 121, 135, 0.12)),
    var(--ink);
}

.section--dark .split__copy p {
  color: #eef3fb;
}

.section--dark .section-kicker {
  color: #ff5b66;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.split__copy p {
  max-width: 600px;
  margin-top: 24px;
}

.split__copy .button {
  margin-top: 30px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.step {
  min-height: 190px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.step span {
  display: inline-block;
  margin-bottom: 24px;
  color: #ff727b;
  font-weight: 900;
}

.step p {
  color: #d6deea;
}

.section--packages {
  background:
    linear-gradient(180deg, #f4f6f8 0%, #ffffff 100%);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card {
  position: relative;
  min-height: 360px;
  padding: 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.07);
}

.package-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: var(--red);
}

.package-card--featured {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(226, 23, 40, 0.9), rgba(7, 17, 31, 0.96)),
    var(--ink);
  border-color: rgba(226, 23, 40, 0.28);
  box-shadow: 0 18px 42px rgba(226, 23, 40, 0.22);
}

.package-card--featured p,
.package-card--featured li {
  color: #eef3fb;
}

.package-card__tag {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 10px;
  color: var(--red);
  background: rgba(226, 23, 40, 0.08);
  border: 1px solid rgba(226, 23, 40, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card--featured .package-card__tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.package-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.08;
}

.package-card p {
  margin-top: 18px;
}

.package-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: #465061;
  font-weight: 700;
}

.package-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transform: translateY(-50%);
}

.section--visual {
  background: var(--paper);
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.poster {
  position: relative;
  margin: 0;
}

.poster::before {
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  content: "";
  background: var(--teal);
  border-radius: 8px;
}

.poster img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 780px;
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-copy p {
  max-width: 670px;
  margin-top: 24px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.feature-list div {
  padding: 20px 0 20px 22px;
  border-left: 4px solid var(--red);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  font-size: 1.08rem;
}

.section--gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, 24vw);
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 17, 31, 0.12);
}

.gallery-card--wide {
  grid-column: span 2;
}

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

.gallery-card:nth-child(2) img,
.gallery-card:nth-child(4) img {
  object-position: center 22%;
}

.gallery-card:nth-child(3) img {
  object-position: 76% center;
}

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

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 42px 18px 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(0deg, rgba(7, 17, 31, 0.86), rgba(7, 17, 31, 0));
}

.section--proof {
  background:
    linear-gradient(135deg, rgba(16, 121, 135, 0.08), rgba(226, 23, 40, 0.06)),
    #f4f6f8;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.proof-grid > div > p {
  max-width: 540px;
  margin-top: 22px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial {
  min-height: 250px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(7, 17, 31, 0.06);
}

.testimonial span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 10px;
  color: var(--muted);
  background: #f3f5f8;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial h3 {
  margin: 0;
  font-size: 1.2rem;
}

.testimonial p {
  margin: 12px 0 0;
  color: #596374;
}

.section--zones {
  background: #fff;
}

.zones-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  gap: 34px 54px;
  align-items: center;
}

.zones-grid p {
  grid-column: 1 / -1;
  max-width: 780px;
}

.departments {
  display: flex;
  gap: 12px;
}

.departments span {
  display: grid;
  width: clamp(78px, 9vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border: 3px solid var(--red);
  border-radius: 8px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(7, 17, 31, 0.12);
}

.section--local-seo {
  padding-top: 0;
  background: #fff;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.local-grid article {
  padding: 26px;
  background: #f4f6f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.local-grid h3 {
  margin: 0;
  font-size: 1.2rem;
}

.local-grid p {
  margin-top: 12px;
}

.section--faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 84px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 17, 31, 0.06);
}

.faq-list summary {
  padding: 20px 22px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  padding: 0 22px 22px;
}

.contact-section {
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 68px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.74)),
    url("assets/flyer-dream-evenementiel.jpg") center / cover no-repeat;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(32px, 8vw, 90px);
  align-items: start;
}

.contact-copy p {
  max-width: 680px;
  margin-top: 24px;
  color: #e9eef7;
}

.contact-panel {
  margin-top: 34px;
  padding: 32px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel__phone {
  display: block;
  margin: 10px 0 8px;
  color: var(--red);
  font-size: clamp(1.9rem, 5.4vw, 2.85rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.contact-actions .button {
  min-height: 44px;
  padding: 0 12px;
}

.quote-form {
  padding: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-grid__full {
  grid-column: 1 / -1;
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form label span,
.quote-preview span {
  color: #374151;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfd6e1;
  border-radius: 6px;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(226, 23, 40, 0.18);
}

.quote-preview {
  margin-top: 18px;
  padding: 16px;
  background: #f4f6f8;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
}

.quote-preview p {
  margin: 8px 0 0;
  color: #465061;
  white-space: pre-line;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: min(430px, calc(100% - 32px));
  padding: 8px;
  background: rgba(7, 17, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.floating-cta a {
  display: grid;
  min-height: 42px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 900;
}

.floating-cta a:nth-child(2) {
  background: var(--green);
}

.floating-cta a:nth-child(3) {
  background: rgba(255, 255, 255, 0.12);
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(226, 23, 40, 0.5)),
    url("assets/flyer-dream-evenementiel.jpg") center / cover no-repeat;
}

.not-found__panel {
  width: min(560px, 100%);
  padding: 38px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.not-found__panel h1 {
  margin: 0;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  line-height: 1;
}

.not-found__panel p:not(.section-kicker) {
  color: #465061;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 5vw, 68px);
  color: #dce5f2;
  background: #050b14;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
  font-size: 1rem;
}

.site-footer span {
  margin-top: 4px;
  color: #aab6c7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links span {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 96px clamp(20px, 5vw, 68px) 0;
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs [aria-current="page"] {
  color: var(--muted);
}

.city-hero {
  padding: 28px clamp(20px, 5vw, 68px) 56px;
  background:
    linear-gradient(110deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.82) 55%, rgba(7, 17, 31, 0.5) 100%),
    url("assets/flyer-dream-evenementiel.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.city-hero__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.city-hero h1 {
  margin: 6px 0 0;
  max-width: 780px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
}

.city-hero__lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #f1f5fb;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 700;
}

.city-hero .hero__actions {
  margin-top: 28px;
}

.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.city-links a,
.city-links__static {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.city-links a:hover,
.city-links a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.city-links__static {
  color: var(--muted);
  background: #f4f6f8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 17, 31, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(7, 17, 31, 0.1);
}

.blog-card__meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  color: #465061;
}

.blog-card a {
  align-self: flex-start;
  margin-top: 4px;
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 28px) 64px;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.article h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.article__lead {
  margin: 0 0 28px;
  color: #465061;
  font-size: 1.18rem;
  font-weight: 600;
}

.article h2 {
  margin: 36px 0 12px;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 900;
  line-height: 1.18;
}

.article h3 {
  margin: 24px 0 10px;
  font-size: 1.15rem;
  font-weight: 800;
}

.article p,
.article li {
  color: #2c3543;
  font-size: 1.05rem;
  line-height: 1.65;
}

.article p {
  margin: 0 0 16px;
}

.article ul,
.article ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.article li {
  margin-bottom: 6px;
}

.article strong {
  color: var(--ink);
}

.article blockquote {
  margin: 22px 0;
  padding: 16px 20px;
  background: #f4f6f8;
  border-left: 4px solid var(--red);
  font-style: italic;
  color: #2c3543;
}

.article__cta {
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(226, 23, 40, 0.06), rgba(7, 17, 31, 0.04));
  border: 1px solid rgba(226, 23, 40, 0.12);
  border-radius: 8px;
}

.article__cta h2 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 100;
  display: none;
  width: min(640px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 22px;
  color: #fff;
  background: rgba(7, 17, 31, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 900;
}

.cookie-banner__text {
  margin: 0 0 14px;
  color: #d6deea;
  font-size: 0.92rem;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner__actions .button {
  flex: 1 1 0;
  min-width: 110px;
  min-height: 42px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
}

.footer-legal a {
  color: #aab6c7;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(7, 17, 31, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.22s ease;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .nav-button {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 10px;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    cursor: pointer;
  }

  .nav-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .header-call {
    min-width: 46px;
    padding: 0 13px;
    font-size: 0;
  }

  .header-call svg {
    margin: 0;
  }

  .quick-facts,
  .service-grid,
  .steps,
  .package-grid,
  .testimonial-grid,
  .local-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-grid,
  .section-heading,
  .split,
  .visual-grid,
  .proof-grid,
  .faq-grid,
  .contact-section__inner {
    grid-template-columns: 1fr;
  }

  .section-heading .section-kicker {
    margin-bottom: 0;
  }

  .visual-grid {
    gap: 48px;
  }

  .poster {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 76px;
  }

  .breadcrumbs {
    padding: 88px 18px 0;
  }

  .city-hero {
    padding: 22px 18px 44px;
  }

  .city-hero h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .site-header {
    min-height: 70px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand__mark,
  .brand__mark svg {
    width: 42px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    min-height: 88svh;
    padding: 108px 20px 66px;
    background-image:
      linear-gradient(180deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.78) 52%, rgba(7, 17, 31, 0.72) 100%),
      url("assets/flyer-dream-evenementiel.jpg");
    background-position: 62% center;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5.5rem);
  }

  .hero__lead {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }

  .hero__tags li {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .quick-facts {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: -28px;
  }

  .quick-facts__item {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts__item:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .service-grid,
  .steps,
  .package-grid,
  .testimonial-grid,
  .local-grid,
  .form-grid,
  .form-actions,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step,
  .package-card,
  .testimonial {
    min-height: 0;
    padding: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(245px, 78vw);
  }

  .gallery-card--wide {
    grid-column: span 1;
  }

  .poster::before {
    inset: 12px -10px -12px 10px;
  }

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

  .departments {
    width: 100%;
    justify-content: space-between;
  }

  .departments span {
    width: 31%;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 22px;
  }

  .form-grid__full {
    grid-column: auto;
  }

  .floating-cta {
    display: grid;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .brand__mark,
  .brand__mark svg {
    width: 38px;
  }

  .hero__tags li {
    flex-basis: 100%;
  }
}
