/* ==========================================================================
   Les Agents — Conciergerie Airbnb & Booking (Rouen)
   Static site stylesheet
   ========================================================================== */

:root {
  /* Colors — brand gradient stops */
  --color-brand-yellow: #F9B312;
  --color-brand-orange: #F4871F;
  --color-brand-pink: #EE4060;
  --color-brand-purple: #7C3F97;
  --color-brand-blue: #2E3192;

  /* Colors — text */
  --color-text: #1A1410;
  --color-text-soft: #3A332B;
  --color-text-mid: #5A524A;
  --color-text-muted: #6B6258;
  --color-text-faint: #8A8178;
  --color-text-fainter: #A89F95;
  --color-text-label: #9C938A;

  /* Colors — surfaces */
  --color-bg: #ffffff;
  --color-bg-cream: #FAF7F2;
  --color-bg-sand: #F5F1EA;

  /* Colors — borders */
  --color-border: #EFEAE2;
  --color-border-soft: #F0EBE3;
  --color-border-header: #EEE9E1;
  --color-border-input: #E4DED5;
  --color-border-pill: #EBE5DC;

  /* Colors — footer */
  --color-footer-bg: #1A1410;
  --color-footer-border: #2E2820;
  --color-footer-text: #D8D0C7;
  --color-footer-text-soft: #B9AFA4;
  --color-footer-text-faint: #9A8F84;

  /* Gradients */
  --gradient-brand: linear-gradient(110deg, var(--color-brand-orange), var(--color-brand-pink) 55%, var(--color-brand-purple));
  --gradient-brand-full: linear-gradient(120deg, var(--color-brand-yellow), var(--color-brand-orange) 24%, var(--color-brand-pink) 52%, var(--color-brand-purple) 80%, var(--color-brand-blue));
  --gradient-brand-text: linear-gradient(110deg, var(--color-brand-yellow), var(--color-brand-orange) 30%, var(--color-brand-pink) 55%, var(--color-brand-purple) 80%, var(--color-brand-blue));
  --gradient-brand-icon: linear-gradient(125deg, var(--color-brand-orange), var(--color-brand-pink) 60%, var(--color-brand-purple));
  --gradient-brand-vertical: linear-gradient(180deg, var(--color-brand-yellow), var(--color-brand-orange), var(--color-brand-pink), var(--color-brand-purple), var(--color-brand-blue));
  --gradient-brand-line: linear-gradient(90deg, var(--color-brand-yellow), var(--color-brand-orange), var(--color-brand-pink), var(--color-brand-purple), var(--color-brand-blue));

  /* Typography */
  --font-family-base: 'Poppins', system-ui, sans-serif;
  --font-family-serif: 'Playfair Display', serif;
  --font-family-script: 'Dancing Script', cursive;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4.5rem;

  /* Layout */
  --container-max: 1180px;
  --container-pad: 26px;
  --header-height: 74px;

  /* Breakpoints (reference for JS / container queries) */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;

  /* Misc */
  --transition-base: 150ms ease-in-out;
  --border-radius-base: 0.375rem;
  --border-radius-card: 16px;
  --border-radius-card-lg: 20px;
  --border-radius-panel: 24px;
  --border-radius-pill: 999px;
  --shadow-card: 0 20px 40px -22px rgba(26, 20, 16, 0.25);
  --shadow-cta: 0 12px 26px -10px rgba(238, 64, 96, 0.55);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection {
  background: var(--color-brand-pink);
  color: #fff;
}

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

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

@keyframes laFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

main > * {
  animation: laFade 0.45s ease both;
}

/* ==========================================================================
   Text utilities
   ========================================================================== */

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.script-heading {
  font-family: var(--font-family-script);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--color-brand-pink);
  line-height: 1;
}

.section-title {
  font-family: var(--font-family-serif);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 4px 0 0;
  font-size: clamp(28px, 4.5vw, 38px);
}

.section-head {
  margin-bottom: 44px;
}

.section-head--center {
  text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.btn--gradient {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-cta);
}

.btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(238, 64, 96, 0.65);
}

.btn--outline {
  background: var(--color-bg);
  border: 1px solid var(--color-border-input);
  color: var(--color-text);
  padding: 14px 26px;
}

.btn--outline:hover {
  border-color: var(--color-text);
}

.btn--white {
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.4);
}

.btn--white:hover {
  transform: translateY(-2px);
}

.btn--sm {
  font-size: 14px;
  padding: 11px 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border-header);
}

.site-header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-decoration: none;
  text-align: left;
}

.brand__name {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-right: 0.12em;
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.brand__tagline {
  font-weight: 500;
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-label);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__link {
  position: relative;
  padding: 6px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--color-text-soft);
  text-decoration: none;
}

.site-nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2.5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-brand-orange), var(--color-brand-pink), var(--color-brand-purple));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--color-border-input);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--color-text);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border-header);
    padding: 10px var(--container-pad) 20px;
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link {
    padding: 13px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--color-border-soft);
  }

  .site-nav__link.is-active::after {
    display: none;
  }

  .site-nav__link.is-active {
    color: var(--color-brand-pink);
    font-weight: 600;
  }

  .site-nav .btn {
    margin-top: 16px;
  }
}

/* ==========================================================================
   Hero (piste « Équilibrée »)
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__rainbow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 74px;
  background: var(--gradient-brand-vertical);
}

.hero__inner {
  padding-top: 60px;
  padding-bottom: 78px;
  display: flex;
  gap: 54px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.hero__content {
  flex: 1 1 380px;
  min-width: min(320px, 100%);
}

.hero__script {
  font-family: var(--font-family-script);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 62px);
  line-height: 0.9;
  margin: 6px 0 4px;
  background: linear-gradient(115deg, var(--color-brand-orange), var(--color-brand-pink) 50%, var(--color-brand-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__title {
  font-family: var(--font-family-serif);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 8px 0 20px;
  color: var(--color-text);
}

.hero__title em {
  font-style: italic;
  background: linear-gradient(110deg, var(--color-brand-orange), var(--color-brand-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 430px;
  margin: 0 0 30px;
}

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

.hero__gallery {
  flex: 1 1 360px;
  min-width: min(320px, 100%);
  position: relative;
  height: 480px;
}

.hero__photo-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 62%;
  height: 300px;
  box-shadow: 0 24px 50px -24px rgba(26, 20, 16, 0.4);
  border-radius: 20px;
  overflow: hidden;
}

.hero__photo-b {
  position: absolute;
  bottom: 0;
  right: 24px;
  width: 58%;
  height: 280px;
  border: 6px solid #fff;
  border-radius: var(--border-radius-panel);
  box-shadow: 0 24px 50px -22px rgba(26, 20, 16, 0.35);
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero__rainbow {
    width: 12px;
  }

  .hero__inner {
    padding-top: 40px;
    padding-bottom: 50px;
    gap: 34px;
  }

  .hero__gallery {
    height: 380px;
  }

  .hero__photo-b {
    right: 0;
  }
}

/* ==========================================================================
   Image slots (placeholders en attendant les vraies photos)
   ========================================================================== */

.img-slot {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(244, 135, 31, 0.08), rgba(238, 64, 96, 0.08) 50%, rgba(124, 63, 151, 0.1)),
    var(--color-bg-sand);
  border: 1px dashed var(--color-border-input);
  color: var(--color-text-fainter);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: var(--spacing-md);
}

.img-slot img,
.hero__photo-a img,
.hero__photo-b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Chiffres
   ========================================================================== */

.stats {
  padding-top: 18px;
  padding-bottom: 64px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.stat-card {
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  padding: 24px 22px;
}

.stat-card__value {
  font-family: var(--font-family-serif);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(115deg, var(--color-brand-orange), var(--color-brand-pink) 60%, var(--color-brand-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stat-card__label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Sections & cards
   ========================================================================== */

.section {
  padding-top: 74px;
  padding-bottom: 74px;
}

.section--cream {
  background: var(--color-bg-cream);
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.section--page-head {
  padding-top: 64px;
  padding-bottom: 8px;
}

.section--cards {
  padding-top: 40px;
  padding-bottom: 24px;
}

.section--offset {
  margin-top: 36px;
}

.page-head__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0;
}

.page-title {
  font-family: var(--font-family-serif);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 46px);
  letter-spacing: -0.02em;
  margin: 4px 0 16px;
  color: var(--color-text);
}

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

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  padding: 26px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.service-card__num {
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: 15px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--gradient-brand-icon);
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text);
}

.service-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.section__cta {
  text-align: center;
  margin-top: 36px;
}

/* Gestion (services détail) */

.gestion-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
}

.gestion-card__bar {
  flex: none;
  width: 8px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--color-brand-orange), var(--color-brand-pink), var(--color-brand-purple));
}

.gestion-card__title {
  font-size: 16.5px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--color-text);
}

.gestion-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* Steps (comment ça marche) */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.step-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  padding: 28px 24px;
  position: relative;
}

.step-card__num {
  font-family: var(--font-family-serif);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 10px;
  background: var(--gradient-brand-icon);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.step-card__title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--color-text);
}

.step-card__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

/* ==========================================================================
   Nos biens
   ========================================================================== */

.biens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
}

.bien-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card-lg);
  overflow: hidden;
  box-shadow: 0 14px 36px -24px rgba(26, 20, 16, 0.3);
}

.bien-card__photo {
  width: 100%;
  height: 240px;
}

.bien-card__body {
  padding: 22px 24px 26px;
}

.bien-card__names {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.bien-card__nickname {
  font-family: var(--font-family-script);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-brand-purple);
}

.bien-card__place {
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
}

.bien-card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-fainter);
  margin: 6px 0 14px;
}

.bien-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-mid);
  background: var(--color-bg-sand);
  border: 1px solid var(--color-border-pill);
  border-radius: var(--border-radius-pill);
  padding: 5px 12px;
}

.tag--highlight {
  color: #fff;
  background: linear-gradient(110deg, var(--color-brand-orange), var(--color-brand-pink));
  border: none;
}

/* ==========================================================================
   Zones d'intervention
   ========================================================================== */

.zones__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 0 24px;
}

.zones__text a {
  color: var(--color-brand-pink);
  font-weight: 600;
  text-decoration: none;
}

.zones__text a:hover {
  text-decoration: underline;
}

.zones__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 760px;
}

.zones__more {
  font-size: 14px;
  color: var(--color-text-faint);
  margin: 20px 0 0;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: var(--border-radius-pill);
  background: var(--color-bg-sand);
  border: 1px solid var(--color-border-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--color-brand-pink);
}

.faq-item__answer {
  padding: 0 24px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

.faq-item__answer a {
  color: var(--color-brand-pink);
  font-weight: 600;
  text-decoration: none;
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  background: var(--gradient-brand-full);
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 120% at 20% 0%, rgba(255, 255, 255, 0.16), transparent 55%);
}

.cta-band__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px var(--container-pad);
  text-align: center;
  position: relative;
  color: #fff;
}

.cta-band__title {
  font-family: var(--font-family-serif);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.cta-band__text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 540px;
  margin: 0 auto 30px;
}

/* ==========================================================================
   Tarifs
   ========================================================================== */

.pricing {
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px;
  align-items: start;
}

.price-card {
  position: relative;
  background: linear-gradient(125deg, var(--color-brand-yellow), var(--color-brand-orange) 26%, var(--color-brand-pink) 56%, var(--color-brand-purple) 84%, var(--color-brand-blue));
  border-radius: var(--border-radius-panel);
  padding: 40px 36px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 26px 54px -26px rgba(124, 63, 151, 0.55);
}

.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 90% at 90% 0%, rgba(255, 255, 255, 0.18), transparent 60%);
}

.price-card__inner {
  position: relative;
}

.price-card__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 6px;
}

.price-card__value {
  font-family: var(--font-family-serif);
  font-weight: 800;
  font-size: 72px;
  line-height: 0.9;
}

.price-card__unit {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.price-card__text {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 22px;
}

.price-card__note {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(4px);
}

.price-card__note-title {
  font-weight: 600;
  font-size: 14.5px;
}

.price-card__note-text {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.included-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-panel);
  padding: 36px 32px;
}

.included-card__title {
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--color-text);
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list__item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.check-list__icon {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-pill);
  background: var(--gradient-brand-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}

.check-list__text {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-soft);
}

.included-card__footer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border-soft);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ==========================================================================
   À propos
   ========================================================================== */

.about {
  padding-top: 64px;
  padding-bottom: 64px;
  display: flex;
  gap: 54px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about__story {
  flex: 1 1 380px;
  min-width: min(320px, 100%);
}

.about__story p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 0 0 16px;
}

.about__story p:last-child {
  margin-bottom: 0;
}

.about__portrait-col {
  flex: 0 1 320px;
  min-width: min(280px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.portrait {
  position: relative;
  width: 280px;
  height: 280px;
}

.portrait::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: var(--border-radius-pill);
  background: linear-gradient(135deg, var(--color-brand-yellow), var(--color-brand-orange), var(--color-brand-pink), var(--color-brand-purple), var(--color-brand-blue));
}

.portrait__photo {
  position: absolute;
  inset: 0;
  width: 280px;
  height: 280px;
  border: 5px solid #fff;
  border-radius: var(--border-radius-pill);
  overflow: hidden;
}

.portrait-caption {
  text-align: center;
}

.portrait-caption__name {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-text);
}

.portrait-caption__role {
  font-size: 13px;
  color: var(--color-text-faint);
}

.about-panels {
  padding-top: 8px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}

.about-panel {
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 30px 28px;
}

.about-panel__title {
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 18px;
  color: var(--color-text);
}

.dot-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dot-list__item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.dot-list__dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: var(--border-radius-pill);
  background: linear-gradient(125deg, var(--color-brand-orange), var(--color-brand-pink));
  margin-top: 8px;
}

.dot-list__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.insta-band-wrap {
  padding-top: 30px;
  padding-bottom: 64px;
}

.insta-band {
  background: linear-gradient(120deg, var(--color-brand-orange), var(--color-brand-pink) 50%, var(--color-brand-purple));
  border-radius: var(--border-radius-card-lg);
  padding: 34px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
}

.insta-band__title {
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 4px;
}

.insta-band__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.insta-band__link {
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  white-space: nowrap;
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
  padding-top: 64px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 40px;
  align-items: start;
}

.contact__intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 460px;
  margin: 0 0 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 180px;
}

.form-field--full {
  flex: 1 1 100%;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--color-border-input);
  border-radius: 12px;
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-base);
}

.form-field textarea {
  resize: vertical;
}

.form-field select {
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-brand-pink);
}

.contact-form .btn {
  margin-top: 4px;
  font-size: 16px;
}

.form-success {
  max-width: 480px;
  background: var(--color-bg-cream);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 34px 30px;
  text-align: center;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-pill);
  background: var(--gradient-brand-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.form-success__title {
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--color-text);
}

.form-success__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.form-success__text:last-child {
  margin-bottom: 0;
}

.form-success__text a {
  color: var(--color-brand-pink);
  font-weight: 600;
  text-decoration: none;
}

.is-hidden {
  display: none !important;
}

/* Coordonnées */

.contact-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 18px 44px -28px rgba(26, 20, 16, 0.3);
}

.contact-card__script {
  font-family: var(--font-family-script);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-brand-purple);
  line-height: 1;
}

.contact-card__name {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-text);
  margin: 6px 0 24px;
}

.contact-card__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.contact-line__icon {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--gradient-brand-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.contact-line__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  word-break: break-word;
}

.contact-card__legal {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--color-border-soft);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--color-text-fainter);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--color-footer-bg);
  color: #fff;
}

.site-footer__rainbow {
  height: 5px;
  background: var(--gradient-brand-line);
}

.site-footer__grid {
  padding-top: 54px;
  padding-bottom: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
}

.site-footer__brand-name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.05em;
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.site-footer__tagline {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-footer-text-faint);
  margin-top: 4px;
}

.site-footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-footer-text-soft);
  margin: 16px 0 0;
  max-width: 260px;
}

.site-footer__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 14px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.site-footer__links a,
.site-footer__contact a {
  color: var(--color-footer-text);
  font-size: 14.5px;
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14.5px;
  color: var(--color-footer-text);
}

.site-footer__contact .email {
  word-break: break-all;
}

.site-footer__bottom {
  border-top: 1px solid var(--color-footer-border);
}

.site-footer__bottom-inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--color-text-faint);
}
