/* =====================
   IMPORTS & VARIABLES
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&family=Caveat:wght@400;600&display=swap');

:root {
  --terracotta: #C47B6A;
  --terracotta-light: #E8B5A6;
  --terracotta-pale: #F7E5E1;
  --beige: #F5EDE0;
  --beige-dark: #E8D9C6;
  --vert: #6B7C5C;
  --vert-light: #A8B99C;
  --vert-pale: #DDE6D8;
  --creme: #FDF9F4;
  --brun: #3D2E26;
  --brun-light: #6B5044;
  --white: #FFFFFF;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Caveat', cursive;

  --shadow-soft: 0 4px 20px rgba(61, 46, 38, 0.08);
  --shadow-medium: 0 8px 40px rgba(61, 46, 38, 0.12);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 32px;

  --transition: 0.3s ease;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--creme);
  color: var(--brun);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--brun);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  color: var(--brun-light);
}

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

/* =====================
   LAYOUT
   ===================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  color: var(--terracotta);
  margin-bottom: 0.4rem;
}

/* =====================
   NAVIGATION
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 249, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-dark);
  padding: 1rem 0;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brun);
}

.nav-logo-title {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--brun-light);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--brun) !important;
  transform: translateY(-1px) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brun);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-content {
  padding-top: 72px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--brun);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 123, 106, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-vert {
  background: var(--vert);
  color: var(--white);
}

.btn-vert:hover {
  background: #4a5940;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 124, 92, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--vert);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--creme);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* =====================
   HERO (Accueil)
   ===================== */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--creme) 0%, var(--beige) 60%, var(--beige-dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

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

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-illustration {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 46%;
  max-width: 520px;
  z-index: 1;
  pointer-events: none;
}

/* =====================
   VALEURS (Accueil)
   ===================== */
.valeurs {
  background: var(--white);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.valeur-card {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--terracotta-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.valeur-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
}

.valeur-card h3 {
  margin-bottom: 0.5rem;
}

.valeur-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* =====================
   APERÇU SERVICES (Accueil)
   ===================== */
.services-apercu {
  background: var(--beige);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.service-tag-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brun);
  transition: all var(--transition);
  border: 1px solid var(--beige-dark);
}

.service-tag-item:hover {
  background: var(--terracotta-pale);
  border-color: var(--terracotta-light);
  transform: translateY(-2px);
}

.service-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--vert);
  flex-shrink: 0;
}

.services-cta {
  text-align: center;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: var(--vert);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   PAGE HERO (pages internes)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero .lead {
  font-size: 1.08rem;
  color: var(--brun-light);
  margin: 0;
}

.page-hero-deco {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  pointer-events: none;
}

/* =====================
   À PROPOS PAGE
   ===================== */
.about-intro {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}

.about-illustration-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-illustration {
  width: 100%;
  max-width: 420px;
}

.about-photo {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1.1rem;
}

.about-values {
  background: var(--beige);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.value-item svg {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
}

.value-item h3 {
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  margin: 0;
}

.quote-section {
  background: var(--terracotta-pale);
  text-align: center;
  padding: 4.5rem 0;
}

.quote-section blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--brun);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.quote-section cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--terracotta);
}

/* =====================
   SERVICES PAGE
   ===================== */
.services-main {
  background: var(--white);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 4px solid var(--vert-light);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-top-color: var(--vert);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: var(--vert-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--vert);
}

.service-card p {
  font-size: 0.92rem;
  margin: 0;
}

.public-section {
  background: var(--beige);
}

.public-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.public-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

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

.public-card svg {
  width: 70px;
  height: 70px;
  margin-bottom: 1.25rem;
}

.public-card h3 {
  margin-bottom: 0.4rem;
}

.public-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* =====================
   TARIFS PAGE
   ===================== */
.tarifs-main {
  background: var(--white);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.tarif-card {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--beige-dark);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.tarif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--terracotta-light);
}

.tarif-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.tarif-card.featured {
  background: linear-gradient(160deg, var(--terracotta) 0%, #b5604e 100%);
  border-color: transparent;
}

.tarif-card.featured::before {
  background: rgba(255,255,255,0.3);
}

.tarif-card.featured h3,
.tarif-card.featured .tarif-duration,
.tarif-card.featured .tarif-desc {
  color: rgba(255,255,255,0.9);
}

.tarif-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.25rem;
  background: var(--terracotta-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tarif-card.featured .tarif-icon {
  background: rgba(255,255,255,0.2);
}

.tarif-icon svg {
  width: 28px;
  height: 28px;
}

.tarif-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.tarif-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin: 0.75rem 0 0.2rem;
}

.tarif-card.featured .tarif-price {
  color: var(--white);
}

.tarif-price sup {
  font-size: 1.4rem;
  vertical-align: super;
}

.tarif-duration {
  font-size: 0.8rem;
  color: var(--brun-light);
  display: block;
  margin-bottom: 1rem;
}

.tarif-desc {
  font-size: 0.88rem;
  color: var(--brun-light);
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--beige-dark);
}

.tarif-card.featured .tarif-desc {
  border-top-color: rgba(255,255,255,0.2);
}

.info-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-block {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--vert-light);
}

.info-block-icon {
  width: 44px;
  height: 44px;
  background: var(--vert-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-block-icon svg {
  width: 22px;
  height: 22px;
}

.info-block h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--vert);
}

.info-block p {
  font-size: 0.92rem;
  margin: 0;
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-main {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: var(--terracotta-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}

.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.95rem;
  color: var(--brun);
  font-weight: 600;
}

.contact-detail-text a:hover {
  color: var(--terracotta);
}

.contact-note {
  margin-top: 2rem;
  background: var(--vert-pale);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  font-size: 0.88rem;
  color: var(--vert);
  border-left: 3px solid var(--vert-light);
}

.contact-note p {
  color: var(--vert);
  margin: 0;
}

.contact-form-wrap {
  background: var(--creme);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-wrap h3 {
  margin-bottom: 0.4rem;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Form */
.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.82rem;
  font-weight: 700;
  color: var(--brun);
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brun);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 123, 106, 0.15);
}

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5044' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--brun-light);
  margin-top: 1rem;
  display: flex;
  gap: 0.4rem;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  background: var(--vert-pale);
  border: 1px solid var(--vert-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  color: var(--vert);
  font-size: 0.95rem;
  margin-top: 1.25rem;
  text-align: center;
  font-weight: 600;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--brun);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.footer-brand-title {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta-light);
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .valeurs-grid,
  .values-list,
  .public-grid,
  .tarifs-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

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

  .about-illustration-wrap {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: 3rem 0;
    min-height: auto;
  }

  .hero-illustration {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--creme);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--beige-dark);
    box-shadow: var(--shadow-medium);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    width: 100%;
  }

  .nav-cta {
    align-self: flex-start;
  }

  .hamburger {
    display: flex;
  }

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

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

  .info-blocks {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .tarifs-grid,
  .public-grid,
  .values-list,
  .valeurs-grid {
    grid-template-columns: 1fr;
  }
}
