/* ============================================================
   LA RÉUNION DES TIERS-LIEUX — Design System
   Palette charte graphique :
     Vert menthe  #7DD7B6  (primary)
     Corail       #FF6947  (secondary / accent)
     Teal foncé   #0C343D  (dark)
     Rose doux    #F5C6B0  (coral-light)
     Jaune soleil #F5E6A3  (sun)
   ============================================================ */

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

:root {
  --mint:        #7DD7B6;
  --mint-light:  #d4f0e5;
  --mint-bg:     #f0faf5;
  --coral:       #FF6947;
  --coral-light: #F5C6B0;
  --sun:         #F5E6A3;
  --teal:        #0C343D;
  --teal-mid:    #1a5060;
  --white:       #ffffff;
  --off-white:   #fafbfc;
  --gray-50:     #f7f8f9;
  --gray-100:    #eef0f2;
  --gray-300:    #c8cdd3;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --radius:      16px;
  --radius-sm:   8px;
  --radius-full: 9999px;
  --shadow-sm:   0 1px 3px rgba(12,52,61,.06);
  --shadow-md:   0 4px 16px rgba(12,52,61,.08);
  --shadow-lg:   0 12px 40px rgba(12,52,61,.12);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand:   'Caveat', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ==============================
   HEADER
   ============================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 1px 12px rgba(12,52,61,.08);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.logo img { border-radius: 50%; }

.logo-text {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: .25rem;
  align-items: center;
}

.nav-links a {
  padding: .5rem 1rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--teal);
  background: var(--mint-bg);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.menu-toggle:hover { background: var(--gray-50); }

.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==============================
   HERO
   ============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(125,215,182,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,105,71,.08) 0%, transparent 50%),
    var(--white);
}

.hero-inner { max-width: 700px; }

.hero-logo-wrap {
  display: inline-block;
  position: relative;
  margin-bottom: 2.5rem;
}

.hero-logo-wrap::before,
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  width: 50px; height: 50px;
  border: 2.5px solid var(--teal);
  opacity: .3;
}

.hero-logo-wrap::before {
  top: -12px; left: -12px;
  border-right: none; border-bottom: none;
}

.hero-logo-wrap::after {
  bottom: -12px; right: -12px;
  border-left: none; border-top: none;
}

.hero-logo {
  width: 180px; height: 180px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.h1-la, .h1-des {
  font-weight: 400;
  font-size: .85em;
}

.handwriting {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.15em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ==============================
   SECTIONS
   ============================== */
.section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.5rem;
}

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

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(255,105,71,.08);
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: .75rem;
}

.tag-light {
  color: var(--mint);
  background: rgba(125,215,182,.15);
}

.section h2 {
  font-family: var(--font-hand);
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1.15;
  font-weight: 700;
}

.lead {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.center .lead { margin: .75rem auto 0; }

.text-lg {
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-light { background: var(--gray-50); }

/* Section dark (teal) */
.section-dark {
  background: var(--teal);
  color: var(--white);
}

.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.8); }

/* ==============================
   FEATURE LIST
   ============================== */
.feature-list {
  list-style: none;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: .65rem 0 .65rem 2rem;
  position: relative;
  font-size: 1rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.feature-list.light li { color: var(--white); }
.feature-list.light li::before { background: var(--sun); }

/* ==============================
   CREOLE QUOTE
   ============================== */
.creole-quote {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.35;
  position: relative;
  padding: 2rem 2rem 2rem 2.5rem;
  background: var(--mint-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--mint);
  align-self: center;
}

.quote-mark {
  font-size: 4rem;
  color: var(--mint);
  position: absolute;
  top: .25rem; left: .75rem;
  line-height: 1;
  opacity: .5;
}

/* ==============================
   CARDS
   ============================== */
.cards-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.cards-quad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-100);
}

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

/* Accent top border cards */
.card.accent-coral { border-top: 4px solid var(--coral); }
.card.accent-mint  { border-top: 4px solid var(--mint); }
.card.accent-sun   { border-top: 4px solid var(--sun); }

.card-icon {
  padding: 1.75rem 1.75rem 0;
  color: var(--teal);
}

.card h3 {
  padding: 1rem 1.75rem .5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
}

.card p {
  padding: 0 1.75rem 1.75rem;
  font-size: .92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* Cards with images */
.card-img .card-visual {
  overflow: hidden;
}

.card-img .card-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.card-body {
  padding: .25rem 0;
}

.card-body h3 { padding-top: 1.25rem; }

/* News cards */
a.card-news {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.card-news:hover { transform: translateY(-3px); }

.card-news .card-visual {
  overflow: hidden;
}

.card-news .card-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.news-date {
  font-size: .85rem;
  color: var(--text-muted);
}

/* Event cards */
.card-event {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4rem;
  padding: .5rem;
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.event-num {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.event-mois {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.event-heure {
  font-size: .75rem;
  opacity: .7;
  margin-top: .2rem;
}

.card-event .card-body {
  padding: 0;
}

.card-event .card-body h3 {
  padding-top: 0;
  font-size: 1.05rem;
}

.event-lieu {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

.btn-sm {
  font-size: .8rem;
  padding: .35rem .9rem;
  margin-top: .5rem;
}

.events-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 2rem;
}

.events-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 2rem 0;
}

/* ==============================
   SUITE NUMÉRIQUE (home teaser)
   ============================== */
.suite-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.suite-logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: .7;
  transition: opacity var(--transition);
}

.suite-logos img:hover { opacity: 1; }

/* ==============================
   OUTILS PAGE
   ============================== */
.hero-mini {
  background: var(--teal);
  color: #fff;
  padding: 6rem 0 2rem;
}

.hero-mini .lead { color: rgba(255,255,255,.7); }

.hero-mini + .section { padding-top: 2rem; }

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

.tool-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.tool-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}

.tool-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.tool-logo-lg {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.tool-card-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.tool-fonc {
  font-size: .85rem;
  color: var(--text-muted);
}

.tool-desc {
  font-size: .9rem;
  margin-bottom: .75rem;
}

.tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.tool-badge {
  font-size: .75rem;
  padding: .2rem .6rem;
  border-radius: 100px;
  font-weight: 500;
}

.badge-mutualise { background: var(--mint-light, #e6f9f1); color: #0a6b45; }
.badge-personnalisable { background: #fff3e0; color: #a85d00; }
.badge-indispensable { background: var(--coral); color: #fff; }
.badge-licence { background: #eee; color: #555; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-header h2 { margin: 0; }

.modal-desc {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.modal-alt, .modal-licence {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.modal-actions {
  margin-top: 1.5rem;
}

/* ==============================
   PILLARS (lightweight columns)
   ============================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pillar {
  padding-top: 1.25rem;
  position: relative;
}

.pillar-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 3px;
  border-radius: 2px;
}

.pillar h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.pillar p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.5;
}

/* ==============================
   TWO COLUMNS
   ============================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.carte-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.carte-iframe {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carte-iframe iframe {
  display: block;
  border: none;
  border-radius: var(--radius);
}

.lead-light { color: rgba(255, 255, 255, .7); }

/* ==============================
   BUTTONS
   ============================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 2rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--coral);
  color: var(--white);
}

.btn:hover {
  background: #e85a3a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,105,71,.25);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  box-shadow: none;
}

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

.btn-white:hover {
  background: var(--gray-50);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ==============================
   CTA SECTION (Adhérer)
   ============================== */
.section-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  color: var(--white);
}

.section-cta h2 {
  color: var(--white);
  font-size: 2.8rem;
}

.cta-content {
  max-width: 650px;
}

.cta-highlight {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mint);
  margin: 2rem 0;
  line-height: 1.35;
}

/* ==============================
   USE CASES (Concrètement)
   ============================== */
.use-cases {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.use-case {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition), transform var(--transition);
}

.use-case:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.use-case-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.use-case-problem .use-case-label {
  color: var(--gray-500);
}

.use-case-solution .use-case-label {
  color: var(--mint);
}

.use-case-problem p {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.5;
  font-style: italic;
}

.use-case-solution p {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.use-case-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint-bg);
  color: var(--mint);
  flex-shrink: 0;
}

/* ==============================
   COMPARE (Seul vs En réseau)
   ============================== */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 850px;
}

.compare-col {
  padding: 2.5rem;
  border-radius: var(--radius);
}

.compare-col h3 {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.compare-col li {
  position: relative;
  padding-left: 1.75rem;
  font-size: .95rem;
  line-height: 1.55;
}

.compare-col li::before {
  position: absolute;
  left: 0;
  top: .15rem;
  font-size: 1rem;
}

/* Alone column */
.compare-alone {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.compare-alone h3 { color: rgba(255,255,255,.5); }
.compare-alone li { color: rgba(255,255,255,.5); }
.compare-alone li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2); top: .55rem; }

/* Network column */
.compare-network {
  background: rgba(125,215,182,.12);
  border: 2px solid var(--mint);
}

.compare-network h3 { color: var(--mint); }
.compare-network li { color: var(--white); }
.compare-network li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); top: .5rem; }

.cta-bottom {
  text-align: center;
  margin-top: 1rem;
}

.cta-bottom-light {
  text-align: center;
  margin-top: 3rem;
}

.cta-lead {
  color: rgba(255,255,255,.7) !important;
  margin: .5rem auto 0;
}

/* ==============================
   GALLERY
   ============================== */
.gallery-section {
  padding: 0;
}

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

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ==============================
   CONTACT
   ============================== */
.contact-block {
  max-width: 550px;
  margin: 0 auto;
}

.contact-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
  background: var(--teal);
  color: rgba(255,255,255,.7);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img {
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}

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

.footer-col h4 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: .3rem 0;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--mint); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .cards-trio, .cards-quad { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pillars { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .tools-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-brand img { margin: 0 auto 1rem; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

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

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: .5rem;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: .85rem 1.25rem;
    border-radius: var(--radius-sm);
  }

  .hero { min-height: auto; padding: 7rem 1.5rem 4rem; }
  .hero h1 { font-size: 2rem; }
  .hero-logo { width: 140px; height: 140px; }
  .hero-subtitle { font-size: 1rem; }

  .section { padding: 4rem 1.5rem; }
  .section h2 { font-size: 2rem; }

  .creole-quote { font-size: 1.4rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 240px; }

  .footer-nav { grid-template-columns: 1fr; text-align: center; }

  .section-cta h2 { font-size: 2rem; }
  .cta-highlight { font-size: 1.3rem; }

  .btn-group { flex-direction: column; align-items: flex-start; }

  /* Use cases mobile */
  .use-case {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: 1.5rem;
  }
  .use-case-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  /* Compare mobile */
  .compare {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .compare-col { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .navbar { padding: .75rem 1rem; }
  .hero h1 { font-size: 1.7rem; }
  .hero-logo { width: 120px; height: 120px; }
  .hero-logo-wrap::before,
  .hero-logo-wrap::after { width: 35px; height: 35px; }
}
