/* ============================================================
   RoWaSanté – Feuille de style principale
   Couleurs extraites du logo : bleu #2B8FC8, vert #5CAD52
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
  --blue:        #2B8FC8;
  --blue-dark:   #1E6EA0;
  --blue-light:  #EBF5FB;
  --green:       #5CAD52;
  --green-dark:  #3E8A36;
  --green-light: #EBF7E9;
  --dark:        #1A2B3C;
  --mid:         #4A6070;
  --light:       #F4F8FB;
  --border:      #DDE8EF;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(27,90,140,.08);
  --shadow-md:   0 6px 24px rgba(27,90,140,.12);
  --shadow-lg:   0 16px 48px rgba(27,90,140,.16);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

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

/* ── Utilitaires ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-blue  { color: var(--blue); }
.text-green { color: var(--green); }
.badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── Boutons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: .95rem; font-weight: 600;
  padding: 12px 28px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(43,143,200,.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43,143,200,.45);
  color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(92,173,82,.35);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-phone { background: #E8F7E8; color: var(--green-dark); }
.btn-phone:hover { background: var(--green); color: var(--white); }

/* ── Navigation ──────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-menu a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500; font-size: .95rem;
  color: var(--mid);
  padding: 8px 16px; border-radius: 8px;
  transition: all var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  background: var(--blue-light);
  color: var(--blue);
}
.nav-rdv {
  display: flex; align-items: center; gap: 12px;
}
.nav-phone {
  font-family: 'Outfit', sans-serif;
  font-weight: 600; color: var(--dark);
  font-size: .9rem;
}
.nav-phone a { color: var(--dark); }
.nav-phone a:hover { color: var(--blue); }

.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(--dark); border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--blue-light) 0%, #F0FAF0 100%);
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,143,200,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92,173,82,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .85rem; font-weight: 500;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--blue); }
.hero-desc {
  font-size: 1.1rem; color: var(--mid);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
}
.hero-img-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.hero-img-wrap img {
  width: 100%; height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: calc(var(--radius-lg) - 8px);
  display: block;
}
.hero-placeholder-icon {
  font-size: 5rem; opacity: .3;
}
.hero-stats {
  position: absolute; bottom: -20px; left: 20px; right: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; gap: 24px; justify-content: space-around;
  box-shadow: var(--shadow-md);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--blue); line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--mid); margin-top: 2px; }

/* ── Section Pôles (accueil) ─────────────────────────────── */
.poles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.poles-grid .pole-card {
  width: 300px;
  flex-shrink: 0;
}
.pole-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.pole-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  color: inherit;
}
.pole-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.pole-card-img img { width: 100%; height: 100%; object-fit: contain; }
.pole-card-img .icon-placeholder { font-size: 3rem; opacity: .4; }
.pole-card-body { padding: 24px; }
.pole-card-body h3 {
  font-size: 1.15rem; margin-bottom: 8px; color: var(--dark);
}
.pole-card-body p { font-size: .9rem; color: var(--mid); line-height: 1.6; }
.pole-card-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: .85rem; color: var(--blue); font-weight: 600;
}

/* ── Actualités (accueil) ────────────────────────────────── */
.actu-featured {
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.actu-featured-img {
  height: 300px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.actu-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.actu-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.actu-date { font-size: .85rem; color: var(--mid); margin-bottom: 8px; }
.actu-featured-body h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--dark); }
.actu-featured-body p { color: var(--mid); margin-bottom: 24px; }

.actu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.actu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition);
}
.actu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.actu-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.actu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.actu-card-body { padding: 20px; }
.actu-card-body h3 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.actu-card-body p { font-size: .875rem; color: var(--mid); line-height: 1.6; }

/* ── Professionnels ──────────────────────────────────────── */
.pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.pro-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; text-align: center;
  transition: all var(--transition);
  text-decoration: none; color: inherit;
  display: block;
}
.pro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
  color: inherit;
}
.pro-photo {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.pro-photo img { width: 100%; height: 100%; object-fit: cover; }
.pro-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.pro-card-body { padding: 20px; }
.pro-card-body h3 { font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.pro-card-body .specialite { font-size: .85rem; color: var(--blue); font-weight: 500; }

/* ── Page Professionnel détail ───────────────────────────── */
.pro-detail-hero {
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  padding: 40px 0;
  margin-top: 72px;
}
.pro-detail-inner {
  display: flex; gap: 40px; align-items: flex-start;
}
.pro-detail-photo {
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--white);
  overflow: hidden; flex-shrink: 0;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--white);
}
.pro-detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.pro-detail-info { flex: 1; }
.pro-detail-info h1 { font-size: 2rem; color: var(--dark); margin-bottom: 4px; }
.pro-detail-info .specialite-badge {
  display: inline-block;
  background: var(--blue); color: var(--white);
  padding: 4px 16px; border-radius: 100px;
  font-size: .9rem; font-weight: 600; margin-bottom: 16px;
}
.pro-detail-info .pole-link {
  font-size: .9rem; color: var(--mid);
}
.pro-detail-content {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 32px; padding: 40px 0;
}
.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.info-block h3 {
  font-size: 1rem; color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-light);
  display: flex; align-items: center; gap: 8px;
}
.info-block p { color: var(--mid); white-space: pre-line; }
.contact-card {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-card h3 { font-size: 1rem; color: var(--dark); margin-bottom: 8px; }

/* ── Page Informations ───────────────────────────────────── */
.infos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.access-items { display: flex; flex-direction: column; gap: 16px; }
.access-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.access-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.access-item h4 { font-size: .95rem; margin-bottom: 2px; }
.access-item p { font-size: .85rem; color: var(--mid); }

.urgences-banner {
  background: linear-gradient(135deg, #FFF3CD, #FFEAA7);
  border: 1px solid #F0C040;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 32px;
}
.urgences-banner .urg-icon { font-size: 2rem; }
.urgences-banner h3 { font-size: 1rem; color: #5A4000; margin-bottom: 4px; }
.urgences-banner p { font-size: .9rem; color: #7A5800; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 48px 0 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
}
.footer-col-center {
  display: flex; flex-direction: column; align-items: center;
}
.footer-col-right {
  text-align: center;
}
.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0 0 16px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
  transition: color var(--transition);
}
footer ul li a i { font-size: 1rem; }
footer ul li a:hover { color: var(--white); }
.footer-col-right ul li a { justify-content: center; }

.footer-social-icons {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.footer-social-icon {
  width: 40px; height: 40px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  text-decoration: none;
  transition: transform var(--transition), opacity var(--transition);
}
.footer-social-icon:hover { transform: translateY(-3px); opacity: .85; }

.footer-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 600;
  color: var(--white);
  margin: 0 0 6px;
}
.footer-addr {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7; margin: 0;
}
.footer-addr a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-addr a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 8px;
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-col-right { text-align: center; }
  footer ul li a { justify-content: center; }
  .footer-col-center { align-items: center; }
}

/* ── Galerie 3D cylindrique (pure CSS) ───────────────────── */
.cyl-scene {
  perspective: 1000px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cyl-track {
  transform-style: preserve-3d;
  position: relative;
  width: 240px;
  height: 200px;
  animation: cyl-spin var(--speed, 12s) linear infinite;
}
.cyl-track:hover {
  animation-play-state: paused;
}
@keyframes cyl-spin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(-360deg); }
}
.cyl-card {
  position: absolute;
  top: 0; left: 0;
  width: 240px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotateY(calc(var(--i) * var(--step))) translateZ(var(--r));
}
.cyl-card img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

@media (max-width: 600px) {
  .cyl-scene  { height: 200px; perspective: 700px; }
  .cyl-track  { width: 170px; height: 140px; }
  .cyl-card   { width: 170px; height: 140px; }
}

/* ── Scroll animations ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--light);
  padding: 12px 0;
  margin-top: 72px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--mid);
}
.breadcrumb-inner a { color: var(--blue); }
.breadcrumb-inner span { color: var(--mid); }

/* ── Page hero (sous-pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-light) 0%, #F0FAF0 100%);
  margin-top: 72px;
  padding: 56px 0 40px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,143,200,.1) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--dark); }
.page-hero p { color: var(--mid); font-size: 1.05rem; margin-top: 8px; }

/* ── Barre de navigation basse (mobile) ─────────────────── */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .bottom-nav {
    display: flex !important;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 1100;
    background: var(--white);
    border-top: 1px solid var(--border);
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .bottom-nav a {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 3px;
    color: var(--mid);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: .65rem; font-weight: 500;
    transition: color var(--transition);
    -webkit-tap-highlight-color: transparent;
  }
  .bottom-nav a svg {
    width: 24px; height: 24px;
    stroke: currentColor; fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    transition: stroke var(--transition);
  }
  .bottom-nav a.active {
    color: var(--blue);
  }
  .bottom-nav a.active svg {
    stroke: var(--blue);
  }
  .bottom-nav a:active { opacity: .7; }

  /* Compenser la hauteur de la barre basse */
  body { padding-bottom: 64px; }

  /* Masquer le hamburger — inutile avec la barre basse */
  .hamburger { display: none; }
  .nav-menu, .nav-rdv { display: none !important; }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .actu-featured { grid-template-columns: 1fr; }
  .actu-featured-img { height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pro-detail-content { grid-template-columns: 1fr; }
  .infos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .pro-detail-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; gap: 16px; position: static; margin-top: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .poles-grid, .actu-grid, .pro-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ── Top page margin ─────────────────────────────────────── */
main { padding-top: 0; }
