/* ============================================================
   BEATS BY DAMI — Main Stylesheet
   style.css
   ============================================================ */

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

:root {
  --pink: #FFD7DE;
  --black: #111113;
  --white: #FFFFFF;
  --pink-mid: #e8aab5;
  --pink-light: #fff0f3;
  --gray: #f6f4f1;
  --text-muted: #888;
  --border: rgba(0,0,0,0.09);

  --didot: 'Didact Gothic', 'Palatino Linotype', 'Book Antiqua', Palatino, 'Times New Roman', serif;
  --avenir: 'Open Sans', 'Gill Sans', 'Century Gothic', Futura, sans-serif;
  --calligraphy: 'Pinyon Script', 'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--avenir);
  background: var(--white);
  color: var(--black);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 4rem;
  transition: background 0.5s, box-shadow 0.5s;
}
nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-wordmark {
  font-family: var(--calligraphy);
  font-size: 2.1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.4s;
  line-height: 1;
}
nav.scrolled .nav-wordmark { color: var(--black); }

.nav-links {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--avenir);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
/* underline draws from centre outward — not the generic left-to-right */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%; right: 50%;
  height: 1px;
  background: var(--pink);
  transition: left 0.35s ease, right 0.35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 0; right: 0; }
nav.scrolled .nav-links a { color: var(--black); }
nav.scrolled .nav-links a::after { background: var(--black); }

.nav-book {
  font-family: var(--avenir);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--pink);
  border: none;
  padding: 0.72rem 1.8rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s;
  isolation: isolate;
}
/* fill sweeps up on hover */
.nav-book::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--black);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  z-index: -1;
}
.nav-book:hover { color: var(--pink); }
.nav-book:hover::after { transform: translateY(0); }

/* ── HERO ── */
#home {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('hero-bg.png') center 30% / cover no-repeat;
  transform: scale(1.06);
  transition: transform 9s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(17,17,19,0.62) 0%, rgba(17,17,19,0.18) 48%, rgba(17,17,19,0.7) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(17,17,19,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  margin-top: -4vh;
}
.hero-wordmark {
  font-family: var(--calligraphy);
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1.6s 0.15s cubic-bezier(0.16,1,0.3,1) forwards;
  text-shadow: 0 4px 60px rgba(0,0,0,0.3);
}
.hero-tagline {
  font-family: var(--avenir);
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-top: 1.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1.2s 0.85s forwards;
}
.hero-divider {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, transparent, var(--pink), transparent);
  margin: 1.6rem auto;
  opacity: 0;
  animation: fadeIn 1s 1s forwards;
}
.hero-cta {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 1s 1.3s forwards;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--avenir);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--pink);
  padding: 0.95rem 2.4rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.38s;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--black);
  transform: translateY(101%);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  z-index: -1;
}
.btn-primary:hover { color: var(--pink); }
.btn-primary:hover::after { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  font-family: var(--avenir);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 0.95rem 2.4rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.hero-scroll {
  position: absolute;
  bottom: 2.8rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}
.hero-scroll span {
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 52px;
  background: rgba(255,255,255,0.15);
  overflow: hidden; position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--pink));
  animation: scrollPulse 2.2s 2.2s infinite;
}

/* ── HERO CAROUSEL ── */
#hero-carousel {
  position: relative;
  background: var(--black);
  padding: clamp(4.5rem, 9vw, 9rem) 0 clamp(3rem, 6vw, 6rem);
  overflow: hidden;
}
#hero-carousel::before {
  content: 'Beats';
  font-family: var(--calligraphy);
  font-size: clamp(12rem, 22vw, 22rem);
  color: rgba(255,215,222,0.03);
  position: absolute;
  bottom: -2rem; right: -1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.carousel-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  padding: 0 clamp(2rem, 5vw, 6rem);
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  gap: 2rem;
}
.carousel-header .section-eyebrow { color: rgba(255,215,222,0.4); }
.carousel-header .section-title { color: var(--white); }
.carousel-counter {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,215,222,0.3);
  white-space: nowrap;
  padding-bottom: 0.4rem;
}
.carousel-counter strong {
  font-size: 1.4rem;
  font-style: normal;
  color: rgba(255,215,222,0.55);
  font-weight: 400;
}
.carousel-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 clamp(2rem, 5vw, 6rem);
}
.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
  gap: 1rem;
}
.carousel-slide {
  flex: 0 0 calc(33.333% - 0.67rem);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #1c1a1e;
}
.carousel-slide:first-child { aspect-ratio: 2/3; }
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
  filter: brightness(0.92);
}
.carousel-slide:hover img { transform: scale(1.05); filter: brightness(1); }
.carousel-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,19,0.8) 0%, rgba(17,17,19,0.1) 45%, transparent 70%);
  opacity: 0;
  transition: opacity 0.45s;
  display: flex;
  align-items: flex-end;
  padding: 1.8rem;
}
.carousel-slide:hover .carousel-slide-overlay { opacity: 1; }
.carousel-slide-caption {
  font-family: var(--avenir);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.carousel-slide.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px dashed rgba(255,215,222,0.1);
}
.carousel-slide.placeholder .placeholder-icon { font-size: 1.8rem; opacity: 0.2; }
.carousel-slide.placeholder p {
  font-family: var(--avenir);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,215,222,0.2);
  text-align: center;
  padding: 0 1.2rem;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 2rem clamp(2rem, 5vw, 6rem) 0;
  position: relative; z-index: 2;
}
.carousel-btn {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,215,222,0.18);
  background: transparent;
  color: rgba(255,215,222,0.55);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover { background: var(--pink); border-color: var(--pink); color: var(--black); }
.carousel-dots { display: flex; gap: 0.5rem; margin-right: auto; padding-left: clamp(2rem, 5vw, 6rem); }
.carousel-dot {
  width: 18px; height: 2px;
  background: rgba(255,215,222,0.18);
  cursor: pointer;
  transition: background 0.3s, width 0.35s;
}
.carousel-dot.active { background: var(--pink); width: 36px; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--pink);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--avenir);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.28em;
  padding: 0 2.5rem;
  text-transform: uppercase;
}
.marquee-track .dot { color: rgba(17,17,19,0.25); font-style: normal; padding: 0; letter-spacing: 0; }

/* ── SECTION ATOMS ── */
.section-eyebrow {
  font-family: var(--avenir);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}
.section-title {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; font-weight: 300; }

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 90vh;
}
.about-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.16,1,0.3,1);
  filter: brightness(0.95) contrast(1.02);
}
.about-img-wrap:hover img { transform: scale(1.03); }
.about-img-label {
  position: absolute;
  top: 2.5rem; right: 2rem;
  font-family: var(--calligraphy);
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  top: 10%; right: 0;
  width: 3px; height: 60%;
  background: linear-gradient(to bottom, transparent, var(--pink), transparent);
}
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 7vw, 8rem) clamp(2.5rem, 6vw, 6rem);
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
.about-content::before {
  content: '✦';
  font-size: 18rem;
  color: rgba(0,0,0,0.025);
  position: absolute;
  bottom: -2rem; right: -1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-content .section-title { margin: 0 0 2.2rem; }
.about-content p {
  font-family: var(--avenir);
  font-size: 0.92rem;
  line-height: 2.05;
  color: #505050;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 420px;
}
.about-sig {
  font-family: var(--calligraphy);
  font-size: 2.6rem;
  color: var(--black);
  margin-top: 1.8rem;
  letter-spacing: 0.02em;
  display: inline-block;
  position: relative;
}
.about-sig::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(to right, var(--pink-mid), transparent);
}
.about-stats {
  display: flex;
  gap: 2.8rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-num {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
}
.stat-label {
  font-family: var(--avenir);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.45rem;
}

/* ── SERVICES ── */
#services {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 7rem);
  background: var(--white);
}
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4.5rem;
  align-items: flex-end;
}
.services-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  max-width: 360px;
  justify-self: end;
  padding-bottom: 0.3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--white);
  padding: 3rem 2.2rem 2.5rem;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s;
}
.svc-card:nth-child(even) { background: #fdfbfb; }
.svc-card:nth-child(3n) { border-right: none; }
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 3px; height: 0;
  background: var(--pink-mid);
  transition: height 0.5s cubic-bezier(0.16,1,0.3,1);
}
.svc-card:hover { background: var(--pink-light); }
.svc-card:hover::before { height: 100%; }
.svc-num {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 4.5rem;
  font-weight: 400;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: -0.5rem;
  letter-spacing: -0.03em;
  transition: color 0.4s;
}
.svc-card:hover .svc-num { color: rgba(232,170,181,0.25); }
.svc-name {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.svc-desc {
  font-family: var(--avenir);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.8rem;
}
.svc-price {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
}
.svc-price sup {
  font-family: var(--avenir);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  vertical-align: super;
}
.svc-duration {
  font-family: var(--avenir);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ── INSTAGRAM GALLERY ── */
#gallery {
  padding: clamp(4.5rem, 9vw, 9rem) clamp(2rem, 6vw, 7rem);
  background: var(--black);
}
.gallery-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.gallery-top .section-eyebrow { color: rgba(255,215,222,0.4); }
.gallery-top .section-title   { color: var(--white); }
.ig-follow-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--avenir);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  transition: color 0.3s, border-color 0.3s;
}
.ig-follow-link:hover { color: var(--pink); border-color: var(--pink); }
.ig-icon { width: 16px; height: 16px; display: inline-block; vertical-align: middle; }

.ig-feed-wrapper { position: relative; }
.ig-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--avenir);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.4rem;
}
.ig-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #e1306c;
  animation: pulse 2s infinite;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 4px;
}
.ig-grid .ig-item:first-child { grid-column: span 2; grid-row: span 2; }
.ig-item {
  position: relative;
  overflow: hidden;
  background: #1c1a1e;
  cursor: pointer;
}
.ig-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
  filter: brightness(0.88) saturate(0.9);
}
.ig-item:hover img { transform: scale(1.07); filter: brightness(1) saturate(1); }
.ig-item-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,19,0.5);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.35s;
}
.ig-item:hover .ig-item-overlay { opacity: 1; }
.ig-item-overlay span {
  font-family: var(--avenir);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.ig-item-overlay .ig-likes {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 1.2rem;
  color: var(--pink);
  font-style: italic;
}
.ig-embed-section {
  margin-top: 1.5rem;
  padding: 1.8rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.ig-embed-section p { font-size: 0.78rem; color: rgba(255,255,255,0.28); line-height: 1.8; margin-bottom: 1rem; }
.ig-embed-section code {
  display: block; font-size: 0.72rem;
  background: rgba(0,0,0,0.3);
  padding: 0.8rem 1rem;
  color: rgba(255,215,222,0.5);
  text-align: left; line-height: 1.7; margin-bottom: 1rem;
}
.ig-sync-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 2rem;
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.ig-sync-info { display: flex; align-items: center; gap: 1rem; }
.ig-sync-info .ig-live-dot { width: 7px; height: 7px; }
.ig-sync-text h4 {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 0.95rem; font-weight: 400;
  color: rgba(255,255,255,0.7); margin-bottom: 0.2rem;
}
.ig-sync-text p { font-family: var(--avenir); font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.6; }
.ig-sync-btn {
  font-family: var(--avenir); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); background: #e1306c; border: none;
  padding: 0.72rem 1.5rem; cursor: pointer; text-decoration: none;
  transition: background 0.3s; display: inline-block;
}
.ig-sync-btn:hover { background: #c1255a; }

/* ── AVAILABILITY ── */
#availability {
  padding: clamp(4.5rem, 9vw, 9rem) clamp(2rem, 6vw, 7rem);
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
#availability::before {
  content: '◷';
  font-size: 28rem;
  color: rgba(0,0,0,0.025);
  position: absolute;
  right: -4rem; top: -3rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.availability-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.availability-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.availability-note {
  font-family: var(--avenir);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 260px;
  line-height: 1.7;
  text-align: right;
}
.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.avail-day {
  background: var(--white);
  padding: 1.6rem 0.7rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.avail-day:last-child { border-right: none; }
.avail-day.open::before,
.avail-day.limited::before,
.avail-day.closed::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.avail-day.open::before    { background: #a8d5a2; }
.avail-day.limited::before { background: var(--pink-mid); }
.avail-day.closed::before  { background: rgba(0,0,0,0.07); }
.avail-day:hover { background: var(--pink-light); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); z-index: 1; }
.avail-day.closed:hover { background: #fafafa; }
.avail-day-name {
  font-family: var(--avenir);
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.avail-status {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 0.6rem;
}
.avail-times { font-family: var(--avenir); font-size: 0.6rem; color: var(--text-muted); line-height: 1.6; }
.avail-status-dot { display: none; }
.avail-day.open .avail-status    { color: var(--black); }
.avail-day.limited .avail-status { color: #b07080; }
.avail-day.closed .avail-status  { color: #ccc; }
.avail-day.closed { background: #fbfaf9; }
.avail-legend {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  margin-top: 1.2rem;
}
.avail-legend-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--avenir);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.avail-legend-dot { width: 20px; height: 2px; }
.avail-legend-dot.open    { background: #a8d5a2; }
.avail-legend-dot.limited { background: var(--pink-mid); }
.avail-legend-dot.closed  { background: rgba(0,0,0,0.1); }

/* ── BOOKING ── */
#booking {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 80vh;
}
.booking-dark {
  background: var(--black);
  padding: clamp(3.5rem, 7vw, 8rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.booking-dark::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 40px,
    rgba(255,215,222,0.012) 40px, rgba(255,215,222,0.012) 41px
  );
  pointer-events: none;
}
.booking-dark::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,222,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.booking-dark .section-eyebrow { color: rgba(255,215,222,0.4); }
.booking-dark .section-title   { color: var(--white); margin-bottom: 1.6rem; }
.booking-dark > p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 2;
  margin-bottom: 2.2rem;
  max-width: 340px;
}
.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.8rem;
}
.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: var(--avenir);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.policy-list li::before { content: '—'; color: var(--pink); flex-shrink: 0; margin-top: 0.05em; }
.booking-address {
  font-family: var(--avenir);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.08em;
  position: relative; z-index: 1;
}
.booking-form-wrap {
  background: var(--pink-light);
  padding: clamp(3.5rem, 7vw, 8rem) clamp(2.5rem, 5vw, 5.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-form-wrap h3 {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.booking-form-wrap > p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  font-weight: 300;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.fg label {
  font-family: var(--avenir);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* bottom-border only inputs on pink bg — feels bespoke, not off-the-shelf */
.fg input, .fg select, .fg textarea {
  font-family: var(--avenir);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.14);
  padding: 0.7rem 0;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.3s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-bottom-color: var(--black); }
.fg textarea { resize: none; min-height: 80px; }
.form-submit button {
  width: 100%;
  font-family: var(--avenir);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--black);
  border: none;
  padding: 1.1rem;
  cursor: pointer;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.38s;
}
.form-submit button::after {
  content: ''; position: absolute; inset: 0;
  background: var(--pink);
  transform: translateY(101%);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  z-index: -1;
}
.form-submit button:hover { color: var(--black); }
.form-submit button:hover::after { transform: translateY(0); }
.form-submit button:disabled { background: #555; color: rgba(255,255,255,0.4); cursor: default; }

/* ── REVIEWS ── */
#reviews {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 7rem);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: '"';
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 40rem;
  color: rgba(0,0,0,0.025);
  position: absolute;
  top: -8rem; left: -3rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.reviews-head { text-align: center; margin-bottom: 4.5rem; position: relative; z-index: 1; }
.reviews-head .section-title { font-style: italic; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  position: relative; z-index: 1;
  margin-bottom: 3.5rem;
}
.review-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.review-card:last-child { border-right: none; }
.review-card:hover { background: var(--gray); }
.review-card::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 2px;
  background: var(--pink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.review-card:hover::before { transform: scaleY(1); }
.review-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.star { color: var(--pink-mid); font-size: 0.78rem; }
.review-text {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.85;
  color: var(--black);
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.review-author {
  font-family: var(--avenir);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.review-quote-mark { display: none; }
.leave-review-box {
  text-align: center;
  position: relative; z-index: 1;
  padding: 3rem 2rem;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.leave-review-box p {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.4rem;
}

/* ── SHOP COMING SOON ── */
#shop {
  background: var(--black);
  padding: clamp(5.5rem, 12vw, 12rem) clamp(2rem, 6vw, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#shop::before,
#shop::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#shop::before {
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  border: 1px solid rgba(255,215,222,0.04);
}
#shop::after {
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  border: 1px solid rgba(255,215,222,0.02);
}
.shop-eyebrow {
  font-family: var(--avenir);
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,215,222,0.35);
  margin-bottom: 1.4rem;
  position: relative; z-index: 1;
}
.shop-title {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.6rem;
  position: relative; z-index: 1;
  letter-spacing: -0.02em;
}
.shop-desc {
  font-family: var(--avenir);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  line-height: 2;
  max-width: 400px;
  margin: 0 auto 3rem;
  font-weight: 300;
  position: relative; z-index: 1;
}
.notify-row {
  display: flex;
  max-width: 360px;
  margin: 0 auto;
  position: relative; z-index: 1;
  border: 1px solid rgba(255,255,255,0.1);
}
.notify-row input {
  flex: 1;
  font-family: var(--avenir);
  font-size: 0.82rem; font-weight: 300;
  color: var(--white);
  background: transparent; border: none;
  padding: 0.9rem 1.2rem; outline: none;
}
.notify-row input::placeholder { color: rgba(255,255,255,0.2); }
.notify-row button {
  font-family: var(--avenir);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black); background: var(--pink);
  border: none; padding: 0.9rem 1.4rem;
  cursor: pointer; white-space: nowrap;
  transition: background 0.3s;
}
.notify-row button:hover { background: var(--pink-mid); }
#notifyMsg {
  margin-top: 1.2rem; font-size: 0.75rem;
  color: rgba(255,215,222,0.55); display: none;
  position: relative; z-index: 1;
}

/* ── FOOTER ── */
footer {
  background: #0d0d0f;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 5rem clamp(2rem, 6vw, 7rem) 2.8rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-wordmark {
  font-family: var(--calligraphy);
  font-size: 2.6rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.1rem;
  display: block;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-wordmark:hover { color: var(--pink); }
.footer-tagline {
  font-family: var(--avenir);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.9;
  max-width: 210px;
  font-weight: 300;
}
.footer-col h4 {
  font-family: var(--avenir);
  font-size: 0.56rem; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul li a {
  font-family: var(--avenir);
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul li a:hover { color: var(--pink); padding-left: 4px; }
.footer-col address {
  font-style: normal;
  font-family: var(--avenir);
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.95;
}
.footer-col address a { color: rgba(255,215,222,0.42); text-decoration: none; transition: color 0.3s; }
.footer-col address a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-family: var(--avenir); font-size: 0.68rem; color: rgba(255,255,255,0.14); letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-family: var(--avenir);
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.3s;
}
.footer-links a:hover { color: var(--pink); }

/* ── AFTERCARE OVERLAY ── */
#aftercare { display: none; position: fixed; inset: 0; z-index: 999; background: var(--white); overflow-y: auto; }
#aftercare.open { display: block; }
.aftercare-close {
  position: fixed; top: 1.5rem; right: 2rem;
  font-family: var(--avenir); font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: none;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 0.55rem 1.1rem; cursor: pointer; z-index: 1000;
  transition: background 0.3s, color 0.3s;
}
.aftercare-close:hover { background: var(--black); color: var(--white); }
.aftercare-body { max-width: 580px; margin: 0 auto; padding: 6rem 2rem 5rem; }
.aftercare-body .section-eyebrow { margin-bottom: 0.5rem; }
.aftercare-body h1 {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400; font-style: italic;
  margin-bottom: 0.4rem; line-height: 1.18;
}
.aftercare-sub { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 3.5rem; }
.ac-section { margin-bottom: 3rem; }
.ac-section h2 {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 1.15rem; font-weight: 400;
  margin-bottom: 1.1rem; padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.ac-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.ac-section ul li { display: flex; gap: 0.9rem; font-size: 0.86rem; line-height: 1.8; color: #484848; font-weight: 300; }
.ac-section ul li::before { content: '✦'; color: var(--pink-mid); font-size: 0.52rem; margin-top: 0.52em; flex-shrink: 0; }
.ac-products { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.ac-product { background: var(--gray); padding: 1.3rem; border-left: 2px solid var(--pink); }
.ac-product .pname { font-family: 'Palatino Linotype', Palatino, Georgia, serif; font-size: 0.92rem; margin-bottom: 0.35rem; }
.ac-product .puse { font-size: 0.72rem; color: var(--text-muted); }
.ac-review-cta { background: var(--black); padding: 2.5rem; text-align: center; margin-top: 3.5rem; }
.ac-review-cta p {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  font-size: 1.15rem; font-style: italic;
  color: rgba(255,255,255,0.7); margin-bottom: 1.3rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 960px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  #about { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 55vw; }
  .about-img-label { writing-mode: horizontal-tb; top: auto; bottom: 1.5rem; right: 1.5rem; }
  .services-top { grid-template-columns: 1fr; }
  .services-sub { justify-self: start; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  #booking { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; border: none; gap: 1px; background: var(--border); }
  .review-card { border-right: none; }
  .ig-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; grid-auto-rows: 180px; }
  .ig-grid .ig-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .availability-grid { grid-template-columns: repeat(4,1fr); }
  .availability-head { grid-template-columns: 1fr; }
  .availability-note { text-align: left; max-width: 100%; }
  .carousel-slide { flex: 0 0 calc(50% - 0.5rem); }
  .carousel-slide:first-child { aspect-ratio: 3/4; }
  .carousel-header { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ac-products { grid-template-columns: 1fr; }
  .ig-sync-panel { flex-direction: column; }
  .availability-grid { grid-template-columns: repeat(2,1fr); }
  .carousel-slide { flex: 0 0 calc(100% - 0.5rem); }
  .avail-legend { flex-wrap: wrap; gap: 1rem; justify-content: flex-start; }
  .carousel-dots { display: none; }
}

/* ── REVIEW POPUP (customer-facing) ── */
#reviewPopupOverlay { display: none; }
#reviewPopupOverlay.open { display: flex; }
#reviewPopupBox input:focus,
#reviewPopupBox textarea:focus { border-color: var(--black) !important; }
#reviewPopupBox button:hover { background: var(--pink-mid) !important; }
#starPicker span { transition: color 0.15s; }
#starPicker span:hover { transform: scale(1.15); }
