/* ============================================================
   ZOLA Nail Studio — Warm Luxury Design System
   ============================================================ */

:root {
  --espresso:   #0D0D0D;
  --champagne:  #B6A588;
  --cream:      #F2ECE1;
  --latte:      #8C7A5E;
  --blush:      #EDE6D6;
  --soft-white: #F7F4EE;
  --espresso-dark: #0A0A0A;
  --champagne-light: #DDD0B8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--soft-white);
  color: var(--espresso);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  line-height: 1.2;
}

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

/* ── TYPOGRAPHY ── */
.section-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
}

.gold-text {
  background: linear-gradient(90deg, #B6A588 0%, #DDD0B8 40%, #B6A588 60%, #8C7A5E 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ── ANIMATIONS ── */
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(110%); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(182,165,136,0.3); }
  50%     { box-shadow: 0 0 0 8px rgba(182,165,136,0); }
}

.animate-fade-in    { animation: fadeIn 1s ease-out both; }
.animate-slide-up   { animation: slideUp 0.8s ease-out both; }
.animate-slide-right{ animation: slideInRight 0.5s ease-out both; }
.animate-bounce     { animation: bounce 2s ease-in-out infinite; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--champagne);
  color: var(--espresso);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse-gold 3s ease-in-out infinite;
}
.btn-gold:hover {
  background: var(--latte);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(182,165,136,0.28);
  animation: none;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border: 1px solid rgba(245,238,232,0.45);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  background: rgba(182,165,136,0.06);
}
.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--espresso);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border: 1px solid rgba(13,13,13,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

/* ── CARDS ── */
.luxury-card {
  background: var(--soft-white);
  border: 1px solid rgba(182,165,136,0.15);
  padding: 2.25rem;
  transition: all 0.4s ease;
}
.luxury-card:hover {
  border-color: rgba(182,165,136,0.38);
  box-shadow: 0 20px 56px rgba(13,13,13,0.07);
  transform: translateY(-2px);
}

/* ── INPUTS ── */
.luxury-input {
  width: 100%;
  background: rgba(245,238,232,0.5);
  border: 1px solid rgba(140,122,94,0.22);
  color: var(--espresso);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.875rem 1.25rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.luxury-input:focus { border-color: var(--champagne); box-shadow: 0 0 0 3px rgba(182,165,136,0.16); background: #fff; }
.luxury-input::placeholder { color: var(--latte); opacity: 0.6; }
/* On phones, 16px inputs stop iOS from zooming in on focus */
@media (max-width: 600px) { .luxury-input, .luxury-input::placeholder { font-size: 16px; } }
.luxury-label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--latte);
  margin-bottom: 0.45rem;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(253,250,247,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(182,165,136,0.1);
  transition: all 0.3s;
}
.nav.scrolled {
  padding: 0.875rem 3rem;
  box-shadow: 0 4px 24px rgba(13,13,13,0.06);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--espresso);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--latte);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--champagne); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: transform 0.32s cubic-bezier(0.65,0,0.35,1), opacity 0.2s, background 0.2s;
  margin: 0 auto;
}
.nav-hamburger.open span { background: var(--cream); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE NAV: full-screen drawer ── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--espresso) 0%, #1a0e06 60%, #2a1608 100%);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 6rem 2rem 3rem;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close {
  position: fixed;
  top: 1.4rem; right: 1.35rem;
  z-index: 211;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
}
.nav-mobile.open .nav-mobile-close { display: flex; }
.nav-mobile a {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream);
  padding: 0.95rem 0;
  width: 100%;
  max-width: 320px;
  text-align: center;
  border-bottom: 1px solid rgba(182,165,136,0.14);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s;
}
.nav-mobile a:hover, .nav-mobile a:active { color: var(--champagne); }
.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile.open a:nth-of-type(1) { transition-delay: 0.06s; }
.nav-mobile.open a:nth-of-type(2) { transition-delay: 0.11s; }
.nav-mobile.open a:nth-of-type(3) { transition-delay: 0.16s; }
.nav-mobile.open a:nth-of-type(4) { transition-delay: 0.21s; }
.nav-mobile.open a:nth-of-type(5) { transition-delay: 0.26s; }
.nav-mobile.open a:nth-of-type(6) { transition-delay: 0.31s; }
.nav-mobile.open a:nth-of-type(7) { transition-delay: 0.36s; }
.nav-mobile a.nav-cta {
  margin-top: 1.75rem;
  border-bottom: none;
  background: var(--champagne);
  color: var(--espresso);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  max-width: 260px;
  border-radius: 2px;
}
.nav-mobile a.nav-cta:hover { color: var(--espresso); opacity: 0.88; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  background: linear-gradient(160deg, var(--espresso) 0%, #1a0e06 55%, #3a2010 100%);
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 55% at 50% 65%, rgba(182,165,136,0.12), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.08;
  margin: 1.25rem 0 1.5rem;
}
.hero-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(245,238,232,0.68);
  max-width: 460px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(182,165,136,0.5);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(182,165,136,0.5), transparent);
  animation: bounce 2s ease-in-out infinite;
}

/* ── TICKER ── */
.ticker {
  background: var(--espresso);
  padding: 1.1rem 2rem;
  text-align: center;
}
.ticker-text {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--blush);
  letter-spacing: 0.02em;
  animation: fadeIn 0.6s ease;
}

/* ── SECTIONS ── */
.section { padding: 6rem 2rem; }
.section-cream { background: var(--cream); }
.section-espresso { background: var(--espresso); }
.section-soft { background: var(--soft-white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--espresso);
  margin-top: 0.75rem;
}
.section-header h2.light { color: var(--cream); }

.container { max-width: 1200px; margin: 0 auto; }
.container-sm { max-width: 760px; margin: 0 auto; }

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* ── PHILOSOPHY ── */
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(182,165,136,0.2);
}
.pillar-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--espresso);
  margin-bottom: 0.3rem;
}
.pillar-desc {
  font-size: 0.8rem;
  color: var(--latte);
  letter-spacing: 0.04em;
}

/* ── MEMBERSHIP CARDS ── */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.membership-card {
  background: var(--soft-white);
  border: 1px solid rgba(182,165,136,0.18);
  padding: 2.25rem;
  position: relative;
  transition: all 0.4s ease;
}
.membership-card.highlighted {
  border: 2px solid var(--champagne);
  background: var(--cream);
  transform: scale(1.03);
  box-shadow: 0 24px 64px rgba(182,165,136,0.14);
}
.membership-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--champagne);
  color: var(--espresso);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 1.1rem;
  white-space: nowrap;
}
.founding-badge {
  background: var(--espresso);
  color: var(--champagne);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.membership-price {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  color: var(--champagne);
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}
.membership-price span {
  font-size: 0.85rem;
  font-family: 'Josefin Sans', sans-serif;
  color: var(--latte);
}
.spot-bar-wrap { margin: 1rem 0 1.5rem; }
.spot-bar-labels {
  display: flex;
  justify-content: space-between;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  color: var(--latte);
  margin-bottom: 0.3rem;
}
.spot-bar-labels .remaining { color: var(--champagne); font-weight: 600; }
.spot-bar {
  height: 3px;
  background: rgba(182,165,136,0.15);
  border-radius: 2px;
}
.spot-bar-fill {
  height: 100%;
  background: var(--champagne);
  border-radius: 2px;
  transition: width 1.2s ease;
}
.membership-list { margin: 1.25rem 0; }
.membership-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.86rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.membership-list li::before {
  content: '✦';
  color: var(--champagne);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.membership-rules summary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--latte);
  cursor: pointer;
  margin-bottom: 0.5rem;
  user-select: none;
}
.membership-rules ul li {
  font-size: 0.78rem;
  color: var(--latte);
  margin-bottom: 0.35rem;
  display: flex;
  gap: 0.5rem;
}
.membership-rules ul li::before {
  content: '—';
  color: rgba(140,122,94,0.5);
  flex-shrink: 0;
}

/* ── TEAM ── */
.team-card {
  background: var(--soft-white);
  border: 1px solid rgba(182,165,136,0.15);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.4s;
}
.team-card:hover {
  border-color: rgba(182,165,136,0.35);
  box-shadow: 0 16px 48px rgba(13,13,13,0.07);
}
.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Cinzel', serif;
  font-size: 1.75rem;
  color: var(--champagne);
}
.availability-badge {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
}
.available { background: rgba(182,165,136,0.15); color: var(--champagne); }
.unavailable { background: rgba(13,13,13,0.08); color: var(--latte); }

/* ── SERVICES TABLE ── */
.services-table { width: 100%; }
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(182,165,136,0.1);
  transition: background 0.2s;
}
.service-row:hover { background: rgba(245,238,232,0.6); }
.service-name { font-family: 'Josefin Sans', sans-serif; font-size: 0.92rem; color: var(--espresso); }
.service-price {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--champagne);
}

/* ── INSTAGRAM STRIP ── */
.instagram-strip {
  background: var(--espresso);
  padding: 4rem 2rem;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.insta-cell {
  aspect-ratio: 1;
  background: rgba(182,165,136,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(182,165,136,0.25);
}

/* ── FOOTER ── */
.footer {
  background: var(--espresso-dark);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  color: var(--champagne);
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--latte);
  line-height: 1.8;
}
.footer-heading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.83rem;
  color: var(--latte);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--champagne); }
.footer-bottom {
  border-top: 1px solid rgba(182,165,136,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(140,122,94,0.38);
  letter-spacing: 0.1em;
}

/* ── SLIDE-IN BANNER ── */
.urgency-banner {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--espresso);
  border-left: 3px solid var(--champagne);
  padding: 1.25rem 1.75rem;
  max-width: 310px;
  box-shadow: 0 16px 48px rgba(13,13,13,0.2);
  display: none;
}
.urgency-banner.visible { display: block; animation: slideInRight 0.5s ease-out; }
.banner-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--latte);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.banner-title {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin: 0.4rem 0 0.75rem;
}

/* ── CHATBOT WIDGET ── */
.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 150;
}
.chat-toggle {
  background: var(--champagne);
  color: var(--espresso);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 1.5rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 28px rgba(13,13,13,0.18);
  transition: all 0.3s;
}
.chat-toggle:hover { background: var(--latte); }
.chat-box {
  position: absolute;
  bottom: 56px;
  right: 0;
  width: 330px;
  background: var(--soft-white);
  border: 1px solid rgba(182,165,136,0.25);
  box-shadow: 0 24px 64px rgba(13,13,13,0.14);
  display: none;
  flex-direction: column;
}
.chat-box.open { display: flex; }
.chat-header {
  background: var(--espresso);
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(182,165,136,0.15);
}
.chat-header-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--champagne);
}
.chat-header-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--latte);
  letter-spacing: 0.08em;
}
.chat-close {
  background: none;
  border: none;
  color: var(--latte);
  cursor: pointer;
  font-size: 1.1rem;
}
.chat-messages {
  flex: 1;
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chat-msg {
  max-width: 86%;
  padding: 0.55rem 0.85rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
}
.chat-msg.zlux {
  background: var(--cream);
  color: var(--espresso);
  align-self: flex-start;
}
.chat-msg.user {
  background: var(--espresso);
  color: var(--cream);
  align-self: flex-end;
}
.chat-input-row {
  display: flex;
  border-top: 1px solid rgba(182,165,136,0.15);
}
.chat-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.84rem;
  color: var(--espresso);
  outline: none;
}
.chat-input::placeholder { color: var(--latte); opacity: 0.6; }
.chat-send {
  background: var(--champagne);
  color: var(--espresso);
  border: none;
  padding: 0 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.2s;
}
.chat-send:hover { background: var(--latte); }

/* ── BOOKING STEPS ── */
.booking-page { padding-top: 6rem; min-height: 100vh; background: var(--soft-white); }
.booking-wrap { max-width: 680px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(182,165,136,0.15);
  color: var(--latte);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.step-dot.active { background: var(--champagne); color: var(--espresso); }
.step-dot.done { background: var(--espresso); color: var(--champagne); }
.step-line {
  width: 36px;
  height: 1px;
  background: rgba(182,165,136,0.2);
  transition: background 0.3s;
}
.step-line.done { background: var(--champagne); }
.booking-step { display: none; }
.booking-step.active { display: block; animation: fadeIn 0.4s ease; }
.step-title {
  font-family: 'Cinzel', serif;
  font-size: 1.9rem;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  text-align: center;
}
.option-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(182,165,136,0.18);
  padding: 1rem 1.25rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  margin-bottom: 0.5rem;
}
.option-btn:hover, .option-btn.selected {
  background: var(--cream);
  border-color: var(--champagne);
}
.option-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--espresso);
  display: block;
}
.option-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--latte);
}
.option-price {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  color: var(--champagne);
}
.member-banner {
  background: rgba(13,13,13,0.06);
  border: 1px solid rgba(182,165,136,0.2);
  padding: 0.75rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--espresso);
  margin-bottom: 1.25rem;
  text-align: center;
}
.member-banner a { color: var(--champagne); }
.deposit-box {
  background: rgba(182,165,136,0.07);
  border: 1px solid rgba(182,165,136,0.22);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
}
.deposit-amount {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--champagne);
}
.step-nav { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
.timeslot-btn {
  padding: 0.65rem 0.25rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  background: transparent;
  color: var(--espresso);
  border: 1px solid rgba(182,165,136,0.2);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.timeslot-btn:hover, .timeslot-btn.selected {
  background: var(--espresso);
  color: var(--champagne);
  border-color: var(--espresso);
}

/* ── PORTAL PAGES ── */
.portal-login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--soft-white);
}
.portal-login-box {
  width: 100%;
  max-width: 400px;
  background: var(--soft-white);
  border: 1px solid rgba(182,165,136,0.2);
  padding: 2.5rem;
}
.portal-layout {
  display: flex;
  min-height: 100vh;
}
.portal-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--espresso);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
}
.portal-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.875rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--latte);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
}
.portal-nav-item:hover,
.portal-nav-item.active {
  background: rgba(182,165,136,0.1);
  color: var(--champagne);
}
.portal-main {
  flex: 1;
  padding: 2.5rem;
  overflow-y: auto;
  background: var(--soft-white);
}
.portal-header {
  background: var(--espresso);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(182,165,136,0.12);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.stat-card {
  background: var(--soft-white);
  border: 1px solid rgba(182,165,136,0.15);
  padding: 1.5rem;
}
.stat-value {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: var(--espresso);
  margin: 0.5rem 0 0.25rem;
}
.stat-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--latte);
}
.alert-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.84rem;
  color: var(--espresso);
}
.alert-bar.gold { background: rgba(182,165,136,0.08); border: 1px solid rgba(182,165,136,0.22); }
.alert-bar.red  { background: rgba(192,82,74,0.06); border: 1px solid rgba(192,82,74,0.2); color: #c0524a; }

/* Worker portal appointment block */
.appt-block {
  background: rgba(13,13,13,0.04);
  border: 1px solid rgba(182,165,136,0.12);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}
.appt-block-dark {
  background: rgba(245,238,232,0.04);
  border: 1px solid rgba(182,165,136,0.12);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
}
.appt-block.in-progress, .appt-block-dark.in-progress { border-left: 3px solid var(--champagne); }
.appt-block.completed, .appt-block-dark.completed { border-left: 3px solid #6aaa6a; opacity: 0.75; }
.appt-block.no-show, .appt-block-dark.no-show { border-left: 3px solid #c0524a; opacity: 0.7; }
.appt-time {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--espresso);
}
.appt-time-light { color: var(--cream); }
.appt-client {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--espresso);
  margin: 0.2rem 0;
}
.appt-client-light { color: var(--cream); }
.appt-service {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.84rem;
  color: var(--latte);
}
.tier-pill {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
}
.tier-black { background: rgba(13,13,13,0.12); color: var(--espresso); }
.tier-luxe  { background: rgba(182,165,136,0.15); color: var(--champagne); }
.tier-sig   { background: rgba(140,122,94,0.12); color: var(--latte); }
.tier-guest { background: rgba(232,213,196,0.4); color: var(--latte); }
.status-select {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--champagne);
  background: rgba(182,165,136,0.08);
  border: 1px solid rgba(182,165,136,0.2);
  padding: 0.3rem 0.5rem;
  cursor: pointer;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--champagne); border-radius: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav .btn-gold { display: none; }
  .nav-hamburger { display: flex; }
  .grid-3, .membership-grid, .philosophy-pillars, .footer-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .membership-card.highlighted { transform: scale(1); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .portal-sidebar { width: 200px; }
}
@media (max-width: 600px) {
  .nav { padding: 1rem 1.25rem; }
  .section { padding: 4rem 1.25rem; }
  .portal-layout { flex-direction: column; }
  .portal-sidebar { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 0.25rem; padding: 0.75rem; }
  .portal-main { padding: 1.25rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .timeslot-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════
   MODERN ENHANCEMENTS
══════════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--latte), var(--champagne), var(--champagne-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── CUSTOM CURSOR (desktop) ── */
.cursor-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--champagne);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.18s, height 0.18s, background 0.18s;
  will-change: left, top;
}
.cursor-ring {
  position: fixed;
  width: 26px; height: 26px;
  border: 1px solid rgba(182,165,136,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  will-change: left, top;
}
.cursor-custom, .cursor-custom * { cursor: none !important; }
.cursor-custom.cursor-hovering .cursor-dot { width: 11px; height: 11px; background: var(--latte); }
.cursor-custom.cursor-hovering .cursor-ring { width: 38px; height: 38px; border-color: var(--champagne); }
@media (max-width: 900px) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.fade-in { opacity: 0; transition: opacity 0.65s ease; }
.fade-in.visible { opacity: 1; }

/* ── ACTIVE NAV LINK ── */
.nav-links a { position: relative; }
.nav-links a.active { color: var(--champagne); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--champagne);
}

/* ── BUTTON RIPPLE ── */
.btn-gold, .btn-outline, .btn-outline-dark { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transform: scale(0);
  animation: ripple-anim 0.55s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ── HERO EXTRAS ── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.45;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}
.hero-orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(182,165,136,0.07), transparent 70%);
  top: 8%; right: 3%;
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(182,165,136,0.05), transparent 70%);
  bottom: 18%; left: 4%;
  animation: orb-float 7s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.05); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--espresso-dark);
  padding: 2rem 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(182,165,136,0.08);
  border-bottom: 1px solid rgba(182,165,136,0.08);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
}
.stat-lbl {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--latte);
  margin-top: 0.3rem;
}

/* ── HOW IT WORKS ── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(16.667% + 1.25rem);
  right: calc(16.667% + 1.25rem);
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(182,165,136,0.3), transparent);
}
.how-step { text-align: center; }
.how-step-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.7rem;
}
.how-step-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(182,165,136,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1rem;
  background: rgba(182,165,136,0.05);
  transition: all 0.35s ease;
  color: var(--champagne);
}
.how-step:hover .how-step-icon {
  background: var(--champagne);
  color: var(--espresso);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(182,165,136,0.18);
}
.how-step-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.how-step-desc {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--latte);
  line-height: 1.85;
  max-width: 220px;
  margin: 0 auto;
}

/* ── FAQ ACCORDION ── */
.faq-list { margin-top: 0.5rem; }
.faq-item { border-bottom: 1px solid rgba(182,165,136,0.14); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: 0.98rem;
  color: var(--espresso);
  user-select: none;
  transition: color 0.2s;
  gap: 1rem;
  min-height: 48px;
}
.faq-question:hover { color: var(--champagne); }
.faq-icon {
  font-size: 1rem;
  color: var(--champagne);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-answer { max-height: 260px; }
.faq-answer p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--latte);
  line-height: 1.9;
  padding-bottom: 1.25rem;
}

/* ── SOCIAL PROOF TOAST ── */
.sp-toast {
  position: fixed;
  bottom: 5.5rem;
  left: 1.5rem;
  z-index: 190;
  background: var(--soft-white);
  border: 1px solid rgba(182,165,136,0.2);
  border-left: 3px solid var(--champagne);
  padding: 0.85rem 1.1rem;
  max-width: 250px;
  box-shadow: 0 8px 28px rgba(13,13,13,0.1);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.sp-toast.show { opacity: 1; transform: translateX(0); }
.sp-toast-title {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  color: var(--espresso);
  margin-bottom: 0.15rem;
}
.sp-toast-body {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--latte);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 140;
  width: 38px; height: 38px;
  background: var(--espresso);
  border: 1px solid rgba(182,165,136,0.25);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
  font-size: 0.9rem;
  line-height: 1;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: rgba(182,165,136,0.08); border-color: var(--champagne); }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; gap: 2rem; }
  .how-steps::before { display: none; }
  .stats-bar { gap: 2.5rem; padding: 1.5rem 1.25rem; }
}
@media (max-width: 600px) {
  .sp-toast { left: 1rem; max-width: calc(100vw - 2rem); bottom: 5rem; }
  .back-to-top { bottom: 1.25rem; left: 1.25rem; }
  .btn-gold, .btn-outline, .btn-outline-dark { min-height: 44px; }
  .faq-question { min-height: 48px; }
}

/* ── Mid-width nav ───────────────────────────────────────────────────────
   Between the mobile breakpoint (900px) and ~1400px the nav had more
   content than room, so "Buy a Membership" was being clipped off the
   right edge. The nav is position:fixed, so this never showed up as page
   scroll — it just silently cut the button in half. Tighten spacing as
   the window narrows, and drop the search trigger to its icon. */
@media (min-width: 901px) and (max-width: 1400px) {
  .nav { padding: 1.25rem 1.75rem; }
  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.1em; }
  .nav-links .btn-gold { padding: 0.8rem 1.35rem; }
}
@media (min-width: 901px) and (max-width: 1200px) {
  .nav { padding: 1.25rem 1.25rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.63rem; letter-spacing: 0.06em; }
  .nav-links .btn-gold { padding: 0.75rem 1rem; }
  .zs-trigger { padding: 0.45rem 0.6rem; font-size: 0.63rem; }
  .zs-trigger .zs-trigger-label { display: none; }
}

/* ══════════════════════════════════════════════════
   SHOP MY IG
══════════════════════════════════════════════════ */
.shop-ig { background: var(--soft-white); }
.ig-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.75rem; }
.ig-cell {
  position: relative; aspect-ratio: 1; border: none; padding: 0; cursor: pointer;
  background-size: cover; background-position: center; background-color: var(--blush);
  overflow: hidden; display: block;
}
.ig-cell-veil {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.4rem;
  background: rgba(13,9,6,0.5); opacity: 0; transition: opacity 0.28s ease;
}
.ig-cell:hover .ig-cell-veil, .ig-cell:focus-visible .ig-cell-veil { opacity: 1; }
.ig-cell-cta {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso);
  background: var(--champagne); padding: 0.55rem 1.1rem; border-radius: 999px;
}
.ig-cell-n {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream);
}
/* Touch devices get no hover, so the call to action is always visible */
@media (hover: none) {
  .ig-cell-veil { opacity: 1; background: linear-gradient(to top, rgba(13,9,6,0.72) 0%, transparent 55%); justify-content: flex-end; padding-bottom: 0.8rem; }
  .ig-cell-cta { font-size: 0.58rem; padding: 0.4rem 0.8rem; }
}

.ig-sheet {
  position: fixed; inset: 0; z-index: 9990; display: none;
  background: rgba(13,9,6,0.72); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
.ig-sheet.open { display: flex; animation: zsFade 0.2s ease; }
.ig-sheet-box {
  position: relative; background: var(--soft-white); max-width: 720px; width: 100%;
  max-height: 88vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr;
  animation: zsUp 0.28s cubic-bezier(.2,.8,.2,1);
}
.ig-sheet-x {
  position: absolute; top: 0.5rem; right: 0.6rem; z-index: 2;
  background: rgba(255,255,255,0.9); border: none; border-radius: 50%;
  width: 34px; height: 34px; font-size: 1.3rem; line-height: 1; cursor: pointer; color: var(--espresso);
}
.ig-sheet-photo { background-size: cover; background-position: center; background-color: var(--blush); min-height: 280px; }
.ig-sheet-body { padding: 1.6rem 1.5rem; }
.ig-sheet-cap { font-family: 'Josefin Sans', sans-serif; font-size: 0.88rem; line-height: 1.7; color: var(--latte); margin-bottom: 1.2rem; }
.ig-sheet-label {
  font-family: 'Josefin Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--champagne); margin-bottom: 0.8rem;
}
.ig-sheet-items { display: flex; flex-direction: column; gap: 0.6rem; }
.ig-buy {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  padding: 0.85rem 1rem; min-height: 52px; background: #fff;
  border: 1px solid rgba(182,165,136,0.3); text-decoration: none; transition: all 0.2s;
}
.ig-buy:hover { border-color: var(--champagne); box-shadow: 0 8px 22px rgba(13,13,13,0.07); }
.ig-buy-n { font-family: 'Cinzel', serif; font-size: 0.9rem; color: var(--espresso); line-height: 1.3; }
.ig-buy-n em { font-style: normal; color: var(--champagne); }
.ig-buy-b {
  flex-shrink: 0; font-family: 'Josefin Sans', sans-serif; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--espresso);
  background: var(--champagne); padding: 0.5rem 0.85rem; border-radius: 999px; white-space: nowrap;
}
@media (max-width: 700px) {
  .ig-sheet { padding: 0; align-items: flex-end; }
  .ig-sheet-box { grid-template-columns: 1fr; max-height: 92vh; }
  .ig-sheet-photo { min-height: 220px; max-height: 34vh; }
  .ig-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
}

/* ══════════════════════════════════════════════════
   SHOP THE LOOK — hover photo swap
══════════════════════════════════════════════════ */
.shop-look { background: var(--soft-white); }
.shop-look-h {
  font-family: 'Cinzel', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  color: var(--espresso);
  text-align: center;
  margin: 0.6rem 0 2.5rem;
  line-height: 1.25;
}
.look-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; }
.look-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(182,165,136,0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.look-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(13,13,13,0.12); border-color: rgba(182,165,136,0.5); }
.look-ph { position: relative; display: block; aspect-ratio: 1; background: var(--blush); overflow: hidden; }
.look-img {
  position: absolute; inset: 0; display: block;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.45s ease, transform 0.7s ease;
}
.look-img.has-photo { opacity: 1; }
/* the worn shot sits on top and only fades in on hover */
.look-img-alt.has-photo { opacity: 0; }
.look-card:hover .look-img-alt.has-photo { opacity: 1; }
.look-card:hover .look-img.has-photo { transform: scale(1.04); }
.look-fallback {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: rgba(140,122,94,0.35);
}
.look-ph.has-main .look-fallback { display: none; }
.look-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; padding: 1rem 1.1rem 0.35rem; }
.look-name { font-family: 'Cinzel', serif; font-size: 0.95rem; color: var(--espresso); line-height: 1.3; }
.look-price { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--champagne); flex-shrink: 0; }
.look-cta {
  display: block; padding: 0 1.1rem 1.1rem;
  font-family: 'Josefin Sans', sans-serif; font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--latte);
  transition: color 0.25s ease;
}
.look-card:hover .look-cta { color: var(--champagne); }
@media (hover: none) {
  /* No hover on a phone — cross-fade the two shots on a slow loop instead,
     so the worn photo still gets seen. */
  .look-img-alt.has-photo { animation: lookSwap 7s ease-in-out infinite; }
  @keyframes lookSwap { 0%,42% { opacity: 0; } 55%,92% { opacity: 1; } 100% { opacity: 0; } }
}
@media (max-width: 600px) {
  .look-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .look-meta { flex-direction: column; gap: 0.15rem; padding: 0.8rem 0.75rem 0.3rem; }
  .look-name { font-size: 0.82rem; }
  .look-cta { padding: 0 0.75rem 0.9rem; font-size: 0.6rem; }
}

/* ══════════════════════════════════════════════════
   PRESS-ONS ENTRY POINTS
══════════════════════════════════════════════════ */

/* Full-width band below the hero */
.po-band {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 2.5rem 1.5rem;
  background: radial-gradient(900px 420px at 22% 12%, #241a10 0%, #170f08 55%, #0d0906 100%);
  border-top: 1px solid rgba(182,165,136,0.18);
  border-bottom: 1px solid rgba(182,165,136,0.18);
}
.po-band-orb { position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none; }
.po-band-orb-1 { width: 300px; height: 300px; top: -110px; left: -50px; background: rgba(182,165,136,0.17); }
.po-band-orb-2 { width: 240px; height: 240px; bottom: -100px; right: -40px; background: rgba(201,184,150,0.13); }
.po-band-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.po-band-left { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.po-band-kicker {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
}
.po-band-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  line-height: 1.1;
  background: linear-gradient(115deg, #F5EEE8 0%, #DDD0B8 38%, #B6A588 62%, #8C7A5E 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: soonShimmer 7s linear infinite;
}
@keyframes soonShimmer { 0% { background-position: 0% center; } 100% { background-position: 220% center; } }
.po-band-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(221,208,184,0.8);
  max-width: 460px;
}
.po-band-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }
.po-band-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.9rem;
  background: var(--champagne);
  color: var(--espresso);
  text-decoration: none;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--champagne);
  transition: all 0.28s ease;
}
.po-band-btn:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(182,165,136,0.32);
}
/* second button reads as the quieter option so "Shop" stays primary */
.po-band-btn--alt {
  background: rgba(182,165,136,0.10);
  color: var(--cream);
  border-color: rgba(182,165,136,0.5);
}
.po-band-btn--alt:hover {
  background: rgba(182,165,136,0.26);
  border-color: var(--champagne);
  color: var(--cream);
}
@media (max-width: 860px) {
  .po-band { padding: 2.25rem 1.25rem; }
  .po-band-inner { flex-direction: column; align-items: flex-start; gap: 1.35rem; }
  .po-band-actions { width: 100%; gap: 0.65rem; }
  .po-band-btn { flex: 1 1 0; min-width: 0; padding: 0.95rem 1rem; }
  .po-band-sub { font-size: 0.85rem; }
}
@media (max-width: 430px) {
  /* stack rather than squeeze the labels onto two lines */
  .po-band-actions { flex-direction: column; }
  .po-band-btn { width: 100%; flex: none; }
}

/* ── Mobile overflow fixes ───────────────────────────────────────────────
   Flex/grid children default to min-width:auto, so they refuse to shrink
   below their content and push the whole page wider than the screen. That
   was dragging the nav (and the hamburger) off to the right on phones. */
.member-save-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 700px; margin: 0 auto; }
.member-save-grid > * { min-width: 0; }
.team-card > * { min-width: 0; }
@media (max-width: 700px) {
  .member-save-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 1.75rem 1.25rem; }
}
