/* ═══════════════════════════════════════════════════════
   Dr. Marc Vanmeerbeek — Cabinet médical · Liège
   Design : Bleu clair (azur) — #2f9fe6
   Polices : Cormorant Garamond + Nunito
   ═══════════════════════════════════════════════════════ */

/* — Reset — (scopé à .vmb-site : ne touche pas le contenu outil/Tailwind) */
.vmb-site, .vmb-site *, .vmb-site *::before, .vmb-site *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* — Variables — */
:root {
  --terra:        #2f9fe6;   /* bleu clair vif */
  --terra-dark:   #1c82c8;
  --terra-light:  #e3f3fd;
  --olive:        #123a5c;   /* bleu foncé profond */
  --olive-mid:    #245d8a;
  --olive-light:  #bcdcf3;
  --charcoal:     #0b2236;   /* quasi-noir bleu pour hero */
  --warm-dark:    #07151f;
  --mid:          #3f6d92;
  --muted:        #7aa6c8;
  --border:       #cfe4f5;
  --white:        #ffffff;
  --cream:        #f4fbff;
  --warm:         #e9f4fc;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Nunito', system-ui, sans-serif;

  --nav-h:  70px;
  --r:      6px;
  --max:    1120px;
  --t:      .22s ease;
}

.vmb-site {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
.vmb-site img { display: block; max-width: 100%; }
.vmb-site a { color: inherit; text-decoration: none; }
.vmb-site ul { list-style: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* ═══ TOPBAR ═══ */
.topbar {
  background: var(--warm-dark);
  color: rgba(255,255,255,.72);
  font-size: .775rem;
  letter-spacing: .02em;
  padding: .45rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.topbar a { color: rgba(255,255,255,.88); display: inline-flex; align-items: center; gap: .35rem; transition: color var(--t); }
.topbar a:hover { color: var(--terra); }
.topbar-phone { font-weight: 800; color: #ffffff !important; font-size: .83rem; }

/* ═══ HEADER / NAV ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin-top: 0;
  background: var(--white);
  border-bottom: 3px solid var(--terra);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: var(--nav-h);
  gap: 2rem;
}
.nav-toggle { display: none; } /* checkbox hack */

.brand {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -.01em;
  line-height: 1;
}
.brand-name em { font-style: normal; color: var(--terra); }
.brand-sep { color: var(--border); }
.brand-sub { font-size: .76rem; color: var(--muted); font-weight: 400; letter-spacing: .02em; white-space: nowrap; }

.nav-menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.nav-menu a {
  padding: .35rem .75rem;
  font-size: .845rem;
  font-weight: 700;
  color: var(--mid);
  white-space: nowrap;
  transition: color var(--t);
}
.nav-menu a:hover { color: var(--terra); }
.nav-rdv {
  margin-left: .5rem;
  background: var(--terra);
  color: white !important;
  padding: .55rem 1.2rem !important;
  border-radius: var(--r);
  font-weight: 800 !important;
  font-size: .8rem !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background var(--t);
}
.nav-rdv:hover { background: var(--terra-dark) !important; }

/* Hamburger (CSS-only) */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.hamburger span { display: block; width: 23px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: var(--t); }

/* ═══ HERO ═══ */
.hero {
  background: linear-gradient(160deg, #ffffff 0%, #f0f8fe 55%, #daf0fc 100%);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid #cfe4f5;
}
.hero::before { display: none; }
.hero::after  { display: none; }
.hero-blob {
  position: absolute; right: -10%; bottom: -10%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(40,199,111,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #e6f3fc;
  border: 1px solid #aad3f0;
  color: #123a5c;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--terra); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.55; transform:scale(1.45);} }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #0b2236;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.1rem;
}
.hero h1 .t { font-style: italic; color: var(--terra-dark); font-weight: 400; }

.hero-desc {
  font-size: 1rem;
  color: #2a4a64;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

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

.btn-main {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--terra); color: #ffffff;
  padding: .85rem 1.75rem;
  border-radius: 100px;
  font-size: .9rem; font-weight: 800;
  box-shadow: 0 4px 20px rgba(40,199,111,.35);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.btn-main:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(40,199,111,.45); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  border: 2px solid var(--olive);
  color: var(--olive);
  padding: .85rem 1.75rem;
  border-radius: 100px;
  font-size: .9rem; font-weight: 700;
  transition: background var(--t), color var(--t);
}
.btn-ghost:hover { background: var(--olive); color: #ffffff; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #bdd9f1;
}
.hero-stat-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--terra-dark); margin-bottom: .3rem; font-weight: 700; }
.hero-stat-value { font-size: .9rem; font-weight: 800; color: #0b2236; }

/* Carte flottante hero */
.hero-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,67,50,.18), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid #d4e9f8;
}
.hero-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-card-body {
  padding: 1.25rem 1.4rem 1.4rem;
  border-top: 4px solid var(--terra);
}
.status-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #e6f3fc; border: 1px solid #aad3f0;
  padding: .3rem .8rem; border-radius: 100px;
  font-size: .76rem; font-weight: 800; color: #123a5c;
  margin-bottom: .8rem;
}
#status-dot { width: 8px; height: 8px; border-radius: 50%; background: #2f9fe6; flex-shrink: 0; }
.hero-card-name {
  font-family: var(--serif);
  font-size: 1.28rem; font-weight: 700;
  color: #0b2236; margin-bottom: .15rem;
}
/* sous-titre sur fond blanc : texte gris moyen bien lisible */
.hero-card-title { font-size: .77rem; color: #5c7d96; margin-bottom: .65rem; font-weight: 600; }
.hero-card-info {
  font-size: .81rem; color: #2a4a64;
  line-height: 1.65;
  border-top: 1px solid #d4e8f7;
  padding-top: .65rem;
}
.hero-card-info strong { color: #0b2236; font-weight: 800; }

/* ═══ SECTIONS ═══ */
.vmb-site section { padding: 5.5rem 0; }
section.hero { padding: 0; } /* le hero gère son propre espacement interne */

.s-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  color: var(--terra);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.s-label::before { content: ''; display: block; width: 18px; height: 2px; background: var(--terra); }

.s-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}
.s-title em { font-style: italic; color: var(--olive); font-weight: 400; }

.s-desc {
  font-size: .93rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 540px;
}

/* ═══ PRÉSENTATION ═══ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 6rem;
  align-items: start;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--terra-light);
  color: var(--terra-dark);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: var(--r);
  margin-bottom: 1.5rem;
}
.about-text { font-size: .92rem; color: var(--mid); line-height: 1.85; }
.about-text p + p { margin-top: 1rem; }
.about-text strong { color: var(--charcoal); font-weight: 800; }

.about-cards { display: flex; flex-direction: column; gap: 1rem; }
.about-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  background: var(--white);
}
.about-card.featured { background: var(--olive); border-color: var(--olive); }
.about-card-val {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--olive);
  line-height: 1;
  margin-bottom: .2rem;
}
.about-card.featured .about-card-val { color: rgba(255,255,255,.9); }
.about-card-lbl { font-size: .8rem; color: var(--muted); }
.about-card.featured .about-card-lbl { color: rgba(255,255,255,.5); }

/* ═══ MOTIFS ═══ */
.motifs-section { background: var(--warm); }
.motifs-header { margin-bottom: 3rem; }
.motifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.motif-card {
  background: var(--white);
  padding: 2rem;
  transition: background var(--t);
}
.motif-card:hover { background: var(--terra-light); }
.motif-ico {
  width: 40px; height: 40px;
  border-radius: var(--r);
  background: var(--terra-light);
  color: var(--terra);
  display: grid; place-items: center;
  margin-bottom: .9rem;
  transition: background var(--t), color var(--t);
}
.motif-card:hover .motif-ico { background: var(--terra); color: white; }
.motif-title { font-weight: 800; color: var(--charcoal); font-size: .93rem; margin-bottom: .3rem; }
.motif-desc { font-size: .82rem; color: var(--mid); line-height: 1.6; }

/* ═══ SERVICES ═══ */
.services-section {
  background: linear-gradient(160deg, #f0f8fe 0%, #e3f2fc 60%, #d8edfb 100%);
}
.services-section .s-label { color: var(--terra-dark); }
.services-section .s-label::before { background: var(--terra-dark); }
.services-section .s-title { color: #0b2236; }
.services-section .s-title em { color: var(--terra-dark); font-style: italic; }
.services-section .s-desc { color: #2a4a64; margin-bottom: 3rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  border-top: 3px solid var(--terra);
  border: 1px solid #bdd9f1;
  border-top: 3px solid var(--terra);
  border-radius: var(--r);
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(27,67,50,.07);
  transition: box-shadow var(--t), transform var(--t);
}
.svc-card:hover { box-shadow: 0 8px 28px rgba(40,199,111,.18); transform: translateY(-3px); }
.svc-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
  margin-bottom: .8rem;
}
.svc-title { font-weight: 800; color: #0b2236; font-size: 1rem; margin-bottom: .5rem; }
.svc-desc { font-size: .87rem; color: #38566e; line-height: 1.65; }

/* ═══ HORAIRES ═══ */
.schedule-section { background: var(--white); }
.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.sched-table { width: 100%; border-collapse: collapse; }
.sched-table tr { border-bottom: 1px solid var(--border); }
.sched-table tr:last-child { border-bottom: none; }
.sched-table td { padding: .95rem 0; font-size: .89rem; vertical-align: middle; }
.sched-table td:first-child { font-weight: 800; color: var(--charcoal); width: 115px; }
.sched-table td.sched-hrs { color: var(--mid); }
.sched-table td.sched-badge { text-align: right; font-size: .72rem; color: var(--terra); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.sched-table .closed-row td { color: var(--muted); font-style: italic; }
.sched-table .closed-row td:first-child { font-weight: 400; }
.sched-table .today-row td { color: var(--terra-dark); }
.sched-table .today-row td:first-child {
  font-weight: 800;
  border-left: 3px solid var(--terra);
  padding-left: .6rem;
  color: var(--terra-dark);
}

.sched-aside { display: flex; flex-direction: column; gap: 1.25rem; }
.status-box {
  padding: 1.5rem;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.status-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--muted); margin-bottom: .6rem; }
.status-row { display: flex; align-items: center; gap: .65rem; font-weight: 800; font-size: 1rem; color: var(--charcoal); }
.s-orb { width: 10px; height: 10px; border-radius: 50%; background: #3a9fe0; box-shadow: 0 0 0 3px rgba(76,175,80,.2); flex-shrink: 0; }
.s-orb.fermé { background: #ef5350; box-shadow: 0 0 0 3px rgba(239,83,80,.2); }

.rdv-box {
  padding: 2rem;
  background: var(--olive);
  border-radius: var(--r);
  text-align: center;
}
.rdv-box-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: white; margin-bottom: .4rem; }
.rdv-box-sub { font-size: .84rem; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; line-height: 1.55; }
.btn-rdv-box {
  display: block;
  background: var(--terra);
  color: white;
  padding: .9rem 1.5rem;
  border-radius: var(--r);
  font-weight: 800;
  font-size: .855rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background var(--t);
}
.btn-rdv-box:hover { background: var(--terra-dark); }
.rdv-phone { margin-top: .75rem; font-size: .8rem; color: rgba(255,255,255,.45); }
.rdv-phone a { color: rgba(255,255,255,.75); font-weight: 800; }
.rdv-phone a:hover { color: white; }

/* ═══ REMPLACEMENTS ═══ */
.repl-section { background: var(--warm); }
.repl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.repl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.repl-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--olive); color: white;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  flex-shrink: 0;
}
.repl-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: .2rem; }
.repl-note { font-size: .8rem; color: var(--muted); margin-bottom: .75rem; line-height: 1.5; }
.repl-tel {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--terra); color: white;
  font-size: .79rem; font-weight: 800;
  padding: .35rem .85rem; border-radius: var(--r);
}

/* ═══ URGENCES ═══ */
.urg-section { background: var(--olive); }
.urg-section .s-label { color: #F28B6E; }
.urg-section .s-label::before { background: #F28B6E; }
.urg-section .s-title { color: #FDDDD4; }
.urg-section .s-title em { color: #F28B6E; font-style: italic; }
.urg-section .s-desc { color: rgba(255,255,255,.72); margin-bottom: 3rem; }

.urg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.urg-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 2rem;
  text-align: center;
  transition: background var(--t);
}
.urg-card:hover { background: rgba(255,255,255,.13); }
.urg-card.urg-primary { border-top: 3px solid #F28B6E; }
.urg-num {
  font-family: var(--serif);
  font-size: 3rem; font-weight: 700;
  color: white; line-height: 1; margin-bottom: .5rem;
}
.urg-card.urg-primary .urg-num { color: #F28B6E; }
.urg-num a { color: inherit; }
.urg-lbl { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .02em; }

/* ═══ ORDONNANCES ═══ */
.ord-section { background: var(--white); }
.ord-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.ord-steps { display: flex; flex-direction: column; gap: 2rem; }
.ord-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.ord-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--terra); color: white;
  display: grid; place-items: center;
  font-weight: 800; font-size: .9rem; flex-shrink: 0;
}
.ord-step-title { font-weight: 800; color: var(--charcoal); margin-bottom: .3rem; font-size: .93rem; }
.ord-step-desc { font-size: .86rem; color: var(--mid); line-height: 1.65; }

.ord-panel {
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
}
.ord-panel-title {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 1.25rem;
}
.ord-list { display: flex; flex-direction: column; gap: .75rem; }
.ord-list li { display: flex; gap: .75rem; font-size: .865rem; color: var(--mid); line-height: 1.5; align-items: flex-start; }
.ord-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--olive-light); flex-shrink: 0;
  display: grid; place-items: center; margin-top: .08rem;
}
.ord-check svg { color: var(--olive); }

/* ═══ CONTACT ═══ */
.contact-section { background: var(--warm); }
.contact-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
}
.contact-ico {
  width: 38px; height: 38px; border-radius: var(--r);
  background: var(--terra-light); color: var(--terra);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800; color: var(--muted); margin-bottom: .2rem; }
.contact-val { font-size: .91rem; font-weight: 800; color: var(--charcoal); }
.contact-val a { color: var(--charcoal); }
.contact-val a:hover { color: var(--terra); }
.contact-sub { font-size: .77rem; color: var(--muted); margin-top: .1rem; }
.btn-gmaps {
  display: block;
  background: var(--terra);
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: var(--r);
  font-weight: 800;
  font-size: .84rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background var(--t);
  margin-top: .5rem;
}
.btn-gmaps:hover { background: var(--terra-dark); }
.map-box {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 400px;
}
.map-box iframe { width: 100%; height: 400px; border: none; display: block; }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--warm-dark);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 700;
  color: white; margin-bottom: .2rem;
}
.footer-sub { font-size: .76rem; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.footer-about { font-size: .82rem; line-height: 1.7; max-width: 240px; color: rgba(255,255,255,.55); }
.footer-col-h {
  font-size: .7rem; text-transform: uppercase;
  letter-spacing: .14em; font-weight: 800;
  color: rgba(255,255,255,.45); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .83rem; color: rgba(255,255,255,.6); transition: color var(--t); }
.footer-col a:hover { color: var(--terra); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .77rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a:hover { color: var(--terra); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 340px; gap: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-cards { flex-direction: row; flex-wrap: wrap; }
  .about-card { flex: 1; min-width: 150px; }
  .schedule-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .ord-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 900px) {
  .motifs-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .urg-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  /* Hamburger visible */
  .hamburger { display: flex; }

  /* Nav becomes dropdown */
  .site-header { flex-wrap: wrap; height: auto; padding: 0; gap: 0; }
  .brand { padding: 0 1.5rem; height: var(--nav-h); display: flex; align-items: center; }
  .hamburger { padding: 0 1.5rem; height: var(--nav-h); display: flex; align-items: center; }
  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
    gap: 0;
    margin-left: 0;
    box-shadow: 0 6px 24px rgba(0,0,0,.1);
  }
  .nav-menu a { padding: .75rem 0; border-bottom: 1px solid var(--border); width: 100%; font-size: .9rem; }
  .nav-menu a:last-child { border-bottom: none; }
  .nav-rdv { margin-left: 0 !important; margin-top: .5rem; display: block; text-align: center; }
  .nav-toggle:checked ~ .nav-menu { display: flex; }

  /* Hero: stack vertically, card centered below text */
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem 3rem;
    justify-items: center;
  }
  .hero-inner > div:first-child { width: 100%; }
  .hero-card { max-width: 320px; width: 100%; }
  .hero-card-img { aspect-ratio: 3/2; object-position: center 15%; }

  .motifs-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .urg-grid { grid-template-columns: 1fr; }
  .repl-grid { grid-template-columns: 1fr; }

  section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 1.25rem; }
  .topbar { flex-direction: column; gap: .2rem; font-size: .72rem; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-card { max-width: 280px; }
  .urg-grid { grid-template-columns: 1fr; }
}
