@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Flag Language Dropdown ---- */
.flag-icon {
  border-radius: 3px;
  vertical-align: middle;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border: 1px solid var(--light-grey);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
  line-height: 1;
}

.lang-dropdown-btn:hover {
  border-color: var(--emerald);
  background: rgba(45, 106, 79, 0.04);
}

.lang-chevron {
  transition: transform 0.2s;
}

.lang-dropdown.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: white;
  border: 1px solid var(--light-grey);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 1100;
  min-width: 160px;
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}

.lang-option:hover {
  background: rgba(45, 106, 79, 0.06);
}

.lang-option.active {
  background: rgba(45, 106, 79, 0.1);
  color: var(--emerald);
  font-weight: 600;
}

.lang-option span {
  font-size: 1.15rem;
}

/* ---- Navbar User Icon ---- */
.navbar-user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--emerald);
  transition: all 0.2s;
}

.navbar-user-icon:hover {
  background: rgba(45, 106, 79, 0.1);
}

.navbar-user-icon::after {
  display: none !important;
}

/* ============================================
   LEMON NAILS BAR — Design System
   Inspired by Chillhouse & Paintbox
   ============================================ */

:root {
  /* Brand Colors */
  --emerald: #2D8C4E;
  --emerald-dark: #1E6B3A;
  --emerald-light: #3AAF62;
  --lemon: #F5E642;
  --lemon-light: #FFF9A5;
  --lemon-pale: #FFFDE0;
  /* Neutrals */
  --cream: #ffffff;
  --warm-white: #ffffff;
  --off-white: #ffffff;
  --sage: #C8E6A0;
  --sage-light: #E8F5D6;
  --rich-black: #1A1A1A;
  --charcoal: #333333;
  --grey: #888888;
  --light-grey: #E5E5E5;
  /* Accent */
  --pink-cta: #E8836A;
  --pink-hover: #D4705A;
  --gold: #C9A84C;
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-impact: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-max: 1200px;
  --container-wide: 1400px;
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.3s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(45, 140, 78, 0.15);
}

/* Yellow accent — brand lemon highlight for titles */
.yellow-accent {
  color: var(--lemon) !important;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--rich-black);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-emerald {
  color: var(--emerald);
}

.text-lemon {
  color: var(--lemon);
}

.bg-cream {
  background: var(--cream);
}

.bg-emerald {
  background: var(--emerald);
  color: white;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Buttons — Chillhouse style: peach/neutral toned, uppercase impact */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  font-family: var(--font-impact);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--emerald);
  color: white;
  border: 1px solid var(--emerald);
}

.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
}

.btn-secondary:hover {
  background: var(--emerald);
  color: white;
  transform: translateY(-2px);
}

.btn-pink {
  background: var(--pink-cta);
  color: white;
  border: 1px solid var(--pink-cta);
}

.btn-pink:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Section titles — editorial italic + impact uppercase */
.section-label {
  font-family: var(--font-impact);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--emerald);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--emerald);
}

.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--rich-black);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   NAVBAR — Clean, minimal like Paintbox
   ============================================ */
.navbar {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img {
  height: 56px;
  width: auto;
  transition: height var(--transition-base);
}

.navbar.scrolled .navbar-logo img {
  height: 44px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition-base);
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--emerald);
  transition: width var(--transition-base);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--rich-black);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
  width: 100%;
}

.navbar-cta {
  padding: 10px 24px !important;
  border: 1px solid var(--emerald) !important;
  font-family: var(--font-impact) !important;
  color: white !important;
  background: var(--emerald) !important;
}

.navbar-cta:hover {
  background: var(--emerald) !important;
  color: white !important;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language switcher — old (hidden, replaced by flag dropdown) */
.lang-switcher {
  display: none !important;
}

/* Desktop CTA in navbar actions */
.navbar-cta-desktop {
  background: var(--emerald) !important;
  color: #fff !important;
  border-color: var(--emerald) !important;
  font-size: 0.65rem !important;
  padding: 8px 18px !important;
  border-radius: 30px !important;
  letter-spacing: 1px;
  white-space: nowrap;
}

.navbar-cta-desktop:hover {
  background: #1a5c3a !important;
}

/* Mobile lang switcher — shows flags inline in burger menu */
.lang-switcher-mobile {
  display: none;
}

/* Announcement bar */
.announcement-bar {
  background: var(--lemon);
  text-align: center;
  padding: 8px 16px;
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-bar p {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rich-black);
  margin: 0;
}

.announcement-bar a {
  color: var(--rich-black);
  text-decoration: underline;
  font-weight: 700;
}

.announce-code {
  display: inline-block;
  background: var(--emerald);
  color: #fff !important;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 4px;
  font-size: 0.72rem;
  vertical-align: middle;
  line-height: 1.4;
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--emerald);
  transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: flex;
  }

  /* Mobile nav reorder: burger left, logo center, user right */
  .navbar .container {
    position: relative;
  }
  .navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .navbar-actions {
    order: -1;
  }
  .navbar-actions .lang-dropdown {
    display: none;
  }
  .navbar-actions .navbar-user-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
  }
  .navbar-actions .navbar-user-icon svg {
    width: 24px;
    height: 24px;
  }
  .navbar-actions .mobile-toggle {
    order: -1;
    margin-left: -4px;
  }

  .navbar-nav {
    position: fixed;
    top: 0;
    left: -100%;
    right: auto;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    flex-direction: column;
    gap: 0;
    background: var(--warm-white);
    padding: 100px 40px 40px;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.1);
    transition: left var(--transition-slow);
  }

  .navbar-nav.open {
    left: 0;
  }

  .navbar-nav a {
    font-size: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--light-grey);
    width: 100%;
  }

  .navbar-cta {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 998;
    transition: opacity var(--transition-base);
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* ============================================
   HERO — Chillhouse editorial, italic serif huge
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-bg img.active,
.hero-bg video.active {
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 800px;
  padding: 0 24px;
  margin-left: clamp(24px, 8vw, 120px);
}

.hero-logo {
  width: 160px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.0;
}

.hero-title span {
  color: var(--lemon);
}

.hero-title .hero-title-upper {
  font-family: var(--font-impact);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: white;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ============================================
   MARQUEE — Uppercase impact
   ============================================ */
.marquee-section {
  background: var(--emerald);
  padding: 8px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
  align-items: center;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-impact);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  line-height: 1;
}

.marquee-track span::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lemon);
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

/* ============================================
   ABOUT / MEET THE ARTIST
   ============================================ */
.about-section {
  padding: var(--section-padding) 0;
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: visible;
}

.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 300;
}

.about-signature {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--emerald);
  margin-top: 24px;
}

.about-role {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-sticker {
    display: none;
  }
}

/* About section stickers - relative to photo */
.about-section {
  position: relative;
  overflow: visible;
}

.about-image {
  position: relative;
  overflow: visible !important;
}

.about-sticker {
  position: absolute;
  font-family: var(--font-impact);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  z-index: 10;
  pointer-events: none;
  animation: floatSticker 6s ease-in-out infinite;
  white-space: nowrap;
  --rot: 0deg;
}

.about-sticker-1 {
  top: 10px;
  right: -20px;
  background: var(--emerald);
  color: #fff;
  border-radius: 30px;
  --rot: 8deg;
  animation-delay: 0s;
}

.about-sticker-2 {
  bottom: 80px;
  right: -50px;
  background: var(--lemon);
  color: var(--rich-black);
  border-radius: 4px;
  --rot: -5deg;
  animation-delay: 1.5s;
}

.about-sticker-3 {
  top: 60px;
  left: -20px;
  background: var(--rich-black);
  color: #fff;
  border-radius: 20px 4px 20px 4px;
  --rot: -12deg;
  animation-delay: 3s;
}

.about-sticker-4 {
  bottom: -5px;
  left: 10px;
  background: var(--emerald);
  color: #fff;
  border-radius: 4px 20px 4px 20px;
  --rot: 6deg;
  animation-delay: 4.5s;
}

@keyframes floatSticker {

  0%,
  100% {
    transform: rotate(var(--rot)) translateY(0);
  }

  50% {
    transform: rotate(var(--rot)) translateY(-8px);
  }
}

/* Lemon mask for video - perfect circle with yellow border */
.experience-lemon-mask {
  overflow: hidden !important;
  border-radius: 50%;
  border: 6px solid var(--lemon);
  box-shadow: 12px 16px 40px rgba(0, 0, 0, 0.12);
  transform: none;
  transform-origin: center center;
  aspect-ratio: 1;
  width: 480px;
  max-width: 80vw;
  height: auto;
  max-height: none;
  margin-left: auto;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.experience-lemon-mask video,
.experience-lemon-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-lemon-mask:hover {
  transform: scale(1.03);
  box-shadow: 16px 20px 50px rgba(0, 0, 0, 0.18);
}

/* ============================================
   SERVICES — Card grid, clean
   ============================================ */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: white;
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--emerald);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--emerald);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--grey);
  font-size: 0.9rem;
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.service-price {
  font-family: var(--font-impact);
  font-size: 1.1rem;
  color: var(--emerald);
  letter-spacing: 1px;
}

.service-price small {
  font-size: 0.75rem;
  color: var(--grey);
  font-weight: 400;
}

/* ============================================
   GALLERY — Clean grid, no rounded corners like Paintbox
   ============================================ */
.gallery-section {
  padding: var(--section-padding) 0;
  background: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 4px;
  margin-top: 48px;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .gallery-zoom {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-family: var(--font-impact);
  font-size: 0.75rem;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity var(--transition-base);
  text-transform: uppercase;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: transparent;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  opacity: 0.6;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-nav:hover {
  opacity: 0.6;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ============================================
   REVIEWS — On dark background like Chillhouse mission section
   ============================================ */
.reviews-section {
  padding: var(--section-padding) 0;
  background: var(--emerald-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.reviews-section .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.reviews-section .section-label::before {
  background: rgba(255, 255, 255, 0.4);
}

.reviews-section .section-title {
  color: white;
  font-style: italic;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 48px 0 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 360px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
  padding: 36px;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.review-stars {
  color: var(--lemon);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.review-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.review-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
}

.review-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-body);
}

/* ============================================
   INSTAGRAM — Edge-to-edge grid like Chillhouse
   ============================================ */
.instagram-section {
  padding: var(--section-padding) 0;
  background: transparent;
  text-align: center;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 48px;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-item:hover img {
  transform: scale(1.08);
}

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.instagram-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   LOCATION & MAP
   ============================================ */
.location-section {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.location-map {
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-info {
  padding: 24px 0;
}

.location-info h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 1.5;
}

.info-content p {
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 300;
}

.info-content strong {
  color: var(--rich-black);
  font-weight: 500;
}

.hours-table {
  width: 100%;
  margin-top: 8px;
}

.hours-table tr td {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.hours-table tr td:first-child {
  font-weight: 400;
}

.hours-table tr td:last-child {
  text-align: right;
  color: var(--rich-black);
  font-weight: 600;
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER — Dark, minimal
   ============================================ */
/* ---- Bottom Banner (3-Column CTA) ---- */
.bottom-banner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  width: 100%;
}

.banner-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.banner-card:hover img {
  transform: scale(1.04);
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.banner-overlay h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.2;
}

.btn-banner {
  display: inline-block;
  padding: 8px 22px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-banner:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}

@media (max-width: 768px) {
  .bottom-banner {
    grid-template-columns: 1fr;
  }

  .banner-card {
    aspect-ratio: 16 / 9;
  }

  .banner-overlay h3 {
    font-size: 1.2rem;
  }
}

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-newsletter {
  text-align: center;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--emerald);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--emerald);
  color: #fff;
  border: 1px solid var(--emerald);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #1a5c3a;
  border-color: #1a5c3a;
}

.newsletter-success {
  color: var(--emerald);
  font-size: 0.95rem;
  font-family: var(--font-display);
  font-style: italic;
}

.footer-address-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-address-link:hover {
  color: var(--emerald);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}

/* Large script brand name */
.footer-brand-big {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-link {
  display: block;
}

.footer-logo-img {
  width: clamp(160px, 20vw, 240px);
  height: auto;
  display: block;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.footer-location svg {
  flex-shrink: 0;
  color: var(--lemon);
}

/* Link columns */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer h4 {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  transition: color var(--transition-base);
  font-weight: 400;
}

.footer ul li a:hover {
  color: var(--lemon);
}

/* CTA block */
.footer-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}

.footer-cta-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--lemon);
  font-weight: 300;
}

.footer-book-btn {
  font-size: 0.75rem !important;
  padding: 12px 36px !important;
  letter-spacing: 2px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  font-style: italic;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer-cta-block {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* ============================================
   COOKIE CONSENT — Minimal bar
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--emerald-dark);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.cookie-text a {
  color: white;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner .btn-primary {
  background: white;
  color: var(--rich-black);
  border-color: white;
  font-size: 0.72rem;
}

.cookie-banner .btn-secondary {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
}

.cookie-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* ============================================
   CHATBOT — Sleek, dark panel
   ============================================ */
/* ==========================================================
   CHATBOT — Premium Lemon Assistant
   ========================================================== */
.chatbot-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--emerald);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.chatbot-fab svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s;
}

.chatbot-fab.active svg {
  transform: rotate(90deg);
}

.chatbot-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(45, 106, 79, 0.5);
}

.chatbot-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9001;
  width: 370px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 160px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: none;
  flex-direction: column;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot-panel.open {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header */
.chatbot-header {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
  padding: 24px 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px 20px 0 0;
}

.chatbot-header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.chatbot-header-title h4 {
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
}

.chatbot-header-title p {
  font-size: 0.75rem;
  opacity: 0.7;
  margin: 2px 0 0;
}

.chatbot-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Body */
.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Welcome */
.cb-welcome {
  padding: 24px 20px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cb-welcome h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--rich-black);
  margin: 0 0 4px;
}

.cb-welcome p {
  font-size: 0.85rem;
  color: var(--charcoal);
  margin: 0;
}

/* Menu Items */
.cb-menu {
  padding: 8px 0;
}

.cb-menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.cb-menu-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.cb-menu-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.cb-menu-icon.green {
  background: rgba(45, 106, 79, 0.1);
  color: var(--emerald);
}

.cb-menu-icon.yellow {
  background: rgba(245, 230, 66, 0.2);
  color: #b8960c;
}

.cb-menu-icon.blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.cb-menu-icon.orange {
  background: rgba(234, 88, 12, 0.1);
  color: #ea580c;
}

.cb-menu-icon.pink {
  background: rgba(190, 24, 93, 0.1);
  color: #be185d;
}

.cb-menu-icon.teal {
  background: rgba(13, 148, 136, 0.1);
  color: #0d9488;
}

.cb-menu-text {
  display: flex;
  flex-direction: column;
}

.cb-menu-text strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rich-black);
}

.cb-menu-text span {
  font-size: 0.78rem;
  color: var(--charcoal);
  margin-top: 2px;
}

.cb-menu-arrow {
  margin-left: auto;
  color: #ccc;
  font-size: 1rem;
}

/* Sub-page */
.cb-subpage {
  animation: cbSlideIn 0.25s ease;
}

@keyframes cbSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cb-back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--emerald);
  font-weight: 600;
  font-family: var(--font-body);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  width: 100%;
  text-align: left;
}

.cb-back:hover {
  background: rgba(0, 0, 0, 0.02);
}

.cb-info-card {
  padding: 20px;
}

.cb-info-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: var(--rich-black);
}

.cb-info-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0 0 8px;
}

.cb-info-card a.cb-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--emerald);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s;
}

.cb-info-card a.cb-action-btn:hover {
  background: var(--emerald-dark);
}

/* Service list in chatbot */
.cb-service-list {
  padding: 0 20px 20px;
}

.cb-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.85rem;
}

.cb-service-item:last-child {
  border-bottom: none;
}

.cb-service-item span:first-child {
  color: var(--rich-black);
  font-weight: 500;
}

.cb-service-item span:last-child {
  color: var(--emerald);
  font-weight: 600;
}

/* Messages area (for booking flow) */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  border-radius: 14px;
  animation: chatIn 0.3s ease;
}

@keyframes chatIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

.chat-msg.bot {
  background: var(--off-white);
  color: var(--rich-black);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-msg.user {
  background: var(--emerald);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-options {
  padding: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chatbot-option {
  padding: 8px 16px;
  font-size: 0.78rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  color: var(--charcoal);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.chatbot-option:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(45, 106, 79, 0.05);
}

/* ============================================
   PRICING PAGE
   ============================================ */
.page-hero {
  padding: 150px 5% 15px;
  background: var(--lemon-pale);
  text-align: center;
  border-bottom: none;
}

.page-hero h1 {
  font-family: var(--font-impact);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--rich-black);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.page-hero p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--emerald);
  letter-spacing: 1px;
  margin-top: 8px;
}

.pricing-section {
  padding: 50px 0 var(--section-padding);
}

.pricing-category {
  margin-bottom: 48px;
}

.pricing-category-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--rich-black);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light-grey);
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-base);
}

.pricing-item:hover {
  padding-left: 12px;
  background: var(--off-white);
  margin: 0 -12px;
  padding: 16px 12px;
}

.pricing-name {
  font-weight: 400;
  font-size: 0.95rem;
}

.pricing-dots {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--light-grey) 0, var(--light-grey) 4px, transparent 4px, transparent 8px);
  margin: 0 16px;
}

.pricing-amount {
  font-family: var(--font-impact);
  font-size: 1rem;
  color: var(--rich-black);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 0;
}

.contact-form {
  background: white;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--light-grey);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-base);
  background: var(--warm-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rich-black);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESERVATIONS PAGE
   ============================================ */
.booking-steps {
  display: flex;
  gap: 12px;
  margin-bottom: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid var(--light-grey);
  transition: all var(--transition-base);
  font-family: var(--font-impact);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.booking-step.active {
  background: var(--rich-black);
  color: white;
  border-color: var(--rich-black);
}

.booking-step.done {
  background: var(--off-white);
  border-color: var(--emerald);
  color: var(--emerald);
}

.booking-step-number {
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.booking-step.active .booking-step-number {
  background: rgba(255, 255, 255, 0.15);
}

.booking-panel {
  background: white;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.service-select-card {
  padding: 24px 20px;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.service-select-card:hover {
  border-color: var(--rich-black);
}

.service-select-card.selected {
  border-color: var(--rich-black);
  background: var(--off-white);
}

.service-select-card h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.service-select-card .price {
  color: var(--rich-black);
  font-weight: 500;
  font-family: 'Inter', var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.calendar-header {
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  padding: 8px;
  letter-spacing: 1px;
}

.calendar-day {
  text-align: center;
  padding: 12px 8px;
  cursor: pointer;
  font-weight: 400;
  transition: all var(--transition-base);
}

.calendar-day:hover {
  background: var(--off-white);
}

.calendar-day.selected {
  background: var(--rich-black);
  color: white;
}

.calendar-day.disabled {
  color: var(--light-grey);
  pointer-events: none;
}

.calendar-day.today {
  border: 1px solid var(--rich-black);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.time-slot {
  padding: 12px;
  text-align: center;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  font-weight: 400;
  transition: all var(--transition-base);
}

.time-slot:hover {
  border-color: var(--rich-black);
  background: var(--off-white);
}

.time-slot.selected {
  background: var(--rich-black);
  color: white;
  border-color: var(--rich-black);
}

.time-slot.disabled {
  color: var(--light-grey);
  pointer-events: none;
  cursor: default;
  background: #fafafa;
  border-color: #f0f0f0;
  text-decoration: line-through;
}

.booking-summary {
  background: var(--off-white);
  padding: 24px;
  margin-top: 24px;
}

.booking-summary h3 {
  margin-bottom: 16px;
  color: var(--rich-black);
}

.booking-summary p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.booking-code {
  font-family: var(--font-impact);
  font-size: 1.4rem;
  color: var(--rich-black);
  background: var(--off-white);
  padding: 12px 24px;
  display: inline-block;
  margin-top: 12px;
  letter-spacing: 6px;
  border: 1px solid var(--light-grey);
}

/* ---- New Booking Flow Styles ---- */
.booking-panel {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.booking-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--rich-black);
  line-height: 1.2;
}

.booking-subtext {
  color: var(--grey);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

.category-card {
  padding: 36px 24px 32px;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  background: white;
}

.category-card:hover {
  border-color: var(--rich-black);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.category-card.selected {
  border-color: var(--emerald);
  background: var(--off-white);
}


.category-card h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--emerald);
}

.category-desc {
  font-size: 0.88rem;
  color: var(--grey);
  margin: 8px 0 14px;
  line-height: 1.5;
}

.category-price {
  color: var(--rich-black);
  font-weight: 600;
  font-family: 'Inter', var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.3px;
}

/* Service List (Step 2) */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

.service-row:hover {
  border-color: var(--rich-black);
  background: var(--off-white);
}

.service-row.selected {
  border-color: var(--emerald);
  background: var(--off-white);
}

.service-row-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-row-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
}

.service-row-duration {
  font-size: 0.8rem;
  color: var(--grey);
}

.service-row-price {
  font-weight: 600;
  font-size: 1rem;
  color: var(--rich-black);
  font-family: 'Inter', var(--font-body);
}

/* Extras Section (Step 3) */
.extras-section {
  margin-bottom: 28px;
}

.extras-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--rich-black);
}

.removal-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.removal-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

.removal-option:hover {
  border-color: var(--rich-black);
}

.removal-option.selected {
  border-color: var(--emerald);
  background: var(--off-white);
}

.removal-label {
  font-size: 0.95rem;
}

.removal-price {
  font-weight: 600;
  font-family: 'Inter', var(--font-body);
}

.extras-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.extra-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--light-grey);
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  font-size: 0.9rem;
}

.extra-chip:hover {
  border-color: var(--rich-black);
}

.extra-chip.selected {
  border-color: var(--emerald);
  background: var(--off-white);
}

.extra-chip input[type="checkbox"] {
  display: none;
}

.extra-chip-label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.extra-chip-price {
  font-weight: 600;
  font-family: 'Inter', var(--font-body);
  color: var(--grey);
  font-size: 0.85rem;
}

/* Calendar (Step 4) */
.calendar-container {
  margin-bottom: 28px;
}

.calendar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.cal-month-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  min-width: 180px;
  text-align: center;
}

.cal-arrow {
  background: none;
  border: 1px solid var(--light-grey);
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--rich-black);
}

.cal-arrow:hover {
  background: var(--off-white);
  border-color: var(--rich-black);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.calendar-weekday {
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  padding: 8px;
  letter-spacing: 1px;
}

.calendar-day.empty {
  pointer-events: none;
}

/* Timeslots */
.timeslots-container {
  margin-top: 28px;
}

.timeslots-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--rich-black);
}

/* Booking Summary Card */
.booking-summary-card {
  background: var(--off-white);
  padding: 24px;
  margin-bottom: 28px;
  border-left: 3px solid var(--emerald);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}

.summary-row+.summary-row {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-label {
  color: var(--grey);
  font-weight: 500;
}

.summary-value {
  color: var(--rich-black);
  font-weight: 500;
  text-align: right;
}

.summary-total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 2px solid var(--rich-black) !important;
}

.summary-total .summary-label,
.summary-total .summary-value {
  font-size: 1.05rem;
  font-weight: 700;
}

/* Booking Form */
.booking-form .form-group input,
.booking-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-grey);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
  background: white;
}

.booking-form .form-group input:focus,
.booking-form .form-group textarea:focus {
  border-color: var(--emerald);
  outline: none;
}

.booking-form .form-group input.error,
.booking-form .form-group textarea.error {
  border-color: #e74c3c;
  animation: shake 0.3s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-4px);
  }

  75% {
    transform: translateX(4px);
  }
}

/* Booking Navigation */
.booking-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.booking-nav .btn:only-child {
  margin-left: auto;
}

.booking-nav .booking-next:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Success Screen */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.booking-success h2 {
  color: var(--emerald-dark);
  margin-bottom: 12px;
}

.success-text {
  color: var(--grey);
  margin-bottom: 24px;
}

.booking-steps.hidden {
  display: none;
}

/* ============================================
   BLOG — Editorial cards
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 0;
}

.blog-card {
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  font-family: var(--font-impact);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 10px;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-body p {
  color: var(--grey);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}

.blog-read-more {
  font-family: var(--font-impact);
  color: var(--rich-black);
  font-size: 0.72rem;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.blog-read-more:hover {
  gap: 10px;
}

/* Blog Article inline */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--section-padding) 24px;
}

.blog-article h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 32px 0 16px;
  color: var(--rich-black);
}

.blog-article h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 24px 0 12px;
}

.blog-article p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.8;
  font-weight: 300;
}

.blog-article ul {
  margin: 16px 0;
  padding-left: 24px;
}

.blog-article li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
  list-style: disc;
  color: var(--charcoal);
  font-weight: 300;
}

.blog-article li::marker {
  color: var(--rich-black);
}

/* Blog Post — Individual article page */
.blog-post {
  padding-top: 120px;
}

.blog-post-hero {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-hero img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.blog-post-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 60px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.blog-post-tag {
  font-family: var(--font-impact);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  font-weight: 600;
}

.blog-post-meta time {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.6;
}

.blog-post-content h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--rich-black);
}

.blog-post-intro {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 40px;
  border-left: 3px solid var(--emerald);
  padding-left: 20px;
}

.blog-post-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 40px 0 16px;
  color: var(--emerald);
}

.blog-post-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: 20px;
}

.blog-post-content p strong {
  font-weight: 600;
  color: var(--rich-black);
}

.blog-post-cta {
  margin-top: 48px;
  padding: 40px;
  background: var(--off-white);
  text-align: center;
  border-radius: 2px;
}

.blog-post-cta p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--rich-black);
  margin-bottom: 20px;
}

.blog-post-cta .btn {
  display: inline-block;
}

.blog-post-back {
  display: block;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 60px;
  font-family: var(--font-impact);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rich-black);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-post-back:hover {
  color: var(--emerald);
}

@media (max-width: 768px) {
  .blog-post-hero img {
    height: 320px;
  }

  .blog-post-content h1 {
    font-size: 1.8rem;
  }

  .blog-post-content {
    padding: 32px 20px 48px;
  }

  .blog-post-cta {
    padding: 28px 20px;
  }
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
  padding: var(--section-padding) 0;
  background: transparent;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: center;
}

.experience-video {
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 500px;
}

.experience-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-feature {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.experience-feature:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.experience-feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-grey);
}

.experience-feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--emerald);
  fill: none;
  stroke-width: 1.5;
}

.experience-feature h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.experience-feature p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LEMON DECORATIONS — CSS-only dividers
   ============================================ */
.lemon-divider {
  text-align: center;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--light-grey);
}

.lemon-divider::before,
.lemon-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--light-grey);
}

/* Lemon SVG icon via CSS */
.lemon-divider-icon {
  width: 20px;
  height: 20px;
  background: var(--lemon);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-30deg);
  position: relative;
}

.lemon-divider-icon::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -2px;
  width: 8px;
  height: 4px;
  background: var(--sage);
  border-radius: 50% 50% 0 0;
  transform: rotate(30deg);
}

/* ============================================
   CHILLHOUSE VISUAL GRID — Image cards with text overlays
   ============================================ */
.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.visual-grid-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.visual-grid-item.wide {
  grid-column: span 2;
  aspect-ratio: 3/2;
}

.visual-grid-item.tall {
  grid-row: span 2;
}

.visual-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.visual-grid-item:hover img {
  transform: scale(1.05);
}

.visual-grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: white;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.visual-grid-item:hover .visual-grid-overlay {
  opacity: 1;
}

.visual-grid-overlay .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.visual-grid-overlay .stars {
  color: var(--lemon);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.visual-grid-overlay .tag {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-grid-item.wide {
    grid-column: span 2;
  }
}

/* Service visual cards — image backgrounds instead of icons */
.service-visual-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.service-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.service-visual-card:hover img {
  transform: scale(1.05);
}

.service-visual-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.service-visual-info h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: white;
}

.service-visual-info .price {
  font-family: var(--font-impact);
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--lemon);
}

/* Booking — cleaner cards without icons */
.service-select-card svg {
  display: none;
}

.service-select-card .service-icon {
  display: none;
}

/* Chatbot — visible */

/* ============================================
   PROMO SPLIT — 50/50 image + text service promos
   ============================================ */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.promo-split.reverse {
  direction: rtl;
}

.promo-split.reverse>* {
  direction: ltr;
}

.promo-split.reverse .promo-split-content {
  align-items: center;
  text-align: center;
}

.promo-split-img {
  position: relative;
  overflow: hidden;
}

.promo-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.promo-split:hover .promo-split-img img {
  transform: scale(1.03);
}

.promo-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(30px, 4vw, 50px) clamp(30px, 3.5vw, 50px);
  background: var(--cream);
}

.promo-tag {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--emerald);
  margin-bottom: 16px;
}

.promo-split-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--rich-black);
}

.promo-split-content p {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 20px;
  font-weight: 300;
}

.promo-price {
  font-family: var(--font-impact);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 24px;
}

/* Compact promo button — lemon yellow, not full-width */
.promo-btn {
  width: auto;
  display: inline-flex;
  padding: 14px 44px;
  background: var(--lemon) !important;
  color: var(--rich-black) !important;
  border-color: var(--lemon) !important;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.promo-btn:hover {
  background: #f0d000 !important;
  border-color: #f0d000 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 230, 66, 0.4);
}

/* Decorated promo-split — relative for sticker positioning */
.promo-split-decorated {
  position: relative;
  overflow: visible;
}

/* Floating stickers on promo splits — bold, fun shapes */
.promo-sticker {
  position: absolute;
  font-family: var(--font-impact);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  z-index: 5;
  white-space: nowrap;
  animation: stickerFloat 6s ease-in-out infinite;
  pointer-events: none;
}

/* Section 1 stickers */
.ps-sticker-1 {
  top: 8%;
  right: 3%;
  background: var(--lemon);
  color: var(--rich-black);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  padding: 18px 28px;
  font-size: 0.8rem;
  box-shadow: 0 6px 24px rgba(245, 230, 66, 0.35);
  --r: -10deg;
  transform: rotate(-10deg);
  animation-delay: 0s;
}

.ps-sticker-2 {
  bottom: 14%;
  left: 48%;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(30, 90, 60, 0.25);
  --r: 0deg;
  transform: rotate(0deg);
  animation-delay: -2s;
}

.ps-sticker-3 {
  bottom: 6%;
  right: 5%;
  background: #fff;
  color: var(--emerald);
  border: 2.5px solid var(--emerald);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  padding: 14px 22px;
  font-size: 0.72rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  --r: 8deg;
  transform: rotate(8deg);
  animation-delay: -3.5s;
}

/* Section 2 stickers */
.ps-sticker-4 {
  top: 6%;
  left: 3%;
  background: linear-gradient(135deg, #ff6b9d, #ff4081);
  color: #fff;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  padding: 18px 28px;
  font-size: 0.8rem;
  box-shadow: 0 6px 24px rgba(255, 64, 129, 0.3);
  --r: -6deg;
  transform: rotate(-6deg);
  animation-delay: -1s;
}

.ps-sticker-5 {
  bottom: 8%;
  left: 48%;
  background: var(--lemon);
  color: var(--rich-black);
  border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
  padding: 14px 22px;
  font-size: 0.72rem;
  box-shadow: 0 4px 18px rgba(245, 230, 66, 0.3);
  --r: 12deg;
  transform: rotate(12deg);
  animation-delay: -4s;
}

.ps-sticker-6 {
  top: 12%;
  right: 5%;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(30, 90, 60, 0.25);
  --r: 0deg;
  transform: rotate(0deg);
  animation-delay: -2.5s;
}

@media (max-width: 768px) {
  .promo-split {
    grid-template-columns: 1fr;
  }

  .promo-split.reverse {
    direction: ltr;
  }

  .promo-split-img {
    aspect-ratio: 4/3;
  }

  .promo-sticker {
    font-size: 0.55rem;
    padding: 7px 14px;
  }

  .ps-sticker-2,
  .ps-sticker-6 {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .ps-sticker-3,
  .ps-sticker-5 {
    display: none;
  }
}

/* ============================================
   PROMO FULLBLEED — Full-width image banners
   ============================================ */
.promo-fullbleed {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.promo-fullbleed>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s var(--ease-out);
}

.promo-fullbleed:hover>img {
  transform: scale(1.03);
}

.promo-fullbleed-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.promo-fullbleed-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: clamp(40px, 6vw, 80px);
  max-width: 600px;
}

.promo-fullbleed-content h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: white;
}

.promo-fullbleed-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 24px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .promo-fullbleed {
    min-height: 50vh;
  }
}

/* ============================================
   SHOWCASE — 3-column Chillhouse cards
   ============================================ */
.showcase-section {
  padding: 0;
  background: transparent;
}

.dot-yellow {
  color: var(--lemon);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.showcase-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.showcase-card:hover .showcase-img img {
  transform: scale(1.05);
}

.showcase-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.showcase-content {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
}

.showcase-card h3 {
  font-family: var(--font-impact);
  font-size: 1.1rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: white;
  text-align: center;
  margin: 0;
}

.showcase-card p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  text-align: center;
  font-weight: 300;
  margin: 0;
}

.showcase-btn {
  display: inline-block;
  font-family: var(--font-impact);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  border: 1px solid white;
  padding: 8px 24px;
  transition: all var(--transition-base);
}

.showcase-btn:hover {
  background: var(--lemon);
  color: var(--rich-black);
  border-color: var(--lemon);
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===========================
   COLOR PALETTE SECTION
   =========================== */
.palette-section {
  position: relative;
  padding: 80px 0 60px;
  background: var(--cream);
  overflow: visible;
}

.palette-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.palette-tag {
  display: inline-block;
  font-family: var(--font-impact);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}

.palette-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--rich-black);
  margin-bottom: 16px;
}

.palette-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--grey);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Arrow controls row — above the track */
.palette-arrows {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.palette-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--lemon);
  background: var(--lemon);
  color: var(--rich-black);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(245, 230, 66, 0.25);
  padding: 0;
}

.palette-arrow:hover {
  background: #f0d000;
  border-color: #f0d000;
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(245, 230, 66, 0.4);
}

/* Marquee wrapper — full width, no clipping at top/bottom */
.palette-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 10px;
}

/* Infinite scrolling track */
.palette-track {
  display: flex;
  gap: 36px;
  padding: 20px 0 30px;
  width: max-content;
  animation: paletteScroll 40s linear infinite;
}

.palette-marquee:hover .palette-track {
  animation-play-state: paused;
}

@keyframes paletteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Individual swatch */
.palette-swatch {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: default;
  scroll-snap-align: center;
  transition: transform 0.3s ease;
}

.palette-swatch:hover {
  transform: translateY(-8px) scale(1.05);
}

/* The gradient orb */
.swatch-orb {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--sw-bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 -4px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.palette-swatch:hover .swatch-orb {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2), inset 0 -4px 8px rgba(0, 0, 0, 0.1);
  transform: scale(1.08);
}

/* Glossy highlight */
.swatch-orb::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 15%;
  width: 45%;
  height: 35%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.55) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Label */
.swatch-label {
  font-family: var(--font-impact);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rich-black);
  opacity: 0.7;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.palette-swatch:hover .swatch-label {
  opacity: 1;
}

/* Chrome shimmer effect */
.swatch-chrome .swatch-orb::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.4) 50%,
      rgba(255, 255, 255, 0) 60%,
      transparent 100%);
  animation: chromeShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes chromeShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* Glitter sparkle overlay */
.swatch-glitter .swatch-orb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 50%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 60%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 40%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 85%, rgba(255, 255, 255, 0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 85% 25%, rgba(255, 255, 255, 1) 0%, transparent 100%),
    radial-gradient(1px 1px at 10% 45%, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
  animation: glitterTwinkle 2s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glitterTwinkle {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

/* Holographic color shift */
.swatch-holo .swatch-orb {
  background-size: 300% 300%;
  animation: holoShift 4s ease infinite;
}

@keyframes holoShift {
  0% {
    background-position: 0% 0%;
  }

  25% {
    background-position: 100% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  75% {
    background-position: 0% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

.swatch-holo .swatch-orb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.2) 30%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.15) 70%,
      rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* French: subtle border for white swatch */
.palette-swatch[data-name="French White"] .swatch-orb {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Floating sparkle decorations */
.palette-sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.sparkle-1 {
  width: 6px;
  height: 6px;
  background: var(--lemon);
  top: 18%;
  left: 8%;
  animation: sparkleFloat 6s ease-in-out infinite;
}

.sparkle-2 {
  width: 4px;
  height: 4px;
  background: #ff9a9e;
  top: 35%;
  right: 12%;
  animation: sparkleFloat 8s ease-in-out 1s infinite;
}

.sparkle-3 {
  width: 8px;
  height: 8px;
  background: #a18cd1;
  bottom: 25%;
  left: 15%;
  animation: sparkleFloat 7s ease-in-out 2s infinite;
}

.sparkle-4 {
  width: 5px;
  height: 5px;
  background: #84fab0;
  top: 50%;
  right: 5%;
  animation: sparkleFloat 5s ease-in-out 0.5s infinite;
}

.sparkle-5 {
  width: 7px;
  height: 7px;
  background: var(--lemon);
  bottom: 15%;
  right: 20%;
  animation: sparkleFloat 9s ease-in-out 3s infinite;
}

.sparkle-6 {
  width: 5px;
  height: 5px;
  background: #f0c9cf;
  top: 10%;
  left: 30%;
  animation: sparkleFloat 7s ease-in-out 1.5s infinite;
}

.sparkle-7 {
  width: 4px;
  height: 4px;
  background: var(--emerald);
  top: 65%;
  left: 6%;
  animation: sparkleFloat 6s ease-in-out 2.5s infinite;
}

.sparkle-8 {
  width: 6px;
  height: 6px;
  background: #ffa07a;
  bottom: 35%;
  right: 30%;
  animation: sparkleFloat 8s ease-in-out 0.8s infinite;
}

.sparkle-9 {
  width: 5px;
  height: 5px;
  background: #b8a9c9;
  top: 22%;
  right: 25%;
  animation: sparkleFloat 7.5s ease-in-out 3.5s infinite;
}

.sparkle-10 {
  width: 3px;
  height: 3px;
  background: var(--lemon);
  bottom: 45%;
  left: 25%;
  animation: sparkleFloat 5.5s ease-in-out 1s infinite;
}

.sparkle-11 {
  width: 6px;
  height: 6px;
  background: #84fab0;
  top: 45%;
  left: 3%;
  animation: sparkleFloat 9s ease-in-out 4s infinite;
}

.sparkle-12 {
  width: 4px;
  height: 4px;
  background: #f8c8dc;
  bottom: 10%;
  right: 8%;
  animation: sparkleFloat 6.5s ease-in-out 2s infinite;
}

@keyframes sparkleFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-15px) scale(1.3);
    opacity: 0.8;
  }
}

/* CTA */
.palette-cta {
  text-align: center;
  margin-top: 40px;
  padding: 0 24px;
}

/* Mobile: grid of smaller orbs */
@media (max-width: 768px) {
  .palette-arrows {
    display: none;
  }

  .palette-marquee {
    padding: 0 16px;
    overflow: visible;
  }

  .palette-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 12px;
    padding: 16px 8px 24px;
    justify-items: center;
    width: auto;
    animation: none;
  }

  /* Hide the duplicate set on mobile */
  .palette-track .palette-swatch:nth-child(n+17) {
    display: none;
  }
}

/* ===========================
   LEMON CREATIVE SECTION
   =========================== */
.lemon-creative {
  padding: 40px 5% 100px;
  background: var(--cream);
}

.lemon-creative-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

/* Visual side */
.lemon-creative-visual {
  display: flex;
  justify-content: center;
}

.lemon-mask-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* The lemon fruit shape with leaf */
.lemon-mask {
  width: 100%;
  aspect-ratio: 0.9;
  border-radius: 47% 53% 53% 47% / 50% 45% 55% 50%;
  overflow: hidden;
  position: relative;
  border: 6px solid var(--lemon);
  box-shadow: 12px 16px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lemon-mask:hover {
  transform: scale(1.02);
  box-shadow: 16px 20px 50px rgba(0, 0, 0, 0.18);
}

.lemon-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Subtle yellow tint overlay */
.lemon-mask::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 50%, rgba(245, 230, 66, 0.1) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Leaf element at the top */
.lemon-leaf {
  position: absolute;
  top: -4%;
  right: 28%;
  width: 55px;
  height: 28px;
  background: linear-gradient(135deg, var(--emerald), #3aab6a);
  border-radius: 0 80% 0 80%;
  transform: rotate(-35deg);
  z-index: 3;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.12);
}

/* Leaf vein */
.lemon-leaf::after {
  content: '';
  position: absolute;
  top: 48%;
  left: 15%;
  width: 60%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(-5deg);
}

/* Floating sticker badges */
.lemon-sticker {
  position: absolute;
  font-family: var(--font-impact);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  padding: 10px 18px;
  border-radius: 30px;
  color: #fff;
  z-index: 2;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  animation: stickerBob 3s ease-in-out infinite;
}

.sticker-glow {
  top: -5%;
  right: -5%;
  background: linear-gradient(135deg, var(--emerald), #2d8f5e);
  transform: rotate(8deg);
  animation-delay: 0s;
}

.sticker-fresh {
  bottom: 5%;
  left: -8%;
  background: linear-gradient(135deg, var(--lemon), #f0d000);
  color: var(--rich-black);
  transform: rotate(-6deg);
  animation-delay: 1.5s;
}

@keyframes stickerBob {

  0%,
  100% {
    transform: rotate(var(--sticker-rot, 8deg)) translateY(0);
  }

  50% {
    transform: rotate(var(--sticker-rot, 8deg)) translateY(-6px);
  }
}

.sticker-glow {
  --sticker-rot: 8deg;
}

.sticker-fresh {
  --sticker-rot: -6deg;
}

/* Text side */
.lemon-creative-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lemon-creative-text .btn {
  align-self: flex-start;
  width: auto;
}

.lemon-creative-tag {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
}

.lemon-creative-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rich-black);
  line-height: 1.15;
}

.lemon-creative-title em {
  font-style: italic;
  color: var(--emerald);
}

.lemon-creative-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 480px;
}

/* Mobile */
@media (max-width: 768px) {
  .lemon-creative {
    padding: 60px 5% 60px;
  }

  .lemon-creative-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .lemon-mask-wrapper {
    max-width: 300px;
    margin: 0 auto;
  }

  .lemon-creative-desc {
    margin: 0 auto;
  }

  .lemon-creative-text {
    align-items: center;
  }

  .sticker-glow {
    top: -8%;
    right: 0;
    font-size: 0.65rem;
    padding: 8px 14px;
  }

  .sticker-fresh {
    bottom: 2%;
    left: -3%;
    font-size: 0.65rem;
    padding: 8px 14px;
  }
}

/* ==========================================================
   HAPPY HANDS — Mission Showcase (5-photo grid)
   ========================================================== */
.happy-hands {
  padding: 80px 5% 60px;
  background: var(--cream);
  overflow: hidden;
}

.happy-hands-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.happy-hands-tag {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--emerald);
  display: block;
  margin-bottom: 14px;
}

.happy-hands-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--rich-black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.happy-hands-title em {
  font-style: italic;
  color: var(--emerald);
}

.happy-hands-desc {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}

.happy-hands-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.happy-hands-img {
  overflow: hidden;
  aspect-ratio: 1;
}

.happy-hands-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.happy-hands-img:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .happy-hands-row {
    grid-template-columns: repeat(5, 72vw);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 8px;
  }

  .happy-hands-img {
    scroll-snap-align: center;
    aspect-ratio: 1;
  }
}

/* ==========================================================
   INSTAGRAM-STYLE CREATIVE BLOCKS — Playful Show-off
   ========================================================== */
.insta-section {
  padding: 80px 5% 90px;
  background: var(--cream);
  display: none;
}

.insta-header {
  text-align: center;
  margin-bottom: 48px;
}

.insta-tag {
  font-family: var(--font-impact);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  display: block;
  margin-bottom: 10px;
}

.insta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--rich-black);
}

/* 3-column grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Each card */
.insta-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insta-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Card header — brand row */
.insta-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
}

.insta-brand {
  font-family: var(--font-impact);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ff4081;
  font-weight: 700;
}

.insta-dots {
  color: #bbb;
  font-size: 1.2rem;
  letter-spacing: 2px;
  cursor: default;
}

/* Card body */
.insta-card-body {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card footer — just a heart */
.insta-card-bottom {
  padding: 14px 18px;
}

.insta-heart {
  font-size: 2rem;
  color: #ff4081;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.25s ease;
  display: inline-block;
}

.insta-heart:hover {
  transform: scale(1.35);
  color: #e91e63;
  animation: heartBounce 0.5s ease;
}

@keyframes heartBounce {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.5);
  }

  50% {
    transform: scale(1.2);
  }

  70% {
    transform: scale(1.45);
  }

  100% {
    transform: scale(1.4);
  }
}

/* ============ CARD 1 — FRESH & FUN (Hot Magenta) ============ */
.insta-card-lemon .insta-card-body {
  background: linear-gradient(135deg, #c2185b, #e91e63 50%, #f06292 100%);
  flex-direction: column;
  padding: 24px;
}

.insta-text-block {
  text-align: left;
  width: 100%;
  margin-bottom: 8px;
  z-index: 2;
}

.insta-text-small {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: #fff;
  margin-bottom: 2px;
}

.insta-text-bold {
  display: block;
  font-family: var(--font-impact);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insta-text-bold em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--lemon);
  font-size: 0.85em;
}

.insta-circle-img {
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  align-self: flex-end;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.insta-circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insta-card-lemon:hover .insta-circle-img img {
  transform: scale(1.08);
}

/* ============ CARD 2 — SUMMER NAILS INSPO (Sky Blue + Pink Blob) ============ */
.insta-card-mint .insta-card-body {
  background: linear-gradient(150deg, #64b5f6, #42a5f5);
}

.insta-blob-shape {
  width: 72%;
  aspect-ratio: 1;
  background: #ffb6c1;
  border-radius: 47% 53% 46% 54% / 53% 47% 53% 47%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px;
  box-shadow: 0 8px 28px rgba(255, 105, 135, 0.3);
  animation: blobFloat 6s ease-in-out infinite;
}

@keyframes blobFloat {

  0%,
  100% {
    border-radius: 47% 53% 46% 54% / 53% 47% 53% 47%;
  }

  33% {
    border-radius: 53% 47% 52% 48% / 48% 53% 47% 52%;
  }

  66% {
    border-radius: 48% 52% 47% 53% / 52% 48% 52% 48%;
  }
}

.insta-blob-text-top {
  font-family: var(--font-impact);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: #c2185b;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.insta-blob-text-script {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 0.9;
  margin: -4px 0;
}

.insta-blob-text-bottom {
  font-family: var(--font-impact);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #c2185b;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: none;
}

.insta-card-mint .insta-brand {
  color: #ff4081;
}

/* ============ CARD 3 — GLOW UP (Hot Red/Crimson) ============ */
.insta-card-emerald .insta-card-body {
  background: linear-gradient(135deg, #d32f2f, #c62828);
}

.insta-frame-img {
  position: relative;
  width: 72%;
  aspect-ratio: 0.8;
}

.insta-frame-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.5s ease;
}

.insta-card-emerald:hover .insta-frame-img img {
  transform: scale(1.05);
}

/* Decorative outline frame behind image */
.insta-frame-img::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  z-index: 0;
}

.insta-frame-text {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.insta-frame-script {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  line-height: 0.8;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.insta-frame-bold {
  display: block;
  font-family: var(--font-impact);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--lemon);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.insta-card-emerald .insta-brand {
  color: #ff4081;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 24px;
  }

  .insta-section {
    padding: 50px 5% 60px;
  }
}

/* ==========================================================
   NAIL ART GALLERY — Enhanced Photos
   ========================================================== */
.nail-gallery {
  padding: 80px 5% 90px;
  background: #f5f0e8;
}

.nail-gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.nail-gallery-tag {
  font-family: var(--font-impact);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  display: block;
  margin-bottom: 10px;
}

.nail-gallery-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--rich-black);
}

.nail-gallery-grid {
  columns: 4 240px;
  column-gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.nail-gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.nail-gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.nail-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

/* Subtle overlay on hover */
.nail-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 12px;
}

.nail-gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .nail-gallery-grid {
    columns: unset !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .nail-gallery-item {
    margin-bottom: 0 !important;
    aspect-ratio: 1;
  }

  .nail-gallery-item img {
    height: 100%;
    object-fit: cover;
  }

  .nail-gallery {
    padding: 50px 4% 60px;
  }
}

/* ==========================================================
   BRAND STORY — Born & Bred Section
   ========================================================== */
.brand-story {
  position: relative;
  padding: 100px 5%;
  background: linear-gradient(160deg, #e8f5e0 0%, #f0f5d4 40%, #faf5d0 100%);
  overflow: hidden;
  text-align: center;
}

.brand-story-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.brand-story-tag {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  display: block;
  margin-bottom: 28px;
}

.brand-story-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.5;
  color: var(--rich-black);
  margin: 0 0 36px;
}

.brand-story-text strong {
  font-family: var(--font-impact);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.brand-story-text em {
  font-style: italic;
  color: var(--emerald);
}

.brand-story-text .brand-year {
  font-size: 1.15em;
  color: var(--emerald);
  position: relative;
}

.brand-story-logo {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--emerald);
  letter-spacing: 1px;
  opacity: 0.6;
}

/* Floating sticker badges */
.brand-story-sticker {
  position: absolute;
  font-family: var(--font-impact);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  animation: stickerFloat 6s ease-in-out infinite;
}

.sticker-1 {
  top: 12%;
  left: 6%;
  background: var(--lemon);
  color: var(--rich-black);
  transform: rotate(-12deg);
  animation-delay: 0s;
}

.sticker-2 {
  top: 18%;
  right: 8%;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 0.65rem;
  letter-spacing: 2px;
  animation-delay: -1.5s;
  transform: rotate(15deg);
}

.sticker-3 {
  bottom: 22%;
  left: 4%;
  background: #fff;
  color: var(--emerald);
  border: 2px solid var(--emerald);
  transform: rotate(8deg);
  animation-delay: -3s;
}

.sticker-4 {
  bottom: 14%;
  right: 6%;
  background: linear-gradient(135deg, var(--lemon), #ffe066);
  color: var(--rich-black);
  transform: rotate(-6deg);
  animation-delay: -4s;
}

.sticker-5 {
  top: 50%;
  right: 14%;
  background: var(--emerald);
  color: #fff;
  transform: rotate(10deg) translateY(-50%);
  animation-delay: -2s;
}

@keyframes stickerFloat {

  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }

  50% {
    transform: translateY(-8px) rotate(var(--r, 0deg));
  }
}

.sticker-1 {
  --r: -12deg;
}

.sticker-2 {
  --r: 15deg;
}

.sticker-3 {
  --r: 8deg;
}

.sticker-4 {
  --r: -6deg;
}

.sticker-5 {
  --r: 10deg;
}

@media (max-width: 768px) {
  .brand-story {
    padding: 120px 5%;
  }

  .brand-story-sticker {
    font-size: 0.55rem;
    padding: 7px 14px;
  }

  .sticker-2 {
    width: 65px;
    height: 65px;
    font-size: 0.5rem;
  }

  /* Spread stickers away from text on mobile */
  .sticker-1 {
    top: 2% !important;
  }

  .sticker-2 {
    top: 5% !important;
  }

  .sticker-3 {
    bottom: 2% !important;
  }

  .sticker-4 {
    bottom: 8% !important;
  }

  .sticker-5 {
    display: none;
  }
}

/* ==========================================================
   PHOTO REVIEWS GRID — Chillhouse-style masonry with overlaid reviews
   ========================================================== */
.photo-reviews {
  padding: 20px 0 0;
  background: var(--cream);
  overflow: hidden;
}

.photo-reviews-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 0 5%;
}

.photo-reviews-tag {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--emerald);
  display: block;
  margin-bottom: 14px;
}

.photo-reviews-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--rich-black);
  line-height: 1.2;
}

.photo-reviews-title em {
  font-style: italic;
  color: var(--emerald);
}

/* Grid — 4 columns, masonry-like with tall cards */
.photo-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 6px;
  width: 100%;
}

/* Each review card */
.photo-review-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  grid-row: span 1;
}

.photo-review-card.pr-tall {
  grid-row: span 2;
}

.photo-review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.photo-review-card:hover img {
  transform: scale(1.06);
}

/* Gradient overlay for text readability */
.pr-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 18px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.pr-quote {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.pr-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pr-author {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pr-stars {
  font-size: 0.85rem;
  color: #f5d060;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pr-google-g {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Desktop: reorder for visual balance (col 1 tall, cols 2-3 standard, col 4 tall) */
.photo-reviews-grid .photo-review-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.photo-reviews-grid .photo-review-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.photo-reviews-grid .photo-review-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.photo-reviews-grid .photo-review-card:nth-child(4) {
  grid-column: 4;
  grid-row: 1 / 3;
}

.photo-reviews-grid .photo-review-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.photo-reviews-grid .photo-review-card:nth-child(6) {
  grid-column: 3;
  grid-row: 2;
}

/* Tablet: 2 columns */
@media (max-width: 1024px) {
  .photo-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
    gap: 6px;
  }

  .photo-reviews-grid .photo-review-card:nth-child(1),
  .photo-reviews-grid .photo-review-card:nth-child(4) {
    grid-column: auto;
    grid-row: span 2;
  }

  .photo-reviews-grid .photo-review-card:nth-child(2),
  .photo-reviews-grid .photo-review-card:nth-child(3),
  .photo-reviews-grid .photo-review-card:nth-child(5),
  .photo-reviews-grid .photo-review-card:nth-child(6) {
    grid-column: auto;
    grid-row: span 1;
  }
}

/* Mobile: 2 columns, all same height */
@media (max-width: 600px) {
  .photo-reviews {
    padding: 50px 0 0;
  }

  .photo-reviews-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 4px;
  }

  .photo-reviews-grid .photo-review-card:nth-child(1),
  .photo-reviews-grid .photo-review-card:nth-child(4) {
    grid-row: span 2;
  }

  .pr-overlay {
    padding: 40px 12px 12px;
  }

  .pr-quote {
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .pr-author {
    font-size: 0.6rem;
  }

  .pr-stars {
    font-size: 0.7rem;
  }
}

/* ==========================================================
   VISIT US SECTION — Store photo + Business Hours (dark green)
   ========================================================== */
.visit-section {
  background: var(--emerald);
  padding: 100px 5%;
  margin-top: 80px;
  margin-bottom: 0;
  overflow: hidden;
}

.visit-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.visit-photo {
  width: 380px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid var(--lemon, #f5e642);
  flex-shrink: 0;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visit-info {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.visit-tag {
  font-family: var(--font-impact);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--lemon, #f5e642);
  margin-bottom: 10px;
}

.visit-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.visit-title em {
  font-style: italic;
  color: var(--lemon, #f5e642);
}

.visit-address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 18px;
}

.visit-hours-title {
  font-family: var(--font-impact);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lemon, #f5e642);
  margin-bottom: 10px;
}

.visit-hours-table {
  width: 100%;
  max-width: 300px;
  border-collapse: collapse;
  margin-bottom: 22px;
}

.visit-hours-table td {
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.visit-hours-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: #fff;
}

.visit-hours-table tr:last-child td {
  border-bottom: none;
}

.visit-cta {
  align-self: flex-start;
}

.visit-section .btn-primary {
  background: var(--lemon, #f5e642);
  color: var(--rich-black, #1a1a1a);
  border-color: var(--lemon, #f5e642);
  font-weight: 600;
}

.visit-section .btn-primary:hover {
  background: #e6d83a;
  border-color: #e6d83a;
}

/* Mobile */
@media (max-width: 768px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .visit-photo {
    width: 260px;
    height: 260px;
  }

  .visit-info {
    align-items: center;
    text-align: center;
  }

  .visit-hours-table {
    margin: 0 auto 22px;
  }

  .visit-cta {
    align-self: center;
  }
}

/* ==========================================================
   FULL-WIDTH MAP
   ========================================================== */
.map-section {
  width: 100%;
  height: 400px;
  padding: 0;
  margin: 0;
  line-height: 0;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-section {
    height: 300px;
  }
}

/* ==========================================================
   SAFARI / iOS COMPATIBILITY
   ========================================================== */

/* Smooth scrolling for iOS */
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* Fix iOS momentum scrolling */
body {
  -webkit-overflow-scrolling: touch;
}

/* Fix iOS input zoom */
input,
select,
textarea {
  font-size: 16px !important;
}

/* Safari flexbox fixes */
.hero-content,
.showcase-content,
.footer-main,
.footer-links,
.visit-grid,
.contact-grid,
.about-grid,
.promo-split-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}

/* Safe area insets for notch devices */
.announcement-bar {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.navbar {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.footer {
  padding-bottom: env(safe-area-inset-bottom);
}

/* Fix Safari button rendering */
.btn,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Safari backdrop filter support */
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  .navbar.scrolled {
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
}

/* Fix Safari image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* ==========================================================
   ADDITIONAL MOBILE FINE-TUNING (≤480px)
   ========================================================== */
@media (max-width: 480px) {

  /* Hero adjustments */
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 0.85rem;
    padding: 0 5%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 5%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Showcase cards */
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 4%;
  }

  /* Promo split */
  .promo-split {
    grid-template-columns: 1fr;
  }

  .promo-split-img {
    max-height: 300px;
  }

  /* About section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    max-width: 280px;
    margin: 0 auto;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 5%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .footer-cta-block {
    align-items: center;
    text-align: center;
  }

  .footer-logo-img {
    width: clamp(140px, 40vw, 200px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 20px 5%;
  }

  /* Visit section */
  .visit-section {
    padding: 60px 5%;
    margin-top: 40px;
  }

  .visit-photo {
    width: 220px;
    height: 220px;
  }

  /* Brand story */
  .brand-story {
    padding: 50px 4%;
  }

  .brand-story-text {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
  }

  /* Happy hands */
  .happy-hands-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Palette section */
  .palette-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .palette-subtitle {
    font-size: 0.85rem;
    padding: 0 4%;
  }
}

/* ==========================================================
   PAGE HERO — Shared across sub-pages
   ========================================================== */
@media (max-width: 768px) {
  .page-hero {
    padding: 140px 5% 20px;
  }

  .page-hero h1 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .page-hero p {
    font-size: 0.78rem;
    margin-top: 4px;
  }

  /* Pricing page */
  .pricing-category {
    padding: 30px 4%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Contact page */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Booking page */
  .booking-panel {
    padding: 24px 4%;
  }


  /* Booking steps — minimal progress dots on mobile */
  .booking-steps {
    gap: 0;
    margin-bottom: 24px;
    position: relative;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: nowrap;
  }

  .booking-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--light-grey);
    transform: translateY(-50%);
    z-index: 0;
  }

  .booking-step {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: #fff;
    border: 2px solid var(--light-grey);
    font-size: 0;
    gap: 0;
  }

  .booking-step span:not(.booking-step-number) {
    display: none;
  }

  .booking-step-number {
    width: 100%;
    height: 100%;
    font-size: 0.7rem;
    background: transparent;
  }

  .booking-step.active {
    border-color: var(--rich-black);
    background: var(--rich-black);
    width: 36px;
    height: 36px;
    margin-top: -2px;
  }

  .booking-step.done {
    border-color: var(--emerald);
    background: var(--emerald);
  }

  .booking-step.done .booking-step-number {
    color: #fff;
  }

  .service-select-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================
   PRICING PAGE — Premium Card Design
   ========================================================== */

/* Hero */
.price-hero {
  background: var(--lemon-pale);
  padding: 150px 5% 15px;
  text-align: center;
  border-bottom: none;
  width: 100%;
  box-sizing: border-box;
}

.price-hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.price-hero-tag {
  display: none;
}

.price-hero-title {
  font-family: var(--font-impact);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--rich-black);
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 0;
}

.price-hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--emerald);
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Quick nav pills */
.price-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 40px 0 20px;
  position: sticky;
  top: 70px;
  z-index: 10;
  background: var(--cream);
}

.price-pill {
  font-family: var(--font-impact);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--light-grey);
  color: var(--grey);
  text-decoration: none;
  transition: all 0.3s ease;
  background: white;
}

.price-pill:hover,
.price-pill.active {
  background: var(--emerald);
  color: white;
  border-color: var(--emerald);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 140, 78, 0.2);
}

/* Price page container */
.price-page {
  background: var(--cream);
  padding: 0 5% 80px;
}

/* Grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 50px auto 0;
  align-items: start;
}

/* Cards */
.price-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Featured card (BIAB) */
.price-card-featured {
  border: 2px solid var(--emerald);
}

.price-card-featured .price-card-header {
  background: transparent;
  border-bottom: 2px solid var(--emerald);
}

.price-card-featured .price-card-header h2 {
  color: var(--emerald);
}

.price-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--lemon);
  color: var(--rich-black);
  font-family: var(--font-impact);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Card image banner */
.price-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.price-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#cat-acryl .price-card-img img {
  object-position: center right;
}

#cat-acryl+.price-card .price-card-img img {
  object-position: center left;
}

#cat-pedicure .price-card-img img {
  object-position: center 75%;
}

#cat-biab .price-card-img img {
  object-position: center 40%;
}

/* Card header */
.price-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-card-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--rich-black);
  line-height: 1.2;
  margin: 0;
}

/* Card body — price rows */
.price-card-body {
  padding: 8px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 28px;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: rgba(45, 140, 78, 0.04);
}

.price-row span:first-child {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  flex: 1;
  padding-right: 16px;
}

.price-val {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0;
  color: var(--emerald);
  white-space: nowrap;
  font-weight: 600;
}

/* CTA at bottom */
.price-cta {
  text-align: center;
  padding: 60px 20px 0;
  max-width: 500px;
  margin: 0 auto;
}

.price-cta p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card-featured {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .price-hero {
    padding: 140px 5% 20px;
  }

  .price-hero-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .price-hero-sub {
    font-size: 0.78rem;
  }

  .price-nav {
    gap: 6px;
    padding: 30px 0 16px;
    top: 60px;
  }

  .price-pill {
    font-size: 0.6rem;
    padding: 8px 16px;
  }

  .price-card-header {
    padding: 20px 20px;
    gap: 12px;
  }

  .price-row {
    padding: 12px 20px;
  }

  .price-row span:first-child {
    font-size: 0.82rem;
  }

  .price-val {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .price-hero {
    padding: 140px 4% 20px;
  }

  .price-pill {
    font-size: 0.55rem;
    padding: 7px 12px;
    letter-spacing: 1px;
  }

  .price-card {
    border-radius: 12px;
  }

  .price-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    padding: 7px;
  }

  .price-card-header h2 {
    font-size: 1rem;
  }

  .price-row {
    padding: 11px 16px;
  }

  .price-row span:first-child {
    font-size: 0.78rem;
  }

  .price-val {
    font-size: 0.8rem;
  }
}

/* ============================================
   MOBILE DESIGN OVERHAUL
   Premium mobile experience for iOS Safari,
   Android Chrome, Firefox Mobile
   ============================================ */

/* Global containment — prevents ANY horizontal overflow */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 768px) {

  /* === GLOBAL CONTAINMENT === */
  section,
  footer,
  .about-section,
  .brand-story-section,
  .lemon-creative,
  .reviews-section,
  .happy-hands-section,
  .newsletter-section,
  .visit-section,
  .experience-section,
  .palette-section,
  .hero,
  .price-hero,
  .contact-hero,
  .blog-hero {
    overflow-x: hidden;
  }

  /* === HERO — shorter, centered content === */
  /* Hero — shorter to show more image */
  .hero {
    min-height: 70vh;
  }

  .hero-bg img {
    object-position: center 30%;
  }

  .hero-content {
    text-align: center;
    margin-left: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 280px;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
    display: flex;
    padding: 14px 24px;
    font-size: 0.7rem;
  }

  .hero-scroll {
    bottom: 20px;
  }

  /* === MOBILE MENU — premium design === */
  .navbar-nav {
    background: linear-gradient(180deg, var(--emerald-dark) 0%, var(--emerald) 100%) !important;
    padding: 80px 40px 40px !important;
    width: 85% !important;
    max-width: 340px !important;
    box-shadow: -16px 0 60px rgba(0, 0, 0, 0.3) !important;
  }

  .navbar-nav a {
    color: white !important;
    font-family: var(--font-impact) !important;
    font-size: 1rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: padding-left 0.3s ease, opacity 0.3s ease !important;
  }

  .navbar-nav a:hover,
  .navbar-nav a:active {
    padding-left: 12px !important;
    opacity: 0.8 !important;
  }

  .navbar-cta {
    margin-top: 32px !important;
  }

  /* Hide flag dropdown on mobile (it's inside burger menu now) */
  .navbar-actions .lang-dropdown {
    display: none !important;
  }

  /* Show flag-based lang switcher inside mobile menu */
  .navbar-nav .lang-switcher-mobile {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 8px;
  }

  .navbar-nav .lang-switcher-mobile .lang-option {
    padding: 8px 14px;
    font-size: 1.3rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    width: auto;
    min-width: auto;
    gap: 0;
    justify-content: center;
  }

  .navbar-nav .lang-switcher-mobile .lang-option.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
  }

  /* Desktop CTA in navbar (green, replaces lang-switcher) */
  .navbar-actions .navbar-cta-desktop {
    display: none !important;
  }

  /* Menu CTA button — yellow (navbar-cta is ON the <a> not a wrapper) */
  a.navbar-cta,
  .navbar-nav a.navbar-cta {
    background: var(--lemon) !important;
    color: var(--rich-black) !important;
    border-color: var(--lemon) !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
    padding: 14px 24px !important;
    border-radius: 30px !important;
    margin-top: 20px !important;
  }

  /* Active nav link state (exclude CTA button to prevent yellow-on-yellow) */
  .navbar-nav a.active:not(.navbar-cta),
  .navbar-nav a[aria-current="page"]:not(.navbar-cta) {
    color: var(--lemon) !important;
    border-bottom-color: var(--lemon) !important;
    border-bottom-width: 2px !important;
  }

  .mobile-toggle span {
    background: var(--rich-black);
  }

  /* White circle behind X close icon */
  .mobile-toggle.active {
    position: fixed;
    top: 16px;
    right: 20px;
    left: auto;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  .mobile-toggle.active span {
    background: var(--rich-black);
  }

  /* Close button in menu */
  .mobile-close {
    color: white !important;
  }

  /* === COLOR BUBBLES — 3 columns, no clipping === */
  .palette-track {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 12px !important;
    padding: 12px 0 20px !important;
  }

  .palette-marquee {
    padding: 0 12px !important;
    overflow: hidden !important;
  }

  .swatch-orb {
    width: 90px;
    height: 90px;
  }

  .swatch-label {
    font-size: 0.55rem;
  }

  /* Hide floating dots on mobile */
  .palette-sparkle {
    display: none;
  }

  /* Hide 16th swatch so 15 items = 5 clean rows of 3 */
  .palette-track .palette-swatch:nth-child(16) {
    display: none;
  }

  /* === LEMON MASK / EXPERIENCE — properly centered === */
  .lemon-creative-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .lemon-mask-wrapper {
    max-width: 280px;
    margin: 0 auto;
    overflow: visible;
  }

  .lemon-mask {
    border-radius: 50%;
    overflow: hidden;
  }

  .lemon-leaf {
    display: none;
  }

  .lemon-sticker {
    font-size: 0.6rem;
    padding: 6px 12px;
  }

  .sticker-glow {
    top: -4%;
    right: 2%;
  }

  .sticker-fresh {
    bottom: 2%;
    left: 2%;
  }

  /* === CTA BUTTON — centered on mobile === */
  .lemon-creative-text .btn {
    align-self: center;
  }

  /* === EXPERIENCE VIDEO MASK === */
  .experience-lemon-mask {
    width: 280px;
    max-width: 75vw;
    height: auto;
    margin: 0 auto;
  }

  .experience-section .container {
    text-align: center;
  }

  /* === GALLERY / HAPPY HANDS — proper 2x2 grid on mobile === */
  .happy-hands-row {
    grid-template-columns: repeat(2, 1fr) !important;
    overflow-x: hidden !important;
    gap: 8px !important;
  }

  .happy-hands-img {
    scroll-snap-align: none;
  }

  /* === ABOUT STICKERS — proportionally around the photo === */
  .about-section {
    overflow: visible;
  }

  .about-image {
    position: relative !important;
    overflow: visible !important;
    text-align: center;
  }

  .about-sticker {
    position: absolute !important;
    display: block !important;
    font-size: 0.5rem !important;
    padding: 6px 12px !important;
    z-index: 10 !important;
    animation: none !important;
  }

  /* Top-right of photo */
  .about-sticker-1 {
    top: 10px !important;
    right: -5px !important;
    left: auto !important;
    bottom: auto !important;
    transform: rotate(8deg) !important;
  }

  /* Bottom-right of photo */
  .about-sticker-2 {
    bottom: 60px !important;
    right: -10px !important;
    left: auto !important;
    top: auto !important;
    transform: rotate(-5deg) !important;
  }

  /* Top-left of photo */
  .about-sticker-3 {
    top: 50px !important;
    left: -5px !important;
    right: auto !important;
    bottom: auto !important;
    transform: rotate(-10deg) !important;
  }

  /* Bottom-left of photo */
  .about-sticker-4 {
    bottom: 10px !important;
    left: 5px !important;
    right: auto !important;
    top: auto !important;
    transform: rotate(6deg) !important;
  }

  /* === BRAND STORY STICKERS — keep sticker feel with rotation === */
  .brand-story-sticker {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    display: inline-block !important;
    margin: 4px 6px !important;
  }

  .brand-story-sticker.sticker-1 {
    transform: rotate(-6deg) !important;
  }

  .brand-story-sticker.sticker-2 {
    transform: rotate(4deg) !important;
    width: auto !important;
    height: auto !important;
    border-radius: 50px !important;
  }

  .brand-story-sticker.sticker-3 {
    transform: rotate(5deg) !important;
  }

  .brand-story-sticker.sticker-4 {
    transform: rotate(-4deg) !important;
  }

  .brand-story-sticker.sticker-5 {
    transform: rotate(6deg) !important;
  }

  .brand-story-inner {
    text-align: center;
  }

  .brand-story {
    text-align: center;
  }

  /* === COOKIE BANNER — centered and proper === */
  .cookie-banner {
    padding: 16px !important;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .cookie-text {
    min-width: auto;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
  }

  /* === VISIT SECTION — single column === */
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visit-photo {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  /* === NEWSLETTER — compact on mobile (correct selector!) === */
  .newsletter-form {
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .newsletter-form input {
    font-size: 0.8rem !important;
    padding: 10px 12px !important;
  }

  .newsletter-form button {
    font-size: 0.65rem !important;
    padding: 10px 14px !important;
    letter-spacing: 0.5px !important;
  }

  /* === REVIEWS — horizontal scroll contained === */
  .reviews-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* === FOOTER — centered on mobile === */
  .footer-grid {
    text-align: center;
  }

  /* === ALL CONTAINERS === */
  .container,
  .hero-content,
  .price-cards,
  .blog-cards,
  .footer-grid,
  .contact-form-wrapper,
  .contact-grid {
    max-width: 100%;
  }
}

/* === EXTRA SMALL SCREENS (iPhone SE, < 380px) === */
@media (max-width: 380px) {
  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-buttons {
    max-width: 240px;
  }

  .experience-lemon-mask {
    width: 240px;
  }

  .visit-photo {
    max-width: 240px;
  }

  .swatch-orb {
    width: 75px;
    height: 75px;
  }

  .palette-track {
    gap: 12px 8px !important;
  }
}

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--rich-black);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--emerald);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-question:hover {
  color: var(--emerald);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--charcoal);
}

/* ==========================================================
   LEGAL PAGES (Terms, Privacy, Cookies)
   ========================================================== */
.legal-prose {
  color: var(--charcoal);
  line-height: 1.8;
}

.legal-prose h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--rich-black);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-prose h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--emerald);
  margin-top: 20px;
  margin-bottom: 8px;
}

.legal-prose p {
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.legal-prose ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.legal-prose li {
  font-size: 0.92rem;
  margin-bottom: 6px;
}

/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.about-meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-meet-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .about-photo img {
    max-width: 280px !important;
    margin: 0 auto;
    display: block;
  }
}

/* ==========================================================
   CONSENT CHECKBOX
   ========================================================== */
.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
}

.consent-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--emerald);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.consent-group label {
  font-size: 0.82rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.consent-group a {
  color: var(--emerald);
  text-decoration: underline;
}

/* Consent alert state */
.consent-group.consent-alert {
  background: #fef2f2;
  border: 1.5px solid #ef4444;
  border-radius: 8px;
  padding: 10px 12px;
  animation: consentShake 0.4s ease;
}

.consent-alert-msg {
  font-size: 0.82rem;
  color: #dc2626;
  font-weight: 600;
  margin: 8px 0 4px;
  padding: 0 4px;
  animation: consentShake 0.4s ease;
}

@keyframes consentShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* ==========================================================
   FOOTER LEGAL LINKS
   ========================================================== */
.footer-legal-links {
  display: inline-flex;
  gap: 4px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--lemon);
}

/* Centurion Labs credit */
.footer .centurion-credit {
  color: var(--lemon) !important;
  text-decoration: underline !important;
  transition: color 0.3s ease;
}
.footer .centurion-credit:hover {
  color: var(--lemon) !important;
}

/* ==========================================================
   PROMO CODE SECTION
   ========================================================== */
.promo-code-section {
  margin: 28px 0;
  padding: 24px;
  background: linear-gradient(135deg, #f0faf4, #e8f5ec);
  border: 2px dashed var(--emerald);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.promo-code-section::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(245, 230, 66, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-code-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rich-black);
  margin-bottom: 4px;
  display: block;
}

.promo-code-hint {
  font-size: 0.82rem;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.4;
}

.promo-code-input-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.promo-code-input-wrap input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.promo-code-input-wrap input:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(30, 80, 50, 0.1);
}

.promo-apply-btn {
  white-space: nowrap;
  padding: 12px 20px !important;
  font-size: 0.75rem !important;
  border-radius: 10px !important;
}

.promo-feedback {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 1.3em;
  transition: all 0.2s;
}

.promo-feedback.promo-success {
  color: #1a7a3a;
  background: rgba(26, 122, 58, 0.08);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid #1a7a3a;
}

.promo-feedback.promo-error {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.06);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid #c0392b;
}

/* Promo applied on total */
.price-original {
  text-decoration: line-through;
  color: var(--charcoal);
  opacity: 0.5;
  font-weight: 400;
  font-size: 0.9em;
  margin-right: 6px;
}

.price-discounted {
  font-weight: 700;
  color: #1a7a3a;
  font-size: 1.15em;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a7a3a, #27ae60);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-left: 6px;
  vertical-align: middle;
  animation: promoPulse 2s ease-in-out infinite;
}

@keyframes promoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.summary-total.has-promo {
  background: linear-gradient(135deg, rgba(26, 122, 58, 0.06), rgba(39, 174, 96, 0.04));
  border-radius: 8px;
  padding: 12px 16px !important;
}

@media (max-width: 480px) {
  .promo-code-input-wrap {
    flex-direction: column;
  }

  .promo-apply-btn {
    width: 100%;
  }

  .promo-code-section {
    padding: 18px;
  }
}

/* ==========================================================
   PROMO POPUP (First-Time Visitor)
   ========================================================== */
.promo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  transition: background 0.4s ease;
}

.promo-popup-overlay.active {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: auto;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.promo-popup {
  background: white;
  border-radius: 24px;
  padding: 40px 32px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(30px) scale(0.95);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.promo-popup-overlay.active .promo-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.promo-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 50%;
  transition: all 0.2s;
}

.promo-popup-close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: #333;
}

.promo-popup-confetti {
  font-size: 3rem;
  margin-bottom: 8px;
  animation: popBounce 0.6s 0.3s ease both;
}

@keyframes popBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.promo-popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--emerald), #27ae60);
  color: white;
  font-family: var(--font-impact, sans-serif);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.promo-popup-title {
  font-family: var(--font-display, serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rich-black, #111);
  margin-bottom: 10px;
  line-height: 1.2;
}

.promo-popup-desc {
  font-size: 0.92rem;
  color: var(--charcoal, #555);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.promo-popup-code-box {
  background: linear-gradient(135deg, #fef9e7, #fdf3c7);
  border: 2px dashed #e6c619;
  border-radius: 14px;
  padding: 18px 24px;
  margin: 0 auto 16px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.promo-popup-code {
  font-family: var(--font-impact, sans-serif);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--rich-black, #111);
}

.promo-popup-discount {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a7a3a;
  background: rgba(26, 122, 58, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
}

.promo-popup-fine {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 22px;
  line-height: 1.5;
}

.promo-popup-cta {
  display: block;
  width: 100%;
  padding: 16px 24px !important;
  font-size: 0.85rem !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  font-weight: 500 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(30, 80, 50, 0.3);
  transition: all 0.3s ease;
}

.promo-popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 80, 50, 0.4);
}

.promo-popup-later {
  background: none;
  border: none;
  color: #aaa;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.2s;
  font-family: var(--font-body, sans-serif);
}

.promo-popup-later:hover {
  color: #666;
}

@media (max-width: 480px) {
  .promo-popup {
    padding: 32px 20px 24px;
    border-radius: 20px;
  }

  .promo-popup-title {
    font-size: 1.35rem;
  }

  .promo-popup-code {
    font-size: 1.5rem;
    letter-spacing: 3px;
  }

  .promo-popup-desc {
    font-size: 0.85rem;
  }
}

/* ---- Mobile Footer: Centurion credit on second line ---- */
@media (max-width: 768px) {
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }
  .footer-legal-links .centurion-credit {
    flex-basis: 100%;
    display: block;
    text-align: center;
    margin-top: 6px;
  }
}

/* ---- Mobile Nav: X close inside the panel ---- */
@media (max-width: 900px) {
  .navbar-nav.open ~ .navbar-actions .mobile-toggle,
  .mobile-toggle.active {
    position: fixed;
    top: 52px;
    left: calc(min(80%, 360px) - 52px);
    z-index: 1002;
  }
}

/* ---- Enhanced Legal Page Styles ---- */
.legal-prose h3 {
  color: #2D6A4F;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 3px solid #2D6A4F;
  font-style: normal;
}
.legal-prose h4 {
  color: #2D6A4F;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 20px 0 8px;
  font-style: normal;
}
.legal-prose p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 12px;
}
.legal-prose ul {
  margin: 12px 0 16px 0;
  padding: 0;
  list-style: none;
}
.legal-prose ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444;
}
.legal-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #2D6A4F;
  opacity: 0.35;
}
.legal-prose strong {
  color: #1a1a1a;
  font-weight: 600;
}
.legal-prose em {
  color: #888;
  font-size: 0.85rem;
}
.legal-prose a {
  color: #2D6A4F;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose .legal-info-card {
  background: linear-gradient(135deg, #f0fdf4, #fefce8);
  border: 1px solid #bbf7d0;
  border-radius: 14px;
  padding: 20px 24px;
  margin: 24px 0;
}
.legal-prose .legal-info-card p {
  margin: 0;
  font-size: 0.88rem;
}
