/* ============================================================
   SIGNÉ JADE — feuille de style (réalignée sur le brief)
   Direction : lumineux, humain, aéré.
   Palette : vert sauge, crème, blanc, anthracite, doré discret.
   Typo : Playfair Display (titres) + DM Sans (corps).
   ============================================================ */

:root {
  --sage:        #7C8C6E;   /* vert sauge principal */
  --sage-deep:   #5E6E52;   /* sauge foncé (survol, accents) */
  --sage-soft:   #A8B79A;   /* sauge clair */
  --sage-tint:   #EEF1E9;   /* voile sauge très clair (fonds) */
  --sage-tint2:  #E3E8DA;
  --cream:       #F7F4EC;   /* crème */
  --white:       #FFFFFF;
  --anthracite:  #2C302E;   /* texte foncé / anthracite */
  --ink-soft:    #5A615B;   /* texte secondaire */
  --gold:        #B8955A;   /* doré discret */
  --gold-soft:   #cbae7d;
  --line:        #E4E7DD;   /* filets */

  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "DM Sans", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 64px);

  --r: 16px;
  --shadow-sm: 0 6px 20px -12px rgba(44,48,46,.28);
  --shadow: 0 20px 55px -28px rgba(44,48,46,.34);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--anthracite);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(66px, 9vw, 132px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -.005em; color: var(--anthracite); }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 500; line-height: 1.06; }
h2 { font-size: clamp(1.95rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.75rem); }
p  { max-width: 66ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: var(--ink-soft); font-weight: 400; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .9em 1.6em;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .96rem;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sage { background: var(--sage); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--sage:hover { background: var(--sage-deep); }
.btn--gold { background: var(--gold); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--outline { border-color: var(--sage); color: var(--sage-deep); }
.btn--outline:hover { background: var(--sage); color: var(--white); }
.btn--ghost-light { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn--ghost-light:hover { background: var(--white); color: var(--sage-deep); border-color: var(--white); }
.btn--white { background: var(--white); color: var(--sage-deep); box-shadow: var(--shadow-sm); }
.btn--white:hover { background: var(--cream); }
.btn .arr { transition: transform .3s var(--ease); display: inline-flex; }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   HEADER — clair
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }

.brand { display: flex; align-items: baseline; gap: .5ch; font-family: var(--font-display); font-size: 1.42rem; letter-spacing: -.01em; color: var(--anthracite); }
.brand b { font-weight: 600; }
.brand .brand-mark { color: var(--sage); font-style: italic; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  color: var(--ink-soft);
  font-size: .92rem; font-weight: 500;
  padding: .5em .8em; border-radius: 8px;
  transition: color .25s, background .25s;
}
.nav a:hover { color: var(--anthracite); background: var(--sage-tint); }
.nav a[aria-current="page"] { color: var(--sage-deep); font-weight: 600; }

.header-tools { display: flex; align-items: center; gap: 12px; }

/* language switch */
.lang { display: inline-flex; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; background: var(--white); }
.lang button {
  background: transparent; color: var(--ink-soft);
  border: 0; padding: .38em .72em; font-size: .76rem; font-weight: 600; letter-spacing: .04em;
  transition: background .25s, color .25s;
}
.lang button[aria-pressed="true"] { background: var(--sage); color: var(--white); }

.nav-toggle { display: none; background: none; border: 0; color: var(--anthracite); padding: 6px; }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: var(--white);
    padding: 12px var(--gut) 26px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .4s var(--ease);
    gap: 2px;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .85em .4em; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
}

/* ============================================================
   SIGNATURE (motif discret conservé)
   ============================================================ */
.sig-divider { display: flex; align-items: center; justify-content: center; gap: 18px; padding-block: 6px; color: var(--gold); }
.sig-divider span { height: 1px; width: min(120px, 22vw); background: linear-gradient(90deg, transparent, currentColor); }
.sig-divider span:last-child { background: linear-gradient(90deg, currentColor, transparent); }
.sig-divider svg { width: 30px; height: 30px; opacity: .85; }

/* ============================================================
   HERO — lumineux
   ============================================================ */
.hero { background: linear-gradient(180deg, var(--sage-tint) 0%, var(--cream) 100%); position: relative; overflow: hidden; padding-block: clamp(56px, 8vw, 104px); }
.hero::before { content:""; position:absolute; top:-30%; right:-10%; width:60%; height:120%; background: radial-gradient(circle, rgba(184,149,90,.10), transparent 62%); pointer-events:none; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
@media (max-width: 900px){ .hero-grid { grid-template-columns: 1fr; text-align: left; } }

.hero h1 { max-width: 16ch; }
.hero h1 .accent { color: var(--sage-deep); font-style: italic; }
.hero .lede { margin-top: 24px; max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-portrait { position: relative; justify-self: center; }
.hero-portrait img { width: min(400px, 78vw); aspect-ratio: 1; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.hero-portrait .ring { position: absolute; inset: -14px; border: 1.5px solid var(--sage-soft); border-radius: 50%; pointer-events: none; }
.hero-portrait .tagbadge {
  position: absolute; bottom: 8%; left: -6%;
  background: var(--white); color: var(--sage-deep);
  padding: .7em 1.15em; border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .5em;
}
.hero-portrait .tagbadge svg { width: 18px; height: 18px; color: var(--gold); }
@media (max-width: 900px){ .hero-portrait { margin-top: 40px; justify-self: start; } .hero-portrait .tagbadge { left: auto; right: 4%; } }

.hero-meta { display: flex; flex-wrap: wrap; gap: 26px 46px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-meta div { min-width: 110px; }
.hero-meta .n { font-family: var(--font-display); font-size: 2rem; color: var(--sage-deep); line-height: 1; }
.hero-meta .l { font-size: .84rem; color: var(--ink-soft); margin-top: 8px; }

/* ============================================================
   PAGE HEAD (pages intérieures)
   ============================================================ */
.page-head { background: linear-gradient(180deg, var(--sage-tint) 0%, var(--white) 100%); padding-block: clamp(56px, 8vw, 96px); position: relative; overflow: hidden; }
.page-head::before { content:""; position:absolute; top:-40%; right:-8%; width:46%; height:150%; background: radial-gradient(circle, rgba(184,149,90,.09), transparent 62%); pointer-events:none; }
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { max-width: 18ch; }
.page-head .lede { margin-top: 20px; }
.crumb { font-family: var(--font-body); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display:block; font-weight: 600; }

/* section tints */
.section--cream { background: var(--cream); }
.section--tint { background: var(--sage-tint); }
.section--white { background: var(--white); }
.section--sage { background: var(--sage); color: #fff; }
.section--sage h2, .section--sage h3 { color: #fff; }
.section--sage .lede { color: rgba(255,255,255,.9); }
.section--sage .eyebrow { color: rgba(255,255,255,.92); }
.section--sage .eyebrow::before { background: var(--white); }

.section-head { max-width: 60ch; margin-bottom: clamp(34px, 5vw, 58px); }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* grids */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px){ .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-soft); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card .card-num { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--gold); display: block; margin-bottom: 14px; }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; margin-bottom: 20px; }
.card-icon svg { width: 23px; height: 23px; }
.section--sage .card { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.section--sage .card h3 { color: #fff; }
.section--sage .card p { color: rgba(255,255,255,.85); }
.section--sage .card-icon { background: rgba(255,255,255,.16); color: #fff; }

.section--tint .card { background: var(--white); }

/* audience blocks (accueil) */
.aud-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 800px){ .aud-grid { grid-template-columns: 1fr; } }
.aud {
  border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px 30px; background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.aud::after { content:""; position:absolute; left:0; top:0; bottom:0; width:4px; background: var(--sage); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.aud:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage-soft); }
.aud:hover::after { transform: scaleY(1); }
.aud .aud-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-tint); color: var(--sage-deep); display:grid; place-items:center; margin-bottom: 18px; }
.aud .aud-ic svg { width: 23px; height: 23px; }
.aud h3 { font-size: 1.35rem; margin-bottom: 8px; }
.aud p { color: var(--ink-soft); font-size: .95rem; }

/* feature list */
.ticks { list-style: none; padding: 0; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 13px; align-items: flex-start; }
.ticks svg { flex: none; width: 22px; height: 22px; color: var(--sage); margin-top: 3px; }
.ticks span { color: var(--ink-soft); }
.section--sage .ticks svg { color: var(--white); }
.section--sage .ticks span { color: rgba(255,255,255,.9); }

/* split two-column */
.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(30px, 6vw, 76px); align-items: center; }
.split--reverse .split-media { order: -1; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }

.media-frame {
  border-radius: var(--r); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--sage-tint), var(--sage-tint2));
  position: relative; border: 1px solid var(--line);
}
.media-frame.landscape { aspect-ratio: 4/3; }
.media-frame.square { aspect-ratio: 1; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame .ph-tag { position: absolute; left: 14px; bottom: 14px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-deep); background: rgba(255,255,255,.82); padding: 5px 10px; border-radius: 6px; }
.media-frame .ph-mark { position: absolute; inset: 0; display: grid; place-items: center; color: var(--sage-soft); }
.media-frame .ph-mark svg { width: 56px; height: 56px; }

/* pills / tags */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1px solid var(--sage-soft); color: var(--sage-deep); background: var(--white); padding: .42em 1em; border-radius: 100px; font-size: .85rem; font-weight: 600; }
.section--sage .pill { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }

/* langue badges */
.langs { display: flex; flex-wrap: wrap; gap: 10px; }
.langs .lg { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--ink-soft); border: 1px solid var(--line); background: var(--white); padding: .45em .9em; border-radius: 100px; }
.langs .lg b { color: var(--sage-deep); font-weight: 600; }

/* timeline */
.timeline { display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 140px 1fr; gap: 28px; padding-block: 26px; border-top: 1px solid var(--line); }
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-year { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--gold); }
.tl-body h3 { font-size: 1.25rem; margin-bottom: 6px; }
.tl-body p { color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 600px){ .tl-item { grid-template-columns: 1fr; gap: 6px; } }

/* testimonials */
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 32px; position: relative; box-shadow: var(--shadow-sm); }
.quote .mark { color: var(--sage-soft); font-family: var(--font-display); font-size: 3.6rem; line-height: .5; height: 26px; display: block; }
.quote blockquote { font-family: var(--font-display); font-size: 1.16rem; line-height: 1.45; color: var(--anthracite); margin: 12px 0 22px; font-weight: 400; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--sage), var(--sage-deep)); flex: none; display:grid; place-items:center; color: #fff; font-family: var(--font-display); font-size: 1.05rem; }
.quote .who b { display: block; font-weight: 600; font-size: .95rem; }
.quote .who span { font-size: .84rem; color: var(--ink-soft); }

/* logos */
.logos { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 38px; }
.logo-ph { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink-soft); opacity: .7; padding: 8px 4px; }

/* stats band */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
@media (max-width: 720px){ .statband { grid-template-columns: repeat(2,1fr); } }
.statband .n { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); color: #fff; line-height: 1; }
.statband .l { font-size: .9rem; color: rgba(255,255,255,.85); margin-top: 10px; }
.section--tint .statband .n { color: var(--sage-deep); }
.section--tint .statband .l { color: var(--ink-soft); }

/* CTA band */
.cta-band { background: var(--sage); color: #fff; border-radius: 22px; padding: clamp(36px, 6vw, 62px); display: grid; grid-template-columns: 1.4fr auto; gap: 28px; align-items: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; right:-6%; top:-40%; width:40%; height:180%; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 60%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); margin-top: 12px; position: relative; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; position: relative; }
@media (max-width: 720px){ .cta-band { grid-template-columns: 1fr; } }

/* forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px){ .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--anthracite); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82em .95em;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--white); font: inherit; color: var(--anthracite);
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(124,140,110,.15); }

.contact-methods { display: grid; gap: 14px; }
.cm { display: flex; gap: 15px; align-items: flex-start; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); transition: border-color .25s, transform .25s, box-shadow .25s; }
.cm:hover { border-color: var(--sage-soft); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cm .cm-ic { width: 42px; height: 42px; border-radius: 10px; background: var(--sage-tint); color: var(--sage-deep); display:grid; place-items:center; flex:none; }
.cm .cm-ic svg { width: 20px; height: 20px; }
.cm b { display: block; font-weight: 600; }
.cm span { font-size: .92rem; color: var(--ink-soft); }

/* ============================================================
   WHATSAPP FLOTTANT (sur toutes les pages)
   ============================================================ */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.55);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float .wa-label {
  position: absolute; right: 70px; white-space: nowrap;
  background: var(--anthracite); color: #fff; font-size: .82rem; font-weight: 600;
  padding: .5em .9em; border-radius: 8px; opacity: 0; transform: translateX(8px); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
@media (max-width: 600px){ .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; } .wa-float .wa-label { display: none; } }

/* ============================================================
   FOOTER — anthracite
   ============================================================ */
.site-footer { background: var(--anthracite); color: rgba(247,244,236,.78); padding-block: clamp(52px, 7vw, 84px) 28px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 42px; border-bottom: 1px solid rgba(247,244,236,.12); }
@media (max-width: 820px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { font-size: 1.5rem; margin-bottom: 14px; color: var(--cream); }
.footer-brand .brand .brand-mark { color: var(--sage-soft); }
.footer-brand p { color: rgba(247,244,236,.6); font-size: .93rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-soft); margin-bottom: 15px; font-weight: 600; }
.footer-col a { display: block; padding: 6px 0; color: rgba(247,244,236,.72); font-size: .93rem; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--cream); padding-left: 5px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 24px; font-size: .84rem; color: rgba(247,244,236,.5); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border: 1px solid rgba(247,244,236,.2); border-radius: 50%; display: grid; place-items: center; transition: background .25s, color .25s, border-color .25s; }
.footer-social a:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.footer-social svg { width: 18px; height: 18px; }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* utilities */
.mt-s { margin-top: 18px; } .mt-m { margin-top: 30px; } .mt-l { margin-top: 46px; }
.center { text-align: center; } .center p { margin-inline: auto; }
.maxw { max-width: 640px; }
