/* ========== TOKENS ========== */
:root {
  --ink:        #1F2A44;   /* bleu nuit profond */
  --ink-soft:   #3C4866;
  --terra:      #C46A3F;   /* terracotta */
  --terra-deep: #A8542E;
  --ocre:       #D8954A;   /* ocre doré */
  --cream:      #FBF4E9;   /* crème chaude */
  --cream-2:    #F4E8D5;
  --sand:       #EFE0C7;
  --paper:      #FFFCF6;
  --line:       #E4D5BC;
  --muted:      #6B6657;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Outfit', system-ui, -apple-system, sans-serif;

  --fs-h1: clamp(2.6rem, 6vw, 4.4rem);
  --fs-h2: clamp(2rem, 4vw, 3rem);
  --fs-h3: 1.3rem;
  --fs-lg: clamp(1.05rem, 1.6vw, 1.25rem);

  --s1: 0.5rem; --s2: 0.85rem; --s3: 1.25rem; --s4: 1.75rem;
  --s5: 2.5rem; --s6: 3.5rem; --s7: 5rem; --s8: 7rem;

  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 18px 50px -22px rgba(31,42,68,.32);
  --shadow-sm: 0 8px 24px -14px rgba(31,42,68,.28);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ========== BASE ========== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; }
h2 { font-size: var(--fs-h2); color: var(--ink); }
h3 { font-size: var(--fs-h3); }
::selection { background: var(--terra); color: var(--cream); }

.container { width: min(1140px, 92vw); margin-inline: auto; }
.section { padding: var(--s8) 0; }
@media (max-width: 700px){ .section { padding: var(--s7) 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--ff-body);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--terra-deep);
  margin-bottom: var(--s3);
}
.eyebrow::before {
  content:""; width: 26px; height: 2px; background: var(--ocre); border-radius: 2px;
}
.lead { font-size: var(--fs-lg); color: var(--ink-soft); max-width: 56ch; margin-top: var(--s3); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--ff-body); font-weight: 500; font-size: .98rem;
  padding: .92em 1.7em; border-radius: 100px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--terra); color: var(--cream); box-shadow: 0 10px 26px -12px rgba(196,106,63,.7); }
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-3px); box-shadow: 0 16px 32px -12px rgba(196,106,63,.75); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--terra); color: var(--terra-deep); transform: translateY(-3px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(251,244,233,.4); }
.btn-outline-light:hover { background: rgba(251,244,233,.12); transform: translateY(-3px); }
.btn-lg { padding: 1.05em 2.1em; font-size: 1.04rem; }

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,244,233,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px -16px rgba(31,42,68,.5); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: min(1140px, 92vw); margin-inline: auto;
  padding: .85rem 0;
}
.logo { display: flex; align-items: center; gap: .65rem; }
.logo-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--terra); color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600;
  box-shadow: 0 8px 18px -8px rgba(196,106,63,.6);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--ff-display); font-weight: 600; font-size: 1.32rem; }
.logo-text small { font-size: .68rem; color: var(--muted); letter-spacing: .04em; font-weight: 400; }
.nav { display: flex; align-items: center; gap: var(--s4); }
.nav a { font-size: .95rem; font-weight: 400; color: var(--ink-soft); position: relative; padding: .2em 0; }
.nav a:not(.btn)::after {
  content:""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--terra); border-radius: 2px; transition: width .28s var(--ease);
}
.nav a:not(.btn):hover { color: var(--ink); }
.nav a:not(.btn):hover::after { width: 100%; }
.nav a.active:not(.btn) { color: var(--terra-deep); font-weight: 500; }
.nav a.active:not(.btn)::after { width: 100%; }
.header-cta { margin-left: var(--s3); }
.burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 70;
}
.burger span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px){
  .header-cta { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: var(--s4); padding: var(--s7) var(--s5);
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px -30px rgba(31,42,68,.5);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.25rem; font-family: var(--ff-display); color: var(--ink); }
  .nav a.active:not(.btn) { color: var(--terra-deep); }
  .nav .btn { margin-top: var(--s2); }
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(31,42,68,.35);
    opacity: 0; visibility: hidden; transition: .35s; z-index: 55;
  }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}

/* ========== HERO ========== */
.hero { position: relative; padding: var(--s7) 0 var(--s8); overflow: hidden; }
.hero::before {
  content:""; position: absolute; top: -120px; right: -140px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,149,74,.22), transparent 70%);
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s7); align-items: center;
}
.hero h1 { font-size: var(--fs-h1); color: var(--ink); }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-sub { font-size: var(--fs-lg); color: var(--ink-soft); margin-top: var(--s4); max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5); }
.hero-trust { display: flex; align-items: center; gap: .7rem; margin-top: var(--s5); }
.hero-trust .stars { display: flex; gap: 2px; }
.hero-trust span { font-size: .92rem; color: var(--ink-soft); }
.hero-trust strong { color: var(--ink); }
.hero-figure { position: relative; }
.hero-figure img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.hero-figure::after {
  content:""; position: absolute; inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--ocre); border-radius: var(--radius); z-index: -1;
}
.hero-badge {
  position: absolute; left: -22px; bottom: 34px;
  background: var(--paper); border-radius: var(--radius-sm);
  padding: .9rem 1.2rem; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: .7rem;
}
.hero-badge .icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--cream-2);
  display: grid; place-items: center; color: var(--terra-deep);
}
.hero-badge b { display: block; font-family: var(--ff-display); font-size: 1.05rem; }
.hero-badge small { font-size: .76rem; color: var(--muted); }
@media (max-width: 860px){
  .hero-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .hero-figure { max-width: 460px; margin-inline: auto; }
  .hero-figure::after { inset: 10px -10px -10px 10px; }
}

/* ========== PAGE HEADER (sous-pages) ========== */
.page-header {
  position: relative; overflow: hidden;
  background: var(--paper);
  padding: var(--s7) 0 var(--s6);
  border-bottom: 1px solid var(--line);
}
.page-header::before {
  content:""; position: absolute; top: -140px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,149,74,.20), transparent 70%);
  z-index: 0;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem); color: var(--ink); max-width: 22ch;
}
.page-header h1 em { font-style: italic; color: var(--terra); }
.page-header .lead { margin-top: var(--s3); }
.crumb {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .82rem; color: var(--muted); margin-bottom: var(--s3);
}
.crumb a { color: var(--terra-deep); }
.crumb a:hover { text-decoration: underline; }

/* ========== PROMO BAND ========== */
.promo {
  background: var(--ink); color: var(--cream);
  text-align: center; padding: 1.05rem var(--s3);
  font-size: .98rem;
}
.promo b { color: var(--ocre); font-weight: 600; }
.promo svg { vertical-align: -3px; margin-right: .4em; }

/* ========== APPROCHE ========== */
.section-paper { background: var(--paper); }
.approche-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); align-items: center;
}
.approche-grid p + p { margin-top: var(--s3); }
.approche-grid p { color: var(--ink-soft); }
.approche-grid h2 { margin-bottom: var(--s3); }
.approche-sign {
  margin-top: var(--s4); font-family: var(--ff-display); font-style: italic;
  font-size: 1.45rem; color: var(--terra-deep);
}
.approche-figure { position: relative; }
.approche-figure img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.approche-figure .tag {
  position: absolute; right: -16px; top: 30px;
  background: var(--terra); color: var(--cream);
  font-family: var(--ff-display); font-size: .95rem;
  padding: .55rem 1rem; border-radius: 100px; box-shadow: var(--shadow-sm);
}
@media (max-width: 860px){
  .approche-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .approche-figure { max-width: 440px; margin-inline: auto; order: -1; }
}

/* ========== STATS STRIP ========== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3);
  margin-top: var(--s7);
  background: var(--cream-2); border-radius: var(--radius);
  padding: var(--s5) var(--s4);
}
.stat { text-align: center; padding: .5rem; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num { font-family: var(--ff-display); font-size: 2rem; color: var(--terra-deep); line-height: 1; }
.stat-num em { font-style: italic; font-size: 1.1rem; }
.stat-label { font-size: .82rem; color: var(--muted); margin-top: .5rem; display: block; }
@media (max-width: 700px){
  .stats { grid-template-columns: 1fr 1fr; gap: 0; padding: var(--s4) 0; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stat { padding: var(--s3) .5rem; }
}

/* ========== BENEFITS ========== */
.section-ink { background: var(--ink); color: var(--cream); }
.section-ink h2 { color: var(--cream); }
.section-ink .eyebrow { color: var(--ocre); }
.section-ink .eyebrow::before { background: var(--ocre); }
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3);
  margin-top: var(--s6);
}
.benefit {
  background: rgba(251,244,233,.05); border: 1px solid rgba(251,244,233,.12);
  border-radius: var(--radius); padding: var(--s4);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.benefit:hover { transform: translateY(-6px); background: rgba(251,244,233,.09); border-color: rgba(216,149,74,.5); }
.benefit-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--terra); color: var(--cream);
  display: grid; place-items: center; margin-bottom: var(--s3);
}
.benefit h3 { color: var(--cream); margin-bottom: .5rem; }
.benefit p { font-size: .94rem; color: rgba(251,244,233,.72); }
@media (max-width: 860px){ .benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .benefits { grid-template-columns: 1fr; } }

/* ========== PRESTATIONS ========== */
.presta-head { max-width: 56ch; }
.presta-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4);
  margin-top: var(--s6);
}
.presta-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s4);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.presta-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: var(--ocre); }
.presta-card.featured { background: var(--cream-2); border-color: var(--terra); }
.presta-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: var(--s3); }
.chip {
  font-size: .72rem; font-weight: 600; letter-spacing: .03em;
  padding: .3em .8em; border-radius: 100px;
  background: var(--sand); color: var(--ink-soft);
}
.chip-terra { background: var(--terra); color: var(--cream); }
.chip-line { background: transparent; border: 1px solid var(--line); }
.presta-card h3 { margin-bottom: .5rem; }
.presta-card p { font-size: .93rem; color: var(--ink-soft); flex-grow: 1; }
.presta-price {
  margin-top: var(--s3); padding-top: var(--s3);
  border-top: 1px dashed var(--line);
  font-family: var(--ff-display); font-size: 1.7rem; color: var(--terra-deep);
}
.presta-price small { font-family: var(--ff-body); font-size: .82rem; color: var(--muted); font-weight: 400; }
@media (max-width: 860px){ .presta-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .presta-grid { grid-template-columns: 1fr; } }

/* ========== PRESTATION DÉTAILLÉE (page prestations) ========== */
.presta-detail {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--s6);
  align-items: center;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s5);
}
.presta-detail + .presta-detail { margin-top: var(--s4); }
.presta-detail.featured { background: var(--cream-2); border-color: var(--terra); }
.presta-detail:nth-child(even) .presta-detail__aside { order: -1; }
.presta-detail h3 { font-size: 1.55rem; margin: .35rem 0 var(--s2); }
.presta-detail__body p { color: var(--ink-soft); }
.presta-detail__body p + p { margin-top: var(--s2); }
.presta-incl { list-style: none; margin-top: var(--s3); }
.presta-incl li {
  font-size: .94rem; color: var(--ink-soft);
  padding: .35rem 0 .35rem 1.6rem; position: relative;
}
.presta-incl li::before {
  content:""; position: absolute; left: 0; top: .72rem;
  width: 14px; height: 8px; border-left: 2px solid var(--terra);
  border-bottom: 2px solid var(--terra); transform: rotate(-45deg);
}
.presta-detail__aside {
  background: var(--cream-2); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: var(--s5);
  text-align: center;
}
.presta-detail.featured .presta-detail__aside { background: var(--paper); }
.presta-detail__price {
  font-family: var(--ff-display); font-size: 2.6rem; color: var(--terra-deep);
  line-height: 1;
}
.presta-detail__price small {
  display: block; font-family: var(--ff-body); font-size: .85rem;
  color: var(--muted); font-weight: 400; margin-top: .4rem;
}
.presta-detail__aside .btn { margin-top: var(--s3); }
@media (max-width: 780px){
  .presta-detail { grid-template-columns: 1fr; gap: var(--s4); padding: var(--s4); }
  .presta-detail:nth-child(even) .presta-detail__aside { order: 0; }
}

/* ========== ÉTAPES / DÉROULÉ ========== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4);
  margin-top: var(--s6);
}
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s4); position: relative;
}
.step-num {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--terra); color: var(--cream);
  display: grid; place-items: center; margin-bottom: var(--s3);
  font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600;
}
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--ink-soft); }
@media (max-width: 860px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .steps { grid-template-columns: 1fr; } }

/* ========== GALLERY ========== */
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: var(--s3); }
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3);
  margin-top: var(--s6);
}
.gallery-item { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:nth-child(1) img { aspect-ratio: 3/4; }
.gallery-item:nth-child(2) img { aspect-ratio: 3/4; }
.gallery-item:nth-child(3) img { aspect-ratio: 3/4; }
.gallery-item:hover img { transform: scale(1.06); }
@media (max-width: 700px){ .gallery { grid-template-columns: 1fr 1fr; } .gallery-item:nth-child(3){ grid-column: span 2; } .gallery-item:nth-child(3) img { aspect-ratio: 16/9; } }

/* ========== GALLERY GRANDE (page galerie) ========== */
.gallery-full {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s3);
  margin-top: var(--s6);
}
.gallery-full .g-item {
  overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  position: relative;
}
.gallery-full .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-full .g-item:hover img { transform: scale(1.06); }
.gallery-full .g-item__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem .9rem .8rem;
  background: linear-gradient(to top, rgba(31,42,68,.78), transparent);
  color: var(--cream); font-size: .86rem;
}
.gallery-full .g-tall  { grid-column: span 3; }
.gallery-full .g-tall img  { aspect-ratio: 4/5; }
.gallery-full .g-wide  { grid-column: span 3; }
.gallery-full .g-wide img  { aspect-ratio: 4/3; }
.gallery-full .g-span2 { grid-column: span 2; }
.gallery-full .g-span2 img { aspect-ratio: 1/1; }
@media (max-width: 760px){
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .gallery-full .g-tall, .gallery-full .g-wide, .gallery-full .g-span2 { grid-column: span 1; }
  .gallery-full .g-item img { aspect-ratio: 1/1 !important; }
}

/* ========== TESTIMONIALS ========== */
.section-sand { background: var(--sand); }
.testimonials {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4);
  margin-top: var(--s6);
}
.testimonial {
  background: var(--paper); border-radius: var(--radius);
  padding: var(--s5); position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content:"\201C"; position: absolute; top: 6px; left: 22px;
  font-family: var(--ff-display); font-size: 4.5rem; color: var(--ocre); opacity: .35;
  line-height: 1;
}
.testimonial .stars { display: flex; gap: 2px; margin-bottom: var(--s3); }
.testimonial blockquote {
  font-family: var(--ff-display); font-size: 1.1rem; line-height: 1.55;
  color: var(--ink); font-weight: 400;
}
.testimonial cite {
  display: block; margin-top: var(--s3); font-style: normal;
  font-size: .88rem; color: var(--muted);
}
.testimonial cite b { color: var(--terra-deep); font-weight: 600; }
@media (max-width: 760px){ .testimonials { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq-list { margin-top: var(--s6); max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--ff-display); font-size: 1.12rem; color: var(--ink);
  padding: var(--s4) 0; display: flex; justify-content: space-between; gap: var(--s3); align-items: center;
}
.faq-q:hover { color: var(--terra-deep); }
.faq-icon {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--terra); position: relative; transition: transform .3s var(--ease), background .3s;
}
.faq-icon::before, .faq-icon::after {
  content:""; position: absolute; background: var(--terra-deep);
  top: 50%; left: 50%; transition: .3s var(--ease);
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon { background: var(--terra); transform: rotate(180deg); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--cream); }
.faq-item.open .faq-icon::after { height: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 var(--s4); color: var(--ink-soft); font-size: .98rem; max-width: 64ch; }

/* ========== CONTACT ========== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--s6);
  margin-top: var(--s6); align-items: stretch;
}
.contact-block + .contact-block { margin-top: var(--s4); }
.contact-block h4 {
  font-family: var(--ff-body); font-size: .76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: var(--terra-deep);
  margin-bottom: .35rem;
}
.contact-block p { color: var(--ink); }
.contact-block a:hover { color: var(--terra-deep); }
.contact-actions { display: flex; gap: var(--s3); flex-wrap: wrap; margin-top: var(--s5); }
.contact-map {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); min-height: 420px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
@media (max-width: 800px){ .contact-grid { grid-template-columns: 1fr; } .contact-map { min-height: 320px; } }

/* ========== CTA BAND ========== */
.cta-band {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-deep) 100%);
  color: var(--cream); text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:""; position: absolute; top: -80px; left: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(251,244,233,.09);
}
.cta-band::after {
  content:""; position: absolute; bottom: -110px; right: -70px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(31,42,68,.18);
}
.cta-band .inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); }
.cta-band p { max-width: 50ch; margin: var(--s3) auto var(--s5); color: rgba(251,244,233,.88); font-size: var(--fs-lg); }

/* ========== FOOTER ========== */
.site-footer { background: var(--ink); color: rgba(251,244,233,.75); padding: var(--s7) 0 var(--s4); }
.footer-grid {
  width: min(1140px,92vw); margin-inline: auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s5);
}
.footer-brand .logo-mark { margin-bottom: var(--s3); }
.footer-brand p { font-size: .92rem; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--ff-body); font-size: .76rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ocre);
  margin-bottom: var(--s3);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .55rem; font-size: .92rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  width: min(1140px,92vw); margin: var(--s6) auto 0;
  padding-top: var(--s4); border-top: 1px solid rgba(251,244,233,.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s2);
  font-size: .82rem; color: rgba(251,244,233,.55);
}
@media (max-width: 800px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); } }
@media (max-width: 460px){ .footer-grid { grid-template-columns: 1fr; } }

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; gap: .6rem; padding: .6rem;
  background: rgba(251,244,233,.95); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { flex: 1; padding: .85em 1em; }
@media (max-width: 760px){
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ========== REVEAL ========== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
