/* ============================================================
   My Kurtains — modern boutique blinds site
   ============================================================ */

:root {
  /* palette — warm espresso + linen + brass */
  --ink:      #17130f;
  --ink-2:    #2a2320;
  --linen:    #f6f1ea;
  --linen-2:  #efe7db;
  --cream:    #fbf8f3;
  --brass:    #c39a5b;
  --brass-dk: #a67c3d;
  --sand:     #d9c6ac;
  --muted:    #7d746b;
  --line:     rgba(23,19,15,0.10);
  --white:    #ffffff;

  --shadow-sm: 0 2px 10px rgba(23,19,15,0.06);
  --shadow-md: 0 18px 40px -18px rgba(23,19,15,0.28);
  --shadow-lg: 0 40px 80px -30px rgba(23,19,15,0.45);

  --radius:   18px;
  --radius-lg: 28px;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html { overflow-x: clip; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }

/* ---------- typography ---------- */
.eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass-dk);
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.section__title em { font-style: italic; color: var(--brass-dk); }
.section__lede {
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* ---------- buttons ---------- */
.btn {
  --pad-y: .85rem; --pad-x: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 100px;
  font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn--sm { --pad-y: .6rem; --pad-x: 1.05rem; font-size: .85rem; }
.btn--lg { --pad-y: 1.05rem; --pad-x: 2rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--ink); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--brass-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--outline { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); backdrop-filter: blur(4px); }
.btn--outline:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-2px); }

.btn--ghost { color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-1px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 78px;
}
.nav.scrolled {
  background: rgba(251,248,243,0.82);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark {
  width: 34px; height: 34px; color: var(--brass-dk);
  display: grid; place-items: center;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--font-serif); font-weight: 500; font-size: 1.35rem; letter-spacing: -0.01em;
  color: var(--ink);
}
.brand__name em { font-style: italic; color: var(--brass-dk); }
/* On the transparent hero nav, brand text is light */
.nav:not(.scrolled) .brand__name { color: var(--cream); }
.nav:not(.scrolled) .brand__mark { color: var(--brass); }
.nav:not(.scrolled) .nav__links a { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.nav:not(.scrolled) .btn--ghost:hover { border-color: #fff; }
.nav:not(.scrolled) .nav__toggle span { background: #fff; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: .92rem; font-weight: 500; color: var(--ink-2); position: relative; padding: .25rem 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--brass-dk); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--brass-dk); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { display: flex; align-items: center; gap: .7rem; }
.lang-switch { letter-spacing: .08em; font-weight: 700; padding-inline: .9rem; }
.nav__mobile-lang { color: var(--brass-dk) !important; font-weight: 600; }

.nav__toggle { display: none; width: 42px; height: 42px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--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); }

.nav__mobile {
  display: none; flex-direction: column; gap: .3rem;
  padding: 1rem clamp(20px,5vw,48px) 1.75rem;
  background: rgba(251,248,243,0.97); backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}
.nav__mobile a { padding: .85rem 0; font-weight: 600; font-size: 1.05rem; border-bottom: 1px solid var(--line); }
.nav__mobile a.btn { border: none; margin-top: .8rem; color: var(--cream); }
.nav__mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0.15) 35%, rgba(20,16,12,0.35) 70%, rgba(20,16,12,0.78) 100%),
    radial-gradient(120% 80% at 15% 30%, rgba(20,16,12,0.55), transparent 60%);
}
.hero__content { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 60px; }
.eyebrow { color: var(--brass); }
.hero .eyebrow { color: var(--sand); }
.hero__title {
  font-family: var(--font-serif); font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02; letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem; max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__title em { font-style: italic; color: var(--brass); }
.hero__sub { max-width: 52ch; font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,0.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 3rem; }
.badge { display: flex; flex-direction: column; }
.badge strong { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; color: #fff; line-height: 1; }
.badge span { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: .35rem; }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 20px; }
.hero__scroll span { position: absolute; top: 8px; left: 50%; width: 3px; height: 8px; margin-left: -1.5px; background: #fff; border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding: 1.1rem 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 2rem; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-serif); font-style: italic; font-size: 1.4rem; opacity: .9; }
.marquee__track span:nth-child(even) { color: var(--brass); font-family: var(--font-sans); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__head .eyebrow { display: block; margin-bottom: .9rem; }
.section__head--left .section__lede { margin-inline: 0; }
.section__head .section__lede { margin-inline: auto; }

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.08); }
.card__body { padding: 1.4rem 1.4rem 1.6rem; position: relative; }
.card__body h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.4rem; margin-bottom: .4rem; }
.card__body p { color: var(--muted); font-size: .92rem; }
.card__tag {
  position: absolute; top: -12px; right: 1.2rem;
  background: var(--brass); color: var(--ink);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 100px; box-shadow: var(--shadow-sm);
}

/* ============================================================
   WHY
   ============================================================ */
.why { background: var(--linen); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.why__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.why__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why__stat {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: rgba(251,248,243,0.92); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: 1rem 1.3rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.why__stat strong { font-family: var(--font-serif); font-size: 2.4rem; line-height: 1; color: var(--brass-dk); font-weight: 500; }
.why__stat span { font-size: .82rem; color: var(--muted); margin-top: .2rem; }

.features { list-style: none; margin-top: 2rem; display: grid; gap: 1.4rem; }
.features li { display: flex; gap: 1rem; align-items: flex-start; }
.features__icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--brass); color: var(--white); display: grid; place-items: center;
  font-size: .85rem; font-weight: 700; margin-top: 2px;
}
.features h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: .15rem; }
.features p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--ink); color: var(--cream); }
.process .section__title { color: var(--cream); }
.process .eyebrow { color: var(--brass); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); counter-reset: step; }
.step { padding: 2rem 1.75rem; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); background: rgba(255,255,255,0.03); transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease); }
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.06); border-color: rgba(195,154,91,0.5); }
.step__num { font-family: var(--font-serif); font-style: italic; font-size: 2.6rem; color: var(--brass); display: block; margin-bottom: .6rem; }
.step h3 { font-family: var(--font-serif); font-weight: 500; font-size: 1.35rem; margin-bottom: .5rem; }
.step p { color: rgba(255,255,255,0.72); font-size: .95rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 2.5rem; padding-inline: clamp(20px, 5vw, 48px); max-width: 1400px; margin-inline: auto;
}
.gallery__grid figure { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery__grid figure img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__grid figure:hover img { transform: scale(1.07); }
.gallery__grid figure:nth-child(1) { grid-row: span 2; }
.gallery__grid figure:nth-child(1) img { aspect-ratio: 1/2.06; }
.gallery__grid figure:nth-child(6) { grid-column: span 2; }
.gallery__grid figure:nth-child(6) img { aspect-ratio: 2.06/1; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--linen); }

/* horizontal, swipeable review carousel */
.reviews__scroller { position: relative; margin-top: 2.75rem; }
.reviews__scroller::before,
.reviews__scroller::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 56px; z-index: 2; pointer-events: none;
}
.reviews__scroller::before { left: 0;  background: linear-gradient(90deg, var(--linen), transparent); }
.reviews__scroller::after  { right: 0; background: linear-gradient(270deg, var(--linen), transparent); }

.reviews__track {
  display: flex; gap: 1.5rem;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: .5rem .25rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__track.dragging { scroll-snap-type: none; scroll-behavior: auto; cursor: grabbing; }
.reviews__track.dragging .review { pointer-events: none; }

.review {
  flex: 0 0 min(380px, 82vw); scroll-snap-align: start;
  background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
}
.review__stars { color: var(--brass); letter-spacing: .15em; font-size: 1.05rem; }
.review p { font-family: var(--font-serif); font-size: 1.18rem; line-height: 1.5; color: var(--ink-2); }
.review footer { display: flex; align-items: center; gap: .7rem; font-weight: 600; font-size: .95rem; margin-top: auto; }
.review footer em { font-style: normal; color: var(--muted); font-weight: 500; font-size: .82rem; margin-left: auto; }
.review__avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--sand); color: var(--ink); display: grid; place-items: center; font-weight: 700; }
.reviews__controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.reviews__arrows { display: flex; gap: .7rem; }
.rev-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1.5px solid var(--line); background: var(--white); color: var(--ink);
  font-size: 1.25rem; line-height: 1; display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.rev-btn:hover:not(:disabled) { border-color: var(--brass); color: var(--brass-dk); transform: translateY(-2px); }
.rev-btn:active:not(:disabled) { transform: translateY(0); }
.rev-btn:disabled { opacity: .3; cursor: default; box-shadow: none; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream); }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact__copy .section__title { margin-top: .9rem; }
.contact__methods { display: grid; gap: .8rem; margin-top: 2rem; }
.method { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), border-color .3s var(--ease); }
.method:hover { transform: translateX(4px); border-color: var(--brass); }
.method__ic { font-size: 1.4rem; }
.method span:not(.method__ic) { display: flex; flex-direction: column; }
.method strong { font-size: 1rem; }
.method span span, .method > span:last-child { color: var(--muted); font-size: .9rem; }
.method strong + * { color: var(--muted); }

/* booking column: Calendly primary, form secondary */
.contact__booking { display: flex; flex-direction: column; gap: 1.75rem; }
.booking__primary { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: .5rem; overflow: hidden; }
.booking__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--ink); color: var(--cream);
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem .8rem; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.calendly-inline-widget { border-radius: calc(var(--radius-lg) - 6px); overflow: hidden; }
.booking__divider { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; }
.booking__divider::before, .booking__divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.contact__form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md); display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 4px rgba(195,154,91,0.15); }
.contact__note { font-size: .9rem; text-align: center; min-height: 1.2em; }
.contact__note.ok { color: #2f7d3a; }
.contact__note.err { color: #b23b3b; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.75); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.footer__brand .brand__name { color: #fff; font-size: 1.5rem; }
.footer__brand p { margin-top: .8rem; max-width: 34ch; font-size: .92rem; }
.footer__col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col a { display: block; padding: .3rem 0; font-size: .95rem; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--brass); }
.footer__social { display: flex; gap: 1rem; }
.footer__bar { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: .82rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: fabIn .5s var(--ease) 1s both;
}
.fab svg { width: 30px; height: 30px; }
.fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 16px 36px -8px rgba(37,211,102,0.7); }
@keyframes fabIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal.in:nth-child(2), .steps .reveal.in:nth-child(2), .reviews__grid .reveal.in:nth-child(2) { transition-delay: .08s; }
.cards .reveal.in:nth-child(3), .steps .reveal.in:nth-child(3), .reviews__grid .reveal.in:nth-child(3) { transition-delay: .16s; }
.cards .reveal.in:nth-child(4) { transition-delay: .06s; }
.cards .reveal.in:nth-child(5) { transition-delay: .14s; }
.cards .reveal.in:nth-child(6) { transition-delay: .22s; }
.reviews__grid .reveal.in:nth-child(4) { transition-delay: .06s; }
.reviews__grid .reveal.in:nth-child(5) { transition-delay: .14s; }
.reviews__grid .reveal.in:nth-child(6) { transition-delay: .22s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  /* collapse to the hamburger before the desktop nav gets crowded */
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .why__grid, .contact__inner { grid-template-columns: 1fr; }
  .steps, .reviews__grid { grid-template-columns: 1fr; }
  .why__media { max-width: 480px; }
}
@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid figure:nth-child(1) { grid-row: span 1; }
  .gallery__grid figure:nth-child(1) img,
  .gallery__grid figure:nth-child(6) img { aspect-ratio: 1/1; }
  .gallery__grid figure:nth-child(6) { grid-column: span 2; }
  .gallery__grid figure:nth-child(6) img { aspect-ratio: 2/1; }
  .hero__badges { gap: 1.6rem; }
  .footer__bar { justify-content: flex-start; }
}

/* product cards that link to their guide */
.card--link { color: inherit; text-decoration: none; display: block; }
.card--link .card__body { position: relative; }
.card--link .card__body::after {
  content: "Read the guide →"; display: block; margin-top: .8rem;
  font-size: .85rem; font-weight: 600; color: var(--brass-dk);
  transition: transform .3s var(--ease);
}
.card--link:hover .card__body::after { transform: translateX(4px); }
html[lang="fr"] .card--link .card__body::after { content: "Lire le guide →"; }
.footer__area { color: rgba(255,255,255,0.6); }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ============================================================
   COOKIE CONSENT (Law 25) — minimal
   ============================================================ */
.consent {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 20px);
  width: min(560px, calc(100% - 32px)); z-index: 120;
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--line); border-radius: 100px;
  box-shadow: var(--shadow-lg); padding: .6rem .7rem .6rem 1.15rem;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.consent.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.consent p { flex: 1 1 auto; margin: 0; color: var(--ink-2); font-size: .88rem; line-height: 1.35; }
.consent .btn--sm { --pad-y: .5rem; --pad-x: .95rem; }
.consent__link { margin-left: auto; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) {
  .consent { border-radius: var(--radius); padding: .85rem 1rem; }
  .consent p { flex-basis: 100%; }
  .consent .btn { flex: 1; }
  .fab { bottom: 120px; }
}

/* ============================================================
   STICKY MOBILE ACTION BAR (Call + Book) — mobile only
   ============================================================ */
.actbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: none; gap: .6rem; padding: .6rem .8rem;
  padding-bottom: calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(251,248,243,.94); backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(23,19,15,.35);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.actbar.is-on { transform: translateY(0); }
.actbar a { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; border-radius: 100px; font-weight: 700; font-size: .95rem; padding: .9rem 1rem; }
.actbar__call { flex: 0 0 34%; border: 1.5px solid var(--ink); color: var(--ink); background: var(--white); }
.actbar__call svg { width: 18px; height: 18px; }
.actbar__book { flex: 1 1 auto; background: var(--brass-dk); color: #fff; box-shadow: var(--shadow-sm); }
.actbar__book:active, .actbar__call:active { transform: scale(.98); }
@media (max-width: 860px) {
  .actbar { display: flex; }
  /* lift the WhatsApp button and the consent pill above the bar when it's on */
  body.has-actbar .fab { bottom: calc(84px + env(safe-area-inset-bottom)); }
  body.has-actbar .consent { bottom: calc(84px + env(safe-area-inset-bottom)); }
  body.has-actbar { padding-bottom: 72px; } /* keep footer content clear of the bar */
}
