/* ============================================================
   Doux Rêveurs — Custom child theme (parent: kadence)
   Design System: Organique Argile
   ============================================================ */

:root {
  --a28-primary: #9C5C3A;
  --a28-accent: #D4956D;
  --a28-text: #3A2014;
  --a28-text-soft: #7C5A40;
  --a28-bg: #F2E5D5;
  --a28-surface: #F8EFE0;
  --a28-line: #D5BC9A;

  --a28-radius-sm: 8px;
  --a28-radius: 14px;
  --a28-radius-lg: 22px;

  --a28-font-h: 'Fraunces', 'Georgia', serif;
  --a28-font-b: 'Karla', 'Inter', system-ui, sans-serif;

  --a28-container: 1180px;
  --a28-shadow-sm: 0 2px 8px rgba(58, 32, 20, 0.08);
  --a28-shadow: 0 10px 30px rgba(58, 32, 20, 0.12);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.a28-body {
  margin: 0;
  font-family: var(--a28-font-b);
  font-size: 16px;
  line-height: 1.65;
  color: var(--a28-text);
  background: var(--a28-bg);
  -webkit-font-smoothing: antialiased;
}
main, .a28-main { padding-top: 0 !important; margin-top: 0 !important; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--a28-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--a28-accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--a28-font-h);
  font-weight: 600;
  color: var(--a28-text);
  line-height: 1.2;
  margin: 0 0 .8rem;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; }

/* ---------- Buttons ---------- */
.a28-btn {
  display: inline-block;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  font-family: var(--a28-font-b);
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.a28-btn--primary {
  background: var(--a28-primary);
  color: #fff;
}
.a28-btn--primary:hover {
  background: #7C4628;
  color: #fff;
  box-shadow: var(--a28-shadow);
}
.a28-btn--ghost {
  background: transparent;
  color: var(--a28-primary);
  border: 1.5px solid var(--a28-primary);
}
.a28-btn--ghost:hover {
  background: var(--a28-primary);
  color: #fff;
}

/* CTA bounce on hover (animations from JSON) */
@keyframes a28-bounce-on-hover {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}
.a28-btn--cta {
  display: inline-block;
  padding: .85rem 1.8rem;
  background: var(--a28-primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(156, 92, 58, 0.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.a28-btn--cta:hover {
  animation: a28-bounce-on-hover 0.9s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(156, 92, 58, 0.25);
  color: #fff;
}

/* CTR floating tooltip */
@keyframes a28-float-tooltip {
  0%, 100% { transform: translateY(0); opacity: .9; }
  50% { transform: translateY(-5px); opacity: 1; }
}
.a28-btn--ctr {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1.1rem;
  background: var(--a28-surface);
  color: var(--a28-primary);
  border: 1.5px solid var(--a28-line);
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}
.a28-btn--ctr::after {
  content: 'lire';
  position: absolute;
  top: -14px;
  right: -6px;
  background: var(--a28-accent);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  animation: a28-float-tooltip 2.2s ease-in-out infinite;
  pointer-events: none;
}

/* CTO floating coupon */
@keyframes a28-float-coupon {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-6px) rotate(1.5deg); }
}
.a28-btn--cto {
  display: inline-block;
  padding: .65rem 1.3rem;
  background: linear-gradient(135deg, var(--a28-accent), var(--a28-primary));
  color: #fff;
  border: 2px dashed rgba(255,255,255,0.5);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  animation: a28-float-coupon 3s ease-in-out infinite;
  box-shadow: 0 6px 18px rgba(156,92,58,0.3);
}

/* ---------- Mouse effect: cursor_grid_dots_react ---------- */
.a28-grid-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle, var(--a28-line, #D5BC9A) 1.4px, transparent 1.6px);
  background-size: 34px 34px;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.a28-grid-cursor-light {
  position: fixed;
  top: 0; left: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--a28-accent, #D4956D) 28%, transparent), transparent 70%);
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .25s ease;
  will-change: transform;
}
@media (hover: none) {
  .a28-grid-dots, .a28-grid-cursor-light { display: none !important; }
}

/* ---------- Container ---------- */
.a28-container {
  width: 100%;
  max-width: var(--a28-container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 3;
}

/* ============================================================
   HEADER — logo-center-menu-split layout
   ============================================================ */
.a28-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 239, 224, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--a28-line);
}
.a28-header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.a28-nav-left, .a28-nav-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.a28-nav-left ul, .a28-nav-right ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.a28-nav-left a, .a28-nav-right a {
  color: var(--a28-text);
  font-weight: 500;
  font-size: .95rem;
  padding: .4rem .2rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.a28-nav-left a:hover, .a28-nav-right a:hover {
  color: var(--a28-primary);
  border-bottom-color: var(--a28-primary);
}
.a28-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.a28-brand:hover { color: inherit; }
.a28-brand-logo {
  width: auto;
  max-width: 110px;
}
.a28-brand-name {
  font-family: var(--a28-font-h);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--a28-text);
  margin-top: .25rem;
  letter-spacing: .01em;
}
.a28-burger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
  z-index: 110;
}
.a28-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--a28-text);
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

/* Mobile drawer — HIDDEN BY DEFAULT */
.a28-nav-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .a28-nav-left, .a28-nav-right { display: none; }
  .a28-brand { margin-right: auto; }
  .a28-header-inner {
    justify-content: space-between;
    gap: 1rem;
  }
  .a28-burger { display: block; }
  .a28-nav-mobile.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 86%;
    max-width: 380px;
    background: #ffffff;
    padding: 4.5rem 1.5rem 2rem;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
  }
  .a28-nav-mobile.is-open ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .a28-nav-mobile.is-open li {
    border-bottom: 1px solid #e5e5e5;
  }
  .a28-nav-mobile.is-open a {
    display: block;
    padding: 1rem .25rem;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
  }
  .a28-nav-mobile.is-open a:hover {
    color: var(--a28-primary);
  }
  .a28-nav-mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #0a0a0a;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
  }
  .a28-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
  }
  .a28-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ============================================================
   HERO — parallax-scroll
   ============================================================ */
.a28-hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.a28-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  z-index: 1;
  transform: translateY(0);
  will-change: transform;
}
.a28-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,32,20,0.05) 0%, rgba(58,32,20,0.45) 100%);
  z-index: 2;
}
.a28-hero-inner {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 820px;
  padding: 6rem 1.5rem;
}
.a28-hero-eyebrow {
  display: inline-block;
  font-family: var(--a28-font-b);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  color: #fff;
  backdrop-filter: blur(8px);
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.a28-hero h1.a28-hero-title,
.a28-hero-title {
  font-family: var(--a28-font-h);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #ffffff !important;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin: 0 0 1.2rem;
}
.a28-hero-subtitle {
  font-family: var(--a28-font-b);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  max-width: 640px;
  margin: 0 auto 2.2rem;
  line-height: 1.55;
}
.a28-hero-cta-wrap {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.a28-hero-cta-wrap .a28-btn--cta {
  background: var(--a28-accent);
  color: #fff;
}
.a28-hero-cta-wrap .a28-btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.a28-hero-cta-wrap .a28-btn--ghost:hover {
  background: #fff;
  color: var(--a28-primary);
}

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.a28-section {
  padding: 5rem 0;
}
.a28-section-title {
  font-family: var(--a28-font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: .6rem;
  color: var(--a28-text);
}
.a28-section-subtitle {
  text-align: center;
  color: var(--a28-text-soft);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.a28-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.a28-cat-card {
  display: block;
  position: relative;
  border-radius: var(--a28-radius);
  overflow: hidden;
  background: var(--a28-surface);
  text-decoration: none;
  box-shadow: var(--a28-shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  aspect-ratio: 4/3;
}
.a28-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--a28-shadow);
}
.a28-cat-card img.a28-cat-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.a28-cat-card-img-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--a28-primary), var(--a28-accent));
}
.a28-cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(58,32,20,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.5rem;
  color: #fff;
}
.a28-cat-card-name {
  font-family: var(--a28-font-h);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 .25rem;
  color: #fff;
}
.a28-cat-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--a28-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 900px) {
  .a28-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 540px) {
  .a28-categories-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EDITORIAL BLOCK (SEO 400-700 mots, after-categories variant)
   ============================================================ */
.a28-editorial {
  background: var(--a28-surface);
  padding: 5rem 0;
}
.a28-editorial-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.a28-editorial h2 {
  font-family: var(--a28-font-h);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--a28-primary);
  margin-top: 2rem;
  margin-bottom: .8rem;
}
.a28-editorial h2:first-child { margin-top: 0; }
.a28-editorial h3 {
  font-family: var(--a28-font-h);
  font-size: 1.25rem;
  color: var(--a28-text);
  margin-top: 1.6rem;
}
.a28-editorial p {
  color: var(--a28-text);
  line-height: 1.75;
  font-size: 1.04rem;
  margin-bottom: 1.2rem;
}
.a28-editorial .a28-edito-pull {
  background: var(--a28-bg);
  border-left: 4px solid var(--a28-primary);
  padding: 1.3rem 1.6rem;
  border-radius: 0 var(--a28-radius) var(--a28-radius) 0;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--a28-text-soft);
}
.a28-editorial a {
  color: var(--a28-primary);
  text-decoration: underline;
  text-decoration-color: var(--a28-line);
  text-underline-offset: 3px;
}
.a28-editorial a:hover {
  text-decoration-color: var(--a28-primary);
}

/* ============================================================
   LATEST ARTICLES (18 grid)
   ============================================================ */
.a28-latest {
  padding: 5rem 0;
}
.a28-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.a28-article-card {
  background: var(--a28-surface);
  border-radius: var(--a28-radius);
  overflow: hidden;
  box-shadow: var(--a28-shadow-sm);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.a28-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--a28-shadow);
}
.a28-article-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.a28-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.a28-article-card:hover .a28-article-thumb img { transform: scale(1.05); }
.a28-article-thumb-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--a28-accent), var(--a28-primary));
}
.a28-article-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.a28-article-cat {
  font-size: .75rem;
  font-weight: 700;
  color: var(--a28-primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .5rem;
}
.a28-article-title {
  font-family: var(--a28-font-h);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 .6rem;
}
.a28-article-title a {
  color: var(--a28-text);
}
.a28-article-title a:hover {
  color: var(--a28-primary);
}
.a28-article-meta {
  color: var(--a28-text-soft);
  font-size: .85rem;
  margin-top: auto;
  padding-top: .8rem;
}
@media (max-width: 900px) {
  .a28-latest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .a28-latest-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TOOL ON HOME (showcase)
   ============================================================ */
.a28-tool-showcase {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--a28-surface), var(--a28-bg));
}
.a28-tool-showcase-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1.5rem;
}
.a28-tool-showcase h2 {
  font-family: var(--a28-font-h);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: .8rem;
}
.a28-tool-showcase p.a28-tool-intro {
  color: var(--a28-text-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2.4rem;
  line-height: 1.6;
}

/* ============================================================
   METRICS LINKS BLOCK
   ============================================================ */
.a28-metrics-block {
  padding: 3rem 0;
  background: var(--a28-surface);
  border-top: 1px solid var(--a28-line);
  border-bottom: 1px solid var(--a28-line);
}
.a28-metrics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.a28-metrics-list a {
  display: inline-block;
  padding: .55rem 1.1rem;
  background: var(--a28-bg);
  border: 1px solid var(--a28-line);
  border-radius: 999px;
  color: var(--a28-primary);
  font-size: .92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}
.a28-metrics-list a:hover {
  background: var(--a28-primary);
  color: #fff;
  border-color: var(--a28-primary);
}

/* ============================================================
   CATEGORY PAGES
   ============================================================ */
.a28-cat-hero {
  position: relative;
  height: 320px;
  max-height: 350px;
  overflow: hidden;
}
.a28-cat-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.a28-cat-hero .a28-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
  padding-bottom: 1.8rem;
  padding-top: 0;
}
.a28-cat-hero h1 {
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  margin: 0 0 .35rem;
}
.a28-cat-intro {
  background: var(--a28-surface);
  padding: 3rem 0;
}
.a28-cat-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--a28-text);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.a28-cat-articles {
  padding: 4rem 0;
}
.a28-cat-outro {
  padding: 4rem 0;
  background: var(--a28-surface);
}

/* ============================================================
   PERSONA PHOTO ON ABOUT PAGE
   ============================================================ */
.a28-persona-photo {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  border-radius: var(--a28-radius-lg);
  margin: 1.5rem 0;
  float: right;
  margin-left: 2rem;
  box-shadow: var(--a28-shadow);
}
@media (max-width: 720px) {
  .a28-persona-photo { float: none; margin: 1.5rem auto; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.a28-contact-form {
  margin: 2.4rem 0 1rem;
  background: var(--a28-surface);
  padding: 1.6rem;
  border-radius: var(--a28-radius);
}

/* ============================================================
   FOOTER — terracotta 4 columns
   ============================================================ */
.a28-footer {
  background: #2a1810;
  color: #f5ebd9;
  padding: 4.5rem 0 2.5rem;
  margin-top: 5rem;
}
.a28-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.a28-footer-col-brand .a28-footer-logo {
  width: 80px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(1.4);
}
.a28-footer-brand-name {
  font-family: var(--a28-font-h);
  font-size: 1.5rem;
  color: var(--a28-accent);
  margin-bottom: .6rem;
  display: block;
}
.a28-footer-brand-pitch {
  color: #e5d2b5;
  font-size: .94rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.a28-footer-brand-cta {
  display: inline-block;
  color: var(--a28-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  font-size: .94rem;
}
.a28-footer-brand-cta:hover { color: #fff; }

.a28-footer-title {
  font-family: var(--a28-font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--a28-accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.a28-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.a28-footer-links li {
  margin-bottom: .55rem;
}
.a28-footer-links a {
  color: #f5ebd9;
  text-decoration: underline;
  text-decoration-color: rgba(245,235,217,0.25);
  text-underline-offset: 3px;
  font-size: .94rem;
  transition: color .2s;
}
.a28-footer-links a:hover {
  color: var(--a28-accent);
  text-decoration-color: var(--a28-accent);
}

.a28-footer-socials {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
}
.a28-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,149,109,0.15);
  color: var(--a28-accent);
  border: 1px solid rgba(212,149,109,0.3);
  transition: all .2s;
}
.a28-footer-socials a:hover {
  background: var(--a28-accent);
  color: #2a1810;
}

.a28-footer-bottom {
  border-top: 1px solid rgba(212,149,109,0.2);
  padding-top: 1.8rem;
  text-align: center;
  font-size: .88rem;
  color: #d8c2a3;
}
.a28-footer-bottom p { margin: 0; }

@media (max-width: 920px) {
  .a28-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 540px) {
  .a28-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   GENERIC POST CONTENT
   ============================================================ */
.a28-page-wrap, .a28-post-wrap {
  padding: 4rem 0;
  background: var(--a28-bg);
}
.a28-page-wrap .a28-container, .a28-post-wrap .a28-container {
  background: var(--a28-surface);
  padding: 3rem 3rem;
  border-radius: var(--a28-radius);
  box-shadow: var(--a28-shadow-sm);
  max-width: 880px;
}
.a28-page-wrap h1, .a28-post-wrap h1 { margin-top: 0; }
.a28-page-wrap h2, .a28-post-wrap h2 { color: var(--a28-primary); margin-top: 2rem; }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 720px) {
  .a28-section { padding: 3.5rem 0; }
  .a28-hero { min-height: 70vh; }
  .a28-hero-inner { padding: 4rem 1.5rem; }
  .a28-editorial { padding: 3.5rem 0; }
  .a28-latest { padding: 3.5rem 0; }
  .a28-footer { padding: 3rem 0 2rem; }
  .a28-page-wrap .a28-container, .a28-post-wrap .a28-container { padding: 2rem 1.4rem; }
}

/* Skip body padding due to fixed header (sticky behavior) */
.admin-bar .a28-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .a28-header { top: 46px; }
}


/* Mouse effect : cursor_grid_dots_react */
.a28-grid-dots { position: fixed; inset: 0; pointer-events: none; z-index: 1; background-image: radial-gradient(circle, var(--a28-line, #D5BC9A) 1.4px, transparent 1.6px); background-size: 34px 34px; opacity: 0.35; mix-blend-mode: multiply; } .a28-grid-cursor-light { position: fixed; top: 0; left: 0; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--a28-accent, #D4956D) 28%, transparent), transparent 70%); pointer-events: none; z-index: 2; transform: translate(-50%, -50%); opacity: 0; transition: opacity .25s ease; will-change: transform; } @media (hover: none) { .a28-grid-dots, .a28-grid-cursor-light { display: none !important; } }

/* === [RP2G hotfix 2026-06-06] drawer mobile burger : force 100vh === */
@media (max-width: 1023px) {
  [class*="-nav-mobile"].is-open, [id*="-nav-mobile"].is-open,
  nav[class*="-nav"].is-open:not([class*="-desktop"]),
  [class*="-drawer"]:not([class*="overlay"]).is-open,
  [class*="-side-nav"].is-open, [class*="-burger-menu"].is-open {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
  }
}

/* === [RP2G hotfix 2026-06-06] footer contrast : force dark text on light bg === */
[class*="-footer"], footer {
  color: #1a1a1a !important;
}
[class*="-footer"] *, footer *, [class*="-footer"] p, [class*="-footer"] span, [class*="-footer"] li, [class*="-footer"] h1, [class*="-footer"] h2, [class*="-footer"] h3, [class*="-footer"] h4, [class*="-footer"] h5 {
  color: #1a1a1a !important;
}
[class*="-footer"] a, footer a {
  color: #1a1a1a !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  font-weight: 600 !important;
}
[class*="-footer"] a:hover, footer a:hover {
  color: #000 !important;
  opacity: 0.7 !important;
}
[class*="-footer"] h1, [class*="-footer"] h2, [class*="-footer"] h3, [class*="-footer"] h4, [class*="-footer"] h5 {
  color: #0a0a0a !important; font-weight: 700 !important;
}
