/* ==========================================================================
   Barbara Fourché — Avocat Caen — Droit du travail
   Design system : ink / paper / brass
   ========================================================================== */

:root {
  --ink: #14171c;
  --ink-soft: #2a2f37;
  --paper: #f7f5ef;
  --paper-dim: #eeece3;
  --line: #e3e0d5;
  --line-dark: #2a2f37;
  --brass: #a9824f;
  --brass-light: #c9a468;
  --muted: #6b6f76;
  --muted-on-dark: #a9adb4;
  --white: #ffffff;
  --radius: 2px;
  --container: 1180px;
  --font-serif: "Fraunces", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 20px 60px -25px rgba(20, 23, 28, 0.35);
  --header-h: 92px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
}

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--dim { background: var(--paper-dim); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--brass); color: var(--ink); }
.btn--primary:hover { background: var(--brass-light); transform: translateY(-1px); }
.btn--outline { border-color: currentColor; background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--outline-light { border-color: rgba(247,245,239,0.4); color: var(--paper); }
.btn--outline-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--ghost { padding: 0; text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 0.95rem; color: var(--brass); }
.btn--ghost::after { content: "→"; margin-left: 8px; transition: transform 0.2s ease; display: inline-block; }
.btn--ghost:hover::after { transform: translateX(4px); }

.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  min-height: var(--header-h);
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  flex: none;
  white-space: nowrap;
}
.site-header__brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.site-header__brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-light);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  list-style: none;
  flex-wrap: nowrap;
}
.site-header__nav a {
  color: var(--muted-on-dark);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
}
.site-header__nav a:hover,
.site-header__nav a.is-active { color: var(--paper); }
.site-header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--brass);
}
.site-header__actions { display: flex; align-items: center; gap: 18px; flex: none; }
.site-header__phone {
  display: none;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  flex: none;
}
.site-header__phone .icon { flex: none; }
.site-header__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  width: 40px; height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}
.site-header__toggle .icon { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .site-header__nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    width: 100vw;
    background: var(--ink);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .site-header__nav.is-open { transform: translateX(0); }
  .site-header__nav a { font-size: 1.1rem; }
  .site-header__toggle { display: inline-flex; }
  .site-header__actions .btn--primary { display: none; }
}
@media (min-width: 901px) and (max-width: 1220px) {
  .site-header__actions .btn--primary { padding-left: 18px; padding-right: 18px; }
}
@media (min-width: 1280px) {
  .site-header__phone { display: inline-flex; }
}

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding-top: 164px;
  padding-bottom: 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20,23,28,0.97) 30%, rgba(20,23,28,0.72) 100%), var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow { color: var(--brass-light); }
.hero h1 { color: var(--paper); }
.hero h1 em { font-style: italic; color: var(--brass-light); }
.hero__lead {
  font-size: 1.1rem;
  color: var(--muted-on-dark);
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__portrait {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,164,104,0.4);
  margin: 14px;
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  left: -24px;
  bottom: 32px;
  background: var(--brass);
  color: var(--ink);
  padding: 16px 22px;
  max-width: 220px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .hero { padding-top: 140px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 340px; margin: 0 auto; }
  .hero__badge { left: 0; }
}

/* ==========================================================================
   Interior page banner
   ========================================================================== */
.page-banner {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 176px 0 64px;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,23,28,0.96) 20%, rgba(20,23,28,0.6) 100%), var(--banner-bg, none);
  background-size: cover;
  background-position: center;
}
.page-banner__inner { position: relative; z-index: 1; }
.page-banner h1 { color: var(--paper); margin: 0; }
.page-banner__lead { color: var(--muted-on-dark); max-width: 60ch; margin-top: 1rem; font-size: 1.05rem; }

/* ==========================================================================
   Intro points (home)
   ========================================================================== */
.points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.point {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.point:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.point__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--paper-dim);
  color: var(--brass);
  margin-bottom: 20px;
}
.point__icon .icon { width: 24px; height: 24px; }
.point p { color: var(--muted); font-size: 0.98rem; margin: 0; }

@media (max-width: 800px) {
  .points { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Feature list (Présentation / Expertises / Honoraires / Données)
   ========================================================================== */
.feature-list__head { max-width: 66ch; margin-bottom: 3rem; }
.feature-list__head p { color: var(--muted); font-size: 1.08rem; }
.feature-items { display: flex; flex-direction: column; }
.feature-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.feature-item:first-child { padding-top: 0; }
.feature-item:last-child { border-bottom: none; }
.feature-item__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-light);
}
.feature-item__icon .icon { width: 26px; height: 26px; }
.feature-item__body h3 { margin-bottom: 0.6rem; }
.feature-item__body .rich { color: var(--muted); }
.feature-item__body .rich ul { margin: 0.8em 0 0; padding: 0; list-style: none; }
.feature-item__body .rich ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.55em;
}
.feature-item__body .rich ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 1px;
  background: var(--brass);
}
.feature-item__body .rich hr { display: none; }

@media (max-width: 640px) {
  .feature-item { grid-template-columns: 1fr; gap: 14px; }
}

/* ==========================================================================
   Rich text page (Mentions légales)
   ========================================================================== */
.richtext-page { max-width: 78ch; }
.richtext-page h3 { margin-top: 2.4em; font-size: 1.2rem; }
.richtext-page h3:first-child { margin-top: 0; }
.richtext-page h4 { margin-top: 1.6em; color: var(--brass); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.08em; font-family: var(--font-sans); }
.richtext-page p { color: var(--muted); }
.richtext-page a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 28px; }
.contact-card { display: flex; gap: 20px; align-items: flex-start; }
.contact-card__icon {
  flex: none;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-light);
}
.contact-card__icon .icon { width: 22px; height: 22px; }
.contact-card h4 { margin-bottom: 0.3rem; }
.contact-card a, .contact-card p { color: var(--muted); }
.contact-card a:hover { color: var(--brass); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3.4;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.35) contrast(1.05); }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Avis Google
   ========================================================================== */
.reviews__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 3rem;
}
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 1.2rem;
}
.reviews__rating-score { font-family: var(--font-serif); font-size: 1.6rem; line-height: 1; }
.reviews__rating-stars { display: flex; gap: 2px; color: var(--brass); }
.reviews__rating-stars .icon { width: 16px; height: 16px; fill: currentColor; stroke: none; }
.reviews__rating-count { color: var(--muted); font-size: 0.85rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card__quote { color: var(--brass); opacity: 0.6; }
.review-card__quote .icon { width: 28px; height: 28px; fill: currentColor; stroke: none; }
.review-card__stars { display: flex; gap: 2px; color: var(--brass); }
.review-card__stars .icon { width: 14px; height: 14px; fill: currentColor; stroke: none; }
.review-card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  flex: none;
}
.review-card__author-name { font-weight: 600; font-size: 0.92rem; }
.review-card__author-meta { color: var(--muted); font-size: 0.8rem; }

/* ==========================================================================
   Home actualités preview + Blog grid
   ========================================================================== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 3rem;
}
.section-head h2 { margin: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.blog-card__cover {
  aspect-ratio: 16/10;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
}
.blog-card__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.blog-card__tag {
  position: relative;
  z-index: 1;
  color: var(--brass-light);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-card__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card__date { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.blog-card__body h3 { margin: 0; font-size: 1.15rem; }
.blog-card__body h3 a:hover { color: var(--brass); }
.blog-card__excerpt { color: var(--muted); font-size: 0.94rem; margin: 0; flex: 1; }
.blog-card__more { font-size: 0.85rem; font-weight: 600; color: var(--brass); margin-top: 4px; }

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.pagination a {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 14px;
}
.pagination a.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination a:hover:not(.active) { border-color: var(--brass); color: var(--brass); }

/* ==========================================================================
   Carrousel (avis, actualités en accueil)
   ========================================================================== */
.carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
  margin-bottom: -14px;
  scrollbar-width: thin;
  scrollbar-color: var(--brass) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-track { background: transparent; }
.carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.carousel::-webkit-scrollbar-thumb:hover { background: var(--brass); }
.carousel > * {
  flex: 0 0 auto;
  width: min(320px, 82vw);
  scroll-snap-align: start;
}
.carousel.blog-grid > .blog-card,
.carousel.reviews-grid > .review-card {
  width: min(320px, 82vw);
}
.carousel-arrows { display: flex; align-items: center; gap: 10px; flex: none; }
.carousel-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  flex: none;
}
.carousel-arrow:hover { border-color: var(--brass); color: var(--brass); }
.carousel-arrow .icon { width: 18px; height: 18px; }
.section--dim .carousel-arrow,
.section--dark .carousel-arrow { background: transparent; }

/* ==========================================================================
   Article
   ========================================================================== */
.article-header { padding-top: 176px; padding-bottom: 40px; background: var(--paper-dim); }
.article-header__meta { display: flex; gap: 16px; align-items: center; color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1.2rem; }
.article-header h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 24ch; }
.article-header__lead { max-width: 62ch; font-size: 1.15rem; color: var(--ink-soft); margin-top: 1rem; }
.article-header__sub { color: var(--brass); font-weight: 600; margin-bottom: 0.6rem; }
.article-body { max-width: 74ch; }
.article-body .rich p { color: var(--ink-soft); font-size: 1.05rem; }
.article-body .rich a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--brass); }
.article-body .rich ul { padding-left: 1.2em; margin: 1em 0; color: var(--ink-soft); }
.article-body .rich hr { border: none; border-top: 1px solid var(--line); margin: 2em 0; }
.article-body .rich i { color: var(--muted); }
.article-cta {
  margin-top: 3.5rem;
  padding: 32px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-radius: var(--radius);
}
.article-cta p { margin: 0; max-width: 42ch; }
.article-file {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.article-file .icon { width: 20px; height: 20px; color: var(--brass); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--paper); margin-bottom: 1.2rem; }
.cta-banner p { color: var(--muted-on-dark); max-width: 56ch; margin: 0 auto 2rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--muted-on-dark); padding: 72px 0 28px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__brand { font-family: var(--font-serif); font-size: 1.3rem; color: var(--paper); margin-bottom: 1rem; }
.site-footer__brand span { color: var(--brass); }
.site-footer p { font-size: 0.92rem; max-width: 34ch; }
.site-footer h4 { color: var(--paper); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: 0.92rem; }
.site-footer ul a:hover { color: var(--brass-light); }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 0.82rem;
}
.site-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.site-footer__legal a:hover { color: var(--brass-light); }

@media (max-width: 780px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Contact form
   ========================================================================== */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.form-field input, .form-field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--brass); outline-offset: 1px; }
.form-message-success, .form-message-error { display: none; padding: 14px 18px; border-radius: var(--radius); font-size: 0.9rem; margin-top: 8px; }
.form-message-success { background: #e7f3ea; color: #1f5c33; }
.form-message-error { background: #fbe9e7; color: #8f2f24; }
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
