/* ============================================================
   Beauty'Zen — Coiffure & Esthétique · Menton
   style.css — palette agrume Riviera, depth premium, mobile-first
   ============================================================ */

:root{
  --color-bg:#FBF8F3;
  --color-bg-alt:#F3ECE2;
  --color-bg-elevated:#FFFFFF;
  --color-surface-dark:#231C16;
  --color-text:#241D17;
  --color-text-muted:#6E6258;
  --color-accent:#D9762E;
  --color-accent-hover:#B85F1E;
  --color-accent-2:#7E8C73;
  --color-border:#E7DCCD;
  --color-gold:#C9A24B;

  --gradient-bg:linear-gradient(180deg,#FBF8F3 0%,#F6EFE5 100%);
  --gradient-mesh:conic-gradient(from 210deg at 30% 30%, #F3ECE2, #FBF8F3, #F6E3D2, #F3ECE2);
  --gradient-cta:linear-gradient(135deg,#E08A3C 0%,#D9762E 55%,#B85F1E 100%);

  --shadow-elevation-1:0 1px 2px rgba(58,42,28,.05), 0 2px 8px rgba(58,42,28,.04);
  --shadow-elevation-2:0 8px 32px rgba(58,42,28,.08);
  --shadow-elevation-3:0 24px 80px rgba(58,42,28,.12);
  --shadow-glass:inset 0 1px 0 rgba(255,255,255,.6);

  --radius-sm:10px; --radius-md:18px; --radius-lg:30px;
  --ease-out-expo:cubic-bezier(.16,1,.3,1);
  --duration-fast:200ms; --duration-mid:400ms; --duration-slow:800ms;

  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:'Inter', system-ui, -apple-system, sans-serif;
  --font-script:'Pinyon Script', cursive;
  --container:1200px;
}

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

body{
  margin:0;
  font-family:var(--font-body);
  font-size:1rem;
  line-height:1.6;
  color:var(--color-text);
  background:var(--gradient-bg);
  background-attachment:fixed;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
ul{margin:0;padding:0;list-style:none;}

:focus-visible{outline:2px solid var(--color-accent);outline-offset:3px;border-radius:4px;}

.skip-link{
  position:absolute;left:-999px;top:0;z-index:200;
  background:var(--color-surface-dark);color:#fff;padding:.75rem 1.25rem;border-radius:0 0 var(--radius-sm) 0;
}
.skip-link:focus{left:0;}

.container{max-width:var(--container);margin:0 auto;padding:0 1.25rem;}
@media(min-width:768px){.container{padding:0 2rem;}}

section{position:relative;}
.section-pad{padding:3.5rem 0;}
@media(min-width:1024px){.section-pad{padding:8.5rem 0;}}

.bg-alt{background:var(--color-bg-alt);}
.bg-dark{background:var(--color-surface-dark);color:#F4ECE2;}

/* ---------- typographic helpers ---------- */
.eyebrow{
  font-size:.78rem;font-weight:600;letter-spacing:.18em;text-transform:uppercase;
  color:var(--color-accent-2);margin:0 0 1rem;display:inline-flex;align-items:center;gap:.6rem;
}
.eyebrow::before{content:"";width:28px;height:1px;background:var(--color-gold);opacity:.7;}
.bg-dark .eyebrow{color:var(--color-gold);}

h1,h2,h3{font-family:var(--font-display);font-weight:400;line-height:1.1;letter-spacing:-.02em;margin:0;}
.h2{font-size:clamp(1.8rem,4vw,3rem);margin:0 0 1rem;}
.lead{font-size:1.0625rem;color:var(--color-text-muted);max-width:46ch;}
.bg-dark .lead{color:#CFC3B5;}
em.accent{font-style:italic;font-weight:300;color:var(--color-accent);}
.bg-dark em.accent{color:var(--color-gold);}

.section-head{margin-bottom:2.75rem;max-width:60ch;}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.95rem 1.6rem;border-radius:var(--radius-sm);font-weight:600;font-size:.97rem;
  transition:transform var(--duration-fast) var(--ease-out-expo), box-shadow var(--duration-mid), background var(--duration-fast);
  will-change:transform;
}
.btn svg{width:18px;height:18px;}
.btn-primary{
  background:var(--gradient-cta);color:#fff;
  box-shadow:0 6px 18px rgba(217,118,46,.32), var(--shadow-glass);
}
@media(hover:hover){
  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(217,118,46,.42), var(--shadow-glass);}
  .btn-outline:hover{background:var(--color-bg-elevated);border-color:var(--color-accent);color:var(--color-accent-hover);transform:translateY(-2px);}
}
.btn-outline{
  background:rgba(255,255,255,.5);color:var(--color-text);
  border:1px solid var(--color-border);box-shadow:var(--shadow-elevation-1);
}
.btn-light{background:#FBF8F3;color:var(--color-text);}
.btn-block{width:100%;}

/* ---------- nav ---------- */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(251,248,243,.72);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--color-border);
  transition:box-shadow var(--duration-mid);
}
.nav.scrolled{box-shadow:var(--shadow-elevation-2);}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:68px;}
.brand{font-family:var(--font-display);font-size:1.45rem;font-weight:500;letter-spacing:-.01em;}
.brand b{color:var(--color-accent);font-weight:500;}
.nav-links{display:none;gap:2rem;align-items:center;}
.nav-links a{font-size:.92rem;font-weight:500;color:var(--color-text-muted);transition:color var(--duration-fast);position:relative;}
.nav-links a::after{content:"";position:absolute;left:0;bottom:-5px;width:0;height:1.5px;background:var(--color-accent);transition:width var(--duration-mid) var(--ease-out-expo);}
@media(hover:hover){.nav-links a:hover{color:var(--color-text);}.nav-links a:hover::after{width:100%;}}
.nav-cta{display:none;}
@media(min-width:980px){
  .nav-links{display:flex;}
  .nav-cta{display:inline-flex;}
}
.nav-actions{display:flex;align-items:center;gap:.75rem;}

.lang-switch{
  display:inline-flex;border:1px solid var(--color-border);border-radius:999px;overflow:hidden;
  background:rgba(255,255,255,.6);box-shadow:var(--shadow-elevation-1);
}
.lang-switch button{padding:.4rem .7rem;font-size:.78rem;font-weight:600;color:var(--color-text-muted);letter-spacing:.02em;}
.lang-switch button.active{background:var(--color-accent);color:#fff;}

.hamburger{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:var(--radius-sm);border:1px solid var(--color-border);background:rgba(255,255,255,.6);}
.hamburger svg{width:20px;height:20px;}
@media(min-width:980px){.hamburger{display:none;}}

/* mobile menu */
.mobile-menu{
  position:fixed;inset:0;z-index:99;background:var(--gradient-bg);
  display:flex;flex-direction:column;justify-content:center;gap:1.4rem;padding:2rem;
  transform:translateX(100%);transition:transform var(--duration-mid) var(--ease-out-expo);
}
.mobile-menu.open{transform:translateX(0);}
.mobile-menu a{font-family:var(--font-display);font-size:2rem;color:var(--color-text);opacity:0;transform:translateY(16px);}
.mobile-menu.open a{opacity:1;transform:none;transition:opacity var(--duration-mid), transform var(--duration-mid) var(--ease-out-expo);}
.mobile-menu.open a:nth-child(1){transition-delay:.06s}
.mobile-menu.open a:nth-child(2){transition-delay:.12s}
.mobile-menu.open a:nth-child(3){transition-delay:.18s}
.mobile-menu.open a:nth-child(4){transition-delay:.24s}
.mobile-menu.open a:nth-child(5){transition-delay:.30s}
.mobile-close{position:absolute;top:1.4rem;right:1.4rem;width:44px;height:44px;border-radius:var(--radius-sm);border:1px solid var(--color-border);display:flex;align-items:center;justify-content:center;}
.mobile-menu .btn{margin-top:1rem;}

/* ---------- hero ---------- */
.hero{position:relative;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden;}
.hero-media{position:absolute;inset:0;z-index:0;}
.hero-media video,.hero-media img{width:100%;height:100%;object-fit:cover;}
.hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg, rgba(35,28,22,.15) 0%, rgba(35,28,22,.30) 55%, rgba(35,28,22,.62) 100%);}
.hero-inner{position:relative;z-index:2;width:100%;padding-bottom:clamp(2.5rem,7vh,5rem);padding-top:7rem;color:#FCF7F0;}
.hero h1{font-size:clamp(2.6rem,6.5vw,5.25rem);line-height:1.04;letter-spacing:-.025em;color:#FFFBF4;text-shadow:0 2px 30px rgba(35,28,22,.35);max-width:16ch;}
.hero h1 em{font-style:italic;font-weight:300;}
.hero .eyebrow{color:#F3D9B8;}
.hero .eyebrow::before{background:#F3D9B8;}
.hero-sub{margin:1.4rem 0 2rem;font-size:1.075rem;color:#F1E7DA;max-width:42ch;text-shadow:0 1px 12px rgba(35,28,22,.4);}
.hero-cta{display:flex;flex-wrap:wrap;gap:.85rem;}
.hero-rating{display:flex;align-items:center;gap:.6rem;margin-top:1.6rem;font-size:.92rem;color:#F3E9DC;}
.stars{display:inline-flex;gap:2px;color:var(--color-gold);}
.stars svg{width:16px;height:16px;fill:currentColor;stroke:none;}
@media(max-width:560px){
  .hero h1 em{font-weight:400;}
  .hero h1{font-size:clamp(2.2rem,8vw,3rem);}
}
.scroll-hint{position:absolute;bottom:1.2rem;left:50%;transform:translateX(-50%);z-index:2;color:#F3E9DC;opacity:.8;}
.scroll-hint svg{width:24px;height:24px;animation:bounce 2.2s var(--ease-out-expo) infinite;}
@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(7px)}}

/* ---------- info strip ---------- */
.info-strip{display:grid;gap:1px;background:var(--color-border);border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-elevation-2);}
@media(min-width:768px){.info-strip{grid-template-columns:repeat(3,1fr);}}
.info-cell{background:var(--color-bg-elevated);padding:1.6rem 1.5rem;display:flex;gap:1rem;align-items:center;}
.glass-icon{
  flex:none;width:48px;height:48px;border-radius:14px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg, rgba(255,255,255,.9), rgba(243,236,226,.7));
  border:1px solid var(--color-border);box-shadow:var(--shadow-glass), var(--shadow-elevation-1);
  color:var(--color-accent);
}
.glass-icon svg{width:22px;height:22px;}
.info-cell h3{font-family:var(--font-body);font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--color-text-muted);margin-bottom:.2rem;}
.info-cell p, .info-cell a{font-size:1rem;font-weight:500;color:var(--color-text);}

/* ---------- review bignum ---------- */
.review-strip{padding:3.5rem 0;text-align:center;}
.review-bignum{display:flex;align-items:baseline;justify-content:center;gap:.6rem;flex-wrap:wrap;margin-bottom:0;}
.review-bignum .num{font-family:var(--font-display);font-size:clamp(3rem,9vw,5rem);color:var(--color-accent);line-height:1;}
.review-bignum .sep{color:var(--color-border);font-size:2rem;}
.review-bignum .count{font-size:1.05rem;color:var(--color-text-muted);}

/* ---------- about ---------- */
.about-grid{display:grid;gap:2.5rem;align-items:center;}
@media(min-width:900px){.about-grid{grid-template-columns:1.05fr .95fr;gap:4rem;}}
.about-media{position:relative;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-elevation-3);}
.about-media img{width:100%;aspect-ratio:4/5;object-fit:cover;}
.about-media .badge{position:absolute;left:1rem;bottom:1rem;background:rgba(251,248,243,.92);backdrop-filter:blur(8px);border-radius:var(--radius-md);padding:.8rem 1.1rem;box-shadow:var(--shadow-elevation-2);border:1px solid var(--color-border);}
.about-media .badge strong{font-family:var(--font-display);font-size:1.4rem;color:var(--color-accent);}
.about-media .badge small{display:block;font-size:.72rem;color:var(--color-text-muted);letter-spacing:.04em;}
.about-portrait{position:absolute;right:.9rem;top:.9rem;width:38%;max-width:160px;margin:0;border-radius:var(--radius-md);overflow:hidden;border:3px solid var(--color-bg);box-shadow:var(--shadow-elevation-2);}
.about-portrait img{width:100%;aspect-ratio:4/5;object-fit:cover;}
@media(min-width:900px){.about-portrait{width:34%;max-width:190px;right:1.1rem;top:1.1rem;}}
.about-text p{margin:0 0 1.1rem;color:var(--color-text-muted);}
.about-text p:first-of-type{color:var(--color-text);font-size:1.1rem;}
.signature{font-family:var(--font-script);font-size:2.2rem;color:var(--color-accent);margin-top:1.4rem;}
.signature small{display:block;font-family:var(--font-body);font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;color:var(--color-text-muted);margin-top:-.2rem;}

/* ---------- prestations ---------- */
.tabs{display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2rem;}
.tab{padding:.6rem 1.2rem;border-radius:999px;font-size:.9rem;font-weight:500;color:var(--color-text-muted);border:1px solid var(--color-border);background:rgba(255,255,255,.5);transition:all var(--duration-fast);}
.tab.active{background:var(--color-accent);color:#fff;border-color:var(--color-accent);box-shadow:0 4px 14px rgba(217,118,46,.28);}
.price-grid{display:grid;gap:1rem;}
@media(min-width:680px){.price-grid{grid-template-columns:repeat(2,1fr);}}
.price-group{display:none;}
.price-group.active{display:grid;gap:1rem;grid-column:1/-1;}
@media(min-width:680px){.price-group.active{grid-template-columns:repeat(2,1fr);}}
.price-card{
  background:var(--color-bg-elevated);border:1px solid var(--color-border);border-radius:var(--radius-md);
  padding:1.3rem 1.4rem;box-shadow:var(--shadow-elevation-1), var(--shadow-glass);
  transition:transform var(--duration-mid) var(--ease-out-expo), box-shadow var(--duration-mid);
  display:flex;flex-direction:column;gap:.9rem;
}
@media(hover:hover){.price-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-elevation-2), var(--shadow-glass);}}
.price-card .cat{font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--color-accent-2);}
.price-list{display:flex;flex-direction:column;gap:.55rem;}
.price-row{display:flex;align-items:baseline;justify-content:space-between;gap:1rem;padding-bottom:.55rem;border-bottom:1px dashed var(--color-border);}
.price-row:last-child{border-bottom:none;padding-bottom:0;}
.price-row .name{font-size:.95rem;color:var(--color-text);}
.price-row .name small{display:block;font-size:.74rem;color:var(--color-text-muted);}
.price-row .val{font-weight:600;font-variant-numeric:tabular-nums;color:var(--color-text);white-space:nowrap;}
.price-row .val .from{font-size:.7rem;font-weight:500;color:var(--color-text-muted);}
.price-card .group-cta{margin-top:auto;}
.price-note{font-size:.82rem;color:var(--color-text-muted);margin-top:1.4rem;display:flex;gap:.5rem;align-items:flex-start;}
.price-note svg{width:16px;height:16px;flex:none;margin-top:2px;color:var(--color-accent-2);}

/* ---------- esthetique ---------- */
.esthetique{background:linear-gradient(180deg,#F3ECE2,#EFE7DA);}
.esth-feature{
  display:grid;gap:1.1rem;margin-bottom:2.2rem;align-items:center;
  background:var(--color-bg-elevated);border:1px solid var(--color-border);
  border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:var(--shadow-elevation-2), var(--shadow-glass);
}
.esth-feature-img{margin:0;overflow:hidden;}
.esth-feature-img img{width:100%;height:100%;object-fit:cover;aspect-ratio:3/2;}
.esth-feature-img--small{display:none;}
.esth-feature-text{padding:1.8rem;}
.esth-feature-text h3{font-family:var(--font-display);font-weight:400;font-size:clamp(1.4rem,3vw,2rem);margin-bottom:.8rem;letter-spacing:-.01em;}
.esth-feature-text p{color:var(--color-text-muted);margin:0 0 1.2rem;max-width:46ch;}
@media(min-width:768px){
  .esth-feature{grid-template-columns:1.1fr 1fr;gap:0;}
  .esth-feature-img{height:100%;}
  .esth-feature-img img{aspect-ratio:auto;min-height:340px;}
}
@media(min-width:1000px){
  .esth-feature{grid-template-columns:1fr .7fr 1fr;}
  .esth-feature-img--small{display:block;}
}
.esth-grid{display:grid;gap:1.1rem;}
@media(min-width:680px){.esth-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1000px){.esth-grid{grid-template-columns:repeat(3,1fr);}}
.esth-card{background:var(--color-bg-elevated);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1.6rem;box-shadow:var(--shadow-elevation-1), var(--shadow-glass);transition:transform var(--duration-mid) var(--ease-out-expo);}
@media(hover:hover){.esth-card:hover{transform:translateY(-4px);}}
.esth-card .glass-icon{color:var(--color-accent-2);margin-bottom:1rem;}
.esth-card h3{font-family:var(--font-body);font-size:1.05rem;font-weight:600;margin-bottom:.45rem;}
.esth-card p{font-size:.9rem;color:var(--color-text-muted);margin:0 0 1rem;}
.esth-tag{display:inline-flex;align-items:center;gap:.4rem;font-size:.78rem;font-weight:600;color:var(--color-accent-2);background:rgba(126,140,115,.1);padding:.35rem .75rem;border-radius:999px;}

/* ---------- gallery ---------- */
.gallery{columns:2;column-gap:1rem;}
@media(min-width:900px){.gallery{columns:3;column-gap:1.1rem;}}
.gallery figure{break-inside:avoid;margin:0 0 1rem;border-radius:var(--radius-md);overflow:hidden;position:relative;box-shadow:var(--shadow-elevation-1);}
.gallery img{width:100%;transition:transform var(--duration-slow) var(--ease-out-expo);}
.gallery figcaption{position:absolute;left:0;right:0;bottom:0;padding:1rem .9rem .8rem;font-size:.82rem;color:#fff;background:linear-gradient(180deg,transparent,rgba(35,28,22,.7));opacity:0;transition:opacity var(--duration-mid);}
@media(hover:hover){.gallery figure:hover img{transform:scale(1.06);}.gallery figure:hover figcaption{opacity:1;}}
.gallery .video-card{break-inside:avoid;margin:0 0 1rem;border-radius:var(--radius-md);overflow:hidden;position:relative;box-shadow:var(--shadow-elevation-2);border:1px solid var(--color-border);}
.gallery .video-card video{width:100%;display:block;}
.gallery .video-card .vc-label{position:absolute;top:.7rem;left:.7rem;background:rgba(35,28,22,.55);backdrop-filter:blur(6px);color:#fff;font-size:.72rem;padding:.3rem .65rem;border-radius:999px;display:inline-flex;gap:.35rem;align-items:center;}
.gallery .video-card .vc-label svg{width:13px;height:13px;}

/* ---------- detailed reviews ---------- */
.reviews-grid{display:grid;gap:1.1rem;}
@media(min-width:680px){.reviews-grid{grid-template-columns:repeat(2,1fr);}}
.review-card{background:var(--color-bg-elevated);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1.6rem;box-shadow:var(--shadow-elevation-1), var(--shadow-glass);}
.review-card .stars{margin-bottom:.8rem;}
.review-card .stars svg{width:15px;height:15px;}
.review-card blockquote{margin:0 0 1rem;font-size:1rem;line-height:1.55;color:var(--color-text);}
.review-card .meta{font-size:.82rem;color:var(--color-text-muted);}
.reviews-foot{margin-top:2rem;text-align:center;}
.reviews-foot a{color:var(--color-accent);font-weight:600;border-bottom:1px solid currentColor;padding-bottom:2px;}

/* ---------- reservation CTA dark ---------- */
.cta-dark{position:relative;overflow:hidden;}
.cta-mesh{position:absolute;inset:-30%;z-index:0;background:var(--gradient-mesh);opacity:.20;filter:blur(40px);transform:rotate(18deg);}
.cta-card{position:relative;z-index:1;max-width:680px;margin:0 auto;text-align:center;background:rgba(45,36,28,.55);backdrop-filter:blur(14px);border:1px solid rgba(201,162,75,.25);border-radius:var(--radius-lg);padding:clamp(2.2rem,6vw,3.6rem);box-shadow:var(--shadow-elevation-3), inset 0 1px 0 rgba(255,255,255,.08);}
.cta-card h2{color:#FBF3E8;}
.cta-card .lead{margin:1rem auto 2rem;color:#D8CBBC;}
.cta-card .hero-cta{justify-content:center;}
.cta-card .small-line{margin-top:1.4rem;font-size:.85rem;color:#B7A998;}

/* ---------- infos pratiques ---------- */
.infos-grid{display:grid;gap:2rem;}
@media(min-width:900px){.infos-grid{grid-template-columns:1.1fr .9fr;align-items:stretch;}}
.map-wrap{border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-elevation-2);border:1px solid var(--color-border);min-height:320px;}
.map-wrap iframe{width:100%;height:100%;min-height:340px;border:0;display:block;}
.hours-card{background:var(--color-bg-elevated);border:1px solid var(--color-border);border-radius:var(--radius-md);padding:1.8rem;box-shadow:var(--shadow-elevation-1);}
.hours-card h3{font-family:var(--font-body);font-size:1.05rem;font-weight:600;margin-bottom:1rem;}
.hours-list li{display:flex;justify-content:space-between;padding:.55rem 0;border-bottom:1px dashed var(--color-border);font-size:.95rem;}
.hours-list li:last-child{border:none;}
.hours-list .day{color:var(--color-text-muted);}
.hours-list .closed{color:var(--color-accent-2);font-weight:500;}
.infos-note{margin-top:1.2rem;font-size:.88rem;color:var(--color-text-muted);display:flex;gap:.5rem;align-items:flex-start;}
.infos-note svg{width:16px;height:16px;flex:none;margin-top:2px;color:var(--color-accent);}

/* ---------- footer ---------- */
.footer{padding:4rem 0 2rem;}
.footer-grid{display:grid;gap:2.2rem;}
@media(min-width:768px){.footer-grid{grid-template-columns:1.4fr 1fr 1fr;}}
.footer .brand{font-size:1.6rem;color:#FBF3E8;margin-bottom:.8rem;display:inline-block;}
.footer p,.footer a,.footer li{color:#C6B9AB;font-size:.93rem;}
.footer a:hover{color:var(--color-gold);}
.footer h4{font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;color:var(--color-gold);margin:0 0 1rem;}
.footer-list li{margin-bottom:.5rem;}
.social-row{display:flex;gap:.7rem;margin-top:.4rem;}
.social-row a{width:40px;height:40px;border-radius:12px;border:1px solid rgba(201,162,75,.3);display:flex;align-items:center;justify-content:center;color:#E7D9C7;}
.social-row svg{width:18px;height:18px;}
.footer-bottom{margin-top:3rem;padding-top:1.5rem;border-top:1px solid rgba(201,162,75,.2);display:flex;flex-wrap:wrap;gap:.8rem;justify-content:space-between;align-items:center;font-size:.82rem;color:#9E9081;}
.footer-bottom a{color:#9E9081;}

/* ---------- sticky mobile CTA ---------- */
.sticky-cta{position:fixed;left:0;right:0;bottom:0;z-index:90;padding:.7rem 1rem calc(.7rem + env(safe-area-inset-bottom));background:rgba(251,248,243,.9);backdrop-filter:blur(16px);border-top:1px solid var(--color-border);display:flex;gap:.6rem;transform:translateY(120%);transition:transform var(--duration-mid) var(--ease-out-expo);}
.sticky-cta.show{transform:translateY(0);}
.sticky-cta .btn{flex:1;}
.sticky-cta .btn-call{flex:none;width:52px;}
@media(min-width:980px){.sticky-cta{display:none;}}

/* ---------- progress bar ---------- */
.progress{position:fixed;top:0;left:0;height:3px;width:0;background:var(--gradient-cta);z-index:101;transition:width .1s linear;}

/* ---------- reveal on scroll ---------- */
.reveal{opacity:0;transform:translateY(24px);transition:opacity var(--duration-slow) var(--ease-out-expo), transform var(--duration-slow) var(--ease-out-expo);}
.reveal.in{opacity:1;transform:none;}

/* divider */
.divider{height:1px;background:linear-gradient(90deg,transparent,rgba(201,162,75,.5),transparent);margin:0 auto;max-width:var(--container);}
