/* 
   HAND CANDY — DIGITAL EXPERIENCE
   Main Stylesheet
   Optimized for Performance & Maintainability
*/

:root {
  /* ── BRAND PALETTE ──────────────────────── */
  --white:       #FFFAF9;
  --blush-light: #FCE8ED;
  --blush-mid:   #F4C5D0;
  --pink:        #E8829A;
  --pink-deep:   #C9607A;
  --gold:        #C9A96E;
  --gold-light:  #EDD9B0;
  --plum:        #2A1A1F;
  --plum-mid:    #6B4050;
  --muted:       #B08090;
  --border:      rgba(232, 130, 154, 0.18);
  --border-gold: rgba(201, 169, 110, 0.25);
  
  /* ── TRANSITIONS ───────────────────────── */
  --ts-fast: 0.2s ease;
  --ts-mid:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ────────────────────────── */
*, *::before, *::after { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--plum);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Subtle noise overlay */
body::after {
  content: '';
  position: fixed; 
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; 
  z-index: 9999; 
  opacity: 0.5;
}

/* ── SHARED COMPONENTS ────────────────────── */
.section-label {
  font-size: 0.7rem; 
  letter-spacing: 0.3em; 
  text-transform: uppercase;
  color: var(--pink); 
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  font-weight: 300; 
  line-height: 1.15; 
  color: var(--plum);
}

.section-title em { 
  font-style: italic; 
  color: var(--pink); 
}

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

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

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 130, 154, 0.25);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--plum);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.btn-ghost {
  background: none;
  color: rgba(255, 250, 249, 0.8);
  padding: 0.6rem 0;
  border-bottom: 1.5px solid transparent;
}

.btn-ghost:hover {
  color: var(--blush-mid);
  border-bottom-color: var(--pink);
  transform: translateX(5px);
}

.btn-pink-outline {
  background: none;
  color: var(--plum);
  border: 1.5px solid var(--pink);
  font-weight: 500;
}

.btn-pink-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 130, 154, 0.2);
}

/* ── NAV ──────────────────────────────────── */
nav {
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 100;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 1.1rem 4rem;
  background: rgba(255, 250, 249, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  transition: all var(--ts-mid);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; 
  font-weight: 500;
  color: var(--plum); 
  letter-spacing: 0.06em;
  text-decoration: none; 
  transition: color var(--ts-fast);
}

.nav-logo span { color: var(--pink); }

.nav-links { 
  display: flex; 
  gap: 2.5rem; 
  list-style: none; 
}

.nav-links a {
  font-size: 0.78rem; 
  letter-spacing: 0.14em; 
  text-transform: uppercase;
  color: var(--plum-mid); 
  text-decoration: none; 
  transition: color var(--ts-fast);
}

.nav-links a:hover { color: var(--pink); }

.nav-book {
  padding: 0.7rem 1.6rem;
  background: var(--gold); 
  color: var(--plum); 
  border: none;
  font-family: inherit; 
  font-size: 0.75rem;
  font-weight: 500; 
  letter-spacing: 0.14em; 
  text-transform: uppercase;
  cursor: pointer; 
  transition: all var(--ts-fast);
}

.nav-book:hover { 
  background: var(--pink); 
  color: var(--white); 
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ── MENU TOGGLE (Mobile Only) ────────────── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── MOBILE MENU OVERLAY ──────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active { transform: translateX(0); }

.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--plum);
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.menu-close:hover { color: var(--pink); }

.mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--plum);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.mobile-link:hover { color: var(--pink); }

.mobile-book-btn {
  margin-top: 2rem;
  width: 100%;
  max-width: 280px;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative; 
  height: 100vh; 
  min-height: 680px;
  overflow: hidden;
  background: linear-gradient(160deg, #3D1A26 0%, #5C2438 40%, #8A3D56 100%);
}

.hero-bg {
  position: absolute; 
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(232, 130, 154, 0.35) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(201, 169, 110, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 85%, rgba(244, 197, 208, 0.15) 0%, transparent 50%);
}

.hero-particles { 
  position: absolute; 
  inset: 0; 
  overflow: hidden; 
}

.particle {
  position: absolute; 
  border-radius: 50%; 
  opacity: 0;
  animation: float-particle var(--dur, 6s) ease-in-out infinite var(--delay, 0s);
}

@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(0) rotate(0deg); }
  20%  { opacity: 0.8; transform: translateY(-15px) scale(1) rotate(45deg); }
  80%  { opacity: 0.3; transform: translateY(-70px) scale(0.7) rotate(180deg); }
  100% { opacity: 0; transform: translateY(-110px) scale(0) rotate(270deg); }
}

.hero-stripe {
  position: absolute; 
  right: 0; 
  top: 0; 
  bottom: 0; 
  width: 42%;
  background: rgba(244, 197, 208, 0.06);
  border-left: 1px solid rgba(232, 130, 154, 0.15);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
  position: relative; 
  z-index: 2;
  padding: 0 4rem;
  height: 100%;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.7rem; 
  letter-spacing: 0.32em; 
  text-transform: uppercase;
  color: var(--gold-light); 
  margin-bottom: 1.75rem;
  opacity: 0; 
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 300; 
  line-height: 1.07;
  color: var(--white); 
  margin-bottom: 1.5rem;
  opacity: 0; 
  animation: fadeUp 0.9s ease forwards 0.5s;
}

.hero-title em { 
  font-style: italic; 
  color: var(--blush-mid); 
}

.hero-sub {
  font-size: 1rem; 
  font-weight: 300; 
  line-height: 1.75;
  color: rgba(255, 250, 249, 0.65); 
  max-width: 460px; 
  margin-bottom: 2.75rem;
  opacity: 0; 
  animation: fadeUp 0.9s ease forwards 0.7s;
}

.hero-actions {
  display: flex; 
  gap: 1.25rem; 
  align-items: center;
  opacity: 0; 
  animation: fadeUp 0.9s ease forwards 0.9s;
}

.hero-stats {
  position: absolute; 
  right: 0; 
  top: 50%; 
  transform: translateY(-50%);
  width: 42%; 
  padding: 0 4rem;
  display: flex; 
  flex-direction: column; 
  gap: 0;
  opacity: 0; 
  animation: fadeIn 1.2s ease forwards 1.1s;
}

.hstat {
  text-align: center; 
  padding: 2.5rem 1rem;
  border-bottom: 1px solid rgba(232, 130, 154, 0.12);
}

.hstat:last-child { border-bottom: none; }

.hstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; 
  font-weight: 300; 
  color: var(--white); 
  line-height: 1;
}

.hstat-num b { color: var(--blush-mid); font-weight: 300; }

.hstat-label {
  font-size: 0.68rem; 
  letter-spacing: 0.25em; 
  text-transform: uppercase;
  color: rgba(255, 250, 249, 0.4); 
  margin-top: 0.4rem;
}

.hero-scroll {
  position: absolute; 
  bottom: 2.5rem; 
  left: 4rem;
  display: flex; 
  align-items: center; 
  gap: 1rem;
  color: rgba(255, 250, 249, 0.35); 
  font-size: 0.68rem; 
  letter-spacing: 0.2em; 
  text-transform: uppercase;
  opacity: 0; 
  animation: fadeUp 0.9s ease forwards 1.3s;
}

.scroll-line {
  width: 40px; 
  height: 1px;
  background: rgba(232, 130, 154, 0.3); 
  position: relative; 
  overflow: hidden;
}

.scroll-line::after {
  content: ''; 
  position: absolute; 
  left: -100%; 
  top: 0; 
  width: 100%; 
  height: 100%;
  background: var(--pink); 
  animation: slide-line 2s ease-in-out infinite;
}

@keyframes slide-line { 
  to { left: 200%; } 
}

/* ── SUB-PAGE HERO ────────────────────────── */
.sub-hero {
  position: relative;
  padding: 12rem 4rem 6rem;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sub-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.sub-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--plum);
  margin-top: 0.5rem;
}

.sub-hero-title em {
  font-style: italic;
  color: var(--pink);
}

/* ── TRUST BAR ─────────────────────────────── */
.trust-bar {
  background: var(--pink); 
  padding: 1.1rem 0; 
  overflow: hidden;
}

.trust-track {
  display: flex; 
  gap: 4rem;
  animation: marquee 22s linear infinite; 
  width: max-content;
}

.trust-item {
  display: flex; 
  align-items: center; 
  gap: 0.6rem;
  white-space: nowrap; 
  color: rgba(255, 250, 249, 0.9);
  font-size: 0.72rem; 
  letter-spacing: 0.16em; 
  text-transform: uppercase;
}

.trust-item .star { color: var(--gold-light); }
.trust-item strong { color: var(--white); font-weight: 500; }

@keyframes marquee { 
  from { transform: translateX(0); } 
  to { transform: translateX(-50%); } 
}

/* ── CRAFT ─────────────────────────────────── */
.craft {
  padding: 8rem 4rem;
  background: var(--white);
  display: grid; 
  grid-template-columns: 1fr 2fr; 
  gap: 5rem; 
  align-items: start;
}

.craft-desc {
  font-size: 1rem; 
  font-weight: 300; 
  line-height: 1.8;
  color: var(--plum-mid); 
  margin-top: 1.5rem; 
  max-width: 340px;
}

.craft-pillars {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 0;
  border: 1px solid var(--border);
}

.pillar {
  padding: 2.75rem 2.25rem;
  border-right: 1px solid var(--border);
  position: relative; 
  overflow: hidden;
  transition: background var(--ts-fast);
}

.pillar:last-child { border-right: none; }

.pillar::before {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0;
  width: 100%; 
  height: 2px; 
  background: var(--pink);
  transform: scaleX(0); 
  transform-origin: left; 
  transition: transform var(--ts-mid);
}

.pillar:hover::before { transform: scaleX(1); }
.pillar:hover { background: var(--blush-light); }

.pillar-num {
  font-family: 'Cormorant Garamond', serif; 
  font-size: 2.8rem;
  font-weight: 300; 
  color: rgba(232, 130, 154, 0.2); 
  line-height: 1; 
  margin-bottom: 1.25rem;
}

.pillar-title {
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.35rem;
  font-weight: 500; 
  color: var(--plum); 
  margin-bottom: 0.6rem;
}

.pillar-desc { 
  font-size: 0.84rem; 
  font-weight: 300; 
  line-height: 1.7; 
  color: var(--muted); 
}

/* ── SERVICES ──────────────────────────────── */
.services { 
  padding: 8rem 4rem; 
  background: var(--blush-light); 
}

.services-header {
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  margin-bottom: 3.5rem;
}

.view-all {
  font-size: 0.73rem; 
  letter-spacing: 0.14em; 
  text-transform: uppercase;
  font-weight: 500;
  color: var(--plum); 
  text-decoration: none;
  border-bottom: 1.5px solid var(--pink); 
  padding-bottom: 4px; 
  transition: all var(--ts-fast);
}

.view-all:hover { 
  color: var(--pink);
  border-color: var(--plum); 
}

.services-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.25rem; 
}

.service-card {
  background: var(--white); 
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  position: relative; 
  overflow: hidden; 
  transition: all var(--ts-mid); 
  cursor: pointer;
}

.service-card::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  border: 1.5px solid var(--pink); 
  opacity: 0; 
  transition: opacity var(--ts-mid);
}

.service-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 40px rgba(232, 130, 154, 0.15); 
}

.service-card:hover::after { opacity: 1; }

.service-icon { 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blush-light);
  color: var(--pink);
  margin-bottom: 1.25rem;
  transition: all var(--ts-fast);
}

.service-card:hover .service-icon {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.08) rotate(3deg);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.45rem;
  font-weight: 500; 
  color: var(--plum); 
  margin-bottom: 0.5rem;
}

.service-desc { 
  font-size: 0.82rem; 
  font-weight: 300; 
  color: var(--muted); 
  line-height: 1.65; 
  margin-bottom: 1.5rem; 
}

.service-meta { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.service-price {
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.4rem; 
  font-weight: 400; 
  color: var(--pink);
}

.service-duration { 
  font-size: 0.72rem; 
  letter-spacing: 0.08em; 
  color: var(--muted); 
}

.service-cta {
  display: block; 
  margin-top: 1.5rem; 
  text-align: center;
  padding: 0.65rem 1.25rem; 
  border: 1px solid var(--border);
  color: var(--pink); 
  font-size: 0.72rem; 
  letter-spacing: 0.14em; 
  text-transform: uppercase;
  cursor: pointer; 
  background: none; 
  font-family: inherit;
  transition: all var(--ts-fast); 
  width: 100%;
}

.service-cta:hover { 
  background: var(--pink); 
  color: var(--white); 
  border-color: var(--pink); 
}

/* ── TEAM ──────────────────────────────────── */
.team { padding: 8rem 4rem; background: var(--white); }
.team-header { text-align: center; margin-bottom: 4.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.tech-card { 
  position: relative; 
  overflow: hidden; 
  cursor: pointer; 
}

.tech-avatar {
  width: 100%; 
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--blush-light), var(--blush-mid));
  position: relative; 
  overflow: hidden; 
  margin-bottom: 1.15rem;
}

.tech-avatar-inner {
  position: absolute; 
  inset: 0;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; 
  font-weight: 300; 
  color: rgba(232, 130, 154, 0.35); 
  letter-spacing: -0.05em;
}

.tech-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(to top, rgba(42, 26, 31, 0.75) 0%, transparent 55%);
  opacity: 0; 
  transition: opacity var(--ts-mid);
  display: flex; 
  align-items: flex-end; 
  padding: 1.25rem;
}

.tech-card:hover .tech-overlay { opacity: 1; }

.tech-overlay-btn {
  width: 100%; 
  padding: 0.7rem;
  background: var(--pink); 
  color: var(--white); 
  border: none;
  font-family: inherit; 
  font-size: 0.72rem;
  letter-spacing: 0.13em; 
  text-transform: uppercase; 
  cursor: pointer; 
  font-weight: 500;
  transition: background var(--ts-fast);
}

.tech-overlay-btn:hover { 
  background: var(--gold); 
  color: var(--plum); 
}

.tech-name { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.25rem; 
  font-weight: 500; 
  color: var(--plum); 
  margin-bottom: 0.2rem; 
}

.tech-role { 
  font-size: 0.72rem; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  color: var(--muted); 
  margin-bottom: 0.4rem; 
}

.tech-rating { 
  display: flex; 
  align-items: center; 
  gap: 0.35rem; 
  font-size: 0.78rem; 
  color: var(--gold); 
}

/* ── GALLERY ───────────────────────────────── */
.gallery { 
  padding: 8rem 4rem; 
  background: var(--blush-light); 
}

.gallery-header { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  margin-bottom: 3.5rem; 
}

.gallery-masonry {
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 1rem;
}

.gallery-item {
  border: 1px solid var(--border);
  overflow: hidden; 
  cursor: pointer;
  transition: transform var(--ts-mid), box-shadow var(--ts-mid); 
  position: relative;
}

.gallery-item:hover { 
  transform: scale(1.025); 
  box-shadow: 0 8px 32px rgba(232, 130, 154, 0.2); 
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(4) { 
  grid-row: span 2; 
}

.gallery-thumb {
  width: 100%; 
  height: 100%; 
  min-height: 200px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  flex-direction: column; 
  gap: 0.75rem; 
  text-align: center;
  font-family: 'Cormorant Garamond', serif; 
  font-style: italic;
  color: var(--muted); 
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--bg1, var(--blush-light)), var(--bg2, var(--blush-mid)));
  padding: 2rem;
}

.gallery-thumb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--pink);
  backdrop-filter: blur(8px);
  margin-bottom: 0.25rem;
  transition: all var(--ts-fast);
  box-shadow: 0 4px 16px rgba(232, 130, 154, 0.15);
}

.gallery-item:hover .gallery-thumb-icon {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.1) rotate(6deg);
}

.gallery-thumb-icon svg {
  width: 24px;
  height: 24px;
}

.gallery-tag {
  position: absolute; 
  bottom: 0.75rem; 
  left: 0.75rem;
  font-size: 0.62rem; 
  letter-spacing: 0.14em; 
  text-transform: uppercase;
  color: var(--white); 
  background: var(--pink); 
  padding: 0.3rem 0.65rem;
}

/* ── BOOKING ───────────────────────────────── */
.booking-section { 
  padding: 8rem 4rem; 
  background: var(--white); 
  position: relative; 
  overflow: hidden; 
}

.booking-section::before {
  content: ''; 
  position: absolute; 
  top: -150px; 
  right: -150px;
  width: 500px; 
  height: 500px; 
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232, 130, 154, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.booking-inner { 
  display: grid; 
  grid-template-columns: 1fr 1.45fr; 
  gap: 5.5rem; 
  align-items: start; 
}

.booking-text .section-title { margin-bottom: 1.4rem; }
.booking-desc { font-size: 0.95rem; font-weight: 300; line-height: 1.8; color: var(--plum-mid); margin-bottom: 2rem; }

.booking-features { 
  list-style: none; 
  display: flex; 
  flex-direction: column; 
  gap: 0.7rem; 
}

.booking-features li { 
  display: flex; 
  align-items: center; 
  gap: 0.75rem; 
  font-size: 0.84rem; 
  color: var(--plum-mid); 
}

.booking-features li::before { 
  content: ''; 
  width: 16px; 
  height: 1.5px; 
  background: var(--pink); 
  flex-shrink: 0; 
}

/* Widget */
.booking-widget {
  background: var(--plum); 
  padding: 2.75rem;
  position: relative; 
  border: 1px solid rgba(232, 130, 154, 0.15);
}

.booking-widget::before {
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  right: 0; 
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--pink));
}

/* Steps */
.booking-steps {
  display: flex; 
  gap: 0; 
  margin-bottom: 2.25rem;
  border-bottom: 1px solid rgba(232, 130, 154, 0.12);
}

.bstep {
  flex: 1; 
  padding: 0.7rem 0.4rem; 
  text-align: center;
  font-size: 0.66rem; 
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  color: rgba(255, 250, 249, 0.25); 
  border-bottom: 2px solid transparent;
  margin-bottom: -1px; 
  transition: all var(--ts-mid);
}

.bstep.active { color: var(--pink); border-bottom-color: var(--pink); }
.bstep.done { color: rgba(255, 250, 249, 0.45); }

.booking-panel { display: none; }
.booking-panel.active { display: block; }

/* Service select */
.service-select-list { 
  display: flex; 
  flex-direction: column; 
  gap: 0.65rem; 
}

.service-select-item {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 0.95rem 1.1rem; 
  border: 1px solid rgba(232, 130, 154, 0.12);
  cursor: pointer; 
  transition: all var(--ts-fast); 
  background: transparent;
  text-align: left; 
  width: 100%; 
  font-family: inherit;
}

.service-select-item:hover, 
.service-select-item.selected {
  border-color: var(--pink); 
  background: rgba(232, 130, 154, 0.06);
}

.ssi-name { font-size: 0.88rem; color: var(--white); }
.ssi-meta { font-size: 0.73rem; color: var(--pink); }

/* Tech select */
.tech-select-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 0.65rem; 
}

.tech-select-item {
  padding: 1.1rem 0.85rem; 
  border: 1px solid rgba(232, 130, 154, 0.12);
  cursor: pointer; 
  transition: all var(--ts-fast); 
  text-align: center;
  background: transparent; 
  font-family: inherit; 
  width: 100%;
}

.tech-select-item:hover, 
.tech-select-item.selected {
  border-color: var(--pink); 
  background: rgba(232, 130, 154, 0.06);
}

.tsi-avatar {
  width: 40px; 
  height: 40px; 
  border-radius: 50%;
  background: rgba(232, 130, 154, 0.15);
  margin: 0 auto 0.6rem;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.1rem; 
  color: var(--pink);
}

.tsi-name { font-size: 0.84rem; color: var(--white); margin-bottom: 0.2rem; }
.tsi-role { font-size: 0.67rem; color: var(--muted); }

/* Date/time */
.time-label { 
  font-size: 0.7rem; 
  letter-spacing: 0.16em; 
  text-transform: uppercase; 
  color: var(--muted); 
  margin-bottom: 0.7rem; 
}

.date-scroller { 
  display: flex; 
  gap: 0.5rem; 
  overflow-x: auto; 
  margin-bottom: 1.4rem; 
  padding-bottom: 0.25rem; 
  scrollbar-width: none; 
}

.date-scroller::-webkit-scrollbar { display: none; }

.date-chip {
  flex-shrink: 0; 
  padding: 0.7rem 1rem;
  border: 1px solid rgba(232, 130, 154, 0.12); 
  cursor: pointer; 
  text-align: center;
  transition: all var(--ts-fast); 
  background: none; 
  font-family: inherit;
}

.date-chip:hover, 
.date-chip.selected { 
  border-color: var(--pink); 
  background: rgba(232, 130, 154, 0.08); 
}

.date-chip .day { 
  font-size: 0.62rem; 
  letter-spacing: 0.1em; 
  color: var(--muted); 
  text-transform: uppercase; 
}

.date-chip .date { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.3rem; 
  color: var(--white); 
  line-height: 1; 
  margin-top: 0.15rem; 
}

.time-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 0.45rem; 
}

.time-chip {
  padding: 0.65rem 0.4rem; 
  border: 1px solid rgba(232, 130, 154, 0.12);
  cursor: pointer; 
  text-align: center; 
  font-size: 0.78rem;
  color: rgba(255, 250, 249, 0.65); 
  transition: all var(--ts-fast);
  background: none; 
  font-family: inherit;
}

.time-chip:hover, 
.time-chip.selected { 
  border-color: var(--pink); 
  color: var(--pink); 
  background: rgba(232, 130, 154, 0.06); 
}

.time-chip.unavailable { opacity: 0.22; cursor: not-allowed; }

/* Confirm */
.confirm-summary {
  background: rgba(232, 130, 154, 0.05); 
  border: 1px solid rgba(232, 130, 154, 0.12);
  padding: 1.4rem; 
  margin-bottom: 1.25rem;
}

.confirm-row {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  padding: 0.55rem 0; 
  border-bottom: 1px solid rgba(232, 130, 154, 0.07);
  font-size: 0.84rem;
}

.confirm-row:last-child { border-bottom: none; }
.confirm-row .label { color: var(--muted); }
.confirm-row .value { color: var(--white); }
.confirm-row .value.pink { color: var(--pink); font-family: 'Cormorant Garamond', serif; font-size: 1rem; }

.input-row { margin-bottom: 0.85rem; }

.booking-input {
  width: 100%; 
  padding: 0.8rem 1rem;
  background: rgba(232, 130, 154, 0.05); 
  border: 1px solid rgba(232, 130, 154, 0.12);
  color: var(--white); 
  font-family: inherit; 
  font-size: 0.84rem;
  outline: none; 
  transition: border-color var(--ts-fast);
}

.booking-input:focus { border-color: rgba(232, 130, 154, 0.5); }
.booking-input::placeholder { color: rgba(232, 130, 154, 0.3); }

.booking-nav {
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  margin-top: 1.75rem; 
  padding-top: 1.4rem;
  border-top: 1px solid rgba(232, 130, 154, 0.1);
}

.btn-back {
  background: none; 
  border: none; 
  color: rgba(255, 250, 249, 0.35);
  font-size: 0.72rem; 
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  cursor: pointer; 
  font-family: inherit; 
  transition: color var(--ts-fast);
}

.btn-back:hover { color: var(--white); }

.btn-next {
  padding: 0.8rem 2rem; 
  background: var(--pink); 
  color: var(--white); 
  border: none;
  font-family: inherit; 
  font-size: 0.76rem; 
  font-weight: 500;
  letter-spacing: 0.13em; 
  text-transform: uppercase; 
  cursor: pointer; 
  transition: all var(--ts-fast);
}

.btn-next:hover { background: var(--gold); color: var(--plum); }
.btn-next:disabled { opacity: 0.3; cursor: not-allowed; }

/* Booking success */
.booking-success { 
  text-align: center; 
  padding: 2rem 0; 
  display: none; 
}

.success-icon {
  width: 56px; 
  height: 56px; 
  border: 1.5px solid var(--pink); 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin: 0 auto 1.25rem; 
  font-size: 1.4rem; 
  color: var(--pink);
}

.success-title { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.75rem; 
  font-weight: 300; 
  color: var(--white); 
  margin-bottom: 0.65rem; 
}

.success-sub { 
  font-size: 0.84rem; 
  color: var(--muted); 
  line-height: 1.65; 
}

/* ── REVIEWS ───────────────────────────────── */
.reviews { 
  padding: 8rem 4rem; 
  background: var(--plum); 
  overflow: hidden; 
}

.reviews-header { text-align: center; margin-bottom: 4rem; }
.reviews-header .section-title { color: var(--white); }

.reviews-score {
  margin-top: 1.5rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 1.25rem;
}

.score-num { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 4rem; 
  font-weight: 300; 
  color: var(--pink); 
  line-height: 1; 
}

.score-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.score-total { font-size: 0.75rem; color: rgba(255, 250, 249, 0.4); margin-top: 0.25rem; }

.reviews-track {
  display: flex; 
  gap: 1.25rem;
  animation: marquee-reviews 28s linear infinite; 
  width: max-content;
}

.reviews-track:hover { animation-play-state: paused; }

@keyframes marquee-reviews { 
  from { transform: translateX(0); } 
  to { transform: translateX(-50%); } 
}

.review-card {
  flex-shrink: 0; 
  width: 300px;
  background: rgba(255, 250, 249, 0.04); 
  border: 1px solid rgba(232, 130, 154, 0.12);
  padding: 1.85rem;
}

.review-stars { 
  color: var(--gold); 
  font-size: 0.78rem; 
  margin-bottom: 0.85rem; 
  letter-spacing: 0.1em; 
}

.review-text {
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1rem;
  font-style: italic; 
  font-weight: 300; 
  line-height: 1.7;
  color: rgba(255, 250, 249, 0.6); 
  margin-bottom: 1.1rem;
}

.review-author { 
  font-size: 0.68rem; 
  letter-spacing: 0.14em; 
  text-transform: uppercase; 
  color: var(--muted); 
}

/* ── CONTACT ───────────────────────────────── */
.contact {
  padding: 7rem 4rem; 
  background: var(--blush-light);
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 6rem; 
  align-items: center;
}

.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem); 
  font-weight: 300; 
  line-height: 1.1; 
  margin-bottom: 2rem;
  color: var(--plum);
}

.contact-title em { font-style: italic; color: var(--pink); }

.contact-actions { 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
}

.contact-btn {
  display: inline-flex; 
  align-items: center; 
  gap: 1rem; 
  padding: 1rem 2rem;
  font-family: inherit; 
  font-size: 0.78rem; 
  font-weight: 500;
  letter-spacing: 0.13em; 
  text-transform: uppercase;
  cursor: pointer; 
  text-decoration: none; 
  transition: all var(--ts-mid);
  border: none;
}

.contact-btn.whatsapp { background: #25D366; color: white; }
.contact-btn.whatsapp:hover { background: #1aad55; }

.contact-btn.pink-outline { 
  background: none; 
  color: var(--pink); 
  border: 1.5px solid var(--pink); 
}

.contact-btn.pink-outline:hover { 
  background: var(--pink); 
  color: var(--white); 
}

.contact-info { 
  display: flex; 
  flex-direction: column; 
  gap: 2rem; 
}

.info-label { 
  font-size: 0.65rem; 
  letter-spacing: 0.22em; 
  text-transform: uppercase; 
  color: var(--muted); 
  margin-bottom: 0.35rem; 
}

.info-value { 
  font-size: 0.95rem; 
  color: var(--plum); 
  line-height: 1.6; 
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--plum);
  text-decoration: none;
  transition: color var(--ts-fast), transform var(--ts-fast);
  width: fit-content;
}

.social-link:hover {
  color: var(--pink);
  transform: translateX(5px);
}

.social-link svg {
  color: var(--pink);
  transition: transform var(--ts-mid);
}

.social-link:hover svg {
  transform: rotate(12deg) scale(1.1);
}

.hours-grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 0; 
}

.hour-row { 
  display: flex; 
  justify-content: space-between; 
  font-size: 0.82rem; 
  padding: 0.35rem 0; 
  border-bottom: 1px solid var(--border); 
}

.hour-row:last-child { border-bottom: none; }
.hour-row .day { color: var(--muted); }
.hour-row .time { color: var(--plum); font-weight: 400; }

/* ── MAP ───────────────────────────────────── */
.map-container {
  width: 100%;
  height: 450px;
  background: var(--blush-light);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 30px rgba(232, 130, 154, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--plum); 
  padding: 2.25rem 4rem;
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  border-top: 1px solid rgba(232, 130, 154, 0.1);
}

.footer-logo { 
  font-family: 'Cormorant Garamond', serif; 
  font-size: 1.2rem; 
  color: var(--white); 
  letter-spacing: 0.07em; 
}

.footer-logo span { color: var(--pink); }

.footer-links { display: flex; gap: 2rem; }

.footer-links a { 
  font-size: 0.7rem; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  color: rgba(255, 250, 249, 0.3); 
  text-decoration: none; 
  transition: color var(--ts-fast); 
}

.footer-links a:hover { color: var(--pink); }

.footer-social {
  display: flex;
  gap: 1.25rem;
  margin: 0 2rem;
}

.footer-social a {
  color: rgba(255, 250, 249, 0.3);
  transition: all var(--ts-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  color: var(--pink);
  transform: translateY(-3px);
}

.footer-credit { 
  font-size: 0.65rem; 
  color: rgba(255, 250, 249, 0.18); 
  letter-spacing: 0.07em; 
}

.footer-credit span { color: var(--gold); }

/* ── WHATSAPP FLOAT ────────────────────────── */
.wa-float {
  position: fixed; 
  bottom: 2rem; 
  right: 2rem; 
  z-index: 200;
  width: 52px; 
  height: 52px; 
  background: #25D366; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); 
  transition: transform var(--ts-mid), box-shadow var(--ts-mid);
}

.wa-float:hover { 
  transform: scale(1.1); 
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5); 
}

.wa-float svg { width: 25px; height: 25px; fill: white; }

.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid #25D366;
  border-radius: 50%;
  animation: wa-pulse 2s infinite;
  opacity: 0;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── ANIMATIONS ────────────────────────────── */
@keyframes fadeUp { 
  from { opacity: 0; transform: translateY(22px); } 
  to { opacity: 1; transform: translateY(0); } 
}

@keyframes fadeIn { 
  from { opacity: 0; } 
  to { opacity: 1; } 
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 1.1rem 2rem; }
  .hero-content { padding: 0 2rem; }
  .hero-stats { padding: 0 2rem; width: 35%; }
  .hero-stripe { width: 35%; }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-book { display: none; }
  .menu-toggle { display: flex; }
  
  .hero-content { padding: 0 1.5rem; max-width: 100%; text-align: center; align-items: center; }
  .hero-sub { margin-inline: auto; }
  .hero-stats, .hero-stripe, .hero-scroll { display: none; }
  
  .sub-hero { padding: 10rem 1.5rem 4rem; text-align: center; align-items: center; min-height: 40vh; }
  .sub-hero-content { margin: 0 auto; }

  .craft, .booking-inner, .contact { 
    grid-template-columns: 1fr; 
    gap: 3.5rem; 
    padding: 5rem 1.5rem; 
  }
  
  .craft-text { text-align: center; }
  .craft-desc { margin-inline: auto; }
  
  .craft-pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  
  .services, .team, .gallery, .reviews { padding: 5.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-header, .gallery-header { flex-direction: column; text-align: center; align-items: center; gap: 1.25rem; }
  
  .team-grid, 
  .gallery-masonry { 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem;
  }
  
  .booking-text { text-align: center; }
  .booking-features { display: inline-block; text-align: left; margin: 1.5rem auto 0; }
  
  .contact-info { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hours-grid { display: inline-block; text-align: left; margin: 0 auto; width: 100%; max-width: 280px; }

  footer { 
    flex-direction: column; 
    gap: 2rem; 
    text-align: center; 
    padding: 3.5rem 1.5rem; 
  }
  
  .footer-links { 
    flex-direction: column;
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .sub-hero-title { font-size: 2.8rem; }
  
  .team-grid, 
  .gallery-masonry { 
    grid-template-columns: 1fr; 
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { 
    grid-row: span 1; 
  }

  .tech-avatar { aspect-ratio: 1/1; }
  
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .contact-actions { flex-direction: column; }
}
