:root{
  --bg:#f8f4f1;
  --bg-soft:#fdfaf8;
  --panel:#ffffff;
  --text:#2e2527;
  --muted:#7f6d72;
  --line:#eadfe1;
  --rose:#c88f9e;
  --rose-deep:#b97889;
  --nude:#ead4c8;
  --taupe:#bba7a2;
  --dark:#20181a;
  --shadow:0 14px 40px rgba(34, 24, 28, 0.08);
  --radius-xl:28px;
  --radius-lg:20px;
  --radius-md:14px;
  --container:1180px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

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

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(248,244,241,0.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(234,223,225,0.9);
}

.nav-shell,
.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand-mark,
.brand{
  font-family:"Cormorant Garamond","Georgia","Times New Roman",serif;
  font-size:1.55rem;
  letter-spacing:0.06em;
  color:var(--dark);
  font-weight:600;
  transition:color .2s ease;
}
.brand:hover{
  color:var(--rose-deep);
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:28px;
}

.desktop-nav a{
  font-size:0.95rem;
  color:var(--muted);
  transition:0.25s ease;
}

.desktop-nav a:hover{
  color:var(--rose-deep);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  transition:0.25s ease;
  font-weight:600;
}

.btn-primary{
  background:var(--rose);
  color:#fff;
}

.btn-primary:hover{
  background:var(--rose-deep);
  transform:translateY(-1px);
}

.btn-secondary{
  background:transparent;
  color:var(--dark);
  border:1px solid var(--line);
}

.btn-secondary:hover{
  border-color:var(--rose);
  color:var(--rose-deep);
}

.btn-light{
  background:#fff;
  color:var(--dark);
}

.btn-outline-light{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.35);
}

.btn-outline-light:hover{
  background:rgba(255,255,255,0.08);
}

.btn-nav{
  padding:12px 18px;
}

.nav-toggle{
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  padding:0 12px;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  height:2px;
  background:var(--dark);
  border-radius:2px;
  transition:transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  display:none;
  flex-direction:column;
  gap:18px;
  padding:0 20px 22px;
}

.mobile-menu a{
  color:var(--muted);
  font-size:1rem;
}

.mobile-menu.open{
  display:flex;
}

.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-lashes{
  background:
    linear-gradient(110deg, rgba(24,18,20,0.82) 0%, rgba(24,18,20,0.58) 45%, rgba(24,18,20,0.18) 100%),
    url('./images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
}

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

.section-kicker{
  display:inline-block;
  margin-bottom:18px;
  font-size:0.8rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--rose-deep);
  font-weight:700;
}

.section-kicker.light{
  color:#ead4c8;
}

.hero-title{
  font-family:"Georgia","Times New Roman",serif;
  font-size:clamp(2.8rem, 7vw, 5.6rem);
  line-height:0.95;
  color:#fff;
  margin-bottom:20px;
  font-weight:500;
}

.hero-title em{
  font-style:italic;
  color:#f0d8dd;
}

.hero-text{
  font-size:1.04rem;
  color:rgba(255,255,255,0.82);
  max-width:620px;
  margin-bottom:30px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.section{
  padding:96px 0;
}

.section-light{
  background:var(--bg-soft);
}

.section-soft{
  background:#f4ece8;
}

.section-dark{
  background:var(--dark);
  color:#fff;
}

.section-heading{
  margin-bottom:42px;
}

.section-heading.center{
  text-align:center;
}

.section-title{
  font-family:"Georgia","Times New Roman",serif;
  font-size:clamp(2rem, 4vw, 3.4rem);
  line-height:1.05;
  color:var(--dark);
  margin-bottom:14px;
  font-weight:500;
}

.section-title.light{
  color:#fff;
}

.section-text{
  color:var(--muted);
  font-size:1rem;
  max-width:760px;
}

.section-text.light{
  color:rgba(255,255,255,0.76);
}

.section-text.narrow{
  margin-left:auto;
  margin-right:auto;
}

.grid-2{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:34px;
  align-items:center;
}

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

.about-photo img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
}

.about-card{
  background:var(--panel);
  border-radius:var(--radius-xl);
  padding:36px;
  box-shadow:var(--shadow);
}

.about-list{
  margin-top:22px;
  display:grid;
  gap:14px;
}

.about-list li{
  list-style:none;
  padding:14px 16px;
  border-radius:16px;
  background:#fbf6f3;
  border:1px solid var(--line);
  color:var(--muted);
}

.about-list strong{
  color:var(--dark);
}

.cards-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.service-card{
  background:var(--panel);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}

.service-media{
  height:250px;
  overflow:hidden;
}

.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.service-body{
  padding:28px;
}

.service-badge{
  display:inline-block;
  margin-bottom:12px;
  padding:7px 12px;
  border-radius:999px;
  background:#f7ebee;
  color:var(--rose-deep);
  font-size:0.78rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.service-title{
  font-family:"Georgia","Times New Roman",serif;
  font-size:1.55rem;
  color:var(--dark);
  margin-bottom:12px;
  font-weight:500;
}

.service-text{
  color:var(--muted);
  margin-bottom:18px;
}

.service-list{
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:0.95rem;
  margin-bottom:18px;
}

.service-list li{
  list-style:none;
  position:relative;
  padding-left:18px;
}

.service-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--rose);
}

.price{
  font-family:"Georgia","Times New Roman",serif;
  font-size:2rem;
  color:var(--rose-deep);
}

.price small{
  display:block;
  font-family:inherit;
  font-size:0.82rem;
  color:var(--taupe);
  margin-top:4px;
}

.tarif-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.tarif-box{
  background:var(--panel);
  border-radius:var(--radius-xl);
  padding:28px;
  box-shadow:var(--shadow);
}

.tarif-box h3{
  font-family:"Georgia","Times New Roman",serif;
  font-size:1.6rem;
  margin-bottom:20px;
  color:var(--dark);
  font-weight:500;
}

.tarif-list{
  display:grid;
  gap:16px;
}

.tarif-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-bottom:16px;
  border-bottom:1px solid var(--line);
}

.tarif-row:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.tarif-row strong{
  display:block;
  color:var(--dark);
  margin-bottom:4px;
}

.tarif-row span{
  color:var(--muted);
  font-size:0.95rem;
}

.tarif-row b{
  white-space:nowrap;
  color:var(--rose-deep);
  font-size:1.05rem;
}

.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr 0.8fr;
  grid-auto-rows:240px;
  gap:14px;
}

.gallery-item{
  border-radius:24px;
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow);
}

.gallery-item.large{
  grid-row:span 2;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.gallery-label{
  position:absolute;
  left:18px;
  bottom:18px;
  background:rgba(32,24,26,0.72);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  font-size:0.9rem;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.team-card{
  background:var(--panel);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.team-photo{
  height:280px;
}

.team-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.team-body{
  padding:24px;
}

.team-name{
  font-family:"Georgia","Times New Roman",serif;
  font-size:1.45rem;
  color:var(--dark);
  margin-bottom:4px;
}

.team-role{
  color:var(--rose-deep);
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:700;
  margin-bottom:12px;
}

.team-body p{
  color:var(--muted);
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.review-card{
  background:var(--panel);
  border-radius:var(--radius-xl);
  padding:28px;
  box-shadow:var(--shadow);
}

.review-card strong{
  display:block;
  color:var(--dark);
  margin-bottom:10px;
  font-size:1rem;
}

.review-card p{
  color:var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:26px;
  align-items:start;
}

.contact-card,
.contact-side .info-box,
.map-card{
  background:var(--panel);
  border-radius:var(--radius-xl);
  padding:32px;
  box-shadow:var(--shadow);
}

.contact-side{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.booking-form{
  margin-top:24px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-group{
  display:flex;
  flex-direction:column;
  margin-bottom:18px;
}

.form-group label{
  font-size:0.92rem;
  font-weight:600;
  color:var(--dark);
  margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:14px 16px;
  color:var(--text);
  outline:none;
  transition:0.25s ease;
}

.form-group textarea{
  min-height:130px;
  resize:vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:var(--rose);
  box-shadow:0 0 0 4px rgba(200,143,158,0.14);
}
.form-group input.error,
.form-group select.error{
  border-color:#c0392b;
  box-shadow:0 0 0 3px rgba(192,57,43,0.08);
}

.btn-full{
  width:100%;
}

.info-box h3{
  font-family:"Georgia","Times New Roman",serif;
  font-size:1.5rem;
  margin-bottom:14px;
  color:var(--dark);
  font-weight:500;
}

.info-box p{
  color:var(--muted);
}

.info-list,
.hours-list{
  list-style:none;
}

.info-list li,
.hours-list li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}

.info-list li:last-child,
.hours-list li:last-child{
  border-bottom:none;
}

.map-card{
  padding:0;
  overflow:hidden;
}

.map-placeholder{
  min-height:360px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:32px;
  background:linear-gradient(135deg, #fbf5f2, #fff);
}

.map-placeholder h3{
  font-family:"Georgia","Times New Roman",serif;
  font-size:2rem;
  color:var(--dark);
  margin-bottom:10px;
  font-weight:500;
}

.map-placeholder p{
  color:var(--muted);
  margin-bottom:18px;
}

.site-footer{
  background:var(--dark);
  color:rgba(255,255,255,0.76);
  padding-top:60px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr;
  gap:24px;
  padding-bottom:28px;
}

.footer-brand{
  font-family:"Georgia","Times New Roman",serif;
  font-size:1.7rem;
  color:#fff;
  margin-bottom:10px;
}

.site-footer h4{
  color:#fff;
  margin-bottom:12px;
  font-size:0.95rem;
}

.site-footer a{
  display:block;
  color:rgba(255,255,255,0.7);
  margin-bottom:8px;
}

.site-footer a:hover{
  color:#fff;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.08);
  padding:18px 0 24px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size:0.92rem;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:0.7s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 980px){
  .desktop-nav{
    display:none;
  }

  .nav-toggle{
    display:flex;
  }

  .grid-2,
  .cards-3,
  .tarif-layout,
  .team-grid,
  .review-grid,
  .contact-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:220px;
  }

  .gallery-item.large{
    grid-column:span 2;
    grid-row:span 1;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:76vh;
  }

  .hero-content{
    padding:56px 0;
  }
}

@media (max-width: 640px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }

  .section{
    padding:72px 0;
  }

  .about-card,
  .contact-card,
  .contact-side .info-box{
    padding:24px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
    grid-auto-rows:220px;
  }

  .gallery-item.large{
    grid-column:auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   CLASSES MANQUANTES — MaEkia Studio
   ═══════════════════════════════════════════════════════════ */

/* ── Sticky header scroll state ──────────────────────────── */
.site-header.scrolled{
  box-shadow:0 2px 20px rgba(34,24,28,0.08);
}

/* ── Active nav link ─────────────────────────────────────── */
.desktop-nav a.active{
  color:var(--rose-deep);
  font-weight:700;
}

/* ── Header CTA ──────────────────────────────────────────── */
.header-cta{
  padding:11px 20px;
  font-size:0.88rem;
  white-space:nowrap;
}

/* ── Eyebrow (= section-kicker alias) ────────────────────── */
.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:0.78rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--rose-deep);
  font-weight:700;
}

.eyebrow.light{
  color:rgba(240,216,221,0.9);
}

/* ── Page offset (accounts for sticky header) ────────────── */
.page-offset{
  /* header is sticky, no extra offset needed */
}

/* ── Page hero ───────────────────────────────────────────── */
.page-hero{
  padding:80px 0 72px;
  position:relative;
}

.page-hero.soft-rose{
  background:linear-gradient(135deg, #fdf2f4, #f8ebe8);
  border-bottom:1px solid var(--line);
}

.page-hero-inner{
  max-width:720px;
}

.page-hero-inner h1{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:clamp(2.2rem, 5vw, 3.8rem);
  line-height:1.05;
  color:var(--dark);
  margin-bottom:16px;
  font-weight:600;
}

.page-hero-inner p{
  color:var(--muted);
  font-size:1.04rem;
  line-height:1.75;
  max-width:620px;
}

/* ── Section heading ─────────────────────────────────────── */
.section-heading{
  margin-bottom:42px;
}

.section-heading h2{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.06;
  color:var(--dark);
  margin-bottom:12px;
  font-weight:600;
}

.section-heading p{
  color:var(--muted);
  font-size:1rem;
  max-width:640px;
  line-height:1.75;
}

.section-heading.center{
  text-align:center;
}

.section-heading.center p{
  margin:0 auto;
}

/* ── Section alt ─────────────────────────────────────────── */
.section-alt{
  background:var(--bg-soft);
}

/* ── Split grid ──────────────────────────────────────────── */
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* ── Content card ────────────────────────────────────────── */
.content-card{
  display:flex;
  flex-direction:column;
  gap:0;
}

.content-card h2{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:clamp(1.9rem,3.5vw,2.9rem);
  line-height:1.07;
  color:var(--dark);
  margin-bottom:14px;
  font-weight:600;
}

.content-card > p{
  color:var(--muted);
  font-size:1rem;
  line-height:1.75;
  margin-bottom:14px;
}

/* ── Image card ──────────────────────────────────────────── */
.image-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.image-card img{
  width:100%;
  height:460px;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.image-card:hover img{
  transform:scale(1.03);
}

/* ── Feature list ────────────────────────────────────────── */
.feature-list{
  margin-top:24px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.feature-item{
  padding:18px 20px;
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  transition:border-color .2s ease;
}

.feature-item:hover{
  border-color:var(--rose);
}

.feature-item h3{
  font-size:0.98rem;
  font-weight:700;
  color:var(--dark);
  margin-bottom:4px;
}

.feature-item p{
  font-size:0.93rem;
  color:var(--muted);
  line-height:1.6;
}

/* ── Cards grids ─────────────────────────────────────────── */
.cards-grid{
  display:grid;
  gap:22px;
}

.cards-grid.three-cols{
  grid-template-columns:repeat(3,1fr);
}

.cards-grid.four-cols{
  grid-template-columns:repeat(4,1fr);
}

/* ── Service card overrides (index.html uses different classes) */
.service-card .card-body{
  padding:24px;
  flex:1;
  display:flex;
  flex-direction:column;
}

.card-kicker{
  display:inline-block;
  margin-bottom:10px;
  padding:5px 10px;
  border-radius:999px;
  background:#f7ebee;
  color:var(--rose-deep);
  font-size:0.74rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.service-card .card-body h3{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.45rem;
  color:var(--dark);
  margin-bottom:10px;
  font-weight:600;
}

.service-card .card-body p{
  color:var(--muted);
  font-size:0.95rem;
  line-height:1.65;
  margin-bottom:14px;
  flex:1;
}

.service-card .card-body a{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:0.84rem;
  font-weight:700;
  color:var(--rose-deep);
  letter-spacing:0.06em;
  text-transform:uppercase;
  transition:gap .2s ease;
}

.service-card .card-body a::after{
  content:"→";
}

.service-card .card-body a:hover{
  gap:10px;
}

.service-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.service-card:hover img{
  transform:scale(1.04);
}

/* ── Mini cards ──────────────────────────────────────────── */
.mini-card{
  background:var(--panel);
  border-radius:var(--radius-lg);
  padding:26px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  transition:transform .3s ease, box-shadow .3s ease;
}

.mini-card:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 50px rgba(34,24,28,0.1);
}

.mini-card h3{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.3rem;
  color:var(--dark);
  margin-bottom:8px;
  font-weight:600;
}

.mini-card p{
  color:var(--muted);
  font-size:0.93rem;
  line-height:1.65;
}

/* ── Hero grid (index) ───────────────────────────────────── */
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  align-items:center;
  padding:80px 0 72px;
  position:relative;
  z-index:1;
}

.hero-copy h1{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:clamp(2.6rem,6vw,5.2rem);
  line-height:0.97;
  color:#fff;
  margin-bottom:20px;
  font-weight:600;
}

.hero-copy .hero-text{
  font-size:1.04rem;
  color:rgba(255,255,255,0.82);
  max-width:580px;
  margin-bottom:32px;
  line-height:1.75;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:44px;
}

.hero-stats{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  padding-top:32px;
  border-top:1px solid rgba(255,255,255,0.14);
}

.stat-card{
  padding:16px 20px;
  border-radius:var(--radius-md);
  background:rgba(255,255,255,0.09);
  border:1px solid rgba(255,255,255,0.14);
  backdrop-filter:blur(8px);
}

.stat-card strong{
  display:block;
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.7rem;
  color:#fff;
  line-height:1;
  margin-bottom:4px;
}

.stat-card span{
  font-size:0.82rem;
  color:rgba(255,255,255,0.62);
}

.hero-visual{
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:0 30px 80px rgba(24,18,20,0.35);
}

.hero-visual img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

/* ── CTA block ───────────────────────────────────────────── */
.cta-block{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
  flex-wrap:wrap;
  padding:24px 0;
}

.cta-block h2{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:clamp(1.9rem,3.5vw,3rem);
  line-height:1.06;
  color:#fff;
  margin-bottom:10px;
  font-weight:600;
  max-width:600px;
}

.cta-block > div > p{
  color:rgba(255,255,255,0.68);
  font-size:0.98rem;
  line-height:1.7;
  max-width:560px;
}

.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  flex-shrink:0;
}

.light-btn{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.32);
  border-radius:999px;
  padding:14px 24px;
  font-weight:600;
  transition:.25s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.light-btn:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.6);
}

/* ── Pricing list ────────────────────────────────────────── */
.pricing-list{
  display:flex;
  flex-direction:column;
  gap:0;
}

.pricing-item{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:24px;
  padding:22px 0;
  border-bottom:1px solid var(--line);
  transition:background .2s ease;
}

.pricing-item:last-child{
  border-bottom:none;
}

.pricing-item:hover{
  padding-left:8px;
  padding-right:8px;
  margin:0 -8px;
  border-radius:var(--radius-md);
  background:var(--bg-soft);
}

.pricing-item h3{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.3rem;
  color:var(--dark);
  margin-bottom:6px;
  font-weight:600;
}

.pricing-item > div > p{
  color:var(--muted);
  font-size:0.93rem;
  line-height:1.6;
}

.pricing-meta{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
  flex-shrink:0;
  min-width:90px;
}

.pricing-meta span{
  font-size:0.82rem;
  color:var(--taupe);
  text-align:right;
  white-space:nowrap;
}

.pricing-meta strong{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.7rem;
  color:var(--rose-deep);
  font-weight:600;
  line-height:1;
}

/* ── Gallery grid (realisations) ─────────────────────────── */
.gallery-grid{
  display:grid;
  grid-template-columns:1.2fr 0.8fr 0.8fr;
  grid-auto-rows:280px;
  gap:14px;
  margin-top:8px;
}

.gallery-card{
  border-radius:var(--radius-xl);
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow);
  cursor:pointer;
}

.gallery-card.large{
  grid-row:span 2;
}

.gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .45s ease;
}

.gallery-card:hover img{
  transform:scale(1.05);
}

.gallery-caption{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(32,24,26,0.78), transparent 50%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  opacity:0;
  transition:opacity .3s ease;
}

.gallery-card:hover .gallery-caption{
  opacity:1;
}

.gallery-caption span{
  font-size:0.74rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--nude);
  margin-bottom:6px;
}

.gallery-caption h3{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.2rem;
  color:#fff;
  font-weight:600;
}

/* ── Before/After ────────────────────────────────────────── */
.before-after-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.before-after-card{
  background:var(--panel);
  border-radius:var(--radius-xl);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.before-after-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3px;
  position:relative;
}

.before-after-images > div{
  position:relative;
  overflow:hidden;
  height:260px;
}

.before-after-images img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.before-after-images span{
  position:absolute;
  top:12px;
  left:12px;
  padding:5px 10px;
  border-radius:999px;
  background:rgba(32,24,26,0.7);
  color:#fff;
  font-size:0.74rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.before-after-text{
  padding:22px;
}

.before-after-text h3{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.3rem;
  color:var(--dark);
  margin-bottom:6px;
  font-weight:600;
}

.before-after-text p{
  color:var(--muted);
  font-size:0.93rem;
  line-height:1.65;
}

/* ── Contact form card (contact.html) ────────────────────── */
.form-card{
  background:var(--panel);
  border-radius:var(--radius-xl);
  padding:36px;
  box-shadow:var(--shadow);
}

.form-card h2{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:2rem;
  color:var(--dark);
  margin-bottom:6px;
  font-weight:600;
}

.form-card > p{
  color:var(--muted);
  margin-bottom:22px;
  font-size:0.95rem;
}

/* ── Contact info card ───────────────────────────────────── */
.contact-info-card{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:22px;
  margin-top:24px;
}

.contact-info-card h3{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.3rem;
  color:var(--dark);
  margin-bottom:12px;
  font-weight:600;
}

.contact-info-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.contact-info-card li{
  font-size:0.93rem;
  color:var(--muted);
  padding:8px 0;
  border-bottom:1px solid var(--line);
}

.contact-info-card li:last-child{
  border-bottom:none;
}

/* ── Three col grid ──────────────────────────────────────── */
.three-col-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:8px;
}

/* ── Info block ──────────────────────────────────────────── */
.info-block{
  background:var(--panel);
  border-radius:var(--radius-lg);
  padding:28px;
  border:1px solid var(--line);
  transition:border-color .2s ease, transform .25s ease;
}

.info-block:hover{
  border-color:var(--rose);
  transform:translateY(-2px);
}

.info-block h3{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.35rem;
  color:var(--dark);
  margin-bottom:8px;
  font-weight:600;
}

.info-block p{
  color:var(--muted);
  font-size:0.93rem;
  line-height:1.65;
}

/* ── Full width button ───────────────────────────────────── */
.full-width{
  width:100%;
}

/* ── Form success ────────────────────────────────────────── */
.form-success{
  display:none;
  margin-top:16px;
  padding:20px 22px;
  border-radius:var(--radius-md);
  background:rgba(95,140,95,0.10);
  border:1px solid rgba(95,140,95,0.28);
  color:#3a7a3a;
  font-size:0.95rem;
  font-weight:600;
  text-align:center;
  line-height:1.6;
}

/* ── Form check (checkbox row) ───────────────────────────── */
.form-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:16px;
}

.form-check input[type="checkbox"]{
  width:18px;
  height:18px;
  flex-shrink:0;
  margin-top:2px;
  accent-color:var(--rose-deep);
  cursor:pointer;
}

.form-check label{
  font-size:0.88rem;
  color:var(--muted);
  line-height:1.5;
  cursor:pointer;
}

/* ── Footer improvements ─────────────────────────────────── */
.footer-grid h3{
  font-family:"Cormorant Garamond","Georgia",serif;
  font-size:1.65rem;
  color:#fff;
  margin-bottom:12px;
  font-weight:600;
}

.footer-grid > div > p{
  color:rgba(255,255,255,0.5);
  font-size:0.88rem;
  line-height:1.75;
  max-width:300px;
}

.site-footer ul{
  list-style:none;
}

.site-footer ul li{
  color:rgba(255,255,255,0.6);
  font-size:0.88rem;
  margin-bottom:8px;
}

.footer-legal{
  display:flex;
  gap:16px;
  align-items:center;
  flex-wrap:wrap;
}

.footer-legal a{
  font-size:0.88rem;
  color:rgba(255,255,255,0.32);
  transition:color .2s;
  display:inline;
  margin-bottom:0;
}

.footer-legal a:hover{
  color:var(--rose);
}

/* ── Responsive additions ────────────────────────────────── */
@media(max-width:980px){
  .hero-grid{
    grid-template-columns:1fr;
    gap:32px;
    padding:64px 0;
  }

  .hero-visual{
    display:none;
  }

  .split-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .cards-grid.three-cols,
  .cards-grid.four-cols,
  .three-col-grid{
    grid-template-columns:1fr 1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
    grid-auto-rows:220px;
  }

  .gallery-item.large{
    grid-column:span 2;
    grid-row:span 1;
  }

  .before-after-grid{
    grid-template-columns:1fr;
  }

  .cta-block{
    flex-direction:column;
    align-items:flex-start;
    gap:24px;
  }

  .page-hero{
    padding:64px 0 56px;
  }
}

@media(max-width:640px){
  .cards-grid.three-cols,
  .cards-grid.four-cols,
  .three-col-grid{
    grid-template-columns:1fr;
  }

  .hero-stats{
    flex-direction:column;
    gap:10px;
  }

  .stat-card{
    width:100%;
  }

  .image-card img{
    height:300px;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .gallery-card.large{
    grid-column:auto;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}