/* ============================================
   MSAIO — Feuille de style principale
   Couleurs issues du logo MSAIO
   ============================================ */

/* ---- Variables ---- */
:root {
  --brun:        #3D2B2B;
  --rouge:       #8B3A3A;
  --rouge-mid:   #A04444;
  --rouge-light: #F5EAEA;
  --rouge-xlight:#FBF5F5;
  --text:        #2E2220;
  --text-muted:  #7A6060;
  --border:      rgba(61,43,43,0.13);
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(61,43,43,0.10);
  --shadow-lg:   0 16px 48px rgba(61,43,43,0.13);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 2px 18px rgba(61,43,43,0.07);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
  gap: 1rem;
}

.navbar__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  gap: 0;
}

.navbar__links li { position: relative; }

.navbar__links > li > a {
  display: block;
  padding: 0 1rem;
  height: 72px;
  line-height: 72px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  transition: color .2s;
  white-space: nowrap;
}

.navbar__links > li > a:hover,
.navbar__links > li > a.active {
  color: var(--rouge);
}

.navbar__links > li > a.active {
  font-weight: 600;
  border-bottom: 2.5px solid var(--rouge);
}

/* Dropdown */
.navbar__links li:hover .dropdown { display: block; }

.dropdown {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 600;
}

.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--rouge-xlight); color: var(--rouge); }

/* Burger */
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

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

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

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 400;
  padding: 1rem 0;
}

.navbar__mobile.open { display: block; }

.navbar__mobile a {
  display: block;
  padding: 12px 2rem;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}

.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile a:hover,
.navbar__mobile a.active { color: var(--rouge); background: var(--rouge-xlight); }

/* CTA nav */
.btn-cta {
  background: var(--rouge);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
}

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

/* ============================================
   PAGES (navigation SPA)
   ============================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================
   BOUTONS
   ============================================ */
.btn-white {
  background: #fff;
  color: var(--rouge);
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: all .2s;
}
.btn-white:hover { background: var(--rouge-xlight); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-rouge {
  background: var(--rouge);
  color: #fff;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: none;
  transition: all .2s;
}
.btn-rouge:hover { background: var(--brun); transform: translateY(-2px); }

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: .6rem;
}

h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--brun);
}

.section-desc {
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* ============================================
   PAGE HEADER (bannière intérieure)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--brun) 0%, var(--rouge) 100%);
  color: #fff;
  padding: 4rem 2rem 3.5rem;
}

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

.page-header .breadcrumb {
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: .75rem;
}
.page-header .breadcrumb span { color: rgba(255,255,255,.85); }

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  color: #fff;
  margin-bottom: .75rem;
}

.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   HERO (page accueil)
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--brun) 0%, var(--rouge) 60%, #B05050 100%);
  color: #fff;
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .6px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: .85;
}

h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #fff;
}
h1.hero-title em { font-style: italic; color: rgba(255,255,255,0.72); }

.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.25rem;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero cards */
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.hcard {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background .2s;
}
.hcard:hover { background: rgba(255,255,255,.18); }
.hcard.wide { grid-column: 1 / -1; }

.hcard-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.hcard-label { font-size: 12px; color: rgba(255,255,255,.62); margin-top: 4px; }

.hcard-row { display: flex; align-items: center; gap: 12px; }
.hcard-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.15);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hcard-text strong { display: block; font-size: 14px; font-weight: 500; color: #fff; }
.hcard-text span   { font-size: 12px; color: rgba(255,255,255,.58); }

/* ============================================
   SERVICES (grille d'accueil)
   ============================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.scard {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all .22s;
  position: relative;
  overflow: hidden;
}
.scard::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rouge), var(--rouge-mid));
  opacity: 0;
  transition: opacity .22s;
}
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.scard:hover::after { opacity: 1; }

.scard-icon {
  width: 52px; height: 52px;
  background: var(--rouge-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 1.25rem;
}
.scard h3 { font-size: 16px; font-weight: 600; color: var(--brun); margin-bottom: .75rem; }
.scard p  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.scard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rouge);
  font-size: 13px;
  font-weight: 600;
  margin-top: 1.1rem;
}

/* ============================================
   TERRITOIRE
   ============================================ */
.territoire-section { background: var(--brun); padding: 5rem 2rem; }
.territoire-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.territoire-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.territoire-section p { color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.territoire-label  { font-size: 11.5px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .6rem; }
.dept-pills        { display: flex; gap: 12px; flex-wrap: wrap; }
.dept-pill         { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #fff; padding: 10px 22px; border-radius: 30px; font-size: 14px; font-weight: 500; }

/* ============================================
   ACTUALITÉS
   ============================================ */
.actu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.acard {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .22s;
}
.acard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.acard-img {
  width: 100%; height: 150px;
  background: var(--rouge-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
}
.acard-body  { padding: 1.25rem; }
.acard-date  { font-size: 11.5px; color: var(--rouge); margin-bottom: 7px; font-weight: 600; letter-spacing: .4px; }
.acard h3    { font-size: 15px; font-weight: 600; color: var(--brun); margin-bottom: 8px; line-height: 1.4; }
.acard p     { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--rouge-xlight);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 3.5rem 2rem;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; color: var(--brun); margin-bottom: 6px; }
.cta-band p  { color: var(--text-muted); font-size: 15px; }

/* ============================================
   PAGE QUI SOMMES-NOUS
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-text p { font-size: 15.5px; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 2rem; }
.value-item  { background: var(--rouge-xlight); border-radius: var(--radius-sm); padding: 1.25rem; border-left: 3px solid var(--rouge); }
.value-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--brun); margin-bottom: 4px; }
.value-item span   { font-size: 13px; color: var(--text-muted); }

/* Timeline */
.timeline { padding: 0; }
.tl-item  { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px; top: 40px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-dot { width: 40px; height: 40px; background: var(--rouge); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.tl-body strong { display: block; font-size: 15px; font-weight: 600; color: var(--brun); margin-bottom: 4px; }
.tl-body p      { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   PAGE SERVICES (détail)
   ============================================ */
.service-detail { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }

.sd-header { background: var(--rouge-light); padding: 2rem; display: flex; gap: 1.5rem; align-items: center; }
.sd-icon   { width: 60px; height: 60px; background: var(--rouge); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.sd-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--brun); margin-bottom: 5px; }
.sd-header p  { font-size: 14px; color: var(--text-muted); }

.sd-body    { padding: 2rem; }
.sd-body p  { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.sd-list    { list-style: none; padding: 0; }
.sd-list li { display: flex; gap: 10px; align-items: baseline; font-size: 14px; color: var(--text-muted); padding: 8px 0; border-bottom: 1px solid var(--border); }
.sd-list li:last-child { border-bottom: none; }
.sd-list li::before { content: ''; width: 7px; height: 7px; background: var(--rouge); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }

/* ============================================
   PAGE CONTACT — FORMULAIRE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }

.cform {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.cform h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--brun);
  margin-bottom: 1.75rem;
}

.fg { margin-bottom: 16px; }

.fg label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.fg input,
.fg textarea,
.fg select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--rouge-xlight);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--rouge);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(139,58,58,0.10);
}

.fg input.error,
.fg textarea.error,
.fg select.error {
  border-color: #c0392b;
}

.fg textarea { resize: vertical; min-height: 120px; }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Messages de retour */
.form-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1.25rem;
  align-items: center;
  gap: 10px;
}
.form-feedback.success { display: flex; background: #edf7f1; color: #1a7a4a; border: 1.5px solid #a8dfc1; }
.form-feedback.error   { display: flex; background: #fdf0f0; color: #a02020; border: 1.5px solid #f5c0c0; }

.form-error-text { display: none; font-size: 12px; color: #c0392b; margin-top: 4px; }
.form-error-text.visible { display: block; }

/* Bouton submit */
.submit-btn {
  width: 100%;
  background: var(--rouge);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s, transform .1s, opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover:not(:disabled) { background: var(--brun); }
.submit-btn:disabled { opacity: .65; cursor: not-allowed; }

/* Spinner */
.spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Infos contact */
.info-block { margin-bottom: 2rem; }
.info-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; color: var(--brun); margin-bottom: 1rem; }

.iitem { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.1rem; }
.iicon { width: 42px; height: 42px; background: var(--rouge-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.itext strong { display: block; font-size: 14px; font-weight: 600; color: var(--brun); margin-bottom: 2px; }
.itext span   { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

.map-placeholder { background: var(--rouge-light); border-radius: var(--radius); height: 200px; display: flex; align-items: center; justify-content: center; font-size: 48px; margin-top: 1.5rem; border: 1.5px solid var(--border); }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--brun); color: #fff; padding: 3.5rem 2rem 2rem; }

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: .92; margin-bottom: 1rem; }
.footer-desc { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.7; max-width: 300px; }

footer h4 { font-size: 12px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
footer ul li { margin-bottom: 9px; }
footer ul a  { color: rgba(255,255,255,.6); font-size: 14px; transition: color .18s; }
footer ul a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: 12px; }

/* ============================================
   RESPONSIVE — TABLETTE (≤ 900px)
   ============================================ */
@media (max-width: 900px) {
  .navbar__links,
  .navbar__cta-desktop { display: none; }
  .navbar__burger { display: flex; }

  .hero-inner          { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-cards          { grid-template-columns: 1fr 1fr; }
  .hero                { padding: 4rem 1.5rem 3rem; }
  h1.hero-title        { font-size: 32px; }

  .services-grid       { grid-template-columns: 1fr 1fr; }
  .territoire-inner    { grid-template-columns: 1fr; gap: 2rem; }
  .territoire-inner svg{ display: none; }

  .actu-grid           { grid-template-columns: 1fr 1fr; }
  .about-grid          { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================ */
@media (max-width: 600px) {
  section { padding: 3rem 1.25rem; }

  .navbar { padding: 0 1.25rem; height: 64px; }
  .navbar__logo img { height: 44px; }
  .navbar__mobile { top: 64px; }

  .hero { padding: 3rem 1.25rem 2.5rem; }
  h1.hero-title { font-size: 26px; }
  .hero-cards { grid-template-columns: 1fr; }
  .hcard.wide { grid-column: 1; }
  .hero-desc  { font-size: 15px; }

  .services-grid { grid-template-columns: 1fr; }
  .actu-grid     { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .fg-row        { grid-template-columns: 1fr; }

  .territoire-section { padding: 3rem 1.25rem; }
  .dept-pills { gap: 8px; }
  .dept-pill  { padding: 8px 16px; font-size: 13px; }

  .cta-band .container { flex-direction: column; align-items: flex-start; }

  .sd-header { flex-direction: column; gap: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  h2.section-title { font-size: 26px; }
  .page-header h1  { font-size: 26px; }
  .page-header { padding: 2.5rem 1.25rem; }
}
