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

:root {
  --navy:        #162847;
  --navy-deep:   #0d1b30;
  --navy-mid:    #1e3a5f;
  --navy-soft:   #2c4a72;
  --gold:        #b8893a;
  --gold-light:  #d4a85a;
  --gold-pale:   #f0ddb4;
  --green:       #21a366;
  --green-dark:  #0e4b2e;
  --ivory:       #f8f5ef;
  --white:       #ffffff;
  --gray-100:    #f2f0ec;
  --gray-200:    #e5e2db;
  --gray-400:    #a8a49c;
  --gray-600:    #6b6760;
  --text:        #1c1a17;
  --text-soft:   #4a4641;

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;
  --s4: 1rem;     --s5: 1.5rem;   --s6: 2rem;
  --s7: 3rem;     --s8: 4.5rem;   --s9: 7rem;

  /* Misc */
  --radius:   6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 18px rgba(0,0,0,.11);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.16);
  --ease:      cubic-bezier(.4,0,.2,1);
  --dur:       240ms;

  /* Layout */
  --max-w:  1180px;
  --nav-h:  70px;

  /* Alias rétro-compat : plusieurs pages utilisent le préfixe --se-* */
  --se-gold:        var(--gold);
  --se-gold-lt:     var(--gold-light);
  --se-navy:        var(--navy);
  --se-ivory:       var(--ivory);
  --se-green:       var(--green);
  --se-green-dk:    var(--green-dark);
  --se-gray-100:    var(--gray-100);
  --se-gray-200:    var(--gray-200);
  --se-gray-300:    #d3cfc7;
  --se-gray-400:    var(--gray-400);
  --se-gray-500:    var(--gray-600);
  --se-text-soft:   var(--text-soft);
  --se-ff-display:  var(--ff-display);
  --se-ff-body:     var(--ff-body);
  --se-radius:      var(--radius);
  --se-radius-lg:   var(--radius-lg);
  --se-dur:         var(--dur);
}
/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html  { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%;overflow-y: scroll; }
body  {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, svg  { display: block; max-width: 100%; }
a         { color: inherit; text-decoration: none; }
ul, ol    { list-style: none; }
button, input, textarea, select { font: inherit; border: none; background: none; }
button    { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
input:focus, textarea:focus, select:focus,
.se-form-ctrl:focus, .se-input:focus, .se-input-search:focus, .se-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
.btn:focus-visible, .se-btn:focus-visible, .cookie-btn:focus-visible,
.nav-link:focus-visible, .se-filter-btn:focus-visible, .admin-nav-link:focus-visible,
button:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}
.btn:active, .se-btn:active, .cookie-btn:active, button:active {
  transform: translateY(1px) scale(.985);
}
main      { flex: 1; }

.container,
.se-container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--s5);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.se-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .7rem 1.4rem;
  font-family: var(--ff-body); font-size: .92rem; font-weight: 600; line-height: 1.2;
  border: 1.5px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.se-btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.se-btn-gold:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.se-btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.se-btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.se-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.se-btn-outline-white:hover { background: #fff; color: var(--navy); }
.se-btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.se-btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }

.se-form-group { margin-bottom: var(--s5); }
.se-form-label {
  display: block; margin-bottom: var(--s2);
  font-size: .82rem; font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: .04em;
}
.se-form-ctrl {
  width: 100%; display: block;
  padding: .8rem 1rem;
  font-family: var(--ff-body); font-size: 1rem; color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.se-form-ctrl::placeholder { color: var(--gray-400); }
textarea.se-form-ctrl { min-height: 130px; resize: vertical; }
select.se-form-ctrl { appearance: none; -webkit-appearance: none; background-image: none; }

.se-alert { padding: .85rem 1.1rem; border-radius: var(--radius); font-size: .92rem; border: 1px solid transparent; }
.se-alert-ok  { background: #e6f4ea; color: var(--green-dark); border-color: #bfe3cc; }
.se-alert-err { background: #fdecec; color: #a02929; border-color: #f5c5c5; }

.se-eyebrow { display: inline-flex; align-items: center; gap: var(--s3); margin-bottom: .75rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.se-gold-rule { display: none; }
.se-heading-md { font-family: var(--ff-display); font-size: clamp(1.5rem,3vw,2rem);   font-weight: 700; color: var(--navy); line-height: 1.2; }
.se-heading-lg { font-family: var(--ff-display); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 700; color: var(--navy); line-height: 1.15; }
.se-heading-white { color: #fff; }
.se-lead { font-size: 1.1rem; color: var(--text-soft); line-height: 1.7; }
.se-lead-light { color: rgba(255,255,255,.85); }

.se-section { padding-block: var(--s8); }
.se-section-sm { padding-block: var(--s7); }
.se-section-ivory { background-color: var(--ivory); }
.se-section-navy,
.se-section-deep { background-color: var(--navy-deep); color: rgba(255,255,255,.85); }
.se-section-deep .se-heading-lg,
.se-section-deep .se-heading-md,
.se-section-navy .se-heading-lg,
.se-section-navy .se-heading-md { color: #fff; }
.se-grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--s7); }
@media (min-width: 900px) { .se-grid-2 { grid-template-columns: 1fr 1fr; } }
.se-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; font-size: .85rem; }

.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: .65rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; letter-spacing: .025em;
  transition: background var(--dur) var(--ease),
              color      var(--dur) var(--ease),
              transform  var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0);    box-shadow: none; }

.btn-gold    { background: var(--gold);     color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }

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

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

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

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s3);
  font-size: .72rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
}
.eyebrow::before, .se-eyebrow::before {
  content: ''; flex: 0 0 auto;
  width: 28px; height: 2px; background: var(--gold);
}

.heading-xl {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; color: var(--navy);
}
.heading-lg {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15; color: var(--navy);
}
.heading-md {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600; line-height: 1.25; color: var(--navy);
}
.heading-white { color: var(--white) !important; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-soft); max-width: 600px; line-height: 1.75;
}
.lead-light { color: rgba(255,255,255,.78) !important; }

.gold-rule { display: none; }

.section        { padding-block: var(--s8); }
.section--sm    { padding-block: var(--s7); }
.section--ivory { background: var(--ivory); }
.section--navy  { background: var(--navy);  }
.section--green { background: var(--green-dark); }

.section__header        { margin-bottom: var(--s7); }
.section__header--center { text-align: center; }
.section__header--center .lead,
.section__header--center .gold-rule { margin-inline: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--s6); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card__img   { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card__body  { padding: var(--s5); }
.card__tag   {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--gray-100); color: var(--navy);
  padding: 3px 10px; border-radius: 20px; margin-bottom: var(--s3);
}
.card__title {
  font-family: var(--ff-display); font-size: 1.25rem;
  font-weight: 600; color: var(--navy); margin-bottom: var(--s2); line-height: 1.3;
}
.card__text  { font-size: .92rem; color: var(--text-soft); }
.card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s3) var(--s5);
  border-top: 1px solid var(--gray-200);
  font-size: .82rem; color: var(--gray-400);
}

.form-group   { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s5); }
.form-label   { font-size: .88rem; font-weight: 600; color: var(--navy); }
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: .95rem;
  color: var(--text); background: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,137,58,.18); }
textarea.form-control { resize: vertical; min-height: 130px; }

.alert { padding: var(--s4) var(--s5); border-radius: var(--radius); margin-bottom: var(--s5); font-size: .93rem; }
.alert-success { background: #edf7f1; border-left: 4px solid #21a366; color: #1a4a2e; }
.alert-error   { background: #fdf0f0; border-left: 4px solid #d94f4f; color: #7a1919; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  height: var(--nav-h);
  background: var(--navy-deep);
  box-shadow: 0 2px 16px rgba(0,0,0,.28);
  display: flex; align-items: center;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: var(--s5);
  height: 100%;
}

.nav-logo {
  display: flex; flex-direction: column; gap: 2px;
  color: var(--white); line-height: 1; flex-shrink: 0;
}
.nav-logo__name {
  font-family: var(--ff-display);
  font-size: 1.35rem; font-weight: 700; color: var(--white);
  white-space: nowrap;
}
.nav-logo__sub {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-link {
  position: relative;
  display: flex; align-items: center; gap: 3px;
  padding: .45rem .65rem;
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.nav-link[aria-current="page"]::after {
  content: ''; position: absolute; bottom: 4px;
  left: .65rem; right: .65rem;
  height: 2px; background: var(--gold); border-radius: 2px;
}

.nav-dropdown { position: relative; }

.nav-dropdown-toggle svg.chevron {
  width: 13px; height: 13px; flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.nav-dropdown:hover .chevron,
.nav-dropdown-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 210px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  padding: var(--s2) 0;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  display: block;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-panel {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-panel a {
  display: flex; align-items: center; gap: var(--s3);
  padding: .6rem 1.2rem;
  font-size: .88rem; font-weight: 500; color: var(--navy);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-dropdown-panel a:hover { background: var(--ivory); color: var(--gold); }
.nav-dropdown-panel a .dp-icon { font-size: 1rem; width: 20px; text-align: center; flex-shrink: 0; }

.nav-separator { width: 1px; height: 20px; background: rgba(255,255,255,.15); margin-inline: var(--s2); }

.nav-burger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px; padding: 7px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.22);
  background: transparent; cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.nav-burger:hover { background: rgba(255,255,255,.1); }
.nav-burger span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), width var(--dur) var(--ease);
}
.nav-burger span:last-child { width: 65%; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 910;
  background: rgba(13,27,48,.55); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.nav-overlay.open { display: block; opacity: 1; }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 920;
  width: min(300px, 85vw);
  background: var(--navy-deep);
  display: flex; flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s5) var(--s5) var(--s4);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.drawer-head .logo {
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 700; color: var(--white);
}
.drawer-head .logo span { color: var(--gold); }

.drawer-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: 1.2rem; cursor: pointer;
  background: transparent;
  transition: background var(--dur) var(--ease);
}
.drawer-close:hover { background: rgba(255,255,255,.12); }

.drawer-links {
  display: flex; flex-direction: column;
  padding: var(--s4) var(--s3);
  gap: 2px; flex: 1;
}
.drawer-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem var(--s4);
  font-size: .92rem; font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.drawer-link:hover, .drawer-link[aria-current="page"] {
  background: rgba(255,255,255,.08); color: var(--gold-light);
}
.drawer-sub {
  padding-left: var(--s4);
  display: flex; flex-direction: column; gap: 2px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height .38s var(--ease), opacity .3s var(--ease), visibility 0s linear .38s;
}
.drawer-sub.open {
  max-height: 420px; opacity: 1; visibility: visible;
  transition: max-height .38s var(--ease), opacity .3s var(--ease), visibility 0s;
}
.drawer-sub .drawer-link { font-size: .86rem; font-weight: 400; padding: .55rem var(--s4); }
.drawer-toggle svg { transition: transform var(--dur) var(--ease); }
.drawer-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer-hr { height: 1px; background: rgba(255,255,255,.1); margin: var(--s3) var(--s4); }

.drawer-footer {
  padding: var(--s5);
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero {
  position: relative;
  min-height: 58vh;
  display: flex; align-items: center;
  background: linear-gradient(140deg, var(--navy-deep) 0%, var(--navy-mid) 55%, #1e4070 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 50%, rgba(184,137,58,.14), transparent),
    radial-gradient(ellipse 35% 90% at -5% 50%, rgba(33,163,102,.06), transparent);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px,
    transparent 1px, transparent 50px
  );
}
.hero__content {
  position: relative; z-index: 1;
  padding-block: var(--s9);
}
.hero__title { color: var(--white); margin-bottom: var(--s5); }
.hero__title em { color: var(--gold-light); font-style: normal; }
.hero__actions { display: flex; gap: var(--s4); flex-wrap: wrap; margin-top: var(--s6); }

.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding-block: var(--s7);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg, rgba(255,255,255,.012) 0, rgba(255,255,255,.012) 1px,
    transparent 1px, transparent 50px
  );
}
.page-hero__inner { position: relative; z-index: 1; }

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  padding-top: var(--s8);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s7);
  padding-bottom: var(--s7);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .f-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  margin-bottom: var(--s3);
}
.footer-brand .f-logo span { color: var(--gold); }
.footer-brand p  { font-size: .88rem; line-height: 1.75; max-width: 280px; }

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem; color: var(--white);
  margin-bottom: var(--s4);
  padding-bottom: var(--s2);
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-col ul   { display: flex; flex-direction: column; gap: var(--s2); }
.footer-col ul a {
  font-size: .88rem; color: rgba(255,255,255,.62);
  display: flex; align-items: center; gap: var(--s2);
  transition: color var(--dur) var(--ease);
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact-row {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: .88rem; margin-bottom: var(--s3);
}
.footer-contact-row .ico { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-socials { display: flex; gap: var(--s3); margin-top: var(--s4); }
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.65); font-size: .95rem;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s3); padding: var(--s5) 0;
  text-align: center; font-size: .8rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-bottom-links { display: flex; gap: var(--s4); flex-wrap: wrap; justify-content: center; }


@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .nav-menu   { display: flex; }
  .nav-burger { display: none; }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: rgba(255,255,255,.1);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-item {
  background: rgba(255,255,255,.07);
  padding: var(--s6) var(--s5); text-align: center;
}
.stat-item__num {
  display: block;
  font-family: var(--ff-display); font-size: 2.6rem;
  font-weight: 700; color: var(--gold-light); line-height: 1;
}
.stat-item__label { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: var(--s2); }

.feature-icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  font-size: 1.5rem; color: var(--navy);
  margin-bottom: var(--s4); flex-shrink: 0;
}
.feature-icon--gold { background: var(--gold-pale); }

.badge {
  display: inline-block;
  font-size: .68rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}
.badge-green { background: #dff4eb; color: #0e4b2e; }
.badge-gold  { background: var(--gold-pale); color: #6b4a10; }
.badge-navy  { background: #dce4ef; color: var(--navy); }

.breadcrumb { display: flex; align-items: center; gap: var(--s2); font-size: .82rem; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--dur) var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { font-size: .65rem; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-green  { color: var(--green); }
.mt-auto     { margin-top: auto; }
.gap-sm      { gap: var(--s3); }
.gap-md      { gap: var(--s5); }

@media print {
  .site-header, .site-footer, .nav-burger { display: none !important; }
}