/* ============================================================
   BEETS & BEAUTY — Stylesheet v2
   Palette: Forest green, warm gold, ivory, black
   ============================================================ */

:root {
  --gold:       #f4e8c0;
  --green-1:    #4d704f;
  --green-2:    #516e4f;
  --black:      #000000;
  --yellow:     #fbf6ca;
  --white:      #ffffff;
  --off-white:  #fdfcf7;
  --green-dark: #2e4530;
  --green-mid:  #3d5c3f;
  --green-pale: #e8f0e8;
  --gold-deep:  #c9a84c;
  --text-dark:  #0f1a10;
  --text-mid:   #3a4e3b;
  --text-light: #6b806c;
  --skin:       #f5c9a0;
  --skin-dark:  #e8a870;

  --radius:     14px;
  --radius-sm:  8px;
  --trans:      0.32s cubic-bezier(0.4,0,0.2,1);
  --shadow:     0 8px 40px rgba(46,69,48,0.12);
  --shadow-lg:  0 24px 64px rgba(46,69,48,0.2);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
em { font-style: italic; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ---------- TYPOGRAPHY SYSTEM ---------- */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-1);
  margin-bottom: 10px;
}
.section-label.light { color: var(--gold); }

.section-heading {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.08;
  margin-bottom: 16px;
}
.section-heading.light { color: var(--gold); }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 48px;
}
.section-sub.light { color: rgba(244,232,192,0.7); margin-bottom: 40px; }

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: var(--green-1);
  color: var(--gold);
  padding: 13px 32px;
  border-radius: 60px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(77,112,79,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(77,112,79,0.4);
}
.btn-primary.btn-sm { padding: 9px 22px; font-size: 0.8rem; }

.btn-outline {
  display: inline-block;
  color: var(--green-1);
  border: 1.5px solid var(--green-1);
  padding: 12px 30px;
  border-radius: 60px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--trans);
}
.btn-outline:hover { background: var(--green-1); color: var(--gold); transform: translateY(-2px); }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(253,252,247,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(46,69,48,0.08);
  padding: 14px 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-dark);
}
.nav-logo-image { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; }
.logo-text em { color: var(--green-1); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-1); }
.nav-links .nav-cta {
  background: var(--green-1);
  color: var(--gold);
  padding: 9px 22px;
  border-radius: 60px;
  font-size: 0.82rem;
}
.nav-links .nav-cta:hover { background: var(--green-dark); color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--green-dark); border-radius: 2px; transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 299; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed; top: 0; right: -320px; width: 300px; height: 100vh;
  background: var(--off-white); z-index: 300; padding: 80px 40px 48px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 48px rgba(46,69,48,0.15);
  display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px; color: var(--green-dark);
}
.mobile-close svg { width: 22px; height: 22px; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 28px; margin-bottom: auto; }
.mobile-menu a {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem; font-weight: 600; color: var(--green-dark);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--green-1); }
.mobile-social {
  display: flex; gap: 16px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid rgba(77,112,79,0.15);
}
.mobile-social a { color: var(--green-1); }
.mobile-social svg { width: 22px; height: 22px; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--off-white) 0%, var(--yellow) 50%, #e8f0e0 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: radial-gradient(var(--green-1) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--green-1); margin-bottom: 24px;
  animation: fadeUp 0.7s ease both;
}
.hero-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: 0.9;
  color: var(--green-dark);
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.12s ease both;
}
.ht-line { display: block; }
.ht-italic em { color: var(--green-1); font-weight: 600; }
.hero-motto {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.05rem; font-weight: 400; font-style: italic;
  color: var(--text-mid); margin-bottom: 32px; line-height: 1.6;
  animation: fadeUp 0.7s 0.24s ease both;
}
.hero-motto em { color: var(--green-1); }
.hero-pills {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
  animation: fadeUp 0.7s 0.36s ease both;
}
.hero-pills span {
  padding: 6px 16px; background: rgba(77,112,79,0.1);
  border: 1px solid rgba(77,112,79,0.2); border-radius: 60px;
  font-size: 0.78rem; font-weight: 500; color: var(--green-1);
  letter-spacing: 0.04em;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.48s ease both;
}

/* Hero Decoration */
.hero-deco {
  position: relative; display: flex; align-items: center;
  justify-content: center; height: 480px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hd-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(77,112,79,0.2);
  display: none;
}
.r1 { width: 320px; height: 320px; border-color: rgba(77,112,79,0.25); animation: spin 40s linear infinite; }
.r2 { width: 240px; height: 240px; border-color: rgba(201,168,76,0.3); animation: spin 30s linear infinite reverse; }
.r3 { width: 160px; height: 160px; background: rgba(77,112,79,0.06); border: none; }
.hd-badge {
  position: absolute; width: 140px; height: 140px;
  display: none; align-items: center; justify-content: center;
}
.badge-svg { position: absolute; width: 140px; height: 140px; color: var(--green-1); animation: spin 20s linear infinite; }
.badge-center-leaf { width: 32px; height: 32px; color: var(--green-1); position: relative; z-index: 1; }

.hero-logo {
  width: 280px; height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 24px 64px rgba(46,69,48,0.2);
  animation: fadeUp 0.7s 0.2s ease both, spin 20s linear infinite;
}

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-scroll-cue {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  color: var(--green-1); width: 36px; height: 36px; display: flex;
  align-items: center; justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-cue svg { width: 22px; height: 22px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---------- MARQUEE ---------- */
.marquee-wrap {
  background: var(--green-dark); overflow: hidden; padding: 13px 0;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap;
  animation: marquee 22s linear infinite; width: max-content;
}
.marquee-track span {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.marquee-track i { color: var(--gold-deep); font-style: normal; font-size: 0.6rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---------- SERVICES ---------- */
.services-section { padding: 110px 0; background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(77,112,79,0.1);
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  opacity: 0; transform: translateY(24px);
}
.svc-card.visible { opacity: 1; transform: translateY(0); }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, var(--green-1), var(--gold-deep));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.svc-card:hover { transform: translateY(-6px) !important; box-shadow: var(--shadow-lg); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-card.svc-featured {
  background: var(--green-dark);
  border-color: transparent;
  transform: translateY(-6px) !important;
  box-shadow: var(--shadow-lg);
}
.svc-card.svc-featured::after { transform: scaleX(1); background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }
.svc-card.svc-featured h3 { color: var(--gold); }
.svc-card.svc-featured p { color: rgba(244,232,192,0.75); }
.svc-card.svc-featured .svc-list li { color: rgba(244,232,192,0.65); }
.svc-card.svc-featured .svc-list li::before { color: var(--gold-deep); }
.svc-card.svc-featured .svc-link { color: var(--gold); }
.svc-card.svc-featured .svc-icon { color: var(--gold-deep); }

.svc-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold-deep); color: var(--green-dark);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px;
}

.svc-icon {
  width: 52px; height: 52px; color: var(--green-1); margin-bottom: 22px;
  padding: 10px; background: var(--green-pale); border-radius: 12px;
}
.svc-card.svc-featured .svc-icon { background: rgba(255,255,255,0.08); }
.svc-icon svg { width: 100%; height: 100%; }

.svc-card h3 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--green-dark); margin-bottom: 10px;
}
.svc-card p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.65; }

.svc-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 28px; }
.svc-list li {
  font-size: 0.82rem; color: var(--text-mid);
  padding-left: 14px; position: relative;
}
.svc-list li::before {
  content: '–'; position: absolute; left: 0;
  color: var(--green-1); font-weight: 600;
}

.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--green-1);
  letter-spacing: 0.02em; transition: gap 0.2s;
}
.svc-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.svc-link:hover { color: var(--green-dark); }
.svc-link:hover svg { transform: translateX(4px); }

.svc-whatsapp-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: #1da851;
  letter-spacing: 0.02em; transition: color 0.2s;
  margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(77,112,79,0.1);
}
.svc-whatsapp-link:hover { color: #128c42; }
.svc-card.svc-featured .svc-whatsapp-link { color: var(--gold); border-top-color: rgba(255,255,255,0.1); }
.svc-card.svc-featured .svc-whatsapp-link:hover { color: rgba(244,232,192,0.9); }

/* ---------- MOOD SECTION ---------- */
.mood-section {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative; overflow: hidden;
}
.mood-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244,232,192,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}

.mood-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 44px;
}
.mf {
  padding: 9px 22px; border-radius: 60px; font-size: 0.82rem; font-weight: 500;
  color: rgba(244,232,192,0.65); border: 1px solid rgba(244,232,192,0.2);
  transition: var(--trans);
}
.mf:hover, .mf.active {
  background: var(--gold-deep); color: var(--green-dark);
  border-color: var(--gold-deep); transform: translateY(-1px);
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.mood-card {
  border-radius: var(--radius); overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(244,232,192,0.1);
  cursor: pointer; transition: var(--trans);
  opacity: 0; transform: translateY(20px);
}
.mood-card.visible { opacity: 1; transform: translateY(0); }
.mood-card:hover { transform: translateY(-5px) !important; box-shadow: 0 16px 48px rgba(0,0,0,0.3); border-color: rgba(244,232,192,0.25); }

.mood-card-visual {
  height: 180px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.mood-card-visual-icon {
  width: 60px; height: 60px; color: rgba(255,255,255,0.9);
  position: relative; z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.mood-card-visual-icon svg { width: 100%; height: 100%; }
.mood-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35));
}
.mood-card-body { padding: 18px 20px 22px; }
.mood-card-cat {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px;
}
.mood-card-name {
  font-family: 'Bodoni Moda', serif; font-size: 1.15rem; font-weight: 600;
  color: var(--gold); margin-bottom: 6px;
}
.mood-card-desc { font-size: 0.8rem; color: rgba(244,232,192,0.6); line-height: 1.5; }
.mood-card-tap {
  display: flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--gold-deep); text-transform: uppercase;
}
.mood-card-tap svg { width: 12px; height: 12px; transition: transform 0.2s; }
.mood-card:hover .mood-card-tap svg { transform: translateX(4px); }

/* Mood Modal */
.mood-modal {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mood-modal.open { opacity: 1; pointer-events: all; }
.modal-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative; z-index: 1; background: var(--off-white);
  border-radius: 20px; width: 100%; max-width: 520px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  transform: scale(0.94) translateY(16px); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mood-modal.open .modal-card { transform: scale(1) translateY(0); }
.modal-close-btn {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px; background: rgba(0,0,0,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.2s;
}
.modal-close-btn:hover { background: rgba(0,0,0,0.35); }
.modal-close-btn svg { width: 16px; height: 16px; }
.modal-header {
  height: 180px; position: relative; display: flex;
  align-items: center; justify-content: center;
}
.modal-header-icon { width: 64px; height: 64px; color: rgba(255,255,255,0.9); position: relative; z-index: 1; }
.modal-header-icon svg { width: 100%; height: 100%; }
.modal-body { padding: 28px 32px 32px; }
.modal-cat {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green-1); margin-bottom: 6px;
}
.modal-name {
  font-family: 'Bodoni Moda', serif; font-size: 1.7rem; font-weight: 600;
  color: var(--green-dark); margin-bottom: 10px;
}
.modal-description { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.7; }
.modal-includes-block { margin-bottom: 28px; }
.modal-includes-title {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-mid); display: block; margin-bottom: 12px;
}
.modal-includes-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.modal-includes-list li {
  font-size: 0.83rem; color: var(--text-mid);
  padding-left: 14px; position: relative;
}
.modal-includes-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--green-1);
}
.modal-footer-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid rgba(77,112,79,0.12);
}
.modal-from { font-size: 0.72rem; color: var(--text-light); display: block; margin-bottom: 2px; }
.modal-price-val {
  font-family: 'Bodoni Moda', serif; font-size: 1.6rem; font-weight: 600; color: var(--green-1);
}

/* ---------- PALETTE SECTION ---------- */
.palette-section { padding: 110px 0; background: var(--off-white); }

.palette-type-row {
  display: flex; gap: 0; background: var(--green-pale);
  border-radius: 60px; padding: 4px; display: inline-flex; margin-bottom: 48px;
}
.pt-btn {
  padding: 10px 30px; border-radius: 60px; font-size: 0.86rem; font-weight: 500;
  color: var(--text-mid); transition: var(--trans);
}
.pt-btn.active { background: var(--green-1); color: var(--gold); box-shadow: 0 4px 16px rgba(77,112,79,0.25); }

.palette-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start;
}

/* Preview Panel */
.preview-panel {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(77,112,79,0.1);
  padding: 32px 24px; display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  position: sticky; top: 100px;
}

/* FINGERS */
.nail-display { width: 100%; display: flex; justify-content: center; align-items: flex-end; padding: 16px 0; }

.hand-container {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
}
.fingers-group {
  display: flex; align-items: flex-end; gap: 6px;
}
.fnger {
  display: flex; flex-direction: column; align-items: center;
  background: var(--skin); position: relative;
}
.f-pinky  { width: 28px; height: 80px;  border-radius: 40px 40px 10px 10px; }
.f-ring   { width: 30px; height: 96px;  border-radius: 40px 40px 10px 10px; }
.f-middle { width: 30px; height: 104px; border-radius: 40px 40px 10px 10px; }
.f-index  { width: 30px; height: 96px;  border-radius: 40px 40px 10px 10px; }
.f-thumb  {
  width: 28px; height: 64px;
  border-radius: 50px 30px 10px 50px;
  margin-right: 2px;
  margin-left: 2px;
}
.n-nail {
  width: calc(100% - 4px); height: 28px; margin: 2px auto 0;
  border-radius: 30px 30px 5px 5px;
  background: #e0c8a8;
  box-shadow: inset 0 -2px 5px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.15);
  transition: background 0.35s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}
.f-thumb .n-nail {
  height: 22px; border-radius: 30px 16px 5px 5px;
}
.n-body { flex: 1; }
.palm-base {
  width: 136px; height: 20px;
  background: var(--skin-dark); border-radius: 0 0 20px 20px;
  margin-top: -2px;
}

/* TOES */
.foot-container { display: flex; flex-direction: column; align-items: center; }
.toes-row { display: flex; align-items: flex-end; gap: 5px; }
.toe {
  display: flex; flex-direction: column; align-items: center;
  background: var(--skin);
}
.t-big  { width: 36px; height: 56px; border-radius: 36px 36px 10px 10px; }
.t-2    { width: 30px; height: 50px; border-radius: 30px 30px 8px 8px; }
.t-3    { width: 27px; height: 44px; border-radius: 28px 28px 8px 8px; }
.t-4    { width: 24px; height: 38px; border-radius: 24px 24px 6px 6px; }
.t-5    { width: 20px; height: 30px; border-radius: 20px 20px 5px 5px; }
.toe .n-nail { width: calc(100% - 4px); height: 20px; margin: 2px auto 0; border-radius: 20px 20px 4px 4px; }
.t-body { flex: 1; }
.foot-body {
  width: 160px; height: 28px;
  background: var(--skin-dark);
  border-radius: 0 24px 24px 0;
  margin-top: -2px; align-self: flex-start;
}

.hidden { display: none !important; }

.colour-info-row {
  display: flex; align-items: center; gap: 14px; width: 100%;
}
.colour-dot-preview {
  width: 38px; height: 38px; border-radius: 50%;
  background: #e0c8a8; flex-shrink: 0;
  border: 2px solid rgba(77,112,79,0.15);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.3s;
}
.colour-name-display {
  font-family: 'Bodoni Moda', serif; font-size: 1rem; font-weight: 600; color: var(--green-dark);
}
.colour-hex-display { font-size: 0.72rem; color: var(--text-light); font-family: monospace; }

/* Swatches */
.swatches-panel { display: flex; flex-direction: column; gap: 20px; }
.swatch-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.sc-btn {
  padding: 7px 18px; border-radius: 60px; font-size: 0.78rem; font-weight: 500;
  color: var(--text-mid); border: 1px solid rgba(77,112,79,0.2);
  transition: var(--trans);
}
.sc-btn:hover, .sc-btn.active {
  background: var(--green-1); color: var(--gold); border-color: var(--green-1);
}
.swatch-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: 10px; max-height: 400px; overflow-y: auto; padding-right: 6px;
}
.swatch-grid::-webkit-scrollbar { width: 3px; }
.swatch-grid::-webkit-scrollbar-track { background: transparent; }
.swatch-grid::-webkit-scrollbar-thumb { background: var(--green-1); border-radius: 3px; }

.sw-swatch {
  aspect-ratio: 1; border-radius: 50%; cursor: pointer;
  border: 2px solid rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.sw-swatch:hover { transform: scale(1.15); box-shadow: 0 4px 14px rgba(0,0,0,0.25); z-index: 1; }
.sw-swatch.active {
  transform: scale(1.18);
  border: 2.5px solid var(--green-1);
  box-shadow: 0 0 0 3px rgba(77,112,79,0.2), 0 4px 14px rgba(0,0,0,0.2);
}
.sw-swatch[title]:hover::after {
  content: attr(title);
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%); background: var(--green-dark);
  color: var(--gold); font-size: 0.68rem; white-space: nowrap;
  padding: 4px 8px; border-radius: 5px; pointer-events: none;
  font-family: 'Jost', sans-serif; font-weight: 500;
}

/* ---------- PRICING ---------- */
.pricing-section {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-mid) 100%);
  position: relative; overflow: hidden;
}
.pricing-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(244,232,192,0.05) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}

.price-tabs-row {
  display: flex; gap: 0; background: rgba(244,232,192,0.1);
  border-radius: 60px; padding: 4px; display: inline-flex; margin-bottom: 48px;
}
.pr-tab {
  padding: 10px 28px; border-radius: 60px; font-size: 0.86rem; font-weight: 500;
  color: rgba(244,232,192,0.6); transition: var(--trans);
}
.pr-tab.active { background: var(--gold-deep); color: var(--green-dark); box-shadow: 0 4px 16px rgba(201,168,76,0.25); }
.pr-tab:hover:not(.active) { color: var(--gold); }

.price-panels { position: relative; }
.pr-panel { display: none; }
.pr-panel.active { display: block; }

.pr-group { margin-bottom: 36px; }
.pr-group-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(244,232,192,0.12);
}

.pr-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid rgba(244,232,192,0.07);
  font-size: 0.92rem; color: rgba(244,232,192,0.75);
  transition: background 0.2s; padding-left: 0; padding-right: 0;
}
.pr-row:last-child { border-bottom: none; }
.pr-row:hover { color: var(--gold); }
.pr-row span:last-child {
  font-family: 'Bodoni Moda', serif; font-size: 1rem; font-weight: 600;
  color: var(--gold); white-space: nowrap;
}
.pr-row.pr-highlight span:last-child { color: var(--gold-deep); font-size: 1.05rem; }
.pr-row.pr-accent { background: rgba(244,232,192,0.05); padding: 13px 12px; border-radius: 8px; border: none; margin-top: 8px; }
.pr-row.pr-accent span:first-child { color: var(--gold); font-style: italic; }
.pr-row.pr-accent span:last-child { color: var(--gold-deep); }

.pricing-note {
  margin-top: 40px; font-size: 0.8rem; color: rgba(244,232,192,0.4);
  font-style: italic; text-align: center;
}

/* ---------- BOOKING ---------- */
.booking-section {
  padding: 110px 0;
  background: var(--yellow);
  position: relative; overflow: hidden;
}
.booking-deco-ring {
  position: absolute; right: -120px; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(77,112,79,0.12); pointer-events: none;
}
.booking-deco-ring::before {
  content: ''; position: absolute; inset: 40px;
  border-radius: 50%; border: 1px solid rgba(77,112,79,0.08);
}
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.booking-title {
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600;
  color: var(--green-dark); margin-bottom: 18px; line-height: 1.1;
}
.booking-title em { color: var(--green-1); }
.booking-desc { font-size: 0.95rem; color: var(--text-light); margin-bottom: 32px; }

.booking-info-list { display: flex; flex-direction: column; gap: 14px; }
.binfo-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--text-mid);
}
.binfo-row svg { width: 18px; height: 18px; color: var(--green-1); flex-shrink: 0; }

.booking-btns { display: flex; flex-direction: column; gap: 16px; }

.bk-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-radius: var(--radius);
  border: 1.5px solid; transition: var(--trans);
}
.bk-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.bk-call {
  background: var(--white); border-color: rgba(77,112,79,0.2);
}
.bk-call:hover { border-color: var(--green-1); box-shadow: var(--shadow); }

.bk-whatsapp {
  background: rgba(37,211,102,0.08);
  border-color: rgba(37,211,102,0.3);
}
.bk-whatsapp:hover { background: rgba(37,211,102,0.14); border-color: rgba(37,211,102,0.5); }

.bk-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-1); flex-shrink: 0;
}
.bk-whatsapp .bk-icon { background: rgba(37,211,102,0.12); color: #1da851; }
.bk-icon svg { width: 20px; height: 20px; }

.bk-text { flex: 1; }
.bk-label { display: block; font-weight: 600; font-size: 0.95rem; color: var(--green-dark); margin-bottom: 2px; }
.bk-sub { display: block; font-size: 0.78rem; color: var(--text-light); }

.bk-arrow { width: 18px; height: 18px; color: var(--text-light); transition: transform 0.2s; }
.bk-btn:hover .bk-arrow { transform: translateX(4px); color: var(--green-1); }

/* ---------- FOOTER ---------- */
.footer { background: var(--black); padding: 72px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Bodoni Moda', serif; font-size: 1.3rem; font-weight: 600;
  color: var(--gold); margin-bottom: 14px;
}
.footer-logo-image { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; }
.footer-logo em { color: var(--green-1); }
.footer-brand p { font-size: 0.84rem; color: rgba(244,232,192,0.45); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(244,232,192,0.4); transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 20px; height: 20px; }

.footer-col h4 {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col li, .footer-col a {
  font-size: 0.86rem; color: rgba(244,232,192,0.45); transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(244,232,192,0.07);
  padding-top: 24px; display: flex; justify-content: space-between;
  font-size: 0.76rem; color: rgba(244,232,192,0.25);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  background: #1da851;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 150;
  box-shadow: 0 8px 32px rgba(29, 168, 81, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0;
  flex-direction: column;
  gap: 4px;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(29, 168, 81, 0.6);
}
.whatsapp-fab svg { width: 32px; height: 32px; stroke: currentColor; color: white; }
.fab-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: none;
  color: white;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card.svc-featured { transform: translateY(0) !important; }
  .svc-card.svc-featured:hover { transform: translateY(-6px) !important; }
  .hero { grid-template-columns: 1fr; padding: 130px 32px 80px; }
  .hero-deco { display: none; }
  .palette-layout { grid-template-columns: 1fr; }
  .preview-panel { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 20px; }
  .hero { padding: 110px 20px 64px; }
  .hero-title { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .services-section, .mood-section, .palette-section, .pricing-section, .booking-section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .price-tabs-row { display: flex; width: 100%; }
  .pr-tab { flex: 1; padding: 9px 14px; font-size: 0.78rem; text-align: center; }
  .mood-grid { grid-template-columns: 1fr 1fr; }
  .modal-includes-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3.2rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .mood-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .palette-type-row { display: flex; width: 100%; }
  .pt-btn { flex: 1; text-align: center; }
}