/* ═══════════════════════════════════════
   LUMI NAILS & MEDSPA — MASTER STYLESHEET
   ═══════════════════════════════════════ */

/* Google Fonts loaded via <link> in HTML head — no @import needed */

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

:root {
  --cream: #F8F4EE;
  --sand: #EDE6DA;
  --white: #FFFFFF;
  --gold: #9A6F35;
  --gold-light: #C9A96E;
  --text-primary: #111111;
  --text-secondary: #333333;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-tap-highlight-color: rgba(154, 111, 53, 0.1);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 8px;
}

/* ── Ken Burns Image Animation ── */
.img-ken-burns {
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* ── Page Transition ── */
.page-transition {
  opacity: 0;
  animation: pageFadeIn 0.6s ease forwards;
}

@keyframes pageFadeIn {
  to { opacity: 1; }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── Countdown Banner ── */
.countdown-banner {
  background: var(--sand);
  color: var(--gold);
  text-align: center;
  padding: 10px 50px 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(154, 111, 53, 0.15);
}

.countdown-banner span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.countdown-banner .countdown-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.countdown-banner .countdown-close:hover {
  opacity: 1;
}

.countdown-banner.hidden {
  display: none;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, top 0.3s ease;
  background: transparent;
}

.navbar.has-banner {
  top: 41px;
}

.navbar.scrolled {
  background: rgba(248, 244, 238, 0.97);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
  top: 0;
}

.navbar.scrolled.has-banner {
  top: 0;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-left {
  margin-right: auto;
}

.nav-right {
  margin-left: auto;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--text-primary);
  padding: 0 48px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-book {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  transition: all 0.3s;
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1002;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .nav-book {
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--cream);
  overflow: hidden;
  padding-top: calc(var(--nav-height) + 41px);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 28vw;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - var(--nav-height) - 41px);
}

.hero-text {
  position: relative;
  z-index: 3;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-subhead {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 16px;
}

.hero-gold-line {
  width: 120px;
  height: 1px;
  background: var(--gold);
  margin: 32px 0;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sand) 0%, #e5ddd0 100%);
  border: 1px solid var(--gold-light);
  position: relative;
  overflow: hidden;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(154, 111, 53, 0.2);
}

.hero-accent-line {
  position: absolute;
  left: -80px;
  top: 45%;
  width: calc(100% + 160px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 4;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(154, 111, 53, 0.2);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.hero-badge .badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.3s;
}

.btn-gold:hover {
  background: #855f2d;
  border-color: #855f2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(154, 111, 53, 0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--text-primary);
  transition: all 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  background: transparent;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(154, 111, 53, 0.25);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s, color 0.3s;
}

.btn-text:hover {
  gap: 12px;
}

.btn-text .arrow {
  transition: transform 0.3s;
}

.btn-text:hover .arrow {
  transform: translateX(4px);
}

/* ── Section Styles ── */
.section {
  padding: 100px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtext {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 560px;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.bg-sand {
  background: var(--sand);
}

/* ── Decorative Diamond Divider ── */
.diamond-divider {
  text-align: center;
  padding: 20px 0;
}

.diamond-divider-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.diamond-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 111, 53, 0.2));
}

.diamond-divider-line:last-child {
  background: linear-gradient(270deg, transparent, rgba(154, 111, 53, 0.2));
}

.diamond-divider-shape {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
}

.bg-white {
  background: var(--white);
}

/* ── Services Preview ── */
.services-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-preview-card {
  background: var(--white);
  padding: 40px 28px;
  border: 1px solid rgba(154, 111, 53, 0.1);
  transition: all 0.4s;
  text-align: center;
}

.service-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-light);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.service-preview-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-preview-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-preview-card .btn-text {
  font-size: 0.75rem;
}

/* ── Signature Treatment ── */
.signature-section {
  position: relative;
  overflow: hidden;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.signature-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.signature-text .price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  margin: 24px 0;
}

.signature-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.signature-image {
  position: relative;
}

.signature-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sand) 0%, #e5ddd0 100%);
  border: 1px solid var(--gold-light);
  position: relative;
}

.signature-image-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(154, 111, 53, 0.15);
}

.signature-line {
  position: absolute;
  left: -40px;
  top: 50%;
  width: calc(100% + 80px);
  height: 1px;
  background: var(--gold);
  z-index: 2;
}

/* ── Hermes Band ── */
.hermes-band {
  background: linear-gradient(135deg, #9A6F35 0%, #C9A96E 50%, #9A6F35 100%);
  background-size: 200% 100%;
  animation: shimmer 6s ease infinite;
  padding: 32px 40px;
  text-align: center;
  color: var(--white);
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hermes-band p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hermes-band a {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.hermes-band a:hover {
  color: #fff;
  border-color: #fff;
}

/* ── Membership Cards ── */
.membership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.membership-cards.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}
.membership-card .tier-savings {
  display: inline-block;
  background: linear-gradient(135deg, rgba(154,111,53,0.12), rgba(154,111,53,0.06));
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(154,111,53,0.15);
}
.membership-card .tier-commit {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-style: italic;
}
.membership-card .tier-value {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}
.membership-card.tier-founding {
  background: linear-gradient(165deg, #1a1a1a 0%, #2a2218 50%, #1a1a1a 100%);
  border-color: var(--gold);
  color: var(--cream);
}
.membership-card.tier-founding .tier-name {
  color: var(--gold-light);
}
.membership-card.tier-founding .tier-price {
  color: var(--gold);
}
.membership-card.tier-founding .tier-period,
.membership-card.tier-founding .tier-commit,
.membership-card.tier-founding .tier-value,
.membership-card.tier-founding .tier-savings {
  color: var(--gold-light);
}
.membership-card.tier-founding li {
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.08);
}
.membership-card.tier-founding .tier-savings {
  background: linear-gradient(135deg, rgba(201,169,110,0.2), rgba(201,169,110,0.1));
  border-color: rgba(201,169,110,0.3);
}
.membership-card.tier-concierge {
  border-color: var(--gold);
}
.membership-card.tier-concierge::before {
  content: 'Ultimate';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
}
.membership-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  margin: 16px 0 8px;
  text-align: left;
  letter-spacing: 0.04em;
}

.membership-card {
  background: var(--white);
  padding: 44px 32px;
  border: 1px solid rgba(154, 111, 53, 0.1);
  text-align: center;
  transition: all 0.4s;
  position: relative;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.membership-card.featured {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(154, 111, 53, 0.12);
}

.membership-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
}

.membership-card .tier-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.membership-card .tier-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 4px;
}

.membership-card .tier-period {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.membership-card ul {
  text-align: left;
  margin-bottom: 32px;
}

.membership-card li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.membership-card li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ── Instagram Grid ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.insta-item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sand) 0%, #e5ddd0 100%);
  border: 1px solid rgba(154, 111, 53, 0.15);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.insta-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(154, 111, 53, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-item:hover::after {
  opacity: 1;
}

.insta-item .insta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.insta-item:hover .insta-icon {
  opacity: 1;
}

/* ── Availability Widget ── */
.availability-widget {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(154, 111, 53, 0.15);
  padding: 14px 24px;
  margin-top: 24px;
  border-radius: 4px;
}

.availability-widget .cal-icon {
  color: var(--gold);
  width: 20px;
  height: 20px;
}

.availability-widget p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.availability-widget strong {
  color: var(--gold);
  font-weight: 600;
}

.availability-widget a {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 8px;
  transition: opacity 0.3s;
}

.availability-widget a:hover {
  opacity: 0.7;
}

/* ── Footer ── */
.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 40px 40px;
  border-top: 2px solid var(--gold);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  text-align: center;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-contact-info p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  padding: 0;
}

.footer-social a:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-cta {
  display: inline-block;
  margin-bottom: 16px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.footer-bottom .footer-cta:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-bottom .copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 14px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* ── Grand Opening Popup ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

.popup-overlay.hidden {
  display: none;
}

.popup-card {
  background: var(--sand);
  max-width: 480px;
  width: 100%;
  padding: 56px 44px;
  text-align: center;
  border-top: 3px solid var(--gold);
  position: relative;
  transform: translateY(40px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-overlay.visible .popup-card {
  transform: translateY(0);
}

.popup-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.popup-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}

.popup-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.popup-diamond {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--gold-light);
}

.popup-diamond .line {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}

.popup-diamond .diamond {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-light);
  transform: rotate(45deg);
}

.popup-dismiss {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s;
}

.popup-dismiss:hover {
  color: var(--gold);
}

/* ── Chat Widget ── */
.chat-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(154, 111, 53, 0.35);
  transition: all 0.3s;
}

.chat-launcher:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(154, 111, 53, 0.45);
}

.chat-launcher .pulse-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.chat-launcher .tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-primary);
  color: var(--white);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.chat-launcher:hover .tooltip {
  opacity: 1;
}

.chat-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 1500;
  width: 360px;
  height: 480px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.chat-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.chat-header {
  background: var(--text-primary);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-logo {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.chat-header-info h4 {
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-header-info .online-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
}

.chat-header-info p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.chat-close {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 4px;
  transition: color 0.3s;
  background: none;
  border: none;
  font-size: 1.2rem;
}

.chat-close:hover {
  color: var(--white);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-message.bot {
  background: var(--sand);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-message.user {
  background: var(--gold);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 12px;
}

.chat-quick-reply {
  padding: 8px 14px;
  border: 1px solid rgba(154, 111, 53, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  background: none;
}

.chat-quick-reply:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 8px;
}

.chat-input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.chat-input:focus {
  border-color: var(--gold);
}

.chat-send {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.chat-send:hover {
  background: #855f2d;
}

/* ── Services Page ── */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 40px 60px;
  text-align: center;
  background: var(--cream);
  position: relative;
}

.page-hero .hero-watermark {
  font-size: 18vw;
}

.page-hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-category {
  padding: 60px 0;
  border-bottom: 1px solid rgba(154, 111, 53, 0.1);
}

.service-category:last-child {
  border-bottom: none;
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.service-category-header .cat-icon {
  color: var(--gold);
  width: 28px;
  height: 28px;
}

.service-category-header h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
}

.service-category-note {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.service-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  font-size: 0.95rem;
  font-weight: 400;
}

.service-duration {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  text-align: right;
  min-width: 80px;
}

/* ── Skin Quiz ── */
.skin-quiz {
  max-width: 600px;
  margin: 0 auto;
}

.quiz-card {
  background: var(--white);
  border: 1px solid rgba(154, 111, 53, 0.12);
  padding: 48px 40px;
  text-align: center;
}

.quiz-progress {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.quiz-progress .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(154, 111, 53, 0.2);
  transition: all 0.3s;
}

.quiz-progress .dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 28px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  padding: 14px 20px;
  border: 1px solid rgba(154, 111, 53, 0.15);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-align: center;
}

.quiz-option:hover {
  border-color: var(--gold);
  background: var(--sand);
}

.quiz-result {
  display: none;
}

.quiz-result.active {
  display: block;
}

.quiz-result h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.quiz-result p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.quiz-step {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.quiz-step.exiting {
  opacity: 0;
  transform: translateX(-20px);
}

.quiz-step.entering {
  opacity: 0;
  transform: translateX(20px);
}

/* ── Before / After Slider ── */
.ba-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(154, 111, 53, 0.15);
  aspect-ratio: 16/9;
  user-select: none;
  touch-action: none;
}

.ba-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(154, 111, 53, 0.6);
  letter-spacing: 0.1em;
}

.ba-before {
  background: linear-gradient(135deg, #e5ddd0 0%, #ddd5c7 100%);
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  background: linear-gradient(135deg, var(--sand) 0%, #f0e9dc 100%);
  z-index: 0;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--gold);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle .handle-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 0.8rem;
  z-index: 4;
  pointer-events: none;
}

.ba-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ── Virtual Consultation ── */
.virtual-consult-card {
  background: var(--white);
  border: 1px solid rgba(154, 111, 53, 0.12);
  padding: 48px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.virtual-consult-card .vc-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.virtual-consult-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.virtual-consult-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.virtual-consult-card .vc-sub {
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 24px;
}

/* ── About Page ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-frame {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--sand) 0%, #e5ddd0 100%);
  border: 1px solid var(--gold-light);
  position: relative;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(154, 111, 53, 0.15);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border: 1px solid rgba(154, 111, 53, 0.08);
  transition: all 0.4s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.value-card .value-icon {
  color: var(--gold);
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Loyalty Tiers ── */
.loyalty-tiers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px auto;
  max-width: 700px;
}

.loyalty-tier {
  text-align: center;
  flex: 1;
  position: relative;
}

.tier-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(154, 111, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s;
}

.loyalty-tier:hover .tier-circle {
  border-color: var(--gold);
  background: rgba(154, 111, 53, 0.05);
}

.tier-circle .tier-icon {
  color: var(--gold);
  width: 28px;
  height: 28px;
}

.loyalty-tier h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.loyalty-tier p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.loyalty-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(154, 111, 53, 0.15), var(--gold-light));
  margin-bottom: 40px;
}

.loyalty-progress {
  max-width: 500px;
  margin: 32px auto 0;
  height: 6px;
  background: rgba(154, 111, 53, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loyalty-progress-bar {
  width: 33%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 1s ease;
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-side {
  padding-top: 8px;
}

.contact-info-block {
  margin-bottom: 32px;
}

.contact-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-info-block p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-hours {
  margin-top: 24px;
}

.contact-hours h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--sand) 0%, #e5ddd0 100%);
  border: 1px solid rgba(154, 111, 53, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-top: 40px;
}

/* ── Policy Pages ── */
.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-content ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.policy-content li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.policy-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.policy-content strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* ── Lumi Skin Day ── */
.skinday-hero {
  background: var(--sand);
  padding: 48px 36px;
  margin-bottom: 32px;
  border: 1px solid rgba(154, 111, 53, 0.1);
  position: relative;
  overflow: hidden;
}

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

.skinday-subtitle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}

.skinday-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 16px;
}

.skinday-consult-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: var(--white);
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(154, 111, 53, 0.12);
  margin-bottom: 12px;
}

.skinday-member-callout {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
}

.skinday-member-callout a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.skinday-card {
  background: var(--white);
  border: 1px solid rgba(154, 111, 53, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s;
  overflow: visible;
}

.skinday-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(154, 111, 53, 0.2);
}

.skinday-featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(154, 111, 53, 0.1);
}

.skinday-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 18px;
  white-space: nowrap;
  z-index: 2;
}

.skinday-card-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid rgba(154, 111, 53, 0.06);
}

.skinday-tier-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.skinday-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
}

.skinday-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.skinday-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
}

.skinday-card-body {
  padding: 24px 28px;
  flex: 1;
}

.skinday-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.skinday-includes {
  font-size: 0.82rem !important;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.skinday-tagline {
  font-style: italic;
  color: var(--gold) !important;
  font-size: 0.85rem !important;
}

.skinday-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.skinday-promo-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  background: rgba(154, 111, 53, 0.06);
  color: var(--gold);
  border: 1px solid rgba(154, 111, 53, 0.12);
}

.skinday-promo-tag.skinday-new-client {
  background: rgba(154, 111, 53, 0.1);
  border-color: var(--gold-light);
}

.skinday-card-footer {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.skinday-gift-link {
  font-size: 0.78rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.skinday-gift-link:hover {
  color: var(--gold);
}

.skinday-fine-print {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-style: italic;
}

@media (max-width: 768px) {
  .skinday-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skinday-featured {
    order: -1;
  }

  .skinday-hero {
    padding: 32px 24px;
  }

  .skinday-card-header {
    padding: 28px 20px 16px;
  }

  .skinday-card-body {
    padding: 20px;
  }

  .skinday-card-footer {
    padding: 16px 20px 24px;
  }
}

@media (max-width: 480px) {
  .skinday-hero {
    padding: 24px 16px;
  }

  .skinday-description {
    font-size: 0.9rem;
  }

  .skinday-card-header h3 {
    font-size: 1.1rem;
  }

  .skinday-price {
    font-size: 1.3rem;
  }

  .skinday-card-body p {
    font-size: 0.85rem;
  }
}

/* ── File Upload ── */
.file-upload-wrapper {
  position: relative;
  cursor: pointer;
}

.file-upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.file-upload-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 20px;
  border: 2px dashed rgba(154, 111, 53, 0.2);
  background: var(--white);
  transition: all 0.3s;
  text-align: center;
  color: var(--gold);
}

.file-upload-wrapper:hover .file-upload-display {
  border-color: var(--gold);
  background: rgba(154, 111, 53, 0.03);
}

.file-upload-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.file-upload-hint {
  font-size: 0.75rem;
  color: var(--text-muted, #999);
  font-style: italic;
}

.file-upload-input:focus + .file-upload-display {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(154, 111, 53, 0.1);
}

/* ── Career Cards ── */
.career-card {
  background: var(--white);
  border: 1px solid rgba(154, 111, 53, 0.08);
  padding: 32px;
  margin-bottom: 16px;
  transition: all 0.4s;
}

.career-card:hover {
  border-color: rgba(154, 111, 53, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.career-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.career-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
}

.career-meta {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 400;
}

.career-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.career-requirements {
  font-size: 0.85rem !important;
  color: var(--text-secondary);
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  margin-top: 12px !important;
}

@media (max-width: 600px) {
  .career-header {
    flex-direction: column;
    gap: 12px;
  }

  .career-header .btn-outline-gold {
    width: 100%;
    text-align: center;
  }

  .career-card {
    padding: 24px 20px;
  }
}

/* ── Promotions Nav Link ── */
.nav-link--promo {
  color: var(--text-secondary);
  font-weight: 400;
}

/* ── Promotions Page ── */
.promo-bundles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.promo-bundle-card {
  background: var(--cream);
  padding: 44px 32px 36px;
  border: 1px solid rgba(154, 111, 53, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.4s;
}

.promo-bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.promo-bundle-card.featured {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(154, 111, 53, 0.12);
}

.promo-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}

.promo-bundle-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
}

.promo-bundle-card .bundle-includes {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.promo-bundle-card ul {
  text-align: left;
  margin-bottom: 24px;
}

.promo-bundle-card li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-bundle-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.bundle-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.bundle-pricing .original {
  font-size: 1rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

.bundle-pricing .sale {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
}

/* Member Banner */
.promo-member-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(154, 111, 53, 0.1);
  padding: 48px;
}

/* Category Grid */
.promo-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.promo-category-card {
  background: var(--white);
  padding: 36px 24px;
  border: 1px solid rgba(154, 111, 53, 0.1);
  text-align: center;
  transition: all 0.4s;
}

.promo-category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--gold-light);
}

.promo-category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.promo-category-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Steps */
.promo-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.promo-step {
  text-align: center;
  flex: 1;
  max-width: 260px;
  padding: 0 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
}

.promo-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.promo-step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.promo-step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(154, 111, 53, 0.15), var(--gold-light));
  margin-top: 28px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   ELEGANCE LAYERS — DEPTH & LUXURY
   ═══════════════════════════════════════ */

/* ── Hero Floating Ornaments ── */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 8%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(154, 111, 53, 0.08);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(154, 111, 53, 0.06);
  transform: rotate(45deg);
  pointer-events: none;
  z-index: 1;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(154, 111, 53, 0.12);
  z-index: -1;
}

.hero-text::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -30px;
  width: 60px;
  height: 60px;
  border-left: 2px solid rgba(154, 111, 53, 0.1);
  border-top: 2px solid rgba(154, 111, 53, 0.1);
  pointer-events: none;
}

/* ── Section Corner Accents ── */
.section {
  position: relative;
}

.bg-white::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  border-right: 1px solid rgba(154, 111, 53, 0.08);
  border-top: 1px solid rgba(154, 111, 53, 0.08);
  pointer-events: none;
}

.bg-white::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 80px;
  height: 80px;
  border-left: 1px solid rgba(154, 111, 53, 0.08);
  border-bottom: 1px solid rgba(154, 111, 53, 0.08);
  pointer-events: none;
}

/* ── Service Preview Card Depth ── */
.service-preview-card {
  position: relative;
  overflow: visible;
}

.service-preview-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: rgba(154, 111, 53, 0.04);
  z-index: -1;
  transition: all 0.4s;
}

.service-preview-card:hover::before {
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: rgba(154, 111, 53, 0.06);
}

.service-icon {
  position: relative;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(154, 111, 53, 0.08);
}

/* ── Signature Section Depth ── */
.signature-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 111, 53, 0.1), transparent);
  pointer-events: none;
}

.signature-image-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(154, 111, 53, 0.1);
  z-index: -1;
}

.signature-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 40px;
  height: 40px;
  border-right: 2px solid rgba(154, 111, 53, 0.1);
  border-bottom: 2px solid rgba(154, 111, 53, 0.1);
  pointer-events: none;
}

/* ── Membership Card Depth Layers ── */
.membership-card {
  overflow: visible;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: -6px;
  bottom: -6px;
  background: rgba(154, 111, 53, 0.03);
  z-index: -1;
  transition: all 0.4s;
}

.membership-card:hover::before {
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  background: rgba(154, 111, 53, 0.05);
}

.membership-card.featured::before {
  background: rgba(154, 111, 53, 0.06);
}

.membership-card.featured::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 1px solid rgba(154, 111, 53, 0.15);
  pointer-events: none;
  z-index: -1;
}

/* ── Instagram Grid Depth ── */
.insta-item {
  transition: all 0.4s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.insta-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.insta-item:nth-child(even) {
  transform: translateY(8px);
}

.insta-item:nth-child(even):hover {
  transform: translateY(5px);
}

/* ── Hermes Band Depth ── */
.hermes-band {
  position: relative;
  overflow: hidden;
}

.hermes-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: skewX(-15deg);
  animation: hermesSweep 8s ease-in-out infinite;
}

@keyframes hermesSweep {
  0%, 100% { left: -40%; }
  50% { left: 110%; }
}

/* ── Footer Depth ── */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer {
  position: relative;
}

/* ── Value Card Depth ── */
.value-card::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: -6px;
  bottom: -6px;
  background: rgba(154, 111, 53, 0.03);
  z-index: -1;
  transition: all 0.4s;
}

.value-card {
  position: relative;
  overflow: visible;
}

.value-card:hover::before {
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
}

/* ── Promo Bundle Card Depth ── */
.promo-bundle-card::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: rgba(154, 111, 53, 0.03);
  z-index: -1;
  transition: all 0.4s;
}

.promo-bundle-card {
  overflow: visible;
}

.promo-bundle-card:hover::after {
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
}

/* ── Page Hero Depth ── */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154, 111, 53, 0.15), transparent);
}

/* ── Contact Form Depth ── */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 2px 12px rgba(154, 111, 53, 0.1);
}

/* ── Decorative Gold Dots ── */
.section-heading::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 6px;
  vertical-align: super;
}

/* ── Enhanced Scroll Reveal with Stagger ── */
.services-preview .service-preview-card:nth-child(1) { transition-delay: 0s; }
.services-preview .service-preview-card:nth-child(2) { transition-delay: 0.1s; }
.services-preview .service-preview-card:nth-child(3) { transition-delay: 0.2s; }
.services-preview .service-preview-card:nth-child(4) { transition-delay: 0.3s; }

.membership-cards .membership-card:nth-child(1) { transition-delay: 0s; }
.membership-cards .membership-card:nth-child(2) { transition-delay: 0.1s; }
.membership-cards .membership-card:nth-child(3) { transition-delay: 0.2s; }
.membership-cards .membership-card:nth-child(4) { transition-delay: 0.3s; }
.membership-cards .membership-card:nth-child(5) { transition-delay: 0.4s; }
.membership-cards .membership-card:nth-child(6) { transition-delay: 0.5s; }

.insta-grid .insta-item:nth-child(1) { transition-delay: 0s; }
.insta-grid .insta-item:nth-child(2) { transition-delay: 0.05s; }
.insta-grid .insta-item:nth-child(3) { transition-delay: 0.1s; }
.insta-grid .insta-item:nth-child(4) { transition-delay: 0.15s; }
.insta-grid .insta-item:nth-child(5) { transition-delay: 0.2s; }
.insta-grid .insta-item:nth-child(6) { transition-delay: 0.25s; }

/* ── Quiz Card Shadow ── */
.quiz-card {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.quiz-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(154, 111, 53, 0.08);
}

/* ── Virtual Consult Card Depth ── */
.virtual-consult-card {
  position: relative;
  overflow: visible;
}

.virtual-consult-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: rgba(154, 111, 53, 0.04);
  z-index: -1;
}

/* ── Availability Widget Depth ── */
.availability-widget {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
}

.availability-widget:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
}

/* ── Chat Launcher Depth ── */
.chat-launcher {
  box-shadow: 0 4px 20px rgba(154, 111, 53, 0.35), 0 0 0 4px rgba(154, 111, 53, 0.08);
}

/* ── Popup Card Depth ── */
.popup-card {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

/* ── Service Item Hover ── */
.service-item {
  transition: background 0.3s, padding-left 0.3s;
  padding-left: 0;
  border-radius: 2px;
}

.service-item:hover {
  background: rgba(154, 111, 53, 0.03);
  padding-left: 12px;
}

/* ── Gold Line Pulse ── */
.hero-gold-line {
  position: relative;
  overflow: visible;
}

.hero-gold-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 8px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { left: 0; opacity: 0.6; }
  50% { left: 112px; opacity: 1; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST LUXURY
   ═══════════════════════════════════════ */

/* ── Large Desktop → Laptop (1200px) ── */
@media (max-width: 1200px) {
  .services-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promo-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Tablet Landscape — iPad Pro / iPad Air landscape (1024px) ── */
@media (max-width: 1024px) {
  .hero-content {
    gap: 40px;
    padding: 60px 32px 100px;
  }

  .hero-headline {
    font-size: clamp(2.6rem, 4.5vw, 4rem);
  }

  .nav-left, .nav-right {
    gap: 24px;
  }

  .nav-logo {
    padding: 0 32px;
  }

  .signature-grid {
    gap: 40px;
  }

  .membership-cards {
    gap: 16px;
  }

  .membership-card {
    padding: 36px 24px;
  }

  .promo-bundles {
    gap: 16px;
  }

  .promo-bundle-card {
    padding: 36px 24px 32px;
  }

  .footer-columns {
    gap: 32px;
  }

  .about-story {
    gap: 40px;
  }

  .contact-grid {
    gap: 40px;
  }
}

/* ── Tablet Portrait — iPad (768px) ── */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  /* Base spacing */
  .section {
    padding: 56px 24px;
  }

  /* Nav → hamburger */
  .nav-left, .nav-right {
    display: none;
  }

  .nav-logo {
    padding: 0;
    font-size: 1.6rem;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-height) + 41px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 32px 24px 72px;
    gap: 36px;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-image-frame {
    max-height: 400px;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .hero-accent-line {
    display: none;
  }

  .hero-watermark {
    font-size: 30vw;
  }

  /* Hide decorative layers on tablet/mobile */
  .hero::before,
  .hero::after,
  .hero-text::before,
  .hero-image-frame::before,
  .bg-white::before,
  .bg-white::after,
  .signature-section::before,
  .signature-image-frame::before,
  .signature-text::after,
  .service-preview-card::before,
  .membership-card::before,
  .membership-card.featured::after,
  .value-card::before,
  .promo-bundle-card::after,
  .virtual-consult-card::before {
    display: none;
  }

  .insta-item:nth-child(even) {
    transform: none;
  }

  /* Hero CTA */
  .hero-cta-row {
    flex-direction: column;
  }

  .hero-cta-row a {
    text-align: center;
    padding: 16px 32px;
  }

  /* Buttons — larger tap targets on touch */
  .btn-gold, .btn-outline, .btn-outline-gold {
    padding: 16px 32px;
    font-size: 0.82rem;
    min-height: 48px;
  }

  .btn-small {
    padding: 14px 24px;
    min-height: 44px;
  }

  .nav-book {
    padding: 12px 20px;
    min-height: 44px;
  }

  /* Services Preview — 2 columns on tablet */
  .services-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-preview-card {
    padding: 32px 20px;
  }

  /* Signature */
  .signature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .signature-line {
    display: none;
  }

  .signature-text .price {
    font-size: 2.4rem;
  }

  /* Membership Cards — 2 columns on tablet, 1 on phone */
  .membership-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .membership-card {
    padding: 36px 24px;
  }

  .membership-card.featured {
    transform: none;
    order: -1;
    grid-column: 1 / -1;
  }

  .membership-card.tier-concierge {
    grid-column: 1 / -1;
  }

  .membership-card .tier-price {
    font-size: 2rem;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  /* Footer */
  .footer {
    padding: 48px 24px 32px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-col a {
    font-size: 0.9rem;
    padding: 6px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .footer-col h4 {
    font-size: 0.76rem;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
  }

  .footer-legal {
    gap: 6px 20px;
  }

  .footer-legal a {
    font-size: 0.76rem;
    min-height: 36px;
    display: flex;
    align-items: center;
  }

  /* About */
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-frame {
    max-height: 400px;
  }

  .about-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .value-card {
    padding: 32px 20px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 16px 18px;
    font-size: 16px; /* prevents iOS zoom on focus */
    min-height: 48px;
  }

  .hours-list li {
    font-size: 0.9rem;
    padding: 10px 0;
    min-height: 40px;
  }

  /* Service Items */
  .service-item {
    grid-template-columns: 1fr auto;
    gap: 6px;
    padding: 14px 0;
    min-height: 48px;
  }

  .service-name {
    font-size: 0.92rem;
  }

  .service-duration {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.8rem;
  }

  .service-price {
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }

  .service-category-header h2 {
    font-size: 1.5rem;
  }

  /* Chat */
  .chat-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 88px;
    height: min(420px, 60vh);
    max-height: 60vh;
  }

  .chat-launcher {
    width: 52px;
    height: 52px;
  }

  .chat-input {
    font-size: 16px; /* prevents iOS zoom */
    min-height: 44px;
  }

  .chat-send {
    min-width: 44px;
    min-height: 44px;
  }

  .chat-quick-reply {
    padding: 10px 16px;
    font-size: 0.8rem;
    min-height: 36px;
  }

  /* Loyalty */
  .loyalty-tiers {
    flex-direction: column;
    gap: 20px;
  }

  .loyalty-connector {
    width: 2px;
    height: 30px;
    margin-bottom: 0;
  }

  /* Page Hero */
  .page-hero {
    padding: calc(var(--nav-height) + 36px) 24px 36px;
  }

  .page-hero .hero-watermark {
    font-size: 22vw;
  }

  /* Before/After Slider */
  .ba-slider {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  /* Skin Quiz */
  .skin-quiz {
    max-width: 100%;
  }

  .quiz-card {
    padding: 32px 24px;
  }

  .quiz-option {
    padding: 16px 20px;
    font-size: 0.92rem;
    min-height: 48px;
  }

  .quiz-question {
    font-size: 1.3rem;
  }

  /* Virtual Consult */
  .virtual-consult-card {
    max-width: 100%;
    padding: 36px 24px;
  }

  /* Promotions */
  .promo-bundles {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .promo-bundle-card.featured {
    transform: none;
    order: -1;
    grid-column: 1 / -1;
  }

  .promo-bundle-card {
    padding: 36px 24px 28px;
  }

  .promo-member-banner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }

  .promo-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .promo-category-card {
    padding: 28px 16px;
  }

  .promo-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .promo-step {
    max-width: 100%;
    padding: 0 16px;
  }

  .promo-step-connector {
    width: 2px;
    height: 24px;
    margin: 0;
  }

  /* Popup */
  .popup-card {
    padding: 40px 28px;
    max-width: 400px;
  }

  .popup-heading {
    font-size: 2rem;
  }

  .popup-text {
    font-size: 0.9rem;
  }

  /* Countdown banner */
  .countdown-banner {
    font-size: 0.8rem;
    padding: 10px 44px 10px 16px;
    line-height: 1.5;
  }

  .countdown-banner span {
    font-size: 0.85rem;
  }

  .countdown-banner .countdown-close {
    padding: 8px 12px;
    font-size: 1.3rem;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Policy pages */
  .policy-content {
    padding: 0 4px;
  }

  .policy-content h2 {
    font-size: 1.25rem;
    margin-top: 32px;
  }

  .policy-content p {
    font-size: 0.9rem;
  }

  .policy-content li {
    font-size: 0.88rem;
  }

  /* Availability widget */
  .availability-widget {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 20px;
    justify-content: center;
  }

  .availability-widget p {
    font-size: 0.88rem;
  }

  /* Section text scaling */
  .section-heading {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .section-subtext {
    font-size: 0.95rem;
  }

  .section-label {
    font-size: 0.72rem;
  }

  /* Hermes band */
  .hermes-band {
    padding: 24px 24px;
  }

  .hermes-band p {
    font-size: 1.05rem;
  }

  /* Map embed */
  .contact-grid iframe,
  .section iframe {
    height: 300px;
  }

  /* Before/After Slider */
  .ba-slider {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  .ba-handle::after {
    width: 44px;
    height: 44px;
  }

  /* Skin Quiz */
  .skin-quiz {
    max-width: 100%;
  }

  .quiz-card {
    padding: 32px 24px;
  }

  .quiz-option {
    padding: 16px 20px;
    font-size: 0.92rem;
    min-height: 48px;
  }

  /* Career cards */
  .career-card {
    padding: 28px 24px;
  }

  .career-header h3 {
    font-size: 1.2rem;
  }

  /* File upload */
  .file-upload-display {
    padding: 24px 16px;
  }

  /* Inline max-width overrides */
  [style*="max-width:760px"],
  [style*="max-width:700px"],
  [style*="max-width:660px"],
  [style*="max-width:600px"],
  [style*="max-width:560px"],
  [style*="max-width:500px"],
  [style*="max-width:480px"] {
    max-width: 100% !important;
  }

  /* Membership comparison table */
  .section table {
    font-size: 0.82rem;
  }

  .section table th,
  .section table td {
    padding: 10px 8px !important;
  }

  /* Luminary definition card on about/home page */
  [style*="max-width:480px"][style*="padding:28px 32px"] {
    padding: 24px 20px !important;
    max-width: 100% !important;
  }
}

/* ── Small Tablet / Large Phone (600px) ── */
@media (max-width: 600px) {
  .services-preview {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .membership-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .membership-card.featured,
  .membership-card.tier-concierge {
    grid-column: auto;
  }

  .membership-card.tier-concierge [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .about-values {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promo-bundles {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .promo-bundle-card.featured {
    grid-column: auto;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .promo-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Career cards */
  .career-header {
    flex-direction: column;
    gap: 12px;
  }

  .career-header .btn-outline-gold {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* About values */
  .about-values {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ── Phone — iPhone 12/13/14/15 (480px) ── */
@media (max-width: 480px) {
  .section {
    padding: 48px 16px;
  }

  /* Hero */
  .hero-content {
    padding: 24px 16px 56px;
    gap: 28px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .hero-subhead {
    font-size: 0.95rem;
  }

  .hero-badges {
    flex-direction: column;
    gap: 8px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 8px 16px;
  }

  .hero-gold-line {
    width: 80px;
    margin: 24px 0;
  }

  .hero-cta-row a {
    width: 100%;
  }

  .hero-watermark {
    font-size: 36vw;
  }

  /* Section headings */
  .section-heading {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section-heading::after {
    display: none;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 28px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .footer-bottom .footer-cta {
    width: 100%;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .footer-legal a {
    min-height: 32px;
  }

  /* Service items */
  .service-item {
    padding: 12px 0;
  }

  .service-name {
    font-size: 0.88rem;
  }

  .service-category-header h2 {
    font-size: 1.3rem;
  }

  /* Signature treatment */
  .signature-text h2 {
    font-size: 1.6rem;
  }

  .signature-text .price {
    font-size: 2rem;
  }

  /* Membership cards */
  .membership-card {
    padding: 32px 20px;
  }

  .membership-card .tier-name {
    font-size: 1.4rem;
  }

  .membership-card .tier-price {
    font-size: 2rem;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  /* Chat */
  .chat-panel {
    width: calc(100vw - 16px);
    right: 8px;
    bottom: 80px;
    height: min(380px, 55vh);
    max-height: 55vh;
    border-radius: 10px;
  }

  .chat-launcher {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .chat-message {
    font-size: 0.88rem;
    padding: 12px 14px;
    max-width: 90%;
  }

  /* Popup */
  .popup-card {
    padding: 32px 24px;
    margin: 16px;
    max-width: calc(100vw - 32px);
  }

  .popup-heading {
    font-size: 1.7rem;
  }

  .popup-label {
    font-size: 0.65rem;
  }

  .popup-text {
    font-size: 0.88rem;
    margin-bottom: 20px;
  }

  .popup-diamond .line {
    width: 28px;
  }

  /* Before/After slider */
  .ba-slider {
    aspect-ratio: 3/2;
  }

  .ba-handle::after {
    width: 36px;
    height: 36px;
  }

  /* Quiz */
  .quiz-card {
    padding: 28px 18px;
  }

  .quiz-question {
    font-size: 1.15rem;
  }

  .quiz-option {
    padding: 14px 16px;
    font-size: 0.88rem;
  }

  /* Promotions */
  .promo-bundle-card {
    padding: 32px 20px 24px;
  }

  .promo-bundle-card h3 {
    font-size: 1.35rem;
  }

  .bundle-pricing .sale {
    font-size: 1.8rem;
  }

  .promo-member-banner {
    padding: 24px 20px;
  }

  .promo-step {
    padding: 0 12px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  /* Page hero */
  .page-hero {
    padding: calc(var(--nav-height) + 28px) 16px 28px;
  }

  .page-hero .hero-watermark {
    font-size: 28vw;
  }

  /* Contact */
  .contact-info-block h3 {
    font-size: 1.15rem;
  }

  .contact-hours h3 {
    font-size: 1.15rem;
  }

  /* Virtual consult */
  .virtual-consult-card {
    padding: 28px 20px;
  }

  .virtual-consult-card h3 {
    font-size: 1.25rem;
  }

  /* Policy pages */
  .policy-content h2 {
    font-size: 1.15rem;
    margin-top: 28px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 0.88rem;
  }

  /* Loyalty */
  .tier-circle {
    width: 64px;
    height: 64px;
  }

  .loyalty-tier h4 {
    font-size: 1rem;
  }

  /* Hermes band */
  .hermes-band {
    padding: 20px 16px;
  }

  .hermes-band p {
    font-size: 0.95rem;
  }

  /* Banner */
  .countdown-banner {
    font-size: 0.72rem;
    padding: 8px 40px 8px 12px;
    line-height: 1.6;
  }

  .countdown-banner span {
    font-size: 0.8rem;
    display: block;
  }

  /* Availability widget */
  .availability-widget {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  /* Map */
  .section iframe {
    height: 240px;
  }

  /* Career cards */
  .career-card {
    padding: 20px 16px;
  }

  .career-header h3 {
    font-size: 1.1rem;
  }

  .career-body p {
    font-size: 0.85rem;
  }

  .career-meta {
    font-size: 0.78rem;
  }

  /* File upload */
  .file-upload-display {
    padding: 20px 14px;
  }

  .file-upload-text {
    font-size: 0.85rem;
  }

  /* Before/After */
  .ba-slider {
    aspect-ratio: 3/2;
  }

  .ba-handle::after {
    width: 36px;
    height: 36px;
  }

  .ba-panel {
    font-size: 1.1rem;
  }

  /* Quiz */
  .quiz-card {
    padding: 24px 16px;
  }

  .quiz-question {
    font-size: 1.1rem;
  }

  .quiz-option {
    padding: 14px 14px;
    font-size: 0.85rem;
  }

  /* Hide decorative inline dividers */
  [style*="display:inline-flex"][style*="gap:16px"] {
    display: none !important;
  }

  /* Membership table scroll */
  .section table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.78rem;
  }

  .section table th,
  .section table td {
    padding: 8px 6px !important;
    white-space: nowrap;
  }
}

/* ── Small Phone — iPhone SE / iPhone Mini (375px) ── */
@media (max-width: 375px) {
  .section {
    padding: 40px 14px;
  }

  .hero-content {
    padding: 20px 14px 48px;
  }

  .hero-headline {
    font-size: 1.9rem;
  }

  .hero-subhead {
    font-size: 0.9rem;
  }

  .section-heading {
    font-size: 1.4rem;
  }

  .btn-gold, .btn-outline, .btn-outline-gold {
    padding: 14px 24px;
    font-size: 0.78rem;
    width: 100%;
    justify-content: center;
  }

  .popup-card {
    padding: 28px 20px;
  }

  .popup-heading {
    font-size: 1.5rem;
  }

  .chat-panel {
    width: calc(100vw - 8px);
    right: 4px;
    height: min(360px, 50vh);
  }

  .membership-card {
    padding: 28px 16px;
  }

  .promo-bundle-card {
    padding: 28px 16px 20px;
  }

  .quiz-card {
    padding: 24px 14px;
  }

  .footer {
    padding: 36px 14px 24px;
  }

  .footer-logo {
    font-size: 1.7rem;
  }

  .service-category-header h2 {
    font-size: 1.2rem;
  }

  .countdown-banner {
    font-size: 0.68rem;
  }

  /* Career cards */
  .career-card {
    padding: 18px 14px;
  }

  .career-header h3 {
    font-size: 1rem;
  }

  /* File upload */
  .file-upload-display {
    padding: 18px 12px;
  }

  /* Popup */
  .popup-card {
    margin: 12px;
  }

  /* Virtual consult */
  .virtual-consult-card {
    padding: 24px 14px;
  }
}
