:root {
  --ink: #111111;
  --paper: #f6f3ed;
  --white: #ffffff;
  --gold: #b69a5b;
  --gold-strong: #6f5625;
  --gold-light: #dcc589;
  --muted: #514c45;
  --line: rgba(17, 17, 17, .13);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 Arial, Helvetica, sans-serif;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 9999;
  padding: 12px;
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-strong);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: currentColor; }

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}
h2 { font-size: clamp(2.1rem, 4vw, 4.1rem); letter-spacing: -.03em; }
h3 { font-size: 2rem; }

/* Header */
.topbar {
  padding: 7px 0;
  background: #080808;
  color: #dddddd;
  font-size: .86rem;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 237, .96);
  backdrop-filter: blur(14px);
}
body.admin-bar .site-header { top: 32px; }

.nav {
  min-height: 94px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand-fallback { display: flex; align-items: center; gap: 12px; }
.brand .custom-logo-link { display: block; width: 76px; line-height: 0; }
.brand .custom-logo,
.brand img.custom-logo {
  display: block !important;
  width: 76px !important;
  height: 76px !important;
  max-width: 76px !important;
  max-height: 76px !important;
  object-fit: contain !important;
}
.monogram {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  font: 1.15rem Georgia;
}
.brand strong { display: block; font: 1.12rem Georgia; letter-spacing: .08em; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.menu { min-width: 0; font-size: .9rem; }
.menu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 1.7vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-list > li { flex: 0 0 auto; margin: 0; padding: 0; }
.menu a { display: block; white-space: nowrap; line-height: 1.25; }
.menu a:hover,
.menu .current-menu-item > a { color: var(--gold-strong); }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: .78rem;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .065em;
  white-space: nowrap;
}
.btn.dark { background: var(--ink); color: #fff; }
.btn.light { border-color: #777; color: #fff; }
.header-cta { min-width: 190px; padding-inline: 20px; }

.burger { display: none; width: 44px; padding: 8px; border: 0; background: none; }
.burger span { display: block; height: 1px; margin: 7px; background: #111; }

/* Hero */
.hero { overflow: clip; }
.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  align-items: stretch;
  gap: 0;
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 62px 70px 0;
}
.hero h1 {
  max-width: 100%;
  margin-top: 12px;
  font-size: clamp(3.35rem, 4.05vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  overflow-wrap: normal;
  word-break: normal;
}
.hero h1 span { display: block; }
.hero h1 em { color: var(--gold-strong); font-style: normal; }
.lead {
  max-width: 650px;
  margin: 28px 0 30px;
  color: #48433c;
  font-size: 1.08rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-meta strong { display: block; font: 1.45rem Georgia; }
.hero-meta span {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-photo {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #d0d0cf;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(.9);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 52% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .58));
}
.photo-caption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #ffffff66;
  color: #fff;
}
.photo-caption strong { font: 1.1rem Georgia; }
.photo-caption span { font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; }

/* Sections */
.section { padding: 100px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}
.section-head p { max-width: 550px; color: var(--muted); }
.practice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.practice {
  position: relative;
  min-height: 345px;
  padding: 38px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform .2s, box-shadow .2s;
}
.practice:hover { transform: translateY(-4px); box-shadow: 0 18px 45px #00000018; }
.practice.dark { background: #111; color: #fff; }
.practice > span {
  color: var(--gold-strong);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.practice > b { position: absolute; top: 28px; right: 30px; font-size: 1.4rem; }
.practice h3 { margin: 100px 0 12px; }
.practice p { color: var(--muted); }
.practice.dark p { color: #ccc; }

.about { background: #111; color: #fff; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: center; }
.about-card { padding: 22px; border: 1px solid #303030; background: #171717; }
.about-card img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 24%; }
.about p { margin: 24px 0; color: #c9c9c9; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 25px; margin: 30px 0; }
.about-list div { padding-top: 12px; border-top: 1px solid #353535; }
.about-list b {
  display: block;
  color: #d7bd7f;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.values { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: #fff; }
.values article { padding: 28px; border-right: 1px solid var(--line); }
.values article:last-child { border: 0; }
.values span { color: var(--gold-strong); font: 2.1rem Georgia; }
.values h3 { margin: 14px 0 6px; font-size: 1.25rem; }
.values p { margin: 0; color: var(--muted); }

.contact-band { padding: 90px 0; background: #d8c69c; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 65px; align-items: center; }
.contact-grid h2 { margin: 8px 0 20px; }
.contact-grid > div > p { margin-bottom: 25px; }
.contact-panel { padding: 32px; border: 1px solid #0002; background: #ffffff88; }
.contact-panel p { margin: 0; padding: 12px 0; border-bottom: 1px solid #0002; }
.contact-panel p:last-child { border: 0; }
.contact-panel small {
  display: block;
  color: #665c43;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Gutenberg and content pages */
.entry-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}
.entry-content .wp-block-button { margin: 0 !important; }
.entry-content .wp-block-button__link {
  min-height: 48px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 12px 22px !important;
  border: 1px solid #111 !important;
  border-radius: 0 !important;
  background: #111 !important;
  color: #fff !important;
  font-size: .8rem !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.entry-content .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  color: #111 !important;
}
.entry-content p > .btn,
.entry-content a.btn { margin: 6px 8px 6px 0; vertical-align: middle; }

.footer { padding: 50px 0 95px; background: #080808; color: #ccc; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.footer strong { color: #fff; font: 1.2rem Georgia; }
.footer b { color: #fff; }
.footer nav { display: flex; flex-direction: column; gap: 8px; }
.copyright { margin-top: 35px; padding-top: 18px; border-top: 1px solid #333; font-size: .8rem; }
.mobile-bar { display: none; }

.page-main { padding: 35px 0 90px; }
.breadcrumbs { display: flex; gap: 8px; padding: 18px 0; color: var(--muted); font-size: .8rem; }
.content-card { padding: clamp(30px, 6vw, 75px); border: 1px solid var(--line); background: #fff; }
.content-card header { max-width: 920px; margin-bottom: 38px; }
.content-card h1,
.archive-head h1 { margin-top: 8px; font-size: clamp(2.5rem, 5vw, 5rem); }
.entry-content { max-width: 850px; font-size: 1.05rem; }
body.page-id-61 .content-card { max-width: 1000px; margin-left: auto; margin-right: auto; }
body.page-id-61 .content-card > header,
body.page-id-61 .content-card > .entry-content { margin-left: auto; margin-right: auto; }
.entry-content h2 { margin: 40px 0 12px; font-size: 2rem; }
.entry-content a { text-decoration: underline; }
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
.contact-details p { margin: 0; padding: 22px; background: var(--paper); }
.archive-head { padding: 45px 0; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { padding: 22px; border: 1px solid var(--line); background: #fff; }
.post-card img { aspect-ratio: 16 / 9; margin-bottom: 18px; object-fit: cover; }
.post-card h2 { margin: 10px 0; font-size: 1.65rem; }
.post-card p { color: var(--muted); }
.post-card small,
.post-card span { color: var(--gold-strong); }
.article-image { width: 100%; max-height: 560px; margin-bottom: 35px; object-fit: cover; }
.html-sitemap ul { columns: 2; }
.html-sitemap a { text-decoration: none; }
.html-sitemap li { margin: 8px 0; }

/* Large tablets and compact desktops */
@media (max-width: 1160px) {
  .nav { grid-template-columns: 1fr auto; }
  .menu,
  .header-cta { display: none; }
  .burger { display: block; justify-self: end; }
  .menu.open {
    position: absolute;
    top: 94px;
    right: 0;
    left: 0;
    display: block;
    padding: 25px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 35px #0002;
  }
  .menu.open .menu-list { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .menu.open .menu-list > li,
  .menu.open > a { width: 100%; border-bottom: 1px solid var(--line); }
  .menu.open a { padding: 13px 4px; white-space: normal; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 72px 0 52px; }
  .hero h1 { max-width: 850px; font-size: clamp(3.4rem, 7.4vw, 5rem); }
  .hero-photo { min-height: 650px; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .values article:nth-child(2) { border-right: 0; }
  .values article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .posts-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 680px) {
  .wrap { width: calc(100% - 28px); }
  .topbar .wrap { justify-content: center; }
  .topbar span:first-child,
  .brand small { display: none; }
  .nav { min-height: 76px; }
  .brand .custom-logo-link { width: 58px; }
  .brand .custom-logo,
  .brand img.custom-logo {
    width: 58px !important;
    height: 58px !important;
    max-width: 58px !important;
    max-height: 58px !important;
  }
  .menu.open { top: 76px; }
  .hero-copy { padding: 52px 0 40px; }
  .hero h1 { font-size: clamp(2.75rem, 12.2vw, 4rem); line-height: 1.02; }
  .lead { margin-top: 22px; font-size: 1rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { grid-template-columns: 1fr; margin-top: 34px; }
  .hero-meta div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-photo { min-height: 520px; }
  .photo-caption { right: 22px; left: 22px; display: block; }
  .photo-caption span { display: block; margin-top: 4px; }
  .section { padding: 72px 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice { min-height: 300px; padding: 28px; }
  .practice h3 { margin-top: 78px; }
  .about-grid { gap: 32px; }
  .about-list { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .values article { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .values article:last-child { border-bottom: 0 !important; }
  .contact-band { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding-bottom: 115px; }
  .mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #fff;
  }
  .mobile-bar a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid #111;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .07em;
  }
  .mobile-bar a:last-child { background: #111; color: #fff; }
  .content-card { padding: 28px 22px; }
  .contact-details,
  .posts-grid { grid-template-columns: 1fr; }
  .html-sitemap ul { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* V1.4 — pages de compétences, recommandations et actualités */
.practice-hero { padding: 88px 0 76px; background: #111; color: #fff; }
.practice-hero-grid { display:grid; grid-template-columns:minmax(0,1.5fr) minmax(300px,.7fr); gap:70px; align-items:end; }
.practice-hero h1 { margin:14px 0 22px; font-size:clamp(3.4rem,6vw,6.6rem); letter-spacing:-.05em; }
.practice-hero p { max-width:760px; color:#d2d2d2; font-size:1.15rem; }
.practice-hero .btn:not(.dark) { color:#fff; border-color:#777; }
.practice-summary { padding:30px; border-left:2px solid var(--gold); background:#1a1a1a; }
.practice-summary strong { display:block; margin-bottom:12px; font:1.45rem Georgia,serif; }
.practice-summary p { margin:0; color:#c8c8c8; font-size:.98rem; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.service-grid article { min-height:290px; padding:30px; border:1px solid var(--line); background:#fff; }
.service-grid article > span { color:var(--gold-strong); font-size:.75rem; letter-spacing:.12em; }
.service-grid h3 { margin:58px 0 14px; font-size:1.72rem; }
.service-grid p { color:var(--muted); }
.recommendations { background:#ebe5da; }
.recommendation-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.recommendation-grid article { padding:30px; background:#fff; border-top:3px solid var(--gold); }
.recommendation-grid h3 { margin-bottom:14px; font-size:1.55rem; }
.recommendation-grid p { margin:0; color:var(--muted); }
.process-section { background:#111; color:#fff; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:#444; }
.process-grid article { min-height:235px; padding:28px; background:#111; }
.process-grid b { color:var(--gold); font:2rem Georgia; }
.process-grid h3 { margin:44px 0 12px; font-size:1.65rem; }
.process-grid p { color:#c5c5c5; }
.text-link { color:var(--gold-strong); font-weight:700; }
.posts-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.post-card { overflow:hidden; background:#fff; border:1px solid var(--line); }
.post-card > a { display:block; height:100%; }
.post-card img,.post-placeholder { width:100%; height:220px; object-fit:cover; }
.post-placeholder { display:grid; place-items:center; background:#111; color:var(--gold); font:2.2rem Georgia; }
.post-card-body { padding:26px; }
.post-meta { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:14px; color:var(--gold-strong); font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; }
.post-card h2,.post-card h3 { margin-bottom:12px; font-size:1.55rem; }
.post-card p { color:var(--muted); }
.read-more { display:inline-flex; gap:8px; margin-top:10px; font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.archive-hero { padding:74px 0; background:#111; color:#fff; }
.archive-hero-grid { display:grid; grid-template-columns:1fr auto; gap:50px; align-items:end; }
.archive-hero h1 { margin:12px 0 16px; font-size:clamp(3rem,6vw,6rem); }
.archive-hero p { max-width:720px; color:#ccc; }
.archive-count { min-width:180px; padding-left:25px; border-left:1px solid #555; }
.archive-count strong { display:block; font:3.2rem Georgia; color:var(--gold); }
.archive-count span { color:#ccc; }
.news-filters { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
.news-filters a { padding:9px 14px; border:1px solid var(--line); background:#fff; font-size:.8rem; }
.news-filters .is-active { background:#111; color:#fff; }
.pagination-wrap { margin-top:40px; }
.pagination-wrap .nav-links,.pagination-wrap ul { display:flex; gap:8px; list-style:none; padding:0; }
.pagination-wrap a,.pagination-wrap .current { display:grid; place-items:center; min-width:42px; height:42px; border:1px solid var(--line); background:#fff; }
.pagination-wrap .current { background:#111; color:#fff; }
.empty-state { padding:50px; background:#fff; border:1px solid var(--line); }

@media (max-width:1050px){
 .practice-hero-grid{grid-template-columns:1fr;gap:34px}.service-grid{grid-template-columns:repeat(2,1fr)}
 .recommendation-grid,.process-grid{grid-template-columns:repeat(2,1fr)}.posts-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:700px){
 .practice-hero{padding:58px 0}.practice-hero h1{font-size:clamp(2.8rem,14vw,4.2rem)}
 .service-grid,.recommendation-grid,.process-grid,.posts-grid{grid-template-columns:1fr}
 .service-grid article{min-height:auto}.service-grid h3{margin-top:32px}
 .archive-hero-grid{grid-template-columns:1fr}.archive-count{padding:20px 0 0;border-left:0;border-top:1px solid #555}
}


/* V1.5 — contraste renforcé et lisibilité WCAG */
body, .section, .content-card, .practice, .values, .service-grid article,
.recommendation-grid article, .post-card, .news-filters a, .empty-state {
  color: #111111;
}
.section-head p, .practice p, .values p, .service-grid p,
.recommendation-grid p, .post-card p, .entry-content p,
.entry-content li, .breadcrumbs, .brand small, .hero-meta span {
  color: #514c45;
}
.about .eyebrow, .practice-hero .eyebrow, .process-section .eyebrow,
.archive-hero .eyebrow, .practice.dark > span {
  color: var(--gold-light);
}
.about p, .about-list span, .practice-hero p, .practice-summary p,
.process-grid p, .archive-hero p, .archive-count span {
  color: #e1e1e1;
}
.about h2, .about h3, .practice-hero h1, .practice-hero h2,
.process-section h2, .process-grid h3, .archive-hero h1 {
  color: #ffffff;
}
.practice.dark p { color: #e0e0e0; }
.contact-band { background: #cfb978; }
.contact-band .eyebrow { color: #594315; }
.contact-panel { background: #fffdf8; color: #111; }
.contact-panel small { color: #594315; }
.btn.light { border-color: #d8d8d8; color: #fff; }
.text-link, .post-meta, .post-card small, .post-card span,
.service-grid article > span, .values span { color: #6f5625; }
.entry-content a:not(.btn), .footer a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content a:not(.btn) { color: #4e3a10; font-weight: 600; }
.footer a:hover, .footer a:focus-visible { color: #fff; }
a:focus-visible, button:focus-visible { outline: 3px solid #b58b2e; outline-offset: 3px; }

.seo-content { background: #ffffff; }
.seo-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.8fr); gap: 70px; align-items: start; }
.seo-content h2 { margin: 10px 0 24px; font-size: clamp(2.2rem,4vw,4rem); }
.seo-content h3 { margin: 30px 0 12px; font-size: 1.55rem; }
.seo-content p, .seo-content li { color: #3f3b35; }
.seo-content ul { margin: 18px 0 0; padding-left: 20px; }
.seo-links { padding: 30px; border: 1px solid rgba(17,17,17,.18); background: #f0ebe1; }
.seo-links strong { display: block; margin-bottom: 14px; font: 1.35rem Georgia,serif; }
.seo-links a { display: block; padding: 11px 0; border-bottom: 1px solid rgba(17,17,17,.14); color: #49370e; font-weight: 700; }
.seo-links a:last-child { border-bottom: 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 34px; }
.faq-grid article { padding: 28px; border: 1px solid rgba(17,17,17,.16); background: #fff; }
.faq-grid h3 { margin: 0 0 12px; font-size: 1.35rem; }
.faq-grid p { margin: 0; color: #454039; }
@media (max-width: 900px) { .seo-grid { grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 680px) { .faq-grid { grid-template-columns: 1fr; } }
