/* ============================================================
   ¡Hola Guapa!  —  global stylesheet
   Rose-gold luxury beauty brand
============================================================ */

:root {
  --cream: #f7f2ec;
  --cream-2: #efe6dc;
  --blush: #e9d8cd;
  --rose: #caa093;
  --rose-deep: #a96f72;
  --rose-gold: #b08070;
  --mocha: #3a2d28;
  --mocha-2: #221a17;
  --ink: #2c2320;
  --muted: #8a746c;
  --line: rgba(122, 92, 80, 0.16);
  --gold-grad: linear-gradient(135deg, #d8b89c 0%, #c0917a 42%, #a96f72 100%);
  --gold-text: linear-gradient(135deg, #c79a80, #b07d6e 45%, #a96f72 85%);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-dark: rgba(34, 26, 23, 0.55);
  --shadow-soft: 0 30px 70px -28px rgba(90, 55, 48, 0.4);
  --shadow-card: 0 18px 44px -22px rgba(90, 55, 48, 0.3);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;
  --radius: 18px;
  --maxw: 1240px;
  --nav-h: 78px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* full-page animated backdrop layers */
#bg-canvas {
  position: fixed; inset: 0; z-index: -2; display: block;
}
.bg-wash {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1200px 800px at 15% -10%, #ffeae0 0%, transparent 55%),
    radial-gradient(1000px 700px at 110% 10%, #f6d8cf 0%, transparent 50%),
    radial-gradient(900px 900px at 50% 120%, #f3ddd6 0%, transparent 55%),
    var(--cream);
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
body { font-weight: 400; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.gold {
  background: var(--gold-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 500; margin-bottom: 18px;
}
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.section-head .eyebrow::before, .section-head .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--rose); opacity: .6; }

.section { padding: 120px 0; position: relative; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 68px; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 3.9rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- buttons ---------- */
.btn {
  --pad: 16px 36px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: var(--pad); border-radius: 100px; cursor: pointer;
  font-weight: 500; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  border: none; position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.btn-primary { background: var(--gold-grad); color: #fff; box-shadow: 0 12px 30px -10px rgba(183,110,121,.7); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 45px -12px rgba(183,110,121,.85); }
.btn-ghost { background: transparent; color: var(--rose-deep); border: 1.5px solid rgba(183,110,121,.45); }
.btn-ghost:hover { background: rgba(183,110,121,.08); transform: translateY(-3px); }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); transition: left .6s;
}
.btn:hover::after { left: 140%; }

/* ============================================================
   NAVBAR
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  background: #fdf6f2;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px -20px rgba(120,70,60,.45);
  transition: background .4s, box-shadow .4s;
}
.nav.scrolled {
  background: #fdf6f2;
  box-shadow: 0 10px 30px -16px rgba(120,70,60,.5);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.5rem; }
.nav-logo img { height: 58px; width: auto; }
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  padding: 10px 16px; border-radius: 100px; font-size: .9rem; font-weight: 500;
  color: var(--ink); position: relative; transition: color .3s, background .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; width: 0; height: 2px;
  background: var(--gold-grad); transition: width .3s, left .3s; border-radius: 2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-deep); }
.nav-links a:hover::after, .nav-links a.active::after { width: 26px; left: calc(50% - 13px); }
.nav-cta { margin-left: 10px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: rgba(253,246,242,.97);
  backdrop-filter: blur(20px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 22px;
  opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: none; }
.mobile-menu a { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); }
.mobile-menu a:hover { color: var(--rose-deep); }

/* ============================================================
   HERO + 3D ORBIT
============================================================ */
.hero { min-height: 80vh; display: flex; align-items: center; position: relative; padding-top: var(--nav-h); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; width: 100%; }
.hero-copy h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -.01em; }
.hero-copy h1 .line { display: block; }
.hero-copy p.lead { font-size: 1.15rem; color: #6f5650; margin: 26px 0 34px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 38px; margin-top: 54px; }
.hero-stats .stat .num { font-family: var(--serif); font-size: 2.1rem; color: var(--rose-deep); }
.hero-stats .stat .lbl { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: #8a716b; }

/* the 3D stage */
.orbit-stage {
  position: relative; height: 560px; display: grid; place-items: center;
  perspective: 1100px;
}
.orbit-ring {
  position: absolute; inset: 0; transform-style: preserve-3d;
  transform: rotateX(68deg) rotateZ(0deg);
}

.orbit-item {
  position: absolute; top: 50%; left: 50%; width: 132px; height: 132px;
  margin: -66px 0 0 -66px; transform-style: preserve-3d;
}
.orbit-item .chip {
  width: 100%; height: 100%; border-radius: 50%;
  display: grid; place-items: center; text-align: center; padding: 12px;
  background: var(--glass); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6); box-shadow: var(--shadow-card);
  /* counter the ring tilt so chips face the viewer */
  transform: rotateZ(var(--cz)) rotateX(-68deg);
  transition: transform .4s, box-shadow .4s;
  cursor: pointer;
}
.orbit-item .chip:hover { box-shadow: 0 18px 40px -12px rgba(183,110,121,.5); transform: rotateZ(var(--cz)) rotateX(-68deg) scale(1.06); }
.orbit-item .chip .ic { line-height: 1; margin-bottom: 6px; display: inline-flex; color: var(--rose-deep); }
.orbit-item .chip .ic svg { width: 28px; height: 28px; }
.orbit-item .chip .tt { font-size: .74rem; font-weight: 600; letter-spacing: .04em; color: var(--mocha); }

.orbit-center {
  position: relative; z-index: 3; width: 300px; height: 300px;
  display: grid; place-items: center;
}
.orbit-center .halo {
  position: absolute; inset: 4%; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,180,160,.32), transparent 66%);
  filter: blur(10px);
}
@keyframes pulse { 0%,100%{ transform: scale(1); opacity:.8 } 50%{ transform: scale(1.08); opacity:1 } }
.orbit-center .ring-deco { display: none; }
.orbit-center img { width: 78%; filter: drop-shadow(0 14px 24px rgba(120,70,60,.3)); animation: floaty 6s ease-in-out infinite; transition: filter .6s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) rotate(-2.5deg) } 50%{ transform: translateY(-14px) rotate(2.5deg) } }
/* sweeping sheen over the centre hand */
.orbit-center .sheen { position: absolute; inset: 8%; border-radius: 50%; overflow: hidden; pointer-events: none; z-index: 4; }
.orbit-center .sheen::before { content: ""; position: absolute; top: -60%; left: -30%; width: 50%; height: 220%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.65), transparent); transform: rotate(18deg);
  animation: sheen 5.5s ease-in-out infinite; }
@keyframes sheen { 0%{ left: -40% } 55%,100%{ left: 130% } }
.orbit-hint { position: absolute; bottom: 6px; left: 0; right: 0; text-align: center; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #9a7d77; }

/* calm framed panel (replaces busy rotating circle) */
.logo-panel { position: relative; border-radius: 24px; overflow: hidden; padding: 50px; min-height: 360px;
  display: grid; place-items: center; background: linear-gradient(155deg, var(--cream-2), var(--blush));
  border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.logo-panel img { width: 58%; filter: drop-shadow(0 16px 26px rgba(120,70,60,.22)); animation: floatcard 7.5s ease-in-out infinite; }
.logo-panel::after { content: ""; position: absolute; top: -50%; left: -30%; width: 38%; height: 200%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.5), transparent); transform: rotate(18deg);
  animation: sheen 6.5s ease-in-out infinite; pointer-events: none; }

/* floating sparkles */
.spark { position: absolute; width: 14px; height: 14px; pointer-events: none; opacity: .8;
  background: radial-gradient(circle, #fff 0%, #e8b4a0 40%, transparent 70%); border-radius: 50%;
  animation: twinkle 3.5s ease-in-out infinite; }
@keyframes twinkle { 0%,100%{ transform: scale(.6); opacity:.3 } 50%{ transform: scale(1.2); opacity:1 } }

/* ============================================================
   HERO VISUAL (elegant beauty shot, replaces spin-ring)
============================================================ */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 520px; }
.hv-card { position: relative; width: 100%; max-width: 440px; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft); animation: floatcard 7.5s ease-in-out infinite; }
.hv-card img { width: 100%; display: block; }
.hv-sheen { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hv-sheen::before { content: ""; position: absolute; top: -40%; left: -30%; width: 40%; height: 200%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.5), transparent); transform: rotate(18deg);
  animation: sheen 6s ease-in-out infinite; }
.hv-badge { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  padding: 10px 16px; border-radius: 100px; font-size: .78rem; color: var(--mocha); white-space: nowrap; }
.hv-badge b { font-family: var(--serif); font-size: 1.1rem; color: var(--rose-deep); }
.hv-badge .ic { display: inline-flex; color: var(--rose-deep); } .hv-badge .ic svg { width: 18px; height: 18px; }
.hv-badge-1 { top: 13%; left: -4%; animation: floaty2 6s ease-in-out infinite; }
.hv-badge-2 { bottom: 15%; right: -4%; animation: floaty2 6s ease-in-out .9s infinite; }
@keyframes floaty2 { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-9px) } }
.hv-dot { position: absolute; border-radius: 50%; z-index: 1; opacity: .8; animation: twinkle 4s ease-in-out infinite; }
.hv-dot-1 { width: 16px; height: 16px; background: var(--rose); top: 5%; right: 14%; }
.hv-dot-2 { width: 11px; height: 11px; background: var(--rose-deep); bottom: 8%; left: 10%; animation-delay: 1s; }
.hv-dot-3 { width: 9px; height: 9px; background: #e6b59c; top: 42%; right: 1%; animation-delay: 2s; }

/* hero quick pills */
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--line); font-size: .82rem; color: var(--mocha); transition: .3s; }
.pill .ic { display: inline-flex; color: var(--rose-deep); } .pill .ic svg { width: 17px; height: 17px; }
.pill:hover { background: var(--gold-grad); color: #fff; border-color: transparent; transform: translateY(-2px); }
.pill:hover .ic { color: #fff; }

/* ============================================================
   MARQUEE
============================================================ */
.marquee { overflow: hidden; padding: 26px 0; border-block: 1px solid rgba(183,110,121,.18); background: rgba(255,255,255,.35); }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; width: max-content; animation: scrollx 50s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--rose-deep); display: inline-flex; align-items: center; gap: 60px; }
.marquee span::after { content: "✦"; color: var(--rose); font-style: normal; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ============================================================
   CARDS / SERVICES
============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: var(--glass); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; box-shadow: var(--shadow-card);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s, border-color .5s;
  position: relative; overflow: hidden;
}
.card:hover { border-color: rgba(169,111,114,.3); }
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.5), transparent 40%);
  opacity: 0; transition: opacity .5s;
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-soft); }
.card:hover::before { opacity: 1; }
.card .ic { width: 58px; height: 58px; border-radius: 16px; margin-bottom: 22px; display: inline-grid; place-items: center;
  background: linear-gradient(140deg, rgba(216,184,156,.26), rgba(169,111,114,.16));
  border: 1px solid var(--line); color: var(--rose-deep); }
.card .ic svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: #7a615c; font-size: .96rem; }
.card .price { margin-top: 18px; font-family: var(--serif); font-size: 1.3rem; color: var(--rose-deep); }

/* price list rows */
.price-list { display: flex; flex-direction: column; gap: 4px; }
.price-row { display: flex; align-items: baseline; gap: 14px; padding: 16px 4px; border-bottom: 1px dashed rgba(183,110,121,.25); }
.price-row .name { font-family: var(--serif); font-size: 1.15rem; }
.price-row .dots { flex: 1; border-bottom: 1px dotted rgba(120,70,60,.3); transform: translateY(-4px); }
.price-row .amt { font-weight: 600; color: var(--rose-deep); }
.price-row .desc { display: block; font-size: .82rem; color: #8a716b; font-weight: 400; }

/* ============================================================
   GALLERY 3D COVERFLOW
============================================================ */
.coverflow-wrap { perspective: 1400px; height: 460px; position: relative; display: grid; place-items: center; }
.coverflow { position: relative; width: 320px; height: 420px; transform-style: preserve-3d; }
.cf-card {
  position: absolute; inset: 0; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s;
  background: var(--gold-grad); display: grid; place-items: center; color: #fff;
  font-family: var(--serif); font-size: 1.6rem; text-align: center; padding: 20px;
  border: 4px solid rgba(255,255,255,.4);
}
.cf-card .cf-emoji { display: inline-flex; }
.cf-card .cf-emoji svg { width: 58px; height: 58px; color: #fff; }
.cf-card .cf-tag { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 8px; opacity: .9; font-family: var(--sans); }
.cf-nav { display: flex; gap: 16px; justify-content: center; margin-top: 38px; }
.cf-btn { width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid rgba(183,110,121,.4); background: var(--glass); cursor: pointer; font-size: 1.3rem; color: var(--rose-deep); display: grid; place-items: center; transition: .3s; }
.cf-btn:hover { background: var(--gold-grad); color: #fff; transform: scale(1.08); }

/* tilt gallery grid */
.tilt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tilt { border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; background: var(--gold-grad);
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-card);
  transition: transform .4s; transform-style: preserve-3d; }
.tilt svg { width: 40px; height: 40px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.quote-card { text-align: center; max-width: 720px; margin: 0 auto; }
.quote-card .q { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem,3vw,2rem); color: var(--mocha); }
.quote-card .who { margin-top: 22px; font-weight: 600; color: var(--rose-deep); letter-spacing: .04em; }
.quote-card .stars { color: #e0a45c; letter-spacing: .2em; margin-top: 10px; }
.dots-nav { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.dots-nav button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(183,110,121,.3); cursor: pointer; transition: .3s; }
.dots-nav button.active { background: var(--gold-grad); width: 30px; border-radius: 6px; }

/* ============================================================
   TEAM
============================================================ */
.team-card { text-align: center; }
.team-avatar { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  background: var(--gold-grad); color: #fff; font-family: var(--serif); font-size: 2.6rem; box-shadow: var(--shadow-card);
  border: 4px solid rgba(255,255,255,.6); transition: transform .4s; }
.team-card:hover .team-avatar { transform: translateY(-8px) rotate(-4deg); }
.team-card h3 { font-size: 1.25rem; }
.team-card .role { color: var(--rose-deep); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }

.founder-wrap { display: flex; justify-content: center; }
.founder-card { max-width: 480px; }
.founder-card p { color: #7a615c; }

.pull-quote { margin: 24px 0; padding: 6px 0 6px 20px; border-left: 3px solid var(--rose-deep);
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; line-height: 1.4; color: #5a463f; }

.booksy-embed { min-height: 64px; }
.booksy-embed iframe { max-width: 100%; }
.booksy-alt { margin-top: 16px; font-size: .9rem; color: #7a615c; }
.booksy-alt a { color: var(--rose-deep); font-weight: 500; }

.info-tile a { color: var(--rose-deep); text-decoration: none; }
.info-tile a:hover { text-decoration: underline; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band { background: var(--gold-grad); border-radius: 32px; padding: 70px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.cta-band h2 { font-size: clamp(2rem,4vw,3rem); color: #fff; }
.cta-band p { opacity: .92; margin: 14px auto 30px; max-width: 520px; }
.cta-band .btn-primary { background: #fff; color: var(--rose-deep); }
.cta-band::before, .cta-band::after { content: "✦"; position: absolute; font-size: 7rem; opacity: .15; }
.cta-band::before { top: -10px; left: 30px; }
.cta-band::after { bottom: -20px; right: 40px; }

/* ============================================================
   FORM
============================================================ */
.form-card { background: var(--glass); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-card); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #7a615c; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1.5px solid rgba(183,110,121,.25);
  background: rgba(255,255,255,.6); font-family: var(--sans); font-size: .95rem; color: var(--ink); transition: .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose-deep); box-shadow: 0 0 0 4px rgba(183,110,121,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--gold-grad); color: #fff; padding: 16px 28px; border-radius: 100px; box-shadow: var(--shadow-soft);
  font-weight: 600; z-index: 200; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* chips row */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips .chip-pick { padding: 10px 18px; border-radius: 100px; border: 1.5px solid rgba(183,110,121,.3);
  background: rgba(255,255,255,.5); cursor: pointer; font-size: .85rem; transition: .3s; }
.chips .chip-pick.active, .chips .chip-pick:hover { background: var(--gold-grad); color: #fff; border-color: transparent; }

/* ============================================================
   PAGE HEADER (interior pages)
============================================================ */
.page-hero { padding: calc(var(--nav-h) + 80px) 0 60px; text-align: center; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.page-hero p { color: #7a615c; max-width: 560px; margin: 16px auto 0; }

/* info tiles */
.info-tile { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: 18px; background: var(--glass); border: 1px solid var(--line); }
.info-tile .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: inline-grid; place-items: center;
  background: linear-gradient(140deg, rgba(216,184,156,.26), rgba(169,111,114,.16)); border: 1px solid var(--line); color: var(--rose-deep); }
.info-tile .ic svg { width: 22px; height: 22px; }
.info-tile h4 { font-family: var(--serif); font-size: 1.1rem; }
.info-tile p { font-size: .9rem; color: #7a615c; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--mocha-2); color: #e8d6cf; padding: 70px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer img { height: 54px; margin-bottom: 16px; }
.footer h5 { font-family: var(--serif); font-size: 1.1rem; color: #fff; margin-bottom: 16px; }
.footer a, .footer p { color: #c9b3ab; font-size: .92rem; display: block; padding: 4px 0; transition: color .3s; }
.footer a:hover { color: var(--rose); }
.footer .socials { display: flex; gap: 12px; margin-top: 10px; }
.footer .socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-size: 1rem; transition: background .25s, color .25s, transform .25s; }
.footer .socials a svg { width: 18px; height: 18px; }
.footer .socials a:hover { background: var(--gold-grad); color: #fff; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 24px; text-align: center; font-size: .82rem; color: #9c847c; }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

/* scroll progress bar */
#progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--gold-grad); }

/* custom cursor glow */
#cursor-glow { position: fixed; width: 380px; height: 380px; border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(232,180,160,.25), transparent 65%); transform: translate(-50%,-50%);
  transition: opacity .3s; mix-blend-mode: multiply; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p.lead { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .orbit-stage { height: 460px; margin-top: 20px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tilt-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .grid-3, .grid-2, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tilt-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
  .section { padding: 80px 0; }
  #cursor-glow { display: none; }
}

/* ============================================================
   LANGUAGE SWITCH
============================================================ */
.lang-switch { display: inline-flex; border: 1.5px solid rgba(183,110,121,.3); border-radius: 100px; overflow: hidden; margin: 0 6px; }
.lang-btn { border: 0; background: transparent; padding: 7px 12px; font-size: .76rem; font-weight: 600; letter-spacing: .06em; color: #8a716b; cursor: pointer; transition: .3s; }
.lang-btn.active { background: var(--gold-grad); color: #fff; }
.mobile-menu .lang-switch { transform: scale(1.2); }

/* language dropdown (flags) */
.lang-dd { position: relative; margin: 0 4px; }
.lang-dd-btn { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 100px; border: 1.5px solid rgba(183,110,121,.3); background: rgba(255,255,255,.6); cursor: pointer; font: inherit; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: #7a5b58; transition: border-color .25s, background .25s; }
.lang-dd-btn:hover { border-color: var(--rose); background: #fff; }
.lang-dd-btn .fi { width: 19px; height: 14px; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.lang-caret { width: 13px; height: 13px; transition: transform .25s; opacity: .7; }
.lang-dd.open .lang-caret { transform: rotate(180deg); }
.lang-dd-menu { position: absolute; top: calc(100% + 10px); right: 0; min-width: 184px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 20px 50px -18px rgba(120,70,60,.5); padding: 7px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 130; }
.lang-dd.open .lang-dd-menu { opacity: 1; visibility: visible; transform: none; }
.lang-opt { display: flex; align-items: center; gap: 11px; padding: 9px 12px; border-radius: 11px; border: 0; background: none; cursor: pointer; font: inherit; font-size: .9rem; font-weight: 500; letter-spacing: 0; color: var(--ink); text-align: left; width: 100%; transition: background .2s, color .2s; }
.lang-opt .fi { width: 22px; height: 16px; border-radius: 3px; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.lang-opt:hover { background: var(--cream); color: var(--rose-deep); }
.lang-opt.active { background: var(--gold-grad); color: #fff; }
.lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: min(320px, 82vw); }
.lang-grid .lang-opt { border: 1.5px solid rgba(183,110,121,.3); border-radius: 100px; padding: 9px 12px; font-size: .84rem; justify-content: center; }
.lang-grid .lang-opt .fi { width: 20px; height: 15px; }

/* burger -> X */
.nav-burger.x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.x span:nth-child(2) { opacity: 0; }
.nav-burger.x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* footer logo visibility on dark */
.foot-logo { height: 70px; width: auto; filter: brightness(1.35) saturate(1.15) drop-shadow(0 4px 10px rgba(0,0,0,.3)); }

/* ============================================================
   NAIL TRY-ON (colour only on nails, via CSS mask)
============================================================ */
.nail-tryon { position: relative; display: block; max-width: 500px; margin: 0 auto;
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  animation: floatcard 7s ease-in-out infinite; }
@keyframes floatcard { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }
.nail-tryon .glow { display: none; }
.nail-base { position: relative; z-index: 1; width: 100%; display: block; }
.nail-color, .nail-gloss, .nail-shimmer { position: absolute; inset: 0; pointer-events: none;
  -webkit-mask: url(../assets/nails-mask.png) center / 100% 100% no-repeat;
          mask: url(../assets/nails-mask.png) center / 100% 100% no-repeat; }
.nail-color { z-index: 2; mix-blend-mode: multiply; background: #d9a48f; transition: background .45s ease; }
.nail-gloss { z-index: 3; mix-blend-mode: screen; opacity: .4;
  background: linear-gradient(118deg, rgba(255,255,255,.7) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 100%);
  background-size: 250% 100%; animation: nailshine 4.8s ease-in-out infinite; }
@keyframes nailshine { 0%{ background-position: 120% 0 } 55%,100%{ background-position: -40% 0 } }
.nail-shimmer { z-index: 4; opacity: 0; transition: opacity .45s; mix-blend-mode: screen;
  background:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1px, transparent 1.6px) 0 0 / 9px 9px,
    radial-gradient(circle, rgba(255,255,255,.8) 0 1px, transparent 1.6px) 4px 5px / 13px 13px;
  animation: glitter 1.7s steps(2, jump-none) infinite; }
.nail-tryon.shimmer-on .nail-shimmer { opacity: .8; }
@keyframes glitter { 0%{ transform: translate(0,0) } 50%{ transform: translate(2px,2px) } 100%{ transform: translate(0,0) } }
.tryon-badge { position: absolute; top: 14px; left: 14px; z-index: 5; background: rgba(34,26,23,.55);
  backdrop-filter: blur(6px); color: #fff; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; }

.tryon-zoom { position: absolute; top: 12px; right: 12px; z-index: 6; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5); background: rgba(34,26,23,.55); backdrop-filter: blur(6px); color: #fff;
  display: grid; place-items: center; cursor: pointer; transition: background .25s, transform .25s; }
.tryon-zoom svg { width: 18px; height: 18px; }
.tryon-zoom:hover { transform: translateY(-1px); }
.tryon-zoom.active { background: var(--gold-grad); border-color: transparent; }
.nail-tryon.zoom-on { cursor: none; }
.tryon-lens { position: absolute; left: 0; top: 0; width: 156px; height: 156px; border-radius: 50%; overflow: hidden;
  border: 3px solid rgba(255,255,255,.9); box-shadow: 0 12px 32px rgba(0,0,0,.28); pointer-events: none; z-index: 7;
  display: none; }
.nail-tryon.zoom-on .tryon-lens.show { display: block; }
.lens-hand { position: absolute; left: 0; top: 0; max-width: none; display: block; }
.lens-color { position: absolute; left: 0; top: 0; mix-blend-mode: multiply; background: #d9a48f; transition: background .45s ease;
  -webkit-mask: url(../assets/nails-mask.png) center / 100% 100% no-repeat;
          mask: url(../assets/nails-mask.png) center / 100% 100% no-repeat; }
.lens-shimmer { position: absolute; left: 0; top: 0; opacity: 0; transition: opacity .45s; mix-blend-mode: screen;
  background:
    radial-gradient(circle, rgba(255,255,255,.95) 0 1.6px, transparent 2.6px) 0 0 / 16px 16px,
    radial-gradient(circle, rgba(255,255,255,.8) 0 1.6px, transparent 2.6px) 7px 9px / 22px 22px;
  animation: glitter 1.7s steps(2, jump-none) infinite;
  -webkit-mask: url(../assets/nails-mask.png) center / 100% 100% no-repeat;
          mask: url(../assets/nails-mask.png) center / 100% 100% no-repeat; }
.nail-tryon.shimmer-on .lens-shimmer { opacity: .85; }

/* Semilac shade categories + swatches */
.swatch-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.shade-tab { font: inherit; font-size: .78rem; letter-spacing: .03em; padding: 6px 13px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--glass); color: #7a615c; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .2s; }
.shade-tab:hover { transform: translateY(-1px); color: var(--rose-deep); }
.shade-tab.active { background: var(--gold-grad); color: #fff; border-color: transparent; box-shadow: 0 6px 16px -8px rgba(120,70,60,.5); }
.swatches { display: grid; grid-template-columns: repeat(auto-fill, 44px); gap: 12px; margin-top: 14px;
  max-height: 360px; overflow-y: auto; padding: 6px 8px 6px 2px; }
.swatches::-webkit-scrollbar { width: 8px; }
.swatches::-webkit-scrollbar-thumb { background: var(--gold-grad); border-radius: 8px; }
.swatches::-webkit-scrollbar-track { background: rgba(183,110,121,.1); border-radius: 8px; }
.swatch { width: 44px; height: 44px; border-radius: 50%; cursor: pointer; border: 3px solid #fff;
  box-shadow: 0 6px 16px -6px rgba(120,70,60,.5); transition: transform .3s, box-shadow .3s; position: relative; }
.swatch:hover { transform: scale(1.14) translateY(-3px); z-index: 2; }
.swatch.active { transform: scale(1.18) translateY(-3px); box-shadow: 0 0 0 3px rgba(183,110,121,.5), 0 10px 22px -8px rgba(120,70,60,.6); }
.swatch.active::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: .95rem; text-shadow: 0 1px 3px rgba(0,0,0,.45); }
.swatch.shimmer::before { content: "✦"; position: absolute; top: -3px; right: -3px; font-size: .7rem; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.5); }
.swatch-hint { font-size: .78rem; color: #9a7d77; margin-top: 10px; letter-spacing: .04em; }
.swatch-note { font-size: .76rem; line-height: 1.5; color: #a98f88; margin-top: 8px; padding: 10px 14px;
  background: var(--glass); border: 1px solid var(--line); border-radius: 12px; max-width: 440px; }
.shade-name-wrap { margin-top: 18px; font-size: 1.05rem; color: #7a615c; }
.shade-name-wrap b { font-family: var(--serif); font-size: 1.35rem; transition: color .4s; }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--glass); border: 1px solid rgba(255,255,255,.6); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-soft); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; cursor: pointer; font-family: var(--serif); font-size: 1.15rem; color: var(--mocha); }
.faq-q .plus { width: 30px; height: 30px; min-width: 30px; border-radius: 50%; background: var(--gold-grad); color: #fff; display: grid; place-items: center; font-size: 1.1rem; transition: transform .4s; }
.faq-item.open .plus { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s ease, padding .45s ease; padding: 0 26px; color: #7a615c; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 26px 24px; }

/* ============================================================
   CARE TIMELINE
============================================================ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.tl-step { text-align: center; position: relative; padding-top: 20px; }
.tl-step .dot { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--gold-grad); color: #fff;
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.6rem; box-shadow: var(--shadow-card); position: relative; z-index: 2; }
.tl-step:not(:last-child)::after { content: ""; position: absolute; top: 52px; left: 60%; width: 80%; height: 2px; background: repeating-linear-gradient(90deg, rgba(183,110,121,.4) 0 8px, transparent 8px 16px); z-index: 1; }
.tl-step h4 { font-family: var(--serif); font-size: 1.15rem; }
.tl-step p { font-size: .9rem; color: #7a615c; }

/* ============================================================
   RESPONSIVE — extra breakpoints
============================================================ */
@media (max-width: 1080px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding: 9px 11px; font-size: .85rem; }
  .nav-cta { display: none; }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .tl-step::after { display: none; }
}
@media (max-width: 760px) {
  .shade-stage { height: 360px; }
  .orbit-stage { height: 420px; }
  .hero { min-height: auto; padding-bottom: 40px; }
}
@media (max-width: 560px) {
  .nav-logo { font-size: 1.25rem; gap: 9px; }
  .nav-logo img { height: 46px; }
  .timeline { grid-template-columns: 1fr; }
  .orbit-item { width: 104px; height: 104px; margin: -52px 0 0 -52px; }
  .orbit-item .chip .ic { font-size: 1.4rem; }
  .orbit-item .chip .tt { font-size: .66rem; }
  .cta-band { padding: 50px 24px; }
  .page-hero { padding-top: calc(var(--nav-h) + 50px); }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   COMING SOON
============================================================ */
.cs-body { min-height: 100vh; display: grid; place-items: center; text-align: center;
  padding: 48px 22px; position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, #fbf1ea 0%, var(--cream) 55%, var(--cream-2) 100%); }
.cs-glow { position: fixed; border-radius: 50%; filter: blur(40px); z-index: 0; pointer-events: none;
  will-change: opacity; background: radial-gradient(circle, rgba(202,160,147,.5), transparent 70%);
  animation: cspulse 9s ease-in-out infinite; }
.cs-glow-1 { width: 320px; height: 320px; top: -70px; left: -50px; }
.cs-glow-2 { width: 280px; height: 280px; bottom: -60px; right: -40px; animation-delay: -4.5s;
  background: radial-gradient(circle, rgba(169,111,114,.4), transparent 70%); }
@keyframes cspulse { 0%,100% { opacity: .3 } 50% { opacity: .52 } }

.cs-lang { position: fixed; top: 16px; right: 16px; z-index: 30; }
.cs-lang .lang-dd { position: static; }
.cs-lang .lang-dd-btn { background: var(--glass); }
.cs-lang .lang-dd-menu { right: 0; left: auto; top: calc(100% + 10px); }
.cs-lang-btn { border: 0; background: transparent; cursor: pointer; font-family: var(--sans);
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: var(--muted);
  padding: 6px 13px; border-radius: 100px; transition: background .25s, color .25s; }
.cs-lang-btn.active { background: var(--gold-grad); color: #fff; }

.cs-wrap { position: relative; z-index: 2; max-width: 720px; animation: csrise .9s ease both; }
@keyframes csrise { from { opacity: 0; transform: translateY(18px) } to { opacity: 1; transform: none } }
.cs-logo { width: min(248px, 58vw); height: auto; margin: 0 auto 6px;
  filter: drop-shadow(0 20px 32px rgba(120,70,60,.18)); transition: transform .12s ease; }
.cs-eyebrow { text-transform: uppercase; letter-spacing: .34em; font-size: .7rem; font-weight: 500;
  color: var(--rose-deep); margin-bottom: 14px; }
.cs-title { font-family: var(--serif); font-weight: 600; line-height: 1.06;
  font-size: clamp(2rem, 5.4vw, 3.4rem); color: var(--ink); }
.cs-title .gold { background: var(--gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cs-lead { color: var(--muted); max-width: 470px; margin: 16px auto 32px; font-size: 1.05rem; }

.cs-countdown { display: flex; justify-content: center; gap: 14px; margin: 0 0 16px; flex-wrap: wrap; }
.cs-when { color: var(--rose-deep); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  margin: 0 0 30px; font-weight: 500; }
.cs-unit { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid var(--line);
  border-radius: 18px; padding: 16px 12px; min-width: 86px; box-shadow: var(--shadow-card); }
.cs-unit b { display: block; font-family: var(--serif); font-weight: 600; font-size: 2.5rem; line-height: 1;
  color: var(--rose-deep); font-variant-numeric: tabular-nums; }
.cs-unit span { text-transform: uppercase; letter-spacing: .18em; font-size: .6rem; color: var(--muted); }
.cs-countdown.cs-live .cs-unit b { color: var(--rose); }

.cs-form { display: flex; gap: 10px; justify-content: center; max-width: 460px; margin: 0 auto 8px; flex-wrap: wrap; }
.cs-form input { flex: 1; min-width: 210px; padding: 14px 20px; border-radius: 100px; border: 1px solid var(--line);
  background: #fff; font-family: var(--sans); font-size: .95rem; color: var(--ink); transition: border-color .3s; }
.cs-form input:focus { outline: none; border-color: var(--rose); }
.cs-msg { min-height: 22px; font-size: .9rem; color: var(--rose-deep); margin-bottom: 18px; }

.cs-social { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cs-social a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  color: var(--rose-deep); text-decoration: none; background: var(--glass); border: 1px solid var(--line);
  transition: background .25s, color .25s, transform .25s; }
.cs-social a svg { width: 20px; height: 20px; }
.cs-social a:hover { background: var(--gold-grad); color: #fff; transform: translateY(-2px); }

.cs-lock { position: fixed; bottom: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(6px); color: var(--muted);
  font-size: .6rem; cursor: pointer; z-index: 10; opacity: .5; transition: opacity .3s, transform .3s; }
.cs-lock:hover { opacity: 1; transform: scale(1.1); color: var(--rose-deep); }

.cs-modal { position: fixed; inset: 0; display: none; place-items: center; z-index: 20;
  background: rgba(34,26,23,.42); backdrop-filter: blur(5px); }
.cs-modal.open { display: grid; animation: csrise .25s ease both; }
.cs-card { background: var(--cream); border: 1px solid var(--line); border-radius: 22px; padding: 30px;
  width: min(370px, 90vw); box-shadow: var(--shadow-soft); text-align: left; }
.cs-card-title { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--ink); }
.cs-card-text { color: var(--muted); font-size: .92rem; margin: 6px 0 18px; }
.cs-card input { width: 100%; padding: 13px 18px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; font-family: var(--sans); font-size: .95rem; color: var(--ink); }
.cs-card input:focus { outline: none; border-color: var(--rose); }
.cs-card-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }
.cs-card-err { min-height: 18px; color: #b4452f; font-size: .85rem; margin-top: 10px; }

@media (max-width: 480px) {
  .cs-unit { min-width: 70px; padding: 13px 8px; }
  .cs-unit b { font-size: 2rem; }
}
