/* === Red Luxury Theme — Black/Red/Gold === */

/* === Variables === */
:root {
  --color-bg: #0d0d0d;
  --color-surface: #1a1015;
  --color-surface-hover: #241820;
  --color-border: #2a1a22;
  --color-border-gold: #d4a843;
  --color-text: #f0e8e0;
  --color-text-muted: #9a8a80;
  --color-accent: #cc0033;
  --color-accent-hover: #e60039;
  --color-accent-soft: rgba(204, 0, 51, 0.15);
  --color-gold: #d4a843;
  --color-gold-soft: rgba(212, 168, 67, 0.15);
  --color-white: #fff;
  --font-heading: 'Cinzel', 'Georgia', serif;
  --font-body: 'Cormorant Garamond', 'Georgia', serif;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.5);
  --shadow-gold: 0 0 20px rgba(212, 168, 67, 0.1);
  --max-width: 1200px;
  --transition: .3s ease;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
a { color: var(--color-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding-left: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.3;
}

/* === Layout === */
.groh5 { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

/* === Gold Divider === */
.lruo7 {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 2rem 0;
}

/* ===========================
   HEADER
   =========================== */
.esug4 {
  background: #000;
  border-bottom: 1px solid rgba(212, 168, 67, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.atua8 {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 70px;
}
.cvux3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cvux3:hover { color: var(--color-gold); }
.bwux0 {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.bwux0 a {
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.bwux0 a:hover { color: var(--color-gold); }
.gxut4 {
  position: relative;
  margin-left: 1rem;
}
.obacs3 {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: .5rem .75rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: .9rem;
  width: 200px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.obacs3:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.2);
}
.qzut2 {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text-muted);
}
.omecv5 {
  position: absolute;
  top: 100%;
  right: 0;
  background: #111;
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius);
  width: 320px;
  display: none;
  box-shadow: var(--shadow);
  z-index: 200;
}
.omecv5 a {
  display: block;
  padding: .7rem 1rem;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  font-size: .9rem;
  transition: background var(--transition);
}
.omecv5 a:last-child { border-bottom: none; }
.omecv5 a:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}

/* ===========================
   MAIN
   =========================== */
.vmacq7 { min-height: 60vh; padding: 2.5rem 0; }

/* ===========================
   HERO / FEATURED
   =========================== */
.ndack7 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ndack7::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-gold), var(--color-accent));
}
.nhacf0 {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--color-border-gold);
}
.vfaca6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}
.cjace2 {
  font-family: var(--font-heading);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: .75rem;
}
.vfaca6 h1 {
  font-size: 2.2rem;
  color: var(--color-text);
  margin-bottom: .5rem;
}
.vfaca6 h1 span {
  color: var(--color-accent);
}
.placq1 {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.dgace0 {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.ykacx5 {
  display: inline-block;
  padding: .8rem 2rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform .15s;
}
.ykacx5:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ===========================
   HERO (simple text hero)
   =========================== */
.acacw1 {
  text-align: center;
  padding: 3rem 0 2rem;
}
.acacw1 h1 {
  font-size: 2.2rem;
  margin-bottom: .5rem;
}
.acacw1 p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
}

/* ===========================
   SECTIONS
   =========================== */
.drecu6 { margin: 3rem 0; }
.drecu6 h2 {
  font-size: 1.4rem;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}
.zwecj5 { max-width: 800px; }
.dbick8 { color: var(--color-text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }

/* ===========================
   BREADCRUMB
   =========================== */
.olip8 {
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
.olip8 a { color: var(--color-text-muted); }
.olip8 a:hover { color: var(--color-gold); }

/* ===========================
   CARDS GRID (3-col)
   =========================== */
.hgof0 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rsiz9 {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.rsiz9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--color-accent);
}
.rsiz9::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.rsiz9:hover::after { transform: scaleX(1); }
.pxig6 {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.otip7 { padding: 1rem 1.2rem 1.2rem; }
.bdoj4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
}
.bdoj4 a { color: var(--color-text); }
.bdoj4 a:hover { color: var(--color-gold); }
.mbos3 {
  font-size: .88rem;
  color: var(--color-text-muted);
  margin-top: .25rem;
}
.yfom2 {
  font-size: .8rem;
  color: var(--color-accent);
  margin-top: .4rem;
  font-weight: 600;
}

/* ===========================
   TAGS
   =========================== */
.xhico7 { display: flex; flex-wrap: wrap; gap: .6rem; }
.gdicr1 {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--color-text);
  transition: all var(--transition);
  font-family: var(--font-body);
}
.gdicr1:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.lgicy0 { font-size: .75rem; color: var(--color-text-muted); }

/* ===========================
   TWO-COLUMN LAYOUT (region/dept/ville)
   =========================== */
.sjicb4 {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}
.kkics5 { min-width: 0; }
.vlicv5 {
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}
.vlicv5 h3 {
  font-size: .9rem;
  color: var(--color-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
}
.izecm0 { display: flex; flex-direction: column; gap: .3rem; }
.izecm0 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .6rem;
  color: var(--color-text-muted);
  font-size: .88rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.izecm0 a:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
}
.izecm0 a span {
  font-size: .75rem;
  color: var(--color-text-muted);
  background: rgba(212, 168, 67, 0.1);
  padding: .15rem .4rem;
  border-radius: var(--radius);
}

/* ===========================
   ANNONCE DETAIL
   =========================== */
.bpk2 { margin-bottom: 2rem; }
.bpk2 h1 {
  font-size: 2rem;
  color: var(--color-text);
}
.bpk2 h1 span { color: var(--color-accent); }
.tvt9 {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-top: .3rem;
}

/* Carousel/gallery CSS-only */
.mjz9 {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 67, 0.3);
  margin-bottom: 2rem;
  background: #000;
}
.xnj0 {
  display: flex;
  transition: transform .5s ease;
  width: 100%;
}
.imk3 {
  min-width: 100%;
  position: relative;
}
.imk3 img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.nlj2 {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 0;
  background: var(--color-surface);
}
.nlj2 label {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  cursor: pointer;
  transition: background var(--transition);
}
.nlj2 label:hover,
.mjz9 input:checked + .xnj0 ~ .nlj2 label {
  background: transparent;
}
/* Radio-based carousel */
.mjz9 input { display: none; }
.mjz9 input#slide-1:checked ~ .xnj0 { transform: translateX(0); }
.mjz9 input#slide-2:checked ~ .xnj0 { transform: translateX(-100%); }
.mjz9 input#slide-3:checked ~ .xnj0 { transform: translateX(-200%); }
.mjz9 input#slide-1:checked ~ .nlj2 label[for="slide-1"],
.mjz9 input#slide-2:checked ~ .nlj2 label[for="slide-2"],
.mjz9 input#slide-3:checked ~ .nlj2 label[for="slide-3"] {
  background: var(--color-gold);
}
/* Fallback simple grid if no JS */
.lkw3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  background: transparent;
  border: none;
}
.lkw3 img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 168, 67, 0.3);
}

/* Gold section dividers */
.egv9 {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
}
.jwd2 { color: var(--color-text); }
.nfej6 {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}
.nfej6:last-child { border-bottom: none; }
.nfej6 h2 {
  font-size: 1.1rem;
  color: var(--color-gold);
  margin-bottom: .75rem;
  padding-bottom: 0;
  border-bottom: none;
}
.nfej6 p {
  color: var(--color-text);
  line-height: 1.8;
}

.zher7 {}
.cqq5 {
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
}
.kss7 {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: .9rem;
}
.kss7:last-child { border-bottom: none; }
.erg4 { color: var(--color-text-muted); }

/* Content lists */
.nfej6 ul,
.oleu7 ul,
.lsoc7 ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: .75rem 0 1rem;
}
.nfej6 ol,
.oleu7 ol,
.lsoc7 ol {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: .75rem 0 1rem;
}
.nfej6 li,
.oleu7 li,
.lsoc7 li {
  margin: .4rem 0;
  color: var(--color-text);
}
.nfej6 ul li::marker,
.oleu7 ul li::marker,
.lsoc7 ul li::marker {
  color: var(--color-gold);
}
.nfej6 ul:empty { display: none; }

/* Practices box */
.gxq3 {
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  margin-top: 1rem;
}
.gxq3 h3 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: .8rem;
  font-family: var(--font-heading);
}
.hsacn6 {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  list-style: none;
  padding-left: 0;
}
.hsacn6 li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: var(--color-text);
  margin: 0;
}
.hsacn6 li::before {
  content: "\2727";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--color-gold-soft);
  color: var(--color-gold);
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Content text */
.lsoc7 { line-height: 1.8; color: var(--color-text-muted); }
.lsoc7 p { margin-bottom: 1rem; }
.lsoc7 h2, .lsoc7 h3 { color: var(--color-text); margin: 1.5rem 0 .5rem; }

/* ===========================
   CTA BUTTON
   =========================== */
.ihh1 { text-align: center; margin: 2rem 0; }
.ypiy5 {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--color-accent), #990026);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: .12em;
  border: 1px solid var(--color-accent);
  box-shadow: 0 4px 15px rgba(204, 0, 51, 0.3);
}
.ypiy5:hover {

/* Floating contact CTA */
.rqir6 {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  padding: .85rem 2rem;
  font-size: 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.rqir6.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .rqir6 {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}  background: linear-gradient(135deg, var(--color-accent-hover), #cc0033);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(204, 0, 51, 0.4);
}

/* ===========================
   PAGINATION
   =========================== */
.znacz0 { display: flex; justify-content: center; gap: .4rem; margin-top: 2.5rem; }
.yqacn3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .7rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: .9rem;
  font-family: var(--font-body);
  transition: all var(--transition);
}
.yqacn3:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.arack7 {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.mpacj2 { display: flex; align-items: center; padding: 0 .3rem; color: var(--color-text-muted); }

/* ===========================
   SEARCH FORM
   =========================== */
.lnecf2 {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.fqech8 {
  flex: 1;
  padding: .8rem 1.2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.fqech8:focus { border-color: var(--color-gold); }
.zpecn6 {
  padding: .8rem 1.8rem;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.zpecn6:hover { background: var(--color-accent-hover); }

/* ===========================
   BLOG
   =========================== */
.rzeu4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.jrep7 {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212, 168, 67, 0.2);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.jrep7:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
}
.rtex0 { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.jrep7 h3 { padding: 1rem 1.2rem 0; font-size: 1rem; }
.jrep7 h3 a { color: var(--color-text); }
.jrep7 h3 a:hover { color: var(--color-gold); }
.jrep7 p { padding: 0 1.2rem; font-size: .88rem; color: var(--color-text-muted); }
.jrep7 time {
  padding: 0 1.2rem 1rem;
  font-size: .8rem;
  color: var(--color-text-muted);
  display: block;
}

.jkiw6 { display: flex; flex-direction: column; gap: 1.5rem; }
.hbim5 {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.hbim5:hover { border-color: var(--color-accent); }
.mgik1 { width: 100%; height: 100%; object-fit: cover; }
.gcil4 { padding: 1.2rem 1.2rem 1.2rem 0; }
.gcil4 h2 { font-size: 1.15rem; margin-bottom: .3rem; }
.gcil4 h2 a { color: var(--color-text); }
.gcil4 h2 a:hover { color: var(--color-gold); }
.xfip9 { font-size: .8rem; color: var(--color-text-muted); }
.gcil4 p { font-size: .9rem; color: var(--color-text-muted); margin-top: .5rem; }
.fjin2 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-accent);
  font-family: var(--font-heading);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.fjin2:hover { color: var(--color-gold); }
.tdii2 {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--color-gold);
  background: var(--color-gold-soft);
  padding: .2rem .6rem;
  border-radius: var(--radius);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-heading);
}

/* Blog categories filter */
.tved9 { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.lweo3 {
  display: inline-block;
  padding: .45rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.lweo3:hover,
.ixeh9 {
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* ===========================
   ARTICLE
   =========================== */
.nqeg6 { display: flex; align-items: center; gap: 1rem; margin-top: .4rem; }
.nker2 {
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-gold);
  background: var(--color-gold-soft);
  padding: .2rem .7rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.pnes4 { margin-bottom: 2rem; }
.pnes4 h1 { font-size: 2.2rem; }
.dmef7 { color: var(--color-text-muted); font-size: .9rem; }
.dpeb4 {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 168, 67, 0.2);
}
.oleu7 { max-width: 800px; }

/* ===========================
   INTRO TEXT
   =========================== */
.esecz5 { margin-bottom: 2rem; }
.esecz5 p { color: var(--color-text-muted); line-height: 1.8; font-size: 1.05rem; }
.esecz5 a { color: var(--color-gold); font-weight: 600; }

/* ===========================
   EMPTY
   =========================== */
.stoi8 { color: var(--color-text-muted); padding: 3rem 0; text-align: center; font-size: 1.1rem; }

/* ===========================
   FOOTER
   =========================== */
.tmup1 {
  background: #000;
  border-top: 1px solid rgba(212, 168, 67, 0.25);
  margin-top: 4rem;
  padding: 3rem 0 0;
}
.iqun3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.bpuk0 h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  color: var(--color-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.bpuk0 p,
.bpuk0 a {
  font-size: .9rem;
  color: var(--color-text-muted);
}
.bpuk0 a:hover { color: var(--color-gold); }
.bpuk0 li { margin-bottom: .4rem; }
.mnul5 {
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.15);
  font-size: .8rem;
  color: var(--color-text-muted);
}
.mnul5 a { color: var(--color-gold); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .sjicb4 { grid-template-columns: 1fr; }
  .vlicv5 { position: static; }
}

@media (max-width: 768px) {
  .atua8 { flex-wrap: wrap; height: auto; padding: .75rem 1rem; }
  .bwux0 { gap: .8rem; }
  .gxut4 { width: 100%; order: 3; margin: .5rem 0 0; }
  .obacs3 { width: 100%; }
  .ndack7 { grid-template-columns: 1fr; padding: 1.5rem; }
  .nhacf0 { aspect-ratio: 1/1; max-height: 400px; }
  .acacw1 h1 { font-size: 1.6rem; }
  .hgof0 { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .egv9 { grid-template-columns: 1fr; }
  .hbim5 { grid-template-columns: 1fr; }
  .gcil4 { padding: 1rem; }
  .iqun3 { grid-template-columns: 1fr; }
  .drecu6 h2 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hgof0 { grid-template-columns: 1fr 1fr; }
  .bwux0 { display: none; }
}

/* SEO text source-order optimization: text appears early in HTML for crawlers,
   but visually stays at the bottom via CSS order */
.vmacq7 > .groh5 { display: flex; flex-direction: column; }
.olip8 { order: 1; }
h1 { order: 2; }
.esecz5 { order: 3; }
.evecc0 { order: 90; }
.drecu6 { order: 10; }
.hhoq4 { order: 80; }
.acacw1 { order: 2; }
.zwecj5 { order: 85; }
/* ── Filter bar ─────────────────────────────────────────────────────────── */
.gvoq5 {
    margin: 1.5rem 0 2rem;
    padding: 1rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.lxoo1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.lxoo1 + .lxoo1 {
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}
.gzoe2 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    white-space: nowrap;
    min-width: 8.5rem;
    flex-shrink: 0;
}
.qbui3 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.dficy6 {
    background: var(--color-accent) !important;
    color: var(--color-white, #fff) !important;
    border-color: var(--color-accent) !important;
    font-weight: 600;
}
.dficy6 .lgicy0 {
    color: rgba(255,255,255,0.75) !important;
}
@media (max-width: 600px) {
  .gvoq5 { padding: .75rem; }
  .lxoo1 { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .gzoe2 { min-width: unset; }
}

/* ── Comments ─────────────────────────────────────────────────────────── */
.uviy0 {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: .8rem;
    color: var(--color-text-muted, #888);
}
.mcon2 { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.hwin9 { color: inherit; }

.xdep1 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-surface, rgba(255,255,255,.08));
    border-radius: 20px;
    padding: 4px 12px;
    margin-top: 8px;
    font-size: .9rem;
}
.ecer4 { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.mbei3 { font-weight: 700; }
.zzh7 { color: var(--color-text-muted, #aaa); text-decoration: none; font-size: .85rem; }
.zzh7:hover { text-decoration: underline; }

.ucv5 { margin-top: 32px; }
.dfm6 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.odh7 {
    background: var(--color-accent, #e91e8c);
    color: #fff;
    border-radius: 20px;
    padding: 2px 9px;
    font-size: .8rem;
    font-weight: 700;
}
.qqov7 { display: flex; flex-direction: column; gap: 16px; }
.dmos9 {
    background: var(--color-surface, rgba(255,255,255,.05));
    border-radius: 8px;
    padding: 14px 16px;
}
.elob1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.pjoh9 { font-weight: 700; font-size: .95rem; }
.wnoc0 { color: var(--color-accent, #e91e8c); letter-spacing: 1px; }
.ekow1 { color: var(--color-text-muted, #888); font-size: .8rem; margin-left: auto; }
.wpoe7 { margin: 0; font-size: .9rem; line-height: 1.6; }
