/* =============================================
   KEROUAULT PAYSAGE — Style principal
   Mobile-first, vanilla CSS
   ============================================= */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Tanker';
  src: url('fonts/Tanker-Regular.woff2') format('woff2'),
       url('fonts/Tanker-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- VARIABLES ---------- */
:root {
  --anthracite: #1C1C1C;
  --anthracite-light: #2D2D2D;
  --cream: #F5F0E8;
  --moss: #3D5C34;
  --moss-light: #4A7A3D;
  --leaf: #7CB342;
  --leaf-light: #9CCC65;
  --earth: #8C6E4B;
  --linen: #C9B99A;
  --bark: #2A2019;
  --white-warm: #FDFAF5;
  --gold: #C8973A;
  --danger: #c0392b;

  --font-display: 'Tanker', Impact, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius: 8px;
  --shadow-sm: 0 2px 8px rgba(42,32,25,.06);
  --shadow-md: 0 4px 18px rgba(42,32,25,.08);
  --shadow-lg: 0 12px 40px rgba(42,32,25,.10);

  --max-width: 1140px;
  --nav-height: 88px;
}

/* ---------- BASE ---------- */
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--bark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- TYPO ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; color: var(--moss); text-wrap: balance; }
h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 400; text-transform: uppercase; letter-spacing: .02em; }
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: inline-block;
  padding-bottom: .35rem;
  border-bottom: 3px solid var(--leaf);
}
.text-center h2,
h2.text-center { display: block; }
.text-center h2::after,
h2.text-center::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--leaf);
  margin: .35rem auto 0;
  border-radius: 2px;
}
.text-center h2,
h2.text-center { border-bottom: none; padding-bottom: 0; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); font-weight: 600; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-center { text-align: center; }
.text-earth { color: var(--earth); }
.text-small { font-size: .85rem; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 4rem 0;
}
.section--cream { background: var(--cream); }
.section--white { background: var(--white-warm); }
.section--anthracite { background: var(--anthracite); color: var(--cream); }
.section--anthracite h1,
.section--anthracite h2,
.section--anthracite h3 { color: var(--cream); }
.section--anthracite h2 { border-bottom-color: var(--leaf); }
.section--anthracite h2.text-center::after { background: var(--leaf); }
.section--moss { background: linear-gradient(135deg, var(--moss) 0%, #2E5428 100%); color: var(--white-warm); }
.section--moss h2 { color: var(--white-warm); border-bottom-color: var(--leaf); }
.section--moss h2.text-center::after,
.text-center .section--moss h2::after { background: var(--leaf); }

.section-subtitle {
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  color: var(--earth);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--anthracite);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: calc(var(--nav-height) - 12px);
}

.nav-logo img {
  height: 100%;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .04em;
  transition: color .2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--leaf) !important;
  color: #fff !important;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background .2s !important;
}

.nav-cta:hover { background: var(--leaf-light) !important; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-warm);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .nav-burger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--anthracite);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    transition: transform .3s ease;
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1rem;
    padding: .5rem 0;
  }
}

/* Spacer for fixed nav */
.nav-spacer { height: var(--nav-height); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--anthracite);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 2rem 0;
}

.hero h1 {
  color: #fff;
  margin-bottom: .75rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.85);
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--leaf);
  margin-bottom: 2rem;
  transition: color .2s;
}

.hero-phone:hover { color: #fff; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--leaf);
  color: #fff;
  border-color: var(--leaf);
}
.btn--primary:hover {
  background: var(--leaf-light);
  border-color: var(--leaf-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--anthracite {
  background: var(--anthracite);
  color: #fff;
  border-color: var(--anthracite);
}
.btn--anthracite:hover {
  background: var(--anthracite-light);
  transform: translateY(-2px);
}

.btn--call {
  background: var(--leaf);
  color: #fff;
  border-color: var(--leaf);
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}
.btn--call:hover {
  background: var(--leaf-light);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .btn--call {
    font-size: 1rem;
    padding: .85rem 1.25rem;
    width: 100%;
  }
}


.btn--icon {
  width: 42px; height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--linen);
  color: var(--earth);
  background: transparent;
}
.btn--icon:hover {
  background: var(--leaf);
  border-color: var(--leaf);
  color: #fff;
}

/* ---------- CARDS SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--white-warm);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 { color: var(--moss); }

.service-card p {
  font-size: .9rem;
  color: var(--earth);
  margin-bottom: 1.25rem;
}

.service-card .btn { font-size: .8rem; padding: .6rem 1.4rem; }

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: left;
}
.service-card-list li {
  position: relative;
  padding: .35rem 0 .35rem 1.25rem;
  font-size: .88rem;
  color: var(--bark);
  border-bottom: 1px solid rgba(201,185,154,.35);
}
.service-card-list li:last-child { border-bottom: none; }
.service-card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .85rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--leaf);
}

.service-card-note {
  font-size: .82rem !important;
  color: var(--moss) !important;
  font-style: italic;
  margin-bottom: 1rem !important;
}

/* Services complémentaires */
.services-extra {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--linen);
}
.services-extra h3 {
  color: var(--moss);
  margin-bottom: 1.5rem;
}
.services-extra-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .services-extra-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-extra {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.1rem;
  background: var(--white-warm);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--bark);
}
.service-extra span {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ---------- DETAIL SERVICES (services.html) ---------- */
.service-detail {
  padding: 3rem 0;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .service-detail-layout {
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
  }
}

.service-detail-visual {
  position: relative;
}

.service-detail-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  position: relative;
  z-index: 1;
}

/* Accent décoratif derrière l'image */
.service-detail-visual::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -8px;
  right: 8px;
  bottom: -10px;
  background: var(--leaf);
  border-radius: var(--radius);
  z-index: 0;
  opacity: .2;
}

.service-detail-content h2 {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

.service-detail-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

.service-detail-content > p:first-of-type {
  color: var(--earth);
  font-size: .95rem;
  margin-bottom: 1.25rem;
}

.service-detail-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 900px) {
  .service-detail-list { grid-template-columns: repeat(2, 1fr); }
}

.service-detail-list li {
  padding: .6rem 1rem;
  background: var(--white-warm);
  border-left: 3px solid var(--leaf);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .92rem;
}

.service-detail-list li strong { color: var(--moss); }

/* ---------- BANNER FISCAL ---------- */
.banner {
  background: linear-gradient(135deg, var(--moss) 0%, var(--leaf) 100%);
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
}

.banner p {
  font-size: clamp(.9rem, 2.5vw, 1.1rem);
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

.banner strong { font-weight: 600; }

/* ---------- AVANT/APRES SPOTLIGHT ---------- */
.spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .spotlight { grid-template-columns: 1fr 1fr; }
}

.spotlight-images {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.spotlight-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  color: var(--earth);
  line-height: 1.5;
  border-left: 3px solid var(--leaf);
  padding-left: 1.5rem;
}

.spotlight-quote cite {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--linen);
  margin-top: .75rem;
}

/* ---------- BEFORE/AFTER SLIDER ---------- */
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  aspect-ratio: 16/10;
  border-radius: var(--radius);
}

.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider .ba-after {
  clip-path: inset(0 50% 0 0);
}

.ba-slider .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.ba-slider .ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.ba-slider .ba-label {
  position: absolute;
  bottom: 14px;
  padding: 0;
  background: transparent;
  color: #fff;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
  z-index: 4;
  pointer-events: none;
}

.ba-label--before { left: 16px; }
.ba-label--after { right: 16px; }

/* Composite mode: avant en haut + après en bas dans une seule image */
.ba-slider--composite {
  aspect-ratio: auto;
  cursor: default;
  overflow: visible;
  background: transparent;
}
.ba-slider--composite .ba-composite-img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
}
.ba-label--top {
  top: 14px;
  left: 16px;
  bottom: auto;
}
.ba-label--bottom {
  bottom: 14px;
  left: 16px;
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: var(--white-warm);
  border: 1px solid #E8E0D0;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
}

.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white-warm);
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-size: .85rem; font-weight: 500; color: var(--bark);
}

.review-stars {
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .05em;
}

.review-date {
  font-size: .72rem;
  color: #B0A090;
  font-weight: 300;
}

.review-text {
  font-size: .84rem;
  font-weight: 300;
  color: #4A3C2E;
  line-height: 1.6;
  font-style: italic;
}

.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--earth);
  margin-bottom: 1.5rem;
}

.reviews-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--leaf);
  border-bottom: 1px solid var(--linen);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.reviews-link:hover { color: var(--moss); border-color: var(--moss); }

/* ---------- GALLERY GRID (realisations) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-item {
  background: var(--white-warm);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.gallery-item:hover { box-shadow: var(--shadow-md); }

.gallery-item figcaption {
  padding: 1rem 1.25rem;
  font-size: .88rem;
  color: var(--earth);
}

.gallery-item figcaption strong {
  display: block;
  color: var(--moss);
  font-size: .95rem;
  margin-bottom: .25rem;
}

.gallery-category {
  margin-bottom: 3rem;
}

.gallery-category h3 {
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--leaf);
  display: inline-block;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.2fr; }
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-values {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.about-value {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--moss);
}

.zone-info {
  background: var(--white-warm);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

/* ---------- CONTACT ---------- */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
@media (min-width: 600px) {
  .contact-actions { flex-direction: row; flex-wrap: wrap; }
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white-warm);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-box {
  background: var(--cream);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: .9rem;
  color: var(--earth);
}

.contact-map {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe,
.contact-map #contact-map {
  width: 100%;
  border: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--anthracite);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-logo-img {
  height: 72px;
  width: auto;
  margin-bottom: .75rem;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.footer a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer a:hover { color: #fff; }

.footer-links li { margin-bottom: .4rem; font-size: .88rem; }

.footer-contact li {
  margin-bottom: .5rem;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

/* ---------- DIVIDER ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 2rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--linen), transparent);
}

.divider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--linen);
}

/* ---------- CALLOUT BOX ---------- */
.callout {
  background: var(--white-warm);
  border-left: 4px solid var(--leaf);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .92rem;
}

.callout strong { color: var(--moss); }

/* ---------- ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- UTILITIES ---------- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ---------- PLACEHOLDER IMAGES ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--linen) 0%, var(--cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth);
  font-size: .85rem;
  font-weight: 300;
  min-height: 250px;
  text-align: center;
  padding: 1rem;
}
