/* =============================================
   COLLÈGE DE L'OUEST — Design v8
   Inspiré fidèlement de cours-henriiv.com
   Raleway + Lato · Rouge bordeaux · Fond blanc
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --red:       #AA0041;
  --red-dark:  #880034;
  --red-pale:  #f9e8ee;
  --bg:        #FCFCFC;
  --bg-alt:    #F7F7F7;
  --bg-dark:   #2A2A2A;
  --white:     #FFFFFF;
  --text:      #626262;
  --text-dark: #383838;
  --text-head: #222222;
  --border:    #E8E8E8;
  --border-lt: #F0F0F0;
  --shadow:    0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,.10);
  --radius:    3px;
  --serif:     'Raleway', Arial, Tahoma, sans-serif;
  --sans:      'Lato', Arial, Tahoma, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Wrapper ── */
#wrapper {
  background: var(--bg);
  min-height: 100vh;
}

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(0,0,0,.05);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo / brand */
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { height: 52px; width: auto; }
.brand-text { line-height: 1.3; }
.brand-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: .04em;
}
.brand-sub {
  font-size: 10px;
  color: #999;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nlink {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.nlink:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.nlink.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Pronote external link */
.nlink-pronote {
  color: var(--red) !important;
  font-weight: 600;
  letter-spacing: .10em;
}
.nlink-pronote:hover {
  color: var(--red-dark) !important;
  border-bottom-color: var(--red) !important;
}

/* CTA button in nav */
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 12px 22px;
  margin-left: 16px;
  border: none;
  border-bottom: 3px solid transparent !important;
  transition: background .2s;
}
.nav-cta:hover {
  background: var(--red-dark);
  border-bottom-color: transparent !important;
  color: var(--white);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: transform .25s, opacity .2s;
}

/* ══════════════════════════════════════
   PAGE HERO (pages intérieures)
══════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 10, 15, .50);
}
.page-hero-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}
.page-hero-body h1 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 200;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero-line {
  width: 50px;
  height: 2px;
  background: var(--red);
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  padding: 12px 40px;
  font-size: 12px;
  color: #999;
  letter-spacing: .04em;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   HOME HERO (pleine page)
══════════════════════════════════════ */
.home-hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.home-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,5,10,.72) 0%, rgba(20,5,10,.42) 55%, rgba(20,5,10,.05) 100%);
}
.home-hero-body {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 60px;
}
.home-hero-inner { max-width: 560px; }
.hero-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.home-hero h1 {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 200;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: .04em;
  margin-bottom: 20px;
}
.home-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   BOUTONS
══════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 18px 28px;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, transform .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--red);
}
.btn-white:hover { background: #f5f5f5; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  padding: 16px 26px;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.10);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  padding: 16px 26px;
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section {
  padding: 80px 0;
}
.section-white { background: var(--white); }
.section-grey { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); }
.section-red { background: var(--red); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Titre de section */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .20em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 200;
  color: var(--text-head);
  line-height: 1.25;
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.section-title-dark { color: var(--white); }
.section-bar {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin-bottom: 28px;
}
.section-bar-center { margin-left: auto; margin-right: auto; }
.section-bar-white { background: var(--white); }

.section-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.section-text-white { color: rgba(255,255,255,.82); }
.section-text-narrow { max-width: 700px; }
.section-centered { text-align: center; }
.section-centered .section-bar { margin: 0 auto 28px; }

/* ══════════════════════════════════════
   GRILLES
══════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-2t { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-img {
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: var(--bg-alt);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 28px 24px; }
.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--text-head);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
}

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.stats-band {
  background: var(--red);
  padding: 0;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 200;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.72);
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ══════════════════════════════════════
   SPLIT (image + texte)
══════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.split-reversed { direction: rtl; }
.split-reversed > * { direction: ltr; }
.split-img { overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-content-white { background: var(--white); }
.split-content-grey { background: var(--bg-alt); }
.split-content-dark { background: var(--bg-dark); }
.split-content-red { background: var(--red); }

/* ══════════════════════════════════════
   LISTE À PUCES STYLE HENRI-IV
══════════════════════════════════════ */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.check-list li {
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 300;
}
.check-list-dark li { color: var(--text); }
.check-list-light li { color: rgba(255,255,255,.86); }
.check-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.check-list-dark li::before { background: var(--red); }
.check-list-light li::before { background: rgba(255,255,255,.7); }

/* ══════════════════════════════════════
   CITATION
══════════════════════════════════════ */
.quote-section {
  background: var(--white);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  padding: 60px 40px;
  text-align: center;
}
.quote-inner {
  max-width: 800px;
  margin: 0 auto;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--red);
  line-height: .5;
  margin-bottom: 20px;
  display: block;
  opacity: .6;
}
blockquote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.65;
  letter-spacing: .01em;
}
.quote-bar {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 24px auto 0;
}

/* ══════════════════════════════════════
   BANDEAU 3 COLONNES (accès rapides)
══════════════════════════════════════ */
.panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.panel {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.panel:last-child { border-right: none; }
.panel-dark { background: var(--bg-dark); }
.panel-red { background: var(--red); }
.panel-red-dark { background: var(--red-dark); }
.panel-grey { background: #333; }
.panel-icon { font-size: 28px; margin-bottom: 6px; }
.panel-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: .02em;
}
.panel-body {
  font-size: 13px;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  font-weight: 300;
}
.panel-link {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-top: 8px;
  text-decoration: none;
  transition: color .2s;
  font-weight: 400;
}
.panel-link:hover { color: var(--white); }

/* ══════════════════════════════════════
   GALERIE
══════════════════════════════════════ */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.gallery img { width: 100%; height: 250px; object-fit: cover; display: block; transition: opacity .25s; }
.gallery img:hover { opacity: .9; }
.gallery .gallery-wide { grid-column: 1/-1; height: 360px; }

/* ══════════════════════════════════════
   TABLEAU
══════════════════════════════════════ */
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead th {
  padding: 14px 18px;
  background: var(--text-dark);
  color: var(--white);
  text-align: left;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 11px;
  text-transform: uppercase;
}
td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-lt);
  color: var(--text);
  font-weight: 300;
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg-alt); }
tr:hover td { background: var(--red-pale); }

/* ══════════════════════════════════════
   ÉTAPES (timeline)
══════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 16px; }
.step {
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.step-num {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  flex-shrink: 0;
}
.step h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 6px;
  margin-top: 6px;
}
.step p { font-size: 13px; color: var(--text); line-height: 1.75; font-weight: 300; }

/* ══════════════════════════════════════
   FORMULAIRES
══════════════════════════════════════ */
label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 7px;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-dark);
  font-family: var(--sans);
  font-weight: 300;
  margin-bottom: 22px;
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(170,0,65,.08);
}
textarea { height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.form-full { grid-column: 1/-1; }

.alert-ok {
  background: #f0fdf4;
  border-left: 4px solid #22c55e;
  padding: 20px 24px;
  margin-bottom: 20px;
}
.alert-ok h4 { font-family: var(--serif); font-size: 16px; color: #15803d; margin-bottom: 6px; font-weight: 400; }
.alert-ok p { font-size: 13px; color: #166534; line-height: 1.7; font-weight: 300; }
.alert-err {
  background: #fff1f2;
  border-left: 4px solid var(--red);
  padding: 13px 18px;
  margin-bottom: 16px;
}
.alert-err p { font-size: 13px; color: var(--red); font-weight: 300; }

/* ══════════════════════════════════════
   BLOCS INFO
══════════════════════════════════════ */
.info-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  margin-bottom: 18px;
}
.info-block h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.info-block p { font-size: 13px; color: var(--text); line-height: 1.75; font-weight: 300; }
.info-block .contact-row { display: flex; gap: 12px; align-items: center; margin-top: 12px; }
.info-block .contact-icon {
  width: 34px; height: 34px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.info-block .contact-val { font-size: 13px; color: var(--text); font-weight: 300; }
.info-block .contact-val a { color: var(--red); }
.info-block .contact-val a:hover { text-decoration: underline; }

.note-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 22px 26px;
  margin-top: 18px;
}
.note-box h3 { font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--text-dark); margin-bottom: 8px; }
.note-box p { font-size: 13px; color: var(--text); line-height: 1.8; font-weight: 300; }
.note-box a { color: var(--red); }

.dossier-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--text-dark);
  padding: 22px 26px;
  margin-top: 18px;
}
.dossier-box h3 { font-family: var(--serif); font-size: 16px; font-weight: 300; color: var(--text-dark); margin-bottom: 10px; }
.dossier-box ul { list-style: none; font-size: 13px; color: var(--text); line-height: 2.2; font-weight: 300; }
.dossier-box ul li::before { content: '→ '; color: var(--red); font-weight: 700; }

.info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.info-row-icon {
  min-width: 42px; height: 42px;
  background: var(--red-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.info-row-label { font-size: 10px; letter-spacing: .12em; color: #999; text-transform: uppercase; margin-bottom: 3px; }
.info-row-val { font-size: 14px; color: var(--text-dark); font-weight: 300; }

.disciplines-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 22px 26px;
  margin-top: 16px;
}
.disciplines-box h3 { font-family: var(--serif); font-size: 15px; font-weight: 400; color: var(--text-dark); margin-bottom: 10px; }
.disciplines-box p { font-size: 13px; color: var(--text); line-height: 2.0; font-weight: 300; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--bg-alt);
  border-top: 3px solid var(--red);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Lien Facebook sous le widget */
.footer-social-link {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: color .2s;
}
.footer-social-link:hover { color: var(--red-dark); text-decoration: underline; }

/* Widget Facebook statique */
.fb-static {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid #1877F2;
  padding: 22px 20px 20px;
  margin-bottom: 14px;
}
.fb-static-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-lt);
}
.fb-static-logo { flex-shrink: 0; }
.fb-static-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}
.fb-static-sub {
  font-size: 11px;
  color: #999;
  font-weight: 300;
  letter-spacing: .04em;
  margin-top: 2px;
}
.fb-static-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}
.fb-static-stats span {
  font-size: 13px;
  color: var(--text);
  font-weight: 300;
}
.fb-static-stats strong {
  color: var(--text-dark);
  font-weight: 600;
}
.fb-static-desc {
  font-size: 13px;
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 18px;
}
.fb-static-btn {
  display: inline-flex;
  align-items: center;
  background: #1877F2;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 10px 18px;
  text-decoration: none !important;
  transition: background .2s;
  width: 100%;
  justify-content: center;
  box-sizing: border-box;
}
.fb-static-btn:hover { background: #1465d4; }
.footer-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 200;
  color: var(--text-dark);
  margin-bottom: 28px;
  letter-spacing: .04em;
}
.footer-item { margin-bottom: 16px; }
.footer-label {
  font-size: 10px;
  letter-spacing: .14em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.footer-val { font-size: 14px; color: var(--text); font-weight: 300; }
.footer-val a { color: var(--red); }
.footer-val a:hover { text-decoration: underline; }

.partners-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 200;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  transition: border-color .2s;
}
.partner-card:hover { border-color: var(--red); }
.partner-card img { max-height: 40px; max-width: 100%; object-fit: contain; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 40px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-brand { display: flex; align-items: center; gap: 12px; }
.footer-bottom-brand img { height: 28px; opacity: .5; }
.footer-bottom-name { font-family: var(--serif); font-size: 13px; color: #999; font-weight: 300; }
.footer-bottom-copy { font-size: 11px; color: #aaa; letter-spacing: .04em; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .header-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--red);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,.10);
    z-index: 300;
    gap: 0;
  }
  .nav-links.open .nlink {
    height: auto;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-lt);
    border-left: none;
    font-size: 12px;
  }
  .nav-links.open .nav-cta {
    display: inline-block;
    margin: 16px 0 0;
    text-align: center;
    width: 100%;
    padding: 14px;
  }
  .home-hero { height: 480px; }
  .home-hero-body { padding: 0 28px; }
  .home-hero h1 { font-size: 38px; }
  .grid-2, .grid-2t { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 300px; }
  .panels { grid-template-columns: 1fr; }
  .panel { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.18); }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); border-right: none; }
  .section { padding: 56px 0; }
  .container { padding: 0 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 16px 24px; }
  .fb-page { width: 100% !important; }
  .gallery .gallery-wide { height: 260px; }
  .gallery img { height: 200px; }
  .breadcrumb { padding: 11px 24px; }
  .page-hero { height: 220px; }
  .page-hero-body h1 { font-size: 30px; }
}

@media (max-width: 600px) {
  .home-hero { height: 400px; }
  .home-hero h1 { font-size: 28px; }
  .home-hero-desc { font-size: 13px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .grid-3 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 26px; }
  .split-content { padding: 40px 24px; }
  .panel { padding: 32px 24px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
