/* ============ Peinture Saint-Jérôme — couverture régionale ============ */
/* Palette: bleu profond #1f3a52 / sable #d9cfb8 / brique #a14a36 */

:root {
  --bg: #f6f1e6;
  --bg-2: #ebe2cf;
  --paper: #fdfaf3;
  --sable: #d9cfb8;
  --sable-dark: #a89e85;
  --ink: #1f3a52;
  --ink-2: #2c4a64;
  --ink-soft: #5b6c7d;
  --bleu: #1f3a52;
  --bleu-dark: #142737;
  --bleu-soft: #6a8aa6;
  --brique: #a14a36;
  --brique-dark: #7a3826;
  --brique-soft: #d39080;
  --line: #c9bea3;
  --line-soft: #d8cdb1;
  --max: 1240px;

  --display: "Bricolage Grotesque", system-ui, -apple-system, sans-serif;
  --body: "Source Sans 3", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ================== HEADER ================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1rem, 4vw, 2rem);
  background: rgba(246, 241, 230, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand strong { font-weight: 800; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--bleu);
  color: var(--sable);
}
.brand-mark svg { width: 22px; height: 22px; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--ink-2);
}
.nav a:not(.nav-phone):not(.cta-link) {
  position: relative;
  padding: 0.25rem 0;
  transition: color .2s ease;
}
.nav a:not(.nav-phone):not(.cta-link):hover { color: var(--brique); }
.nav a:not(.nav-phone):not(.cta-link)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--brique);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:not(.nav-phone):not(.cta-link):hover::after { transform: scaleX(1); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bleu);
  padding: 0.45rem 0.9rem;
  background: var(--sable);
  border: 1px solid var(--bleu);
  font-feature-settings: "tnum" 1;
  transition: background .2s ease, color .2s ease;
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-phone:hover { background: var(--bleu); color: var(--sable); }

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brique);
  color: var(--paper);
  padding: 0.7rem 1.3rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.005em;
  border: 0;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: background .2s ease, transform .15s ease;
}
.cta-link:hover { background: var(--brique-dark); transform: translateY(-1px); }
.cta-link:active { transform: translateY(0); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px; padding: 8px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 1320px) { .nav { gap: 1rem; font-size: 0.9rem; } }
@media (max-width: 1180px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; right: 1rem; left: 1rem;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 0.5rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    transition: transform .2s ease, opacity .2s ease;
    box-shadow: 0 18px 40px -20px rgba(31, 58, 82, 0.18);
  }
  .nav.open { transform: scaleY(1); opacity: 1; }
  .nav a { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav-phone, .cta-link {
    margin: 0.4rem 0.5rem;
    justify-content: center;
    border-bottom: 0;
  }
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  border: 0;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.btn-primary {
  background: var(--brique);
  color: var(--paper);
  border: 1px solid var(--brique);
}
.btn-primary:hover { background: var(--brique-dark); border-color: var(--brique-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ================== HERO ================== */
.hero {
  position: relative;
  min-height: clamp(600px, 92vh, 800px);
  overflow: hidden;
  display: grid;
  align-items: end;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroParallax 18s ease-in-out infinite alternate;
}
@keyframes heroParallax {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.10) translateY(-1.5%); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 39, 55, .82) 0%, rgba(20, 39, 55, .35) 50%, rgba(20, 39, 55, .05) 80%, transparent 100%),
    linear-gradient(to right, rgba(20, 39, 55, .50), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
  color: var(--paper);
}
.hero-stripe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.stripe-tag {
  background: rgba(217, 207, 184, 0.18);
  border: 1px solid rgba(217, 207, 184, 0.45);
  color: var(--sable);
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 1.2rem;
  max-width: 16ch;
  color: var(--paper);
}
.hero h1 em {
  font-style: italic;
  color: var(--brique-soft);
  font-weight: 600;
}
.hero .lede {
  max-width: 56ch;
  font-size: 1.05rem;
  color: rgba(253, 250, 243, 0.86);
  margin: 0 0 1.8rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}
.hero-ctas .btn-ghost { color: var(--paper); border-color: rgba(253, 250, 243, 0.5); }
.hero-ctas .btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(253, 250, 243, 0.18);
  padding-top: 1.5rem;
  max-width: 720px;
}
.hero-stats > div {
  border-right: 1px solid rgba(253, 250, 243, 0.12);
  padding: 0 1rem 0 0;
  font-family: var(--body);
  font-size: 0.92rem;
  color: rgba(253, 250, 243, 0.78);
}
.hero-stats > div:last-child { border-right: 0; padding-left: 1rem; }
.hero-stats > div:not(:first-child):not(:last-child) { padding-left: 1rem; }
.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--sable);
  letter-spacing: -0.015em;
  margin-bottom: 0.1rem;
}

/* ================== SECTIONS ================== */
.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section-eyebrow {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brique);
  margin: 0 0 0.9rem;
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
  max-width: 24ch;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--brique);
  font-weight: 600;
}
.section-lede {
  max-width: 64ch;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 2.2rem;
  line-height: 1.65;
}

/* ================== COUVERTURE ================== */
.section-couverture { background: var(--paper); }
.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.map-zone {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 1.6rem 1.5rem;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.map-zone:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(31, 58, 82, 0.32);
}
.map-zone.primary {
  background: var(--bleu);
  color: var(--paper);
  border-color: var(--bleu-dark);
  position: relative;
}
.map-zone.primary::before {
  content: "★";
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--brique-soft);
  font-size: 1.2rem;
}
.zone-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brique);
  display: block;
  margin-bottom: 0.4rem;
}
.map-zone.primary .zone-label { color: var(--brique-soft); }
.map-zone h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.map-zone.primary h3 { color: var(--paper); }
.map-zone ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.35rem;
}
.map-zone li {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-2);
  padding-left: 1rem;
  position: relative;
}
.map-zone.primary li { color: rgba(253, 250, 243, 0.85); }
.map-zone li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px;
  height: 1px;
  background: var(--brique);
}
.map-zone.primary li::before { background: var(--brique-soft); }
.zone-meta {
  display: block;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
  font-family: var(--body);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.map-zone.primary .zone-meta { border-top-color: rgba(253, 250, 243, 0.18); color: rgba(253, 250, 243, 0.7); }
.zone-meta strong { font-weight: 700; color: var(--ink); }
.map-zone.primary .zone-meta strong { color: var(--sable); }

/* ================== SERVICES ================== */
.section-services { background: var(--bg-2); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat-card {
  background: var(--paper);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: background .2s ease;
}
.cat-card:hover { background: var(--bg); }
.cat-card header { display: flex; flex-direction: column; gap: 0.3rem; }
.cat-tag {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brique);
}
.cat-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cat-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  display: grid;
  gap: 0.35rem;
}
.cat-list li {
  font-family: var(--body);
  font-size: 0.92rem;
  color: var(--ink-2);
  padding-left: 1.2rem;
  position: relative;
}
.cat-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brique);
  font-weight: 600;
}

/* ================== PROJETS ================== */
.section-projets { background: var(--bleu); color: var(--paper); }
.section-projets .section-eyebrow { color: var(--brique-soft); }
.section-projets .section-title { color: var(--paper); }
.section-projets .section-title em { color: var(--sable); }
.projets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.proj-card {
  margin: 0;
  background: var(--bleu-dark);
  border: 1px solid rgba(217, 207, 184, 0.18);
  position: relative;
  overflow: hidden;
}
.proj-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: brightness(0.92) saturate(0.95);
  transition: transform .5s ease, filter .3s ease;
}
.proj-card:hover img { transform: scale(1.05); filter: none; }
/* Before/After hover swap */
.proj-card.ba { position: relative; }
.proj-card.ba .ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.proj-card.ba:hover .ba-before { opacity: 1; }
.proj-card.ba:hover .ba-after { transform: none; filter: brightness(0.92) saturate(0.95); }
.proj-card.ba:hover img { transform: none; }
.proj-card .ba-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brique);
  color: var(--sable);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  z-index: 3;
}
.proj-card figcaption {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.proj-cat {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brique-soft);
}
.proj-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--paper);
}

/* ================== APPROCHE ================== */
.section-approche { background: var(--paper); }
.approche-steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.approche-steps li {
  background: var(--paper);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.approche-steps .step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--brique);
  letter-spacing: -0.03em;
  line-height: 1;
}
.approche-steps h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.approche-steps p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.6; }

/* ================== MRC stats ================== */
.section-mrc { background: var(--bg-2); }
.mrc-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-top: 2rem;
  background: var(--line);
  border: 1px solid var(--line);
}
.mrc-stats .stat {
  background: var(--paper);
  padding: 1.6rem 1.5rem;
  text-align: left;
}
.mrc-stats strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--bleu);
  letter-spacing: -0.025em;
  margin-bottom: 0.2rem;
  line-height: 1;
}
.mrc-stats span {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ================== TÉMOIGNAGES ================== */
.section-temoignages { background: var(--paper); }
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.temoignages-grid blockquote {
  margin: 0;
  background: var(--bg);
  padding: 1.8rem 1.6rem 1.4rem;
  border-left: 4px solid var(--brique);
  position: relative;
}
.temoignages-grid p {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.1rem;
  color: var(--ink);
}
.temoignages-grid em {
  font-style: italic;
  color: var(--brique);
  font-weight: 600;
}
.temoignages-grid cite {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bleu);
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

/* ================== FAQ ================== */
.section-faq { background: var(--bg-2); }
.faq-list {
  background: var(--paper);
  border: 1px solid var(--line);
  margin-top: 2rem;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.1rem 1.4rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .15s ease;
}
.faq-list summary:hover { background: var(--bg); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--brique);
  font-size: 1.4rem;
  font-weight: 600;
  transition: transform .2s ease;
}
.faq-list details[open] summary { background: var(--bg); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p {
  margin: 0;
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  max-width: 80ch;
}

/* ================== ESTIMATION ================== */
.section-estimation { background: var(--paper); }
.estimation-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 880px) { .estimation-grid { grid-template-columns: 1fr; } }
.estimation-points {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  display: grid;
  gap: 0.5rem;
}
.estimation-points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: var(--ink);
}
.estimation-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--brique);
  font-weight: 700;
}
.estimation-direct { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1rem; }
.estimation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
}
.estimation-form label { display: grid; gap: 0.3rem; font-size: 0.92rem; }
.estimation-form .full { grid-column: 1 / -1; }
.estimation-form span {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--bleu);
}
.estimation-form input,
.estimation-form select,
.estimation-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  transition: border-color .15s ease;
}
.estimation-form input:focus,
.estimation-form select:focus,
.estimation-form textarea:focus {
  outline: 0;
  border-color: var(--brique);
}
.estimation-form textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-family: var(--body);
  font-style: italic;
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin: 0;
  grid-column: 1 / -1;
}

/* ================== FOOTER ================== */
.site-footer {
  background: var(--bleu-dark);
  color: rgba(217, 207, 184, 0.78);
  padding: 3rem 0 1.5rem;
  border-top: 4px solid var(--brique);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--paper);
  margin: 0 0 0.5rem;
}
.footer-brand strong { font-weight: 800; }
.footer-baseline {
  font-size: 0.95rem;
  color: rgba(217, 207, 184, 0.65);
  max-width: 32ch;
}
.site-footer h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brique-soft);
  margin: 0 0 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(217, 207, 184, 0.18);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 0.18rem 0; font-size: 0.93rem; }
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--sable); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(217, 207, 184, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(217, 207, 184, 0.55);
}

/* ================== ANIMATIONS ================== */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-image img { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { transition: none !important; animation: none !important; }
}
