/* =========================================================
   Kassandra Vanachte — Psychologue clinicienne
   Charte : rose pâle · bordeaux (Ψ) · fleurs de pruniers
   ========================================================= */

:root {
  --rose-bg: #fdf3f0; /* fond rose pâle */
  --rose-bg-2: #fbe9e6;
  --cream: #fffaf8;
  --burgundy: #7c5245; /* brun chaud — titres / éléments forts */
  --burgundy-dk: #5a3b31;
  --pink: #d98ca0; /* rose script / accents */
  --pink-soft: #f4b3c2;
  --pink-pale: #f7d6dd;
  --ink: #5a4a4d; /* texte courant */
  --ink-soft: #8a7378;
  --line: #eccdd2;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --script: "Great Vibes", "Brush Script MT", cursive;

  --maxw: 1120px;
  --radius: 18px;
  --shadow: 0 18px 50px -24px rgba(124, 82, 69, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  /* background: var(--rose-bg); */
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--pink);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.15;
  margin: 0 0 0.4em;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: 1.35rem;
}

.script {
  font-family: var(--script);
  color: var(--pink);
  font-weight: 400;
}

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-section {
  background: var(--rose-bg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid var(--burgundy);
  background: var(--burgundy);
  color: #fff !important;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn:hover {
  background: var(--burgundy-dk);
  border-color: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: transparent;
  color: var(--burgundy) !important;
}
.btn--ghost:hover {
  background: var(--burgundy);
  color: #fff !important;
}
.btn--light {
  background: #fff;
  color: var(--burgundy) !important;
  border-color: #fff;
}
.btn--light:hover {
  background: var(--pink-pale);
  border-color: var(--pink-pale);
  color: var(--burgundy) !important;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 243, 240, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--burgundy);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy);
}
.nav-links a.active {
  border-bottom: 2px solid var(--pink);
  padding-bottom: 3px;
}
.nav-links a.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--burgundy);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.nav-links a.nav-social svg {
  width: 24px;
  height: 24px;
  display: block;
}
.nav-links a.nav-social:hover {
  color: var(--pink);
  transform: translateY(-1px);
}

.li-social {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--cream) 0%,
    var(--rose-bg) 45%,
    var(--rose-bg-2) 100%
  );
  text-align: center;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem);
}
.hero-logo {
  width: clamp(150px, 22vw, 230px);
  margin: 0 auto 1.2rem;
  border-radius: 50%;
}
.hero h1 {
  margin-bottom: 0.3rem;
}
.hero .subtitle {
  font-family: var(--sans);
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}
.hero .lead {
  max-width: 620px;
  margin: 1.4rem auto 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .rule {
  width: 70px;
  height: 1px;
  background: var(--pink);
  margin: 1.4rem auto;
  opacity: 0.6;
}
.hero .wrap {
  position: relative;
  z-index: 1;
}

/* decorative blossoms (SVG small icons) */
.blossom {
  position: absolute;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
}
.blossom--sm {
  width: 30px;
}

/* real watercolour branch decoration */
.branch {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.96;
  width: clamp(150px, 20vw, 260px);
  z-index: 0;
}
.branch--tr {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}
.branch--bl {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}
.branch--br {
  bottom: 0;
  right: 0;
}

/* ---------- Sections ---------- */
section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-head .lead {
  color: var(--ink-soft);
}

.alt {
  background: linear-gradient(180deg, var(--cream), var(--rose-bg));
  position: relative;
  overflow: hidden;
}

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  transition: 600ms;
}
.card .ico {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: 0.4rem;
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Liste des situations ---------- */
.situation-list {
  list-style: none;
  max-width: 880px;
  margin: 2.5rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 2.5rem;
}
.situation-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 0.2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.3;
}
.situation-list .chk {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  /* background: var(--pink-pale); */
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.situation-list .chk svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 640px) {
  .situation-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ---------- Page de confirmation (merci) ---------- */
.confirm {
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.confirm .wrap {
  max-width: 680px;
}
.confirm-badge {
  width: 96px;
  height: 96px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  background: var(--pink-pale);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -16px rgba(124, 82, 69, 0.45);
}
.confirm-badge svg {
  width: 46px;
  height: 46px;
}
.confirm .lead {
  max-width: 560px;
  margin: 1.2rem auto 2rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.confirm-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split .portrait {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--pink-pale), var(--rose-bg-2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.split .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
  padding: 0;
  list-style: none;
}
.chips li {
  background: var(--pink-pale);
  color: var(--burgundy);
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
}

/* ---------- Steps ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  background: var(--burgundy);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* ---------- Pricing list ---------- */
.pricing {
  max-width: 620px;
  margin: 0 auto;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child {
  border-bottom: 0;
}
.price-row .name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--burgundy);
}
.price-row .desc {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-family: var(--sans);
}
.price-row .amount {
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--burgundy);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #f6dde3;
  max-width: 560px;
  margin: 0.5rem auto 1.6rem;
}
.cta-band .btn {
  background: #fff;
  color: var(--burgundy) !important;
  border-color: #fff;
}
.cta-band .btn:hover {
  background: var(--pink-pale);
  border-color: var(--pink-pale);
}

.cta-btn {
  margin: 15px 15px 0 15px;
}

/* ---------- Info band (infos pratiques) ---------- */
.info-band {
  position: relative;
  background-size: cover;
  background-position: center 40%;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  overflow: hidden;
}
.info-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 250, 248, 0.66),
    rgba(251, 233, 230, 0.72)
  );
}
.info-band .wrap {
  position: relative;
  z-index: 1;
}
.info-band-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 250, 248, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 34px -20px rgba(124, 82, 69, 0.4);
}
.info-item .info-ico {
  flex: 0 0 auto;
  color: var(--pink);
  line-height: 0;
  margin-top: 2px;
}
.info-item .info-ico svg {
  width: 34px;
  height: 34px;
}
.info-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}
.info-item p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}
.info-item p strong {
  color: var(--burgundy);
}

/* ---------- Reconnaissance professionnelle (bandeau) ---------- */
.credentials {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  overflow: hidden;
}
.credentials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    /* rgba(217, 140, 160, 0.92),
    rgba(244, 179, 194, 0.82),
    rgba(247, 214, 221, 0.5) */
    rgba(90, 59, 49, 0.92) 0%,
    rgba(124, 82, 69, 0.82) 55%,
    rgba(124, 82, 69, 0.5) 100%
  );
}
.credentials .wrap {
  position: relative;
  z-index: 1;
}
.credentials-inner {
  max-width: 640px;
}
.credentials .eyebrow {
  color: var(--pink-pale);
}
.credentials h2 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.cred-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 1.1rem;
}
.cred-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: #fbeae6;
  font-size: 1.05rem;
}
.cred-list svg {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--pink-pale);
  margin-top: 2px;
}
.cred-list .num {
  color: #e7c3ca;
  white-space: nowrap;
}

/* ---------- Prose / texte d'introduction ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p {
  margin: 0 0 1.1rem;
  color: var(--ink);
}
.callout {
  max-width: 760px;
  margin: 1.8rem auto 0;
  background: var(--cream);
  border-left: 4px solid var(--pink);
  border-radius: 12px;
  padding: 1.3rem 1.6rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
}
.callout strong {
  color: var(--burgundy);
}

/* ---------- Remboursements (mutuelles) — cartes ---------- */
.mutuelle-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.mutuelle-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.mutuelle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px -24px rgba(124, 82, 69, 0.42);
}
.mutuelle-head {
  padding: 1.6rem 1.1rem 0.7rem;
}
.mutuelle-head h3 {
  font-family: var(--serif);
  color: var(--burgundy);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mutuelle-amount-band {
  background: linear-gradient(160deg, var(--pink-pale), #f6cfd8);
  padding: 0.9rem 1rem;
}
.mutuelle-amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.95rem;
  line-height: 1;
  color: var(--burgundy);
}
.mutuelle-amount small {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy-dk);
}
.mutuelle-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.3rem 1.3rem 1.6rem;
}
.mutuelle-body .detail {
  flex: 1;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0 0 1.3rem;
}
.mutuelle-card .btn-download {
  margin-top: auto;
  display: inline-block;
  background: var(--burgundy);
  color: #fff !important;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.mutuelle-card .btn-download:hover {
  background: var(--burgundy-dk);
  transform: translateY(-1px);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.info-list .ic {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
}
.info-list strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 1.1rem;
}
.info-list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* Carte de localisation cliquable (lien Google Maps) */
.map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  min-height: 320px;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--ink) !important;
  background:
    radial-gradient(
      circle at 28% 22%,
      rgba(247, 214, 221, 0.65),
      transparent 55%
    ),
    radial-gradient(
      circle at 78% 82%,
      rgba(217, 140, 160, 0.35),
      transparent 55%
    ),
    var(--cream);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px -22px rgba(124, 82, 69, 0.42);
}
.map-pin {
  font-size: 2.6rem;
  line-height: 1;
}
.map-card .map-text {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
.map-card .map-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--burgundy);
  margin-bottom: 0.15rem;
}
.map-btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--burgundy);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  transition: background 0.25s ease;
}
.map-card:hover .map-btn {
  background: var(--burgundy-dk);
}

form.contact {
  display: grid;
  gap: 1.1rem;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--burgundy);
  text-transform: uppercase;
}
.field input,
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(217, 140, 160, 0.18);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
}
.form-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.form-success {
  display: none;
  background: var(--pink-pale);
  color: var(--burgundy);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  font-weight: 500;
}
.form-success.show {
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--burgundy-dk);
  color: #f7dde3;
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
}
.site-footer a {
  color: #f7dde3;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #eabec6;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .split .portrait {
    max-width: 360px;
    margin: 0 auto;
  }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open {
    max-height: 340px;
  }
  .nav-links li {
    border-top: 1px solid var(--line);
  }
  .nav-links a {
    display: block;
    padding: 1rem 24px;
  }
  .nav-links a.active {
    border-bottom: 0;
    border-left: 3px solid var(--pink);
  }
  .li-social {
    padding: 1rem 24px;
  }
  .branch {
    width: clamp(100px, 28vw, 140px);
    opacity: 0.7;
  }
  .branch--bl {
    bottom: 0.5rem;
    left: -0.3rem;
  }
}
