/* ============================================================
   Styled by RAM
   Layout + motion cloned from redchiliburgerandwings.com
   Palette: black + neon pink (from the Styled by RAM logo)
   Mobile-first. Base = 375px. Breakpoints: 640 / 1024.
   ============================================================ */

:root {
  --bg: #0a0708;
  --surface: rgba(255, 255, 255, 0.02);
  --card: rgba(255, 255, 255, 0.04);
  --text: #f7f2f5;
  --muted: rgba(255, 255, 255, 0.7);
  --faint: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.1);

  /* neon pink brand */
  --accent: #ff4fa8;
  --accent-soft: #ff8ed0;
  --accent-deep: #b31e6f;
  --on-accent: #12040b;
  --glow: rgba(255, 79, 168, 0.55);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
  --r-full: 999px;
  --shell: 1280px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
}

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

h1, h2, h3, .serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 0; }
.section-alt { background: var(--surface); }
.accent { color: var(--accent); }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 10px;
}
.h2 { font-size: 30px; margin-bottom: 12px; }
.lede { color: var(--muted); font-size: 14px; max-width: 60ch; margin: 0; }

/* ---------- white photo frame (used on every image sitewide) ---------- */
.frame {
  background: #fff;
  padding: 4px;
  border: 1px solid #fff;
  border-radius: var(--r-md);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  position: relative;
}
.frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }

/* ---------- logo ---------- */
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-script {
  position: relative;
  font-family: "Great Vibes", "Playfair Display", cursive;
  font-size: 30px;
  color: var(--accent-soft);
  padding-right: 16px;
  text-shadow:
    0 0 4px #fff,
    0 0 10px var(--accent),
    0 0 22px var(--accent),
    0 0 38px var(--accent-deep);
}
.logo-heart {
  position: absolute; top: 2px; right: -2px;
  width: 13px; height: 13px; fill: var(--accent);
  filter: drop-shadow(0 0 4px var(--accent)) drop-shadow(0 0 9px var(--accent-deep));
}
.logo-by {
  font-size: 9px; font-weight: 600; letter-spacing: 0.34em;
  text-transform: uppercase; color: #fff;
  margin-top: 2px; padding-left: 3px;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
.logo-lg .logo-script { font-size: 56px; padding-right: 26px; }
.logo-lg .logo-heart { width: 22px; height: 22px; top: 6px; }
.logo-lg .logo-by { font-size: 13px; letter-spacing: 0.4em; margin-top: 6px; }

/* ---------- buttons ---------- */
/* A <button> with no background falls back to the operating system's
   default button grey, which made light text invisible until hover.
   Always state the background here. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px;
  background: transparent;
  border-radius: var(--r-full); border: 1px solid transparent;
  font-size: 14px; font-weight: 500; font-family: inherit; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.075s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(2px); }
.btn-primary {
  background: var(--accent); color: var(--on-accent); font-weight: 600;
  box-shadow: 0 0 18px rgba(255, 79, 168, 0.35);
}
.btn-primary:hover { background: var(--accent-soft); box-shadow: 0 0 26px var(--glow); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 79, 168, 0.12);
  border-color: var(--accent); color: var(--accent);
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* The UA rule for [hidden] loses to .btn's display, so restate it. */
[hidden] { display: none !important; }
.btn-sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* ---------- instagram bits ---------- */
.ig-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: var(--r-full); border: 1px solid var(--border);
  background: var(--card); color: var(--accent); flex: 0 0 auto;
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}
.ig-btn:hover { border-color: var(--accent); box-shadow: 0 0 18px var(--glow); color: var(--accent-soft); }
.ig-btn svg { width: 19px; height: 19px; }

.ig-inline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 8px; border-radius: var(--r-full);
  border: 1px solid rgba(255, 79, 168, 0.35);
  background: rgba(255, 79, 168, 0.1);
  font-size: 13px; font-weight: 500;
}
.ig-inline svg { width: 17px; height: 17px; fill: var(--accent); }
.ig-inline:hover { border-color: var(--accent); box-shadow: 0 0 20px var(--glow); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}
.site-header.scrolled {
  background: rgba(10, 7, 8, 0.88);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav {
  max-width: var(--shell); margin: 0 auto; padding: 0 16px; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-links { display: none; }
.nav-cta { display: none; }

.burger {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-full); color: var(--text); cursor: pointer;
}
.burger span {
  display: block; width: 16px; height: 1.5px; background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(10, 7, 8, 0.98); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 24px; opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a.menu-link {
  font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 24px; height: 50px; }
.mobile-menu .ig-inline { margin-top: 14px; align-self: flex-start; }
.menu-close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px;
  border-radius: var(--r-full); background: var(--card);
  border: 1px solid var(--border); color: var(--text); font-size: 20px; cursor: pointer;
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 20px 0 0; }
.hero::before, .hero::after {
  content: ""; position: absolute; width: 420px; height: 420px;
  border-radius: 50%; pointer-events: none; filter: blur(90px); opacity: 0.3;
}
.hero::before { background: var(--accent); top: -250px; left: -170px; }
.hero::after { background: var(--accent-deep); bottom: -300px; right: -190px; opacity: 0.28; }

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--shell); margin: 0 auto; padding: 96px 16px 24px;
  display: grid; gap: 20px; align-items: center;
}
/* Sits above the tagline, between the wordmark and the hero copy.
   Two stacked lines on purpose: "Located in" as a lead-in, the actual
   place names on their own line below so they never wrap mid-phrase.
   Scales with the viewport so it stays loud on a phone and on a laptop. */
.hero-located {
  margin: 0 0 14px;
  font-size: clamp(18px, 4.6vw, 30px);
  font-weight: 700; letter-spacing: 0.03em; line-height: 1.3;
  text-transform: uppercase; color: var(--muted);
  /* Nothing may paint behind this. It sits flush on the hero. */
  background: none; border: 0; box-shadow: none; text-shadow: none;
}
.hero-located-lead { display: inline; }
.hero-located-lead::before {
  content: ""; display: inline-block; vertical-align: middle;
  margin-right: 0.4em; transform: translateY(-0.08em);
  width: 0.36em; height: 0.36em; border-radius: 50%;
  background: var(--accent);
}
.hero-located [data-content="locations"] {
  display: inline-block; margin-top: 2px;
  color: var(--accent);
  background: none; text-shadow: none;
}

.hero-kicker {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; margin-bottom: 12px;
}
.hero-kicker span { color: var(--accent); }
.hero h1 { font-size: 40px; margin-bottom: 14px; }
.hero-copy { color: var(--muted); font-size: 14px; margin: 0 0 22px; max-width: 46ch; }
.hero-text { transition: opacity 0.35s; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero-social { margin-bottom: 26px; }

.hero-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.hero-facts h4 { font-family: inherit; font-size: 12px; font-weight: 600; margin: 0 0 2px; }
.hero-facts p { font-size: 11px; color: var(--faint); margin: 0; }

/* ============================================================
   HERO PHOTO CAROUSEL
   Two different components, exactly like the reference site.
   Under 640px: a flat horizontal swipe carousel with dots.
   640px and up: the fanned arc with the price and chevrons.
   ============================================================ */

/* ---------- mobile: horizontal carousel ---------- */
.stage {
  position: relative; width: 100%; height: 224px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; touch-action: pan-y; user-select: none;
}
.fan-card {
  position: absolute; left: 50%; top: 50%;
  width: 176px; height: 144px;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out,
              width 0.5s ease-out, height 0.5s ease-out;
  cursor: pointer;
}
.fan-card .frame { height: 100%; }

/* p0 is the one in the middle. p1 is next, p4 is previous. */
.fan-card.p0 {
  width: 256px; height: 176px;
  transform: translate(-50%, -50%) translateX(0) scale(1) rotate(0deg);
  opacity: 1; z-index: 30;
}
.fan-card.p1 {
  transform: translate(-50%, -50%) translateX(110px) scale(0.85) rotate(6deg);
  opacity: 0.75; z-index: 20;
}
.fan-card.p2 {
  transform: translate(-50%, -50%) translateX(220px) scale(0.85) rotate(12deg);
  opacity: 0; z-index: 10;
}
.fan-card.p3 {
  transform: translate(-50%, -50%) translateX(-220px) scale(0.85) rotate(-12deg);
  opacity: 0; z-index: 10;
}
.fan-card.p4 {
  transform: translate(-50%, -50%) translateX(-110px) scale(0.85) rotate(-6deg);
  opacity: 0.75; z-index: 20;
}

/* the frame is a touch chunkier on mobile, matching the source */
.stage .frame {
  padding: 6px; border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
}
.stage .frame img { border-radius: 10px; }

/* the arc, price and chevrons are desktop only */
.arc, .stage-price, .stage-nav { display: none; }
.arc svg { width: 100%; height: 100%; }

.dots { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.dots button {
  width: 9px; height: 8px; padding: 0; border: 0; cursor: pointer;
  border-radius: var(--r-full); background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
.dots button.on { width: 24px; background: var(--accent); }

/* ---------- 640px and up: the fanned arc ---------- */
@media (min-width: 640px) {
  .stage { height: 500px; display: block; overflow: visible; }

  .fan-card {
    width: auto; height: auto; aspect-ratio: 3 / 2;
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1), top 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s, transform 0.6s;
  }
  /* Each position must restate transform, otherwise the mobile rules above
     win on specificity and the fan collapses back into a flat row. */
  .fan-card.p0 {
    left: 44%; top: 52%; width: 44%; height: auto;
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 1; z-index: 40;
  }
  .fan-card.p1 {
    left: 68%; top: 28%; width: 27%; height: auto;
    transform: translate(-50%, -50%) rotate(10deg);
    opacity: 0.85; z-index: 20;
  }
  .fan-card.p2 {
    left: 68%; top: 76%; width: 27%; height: auto;
    transform: translate(-50%, -50%) rotate(-10deg);
    opacity: 0.85; z-index: 20;
  }
  .fan-card.p3 {
    left: 86%; top: 12%; width: 19%; height: auto;
    transform: translate(-50%, -50%) rotate(15deg);
    opacity: 0.6; z-index: 10;
  }
  .fan-card.p4 {
    left: 86%; top: 92%; width: 19%; height: auto;
    transform: translate(-50%, -50%) rotate(-15deg);
    opacity: 0.6; z-index: 10;
  }

  .stage .frame {
    padding: 4px; border-radius: var(--r-md);
    border-color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.65);
  }
  .stage .frame img { border-radius: 16px; }

  .arc {
    display: block;
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 36%; height: 94%; z-index: 5; pointer-events: none;
    color: var(--accent); opacity: 0.4;
  }

  .stage-price {
    display: block;
    position: absolute; right: 11%; top: 50%; transform: translateY(-50%);
    z-index: 30; text-align: center; pointer-events: none;
  }
  .stage-price b {
    font-family: "Playfair Display", serif; font-size: 40px; font-weight: 700;
    display: block; line-height: 1;
  }
  .stage-price b sup { font-size: 0.55em; top: -0.5em; opacity: 0.7; }
  .stage-price small {
    display: block; font-size: 9px; font-weight: 700;
    letter-spacing: 0.4em; text-transform: uppercase; opacity: 0.35; margin-top: 6px;
  }

  .stage-nav {
    display: grid; place-items: center;
    position: absolute; right: 3%; z-index: 60;
    width: 42px; height: 42px;
    border-radius: var(--r-full); border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--accent); color: var(--on-accent);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.5); cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .stage-nav:hover { background: var(--accent-soft); box-shadow: 0 0 24px var(--glow); }
  .stage-nav svg { width: 17px; height: 17px; }
  .stage-nav.up { top: 4%; }
  .stage-nav.down { bottom: 4%; }

  /* dots belong to the mobile carousel only */
  .dots { display: none; }
}

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
.stat { text-align: center; }
.stat b {
  display: block; font-family: "Playfair Display", serif;
  font-size: 30px; color: var(--accent); line-height: 1; margin-bottom: 6px;
  text-shadow: 0 0 20px var(--glow);
}
.stat span { font-size: 12px; color: var(--muted); }

/* ---------- steps ---------- */
.steps { display: grid; gap: 12px; margin-top: 28px; }
.step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px 18px;
}
.step-num {
  width: 38px; height: 38px; border-radius: var(--r-full);
  display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(255, 79, 168, 0.14); color: var(--accent);
  font-weight: 700; font-size: 14px;
}
.step h3 { font-size: 20px; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden; padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 34px; width: max-content; animation: slide 26s linear infinite; }
.marquee-track span {
  font-family: "Playfair Display", serif; font-size: 24px; font-weight: 700;
  color: rgba(255, 255, 255, 0.28); white-space: nowrap;
  display: flex; align-items: center; gap: 34px;
}
.marquee-track span::after { content: "\2022"; color: var(--accent); font-size: 16px; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- service cards ---------- */
.card-grid { display: grid; gap: 18px; margin-top: 28px; }
.card { display: flex; flex-direction: column; transition: transform 0.25s; }
.card:hover { transform: translateY(-4px); }
.card .frame { aspect-ratio: 1 / 1; }
.tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--accent); color: var(--on-accent);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-full);
}
.duration {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(10, 7, 8, 0.82); backdrop-filter: blur(6px); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px; padding: 5px 11px; border-radius: var(--r-full);
}
.card-body { padding: 16px 4px 0; display: flex; flex-direction: column; flex: 1; gap: 7px; }
.card-body h3 {
  font-family: Inter, sans-serif; font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
}
.card-body p { font-size: 13px; color: var(--muted); margin: 0; flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 6px; }
.price { font-family: "Playfair Display", serif; font-size: 22px; font-weight: 700; }

/* ---------- instagram feature band ---------- */
.ig-band {
  border: 1px solid rgba(255, 79, 168, 0.3);
  background: linear-gradient(135deg, rgba(255, 79, 168, 0.14), rgba(255, 255, 255, 0.03));
  border-radius: var(--r-lg); padding: 32px 20px; text-align: center;
}
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 24px 0; }
.ig-grid .frame { aspect-ratio: 1 / 1; border-radius: var(--r-sm); }
.ig-grid .frame img { border-radius: 9px; }

/* ---------- journal ---------- */
.posts { display: grid; gap: 20px; margin-top: 28px; }
.post .frame { aspect-ratio: 16 / 10; }
.post-body { padding: 16px 4px 0; }
.post-meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 10px;
}
.post-meta .tag-inline { color: var(--accent); }
.post h3 { font-size: 20px; margin-bottom: 8px; }
.post p { font-size: 13px; color: var(--muted); margin: 0; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.link-more {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* ---------- acuity embed ---------- */
.booking-shell {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: #fff; overflow: hidden; margin-top: 24px;
  box-shadow: 0 0 60px rgba(255, 79, 168, 0.12);
}
.booking-shell iframe { width: 100%; height: 900px; border: 0; display: block; }

/* ---------- footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 0 24px; }
.footer-quote {
  font-family: "Playfair Display", serif; font-size: 19px; line-height: 1.4;
  margin: 22px 0 28px; color: var(--muted);
}
.footer-cols { display: grid; gap: 26px; }
.footer-cols h5 {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 12px; font-weight: 600;
}
.footer-cols li, .footer-cols p { font-size: 13px; color: var(--muted); margin: 0 0 8px; }
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint);
}

/* ---------- sticky mobile bar ---------- */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 7, 8, 0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
}
.book-bar .btn { flex: 1; }
.book-bar .from { font-size: 11px; color: var(--faint); line-height: 1.3; }
.book-bar .from b { display: block; color: var(--text); font-size: 14px; }

/* ---------- filters ---------- */
.filters {
  display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 14px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.filters::-webkit-scrollbar { display: none; }
.filters button {
  flex: 0 0 auto; height: 36px; padding: 0 16px;
  border-radius: var(--r-full); border: 1px solid var(--border);
  background: transparent; color: var(--muted);
  font-size: 12px; font-weight: 500; font-family: inherit;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.2s;
}
.filters button.active {
  background: var(--accent); border-color: var(--accent);
  color: var(--on-accent); font-weight: 700; box-shadow: 0 0 18px var(--glow);
}

.group-title { font-size: 22px; margin: 36px 0 4px; display: flex; align-items: center; gap: 12px; }
.group-title::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.group-note { font-size: 12px; color: var(--faint); margin: 0 0 4px; }

/* ============================================================
   ADMIN: PHOTO SLOTS
   Every spot on the site that shows a photo gets a labelled slot,
   with the picture currently in it, so nothing is replaced blind.
   ============================================================ */
.slot {
  display: grid; grid-template-columns: 108px 1fr; gap: 14px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px; margin-bottom: 12px;
}
.slot-preview {
  position: relative; width: 108px; aspect-ratio: 3 / 4;
  border-radius: var(--r-sm); overflow: hidden;
  background: repeating-linear-gradient(45deg, #1b1016, #1b1016 8px, #241419 8px, #241419 16px);
  cursor: crosshair; border: 1px solid var(--border);
}
.slot-preview.square { aspect-ratio: 1 / 1; }
.slot-preview.wide { aspect-ratio: 3 / 2; }
.slot-preview img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slot-preview .empty {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 10px; color: var(--faint); text-align: center; padding: 6px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
/* Crosshair marking the chosen focal point. */
.slot-preview .focal {
  position: absolute; width: 18px; height: 18px; margin: -9px 0 0 -9px;
  border: 2px solid #fff; border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.55); pointer-events: none;
}
.slot-body b { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.slot-where {
  font-size: 11px; color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 6px;
}
.slot-body .hint { font-size: 11px; color: var(--faint); margin: 6px 0 0; line-height: 1.5; }
.slot-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.slot-zoom { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 11px; color: var(--faint); }
.slot-zoom input { flex: 1; accent-color: var(--accent); }

/* Picking a photo out of everything uploaded. */
.picker {
  position: fixed; inset: 0; z-index: 5500;
  background: rgba(6, 4, 5, 0.9); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.picker.open { display: flex; }
.picker-card {
  background: #140a10; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 20px; width: 100%; max-width: 620px; max-height: 86vh; overflow-y: auto;
}
.picker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.picker-grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--r-sm); cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.15s;
}
.picker-grid img:hover { border-color: var(--accent); }

@media (min-width: 640px) {
  .slot { grid-template-columns: 140px 1fr; }
  .slot-preview { width: 140px; }
  .picker-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   LIGHTBOX
   Tap any photo to blow it up. Closing is deliberately easy:
   the X, the backdrop, Escape, or a swipe in any direction.
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 6000;
  background: rgba(6, 4, 5, 0.94);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.lb.open { opacity: 1; visibility: visible; }

.lb-img {
  max-width: min(94vw, 1100px); max-height: 84vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--r-md);
  background: #fff; padding: 5px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.9);
  transform: scale(0.94); transition: transform 0.22s ease;
  touch-action: none;
}
.lb.open .lb-img { transform: scale(1); }

/* Big tap target, thumb reachable, never over the photo's middle. */
.lb-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 48px; height: 48px; border-radius: var(--r-full);
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff; font-size: 26px; line-height: 1; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lb-close:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: var(--r-full);
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff; cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.lb-nav:hover { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.lb-nav svg { width: 22px; height: 22px; }
.lb-nav.prev { left: 10px; }
.lb-nav.next { right: 10px; }
.lb-nav[hidden] { display: none !important; }

.lb-count {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.lb-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  font-size: 11px; color: rgba(255, 255, 255, 0.4); white-space: nowrap;
}

/* Anything clickable to zoom gets the cue. */
[data-lightbox] { cursor: zoom-in; }

@media (min-width: 640px) {
  .lb-nav.prev { left: 24px; }
  .lb-nav.next { right: 24px; }
  .lb-close { top: 22px; right: 22px; }
}

/* ---------- reveal ---------- */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-up { opacity: 1; transform: none; } }

/* ============================================================
   640px and up
   ============================================================ */
@media (min-width: 640px) {
  body { font-size: 16px; }
  .shell, .nav, .hero-inner { padding-inline: 24px; }
  .section { padding: 72px 0; }
  .h2 { font-size: 38px; }
  .lede { font-size: 15px; }
  .hero h1 { font-size: 54px; }
  .hero-copy { font-size: 16px; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat b { font-size: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .ig-band { padding: 48px 32px; }
  .ig-grid { grid-template-columns: repeat(6, 1fr); }
  .marquee-track span { font-size: 32px; }
}

/* ============================================================
   1024px and up
   ============================================================ */
@media (min-width: 1024px) {
  .section { padding: 96px 0; }
  .nav { height: 76px; }
  .burger { display: none; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    padding: 8px 16px; border-radius: var(--r-sm);
    font-size: 14px; font-weight: 500; transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover, .nav-links a.is-active { background: rgba(255, 255, 255, 0.08); color: var(--accent); }
  .nav-cta { display: inline-flex; }
  .hero-inner {
    grid-template-columns: 1fr 1fr; gap: 48px;
    padding-top: 132px; min-height: calc(100vh - 100px);
  }
  .hero h1 { font-size: 66px; }
  .h2 { font-size: 44px; }
  .stage { height: 580px; }
  .stage-price b { font-size: 48px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .posts { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(4, 1fr); }
  .footer-quote { font-size: 24px; max-width: 40ch; }
  .book-bar { display: none; }
  body { padding-bottom: 0; }
  .marquee-track span { font-size: 40px; }
}

/* ============================================================
   POLICIES, CUSTOM INQUIRY, MEET YOUR STYLIST
   ============================================================ */

/* script heading, matches the brand graphics */
.script-head {
  font-family: "Great Vibes", cursive;
  font-size: 38px; font-weight: 400; line-height: 1.15;
  color: var(--accent-soft); letter-spacing: 0;
  text-shadow: 0 0 5px #fff, 0 0 14px var(--accent), 0 0 30px var(--accent-deep);
  margin: 0 0 6px;
}

/* high emphasis alert strip */
.alert-band {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px solid var(--accent);
  background: linear-gradient(135deg, rgba(255, 79, 168, 0.18), rgba(255, 79, 168, 0.05));
  border-radius: var(--r-md); padding: 16px 18px;
  box-shadow: 0 0 34px rgba(255, 79, 168, 0.18);
}
.alert-band + .alert-band { margin-top: 12px; }
.alert-band .bang {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: var(--r-full);
  display: grid; place-items: center; font-size: 14px; font-weight: 700;
  background: var(--accent); color: var(--on-accent);
}
.alert-band h3 { font-family: Inter, sans-serif; font-size: 15px; font-weight: 700; margin: 0 0 3px; }
.alert-band p { font-size: 13px; color: var(--muted); margin: 0; }
.alert-stack { display: grid; gap: 12px; margin-top: 26px; }

/* rule cards */
.rules { display: grid; gap: 14px; margin-top: 28px; }
.rule {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 22px 18px;
}
.rule-ico {
  width: 42px; height: 42px; border-radius: var(--r-full);
  display: grid; place-items: center; margin-bottom: 14px;
  background: rgba(255, 79, 168, 0.14); color: var(--accent);
}
.rule-ico svg { width: 20px; height: 20px; }
.rule h3 { font-size: 19px; margin-bottom: 7px; }
.rule p { font-size: 13px; color: var(--muted); margin: 0 0 8px; }
.rule p:last-child { margin-bottom: 0; }
.rule strong { color: var(--text); }

/* late fee escalation */
.tiers { display: grid; gap: 12px; margin-top: 24px; }
.tier {
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border); border-left: 4px solid var(--accent);
  background: var(--card); border-radius: var(--r-sm); padding: 16px 18px;
}
.tier .when {
  font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700;
  flex: 0 0 92px; line-height: 1.1;
}
.tier .what { font-size: 13px; color: var(--muted); }
.tier .what b { display: block; color: var(--accent); font-size: 16px; font-family: "Playfair Display", serif; }
.tier.hard { border-left-color: #ff2d6f; }
.tier.hard .what b { color: #ff5c8d; }

/* payment methods */
.pays { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
.pay {
  border: 1px solid var(--border); background: var(--card);
  border-radius: var(--r-sm); padding: 14px; text-align: center;
}
.pay b { display: block; font-size: 14px; margin-bottom: 2px; }
.pay small { font-size: 11px; color: var(--faint); }
.pay.hero-pay { border-color: var(--accent); background: rgba(255, 79, 168, 0.12); grid-column: 1 / -1; }
.pay.hero-pay b { font-size: 22px; }

/* checklist pills, styled after the brand graphic */
.checklist { display: grid; gap: 12px; margin-top: 26px; }
.check-pill {
  display: flex; align-items: center; gap: 12px;
  border-radius: var(--r-full); padding: 13px 20px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; color: #1a0a12;
}
.check-pill.pink { background: var(--accent); }
.check-pill.gold { background: #f6d365; }
.check-pill svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* forms */
.form { display: grid; gap: 16px; margin-top: 28px; text-align: left; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--faint); }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text);
  font-family: inherit; font-size: 15px; padding: 12px 14px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 79, 168, 0.18);
}
.field select option { background: #16090f; }
.field small { font-size: 11px; color: var(--faint); }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.form-note {
  font-size: 12px; color: var(--faint); margin: 0;
  border-left: 2px solid var(--accent); padding-left: 12px;
}
.sent {
  display: none; margin-top: 16px; padding: 14px 16px;
  border: 1px solid var(--accent); border-radius: var(--r-sm);
  background: rgba(255, 79, 168, 0.12); font-size: 13px;
}
.sent.show { display: block; }

/* meet your stylist */
.bio {
  border: 1px solid rgba(255, 79, 168, 0.4);
  border-radius: var(--r-md); padding: 26px 20px;
  background: rgba(255, 79, 168, 0.05);
  position: relative;
}
.bio p {
  font-family: "Playfair Display", serif; font-size: 18px; line-height: 1.55;
  color: var(--text); margin: 0 0 14px;
}
.bio p:last-of-type { margin-bottom: 0; }
.bio .sign {
  display: block; margin-top: 18px;
  font-family: "Great Vibes", cursive; font-size: 30px; color: var(--accent-soft);
  text-shadow: 0 0 12px var(--glow);
}

.polaroids { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.polaroid {
  background: #fff; padding: 8px 8px 34px; border-radius: 4px;
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.7);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.3s;
}
.polaroid:hover { transform: rotate(0deg) translateY(-4px); }
.polaroid img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; border-radius: 2px; }
.polaroid .ph {
  aspect-ratio: 3 / 4; width: 100%; border-radius: 2px;
  background: repeating-linear-gradient(45deg, #f3e6ee, #f3e6ee 10px, #fbf3f8 10px, #fbf3f8 20px);
  display: grid; place-items: center; text-align: center;
  color: #b07a99; font-size: 11px; font-weight: 600; padding: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

@media (min-width: 640px) {
  .script-head { font-size: 52px; }
  .rules { grid-template-columns: repeat(2, 1fr); }
  .checklist { grid-template-columns: repeat(2, 1fr); }
  .pays { grid-template-columns: repeat(4, 1fr); }
  .pay.hero-pay { grid-column: 1 / -1; }
  .alert-stack { grid-template-columns: repeat(2, 1fr); }
  .alert-band + .alert-band { margin-top: 0; }
  .polaroids { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .bio { padding: 40px 36px; }
  .bio p { font-size: 21px; }
  .form { grid-template-columns: repeat(2, 1fr); }
  .field.full { grid-column: 1 / -1; }
  .form-actions { grid-column: 1 / -1; }
  .form-note { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .script-head { font-size: 64px; }
  .rules { grid-template-columns: repeat(3, 1fr); }
  .polaroids { grid-template-columns: repeat(5, 1fr); }
  .tier .when { flex-basis: 130px; font-size: 24px; }
}

/* ============================================================
   BOOKING FLOW
   ============================================================ */
.wizard-steps {
  display: flex; align-items: center; gap: 8px;
  margin: 22px 0 6px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}
.wizard-steps span {
  display: flex; align-items: center; gap: 7px; color: var(--faint); white-space: nowrap;
}
.wizard-steps span b {
  width: 22px; height: 22px; border-radius: var(--r-full);
  display: grid; place-items: center; font-size: 11px;
  background: rgba(255, 255, 255, 0.08); color: var(--faint);
}
.wizard-steps span.on { color: var(--text); }
.wizard-steps span.on b { background: var(--accent); color: var(--on-accent); }
.wizard-steps i { flex: 1; height: 1px; background: var(--border); }

.step-panel { display: none; }
.step-panel.on { display: block; }

/* service picker */
.svc-group-title {
  font-size: 19px; margin: 26px 0 10px;
  display: flex; align-items: center; gap: 12px;
}
.svc-group-title::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.svc-list { display: grid; gap: 10px; }
.svc {
  display: flex; align-items: center; gap: 14px; text-align: left;
  width: 100%; padding: 16px; cursor: pointer;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); color: inherit; font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.svc:hover, .svc.picked { border-color: var(--accent); background: rgba(255, 79, 168, 0.08); }
.svc-main { flex: 1; min-width: 0; }
.svc-main b { display: block; font-size: 15px; font-weight: 600; }
.svc-main small { display: block; font-size: 12px; color: var(--faint); margin-top: 3px; }
.svc-price {
  font-family: "Playfair Display", serif; font-size: 20px; font-weight: 700;
  color: var(--accent); flex: 0 0 auto;
}

/* calendar */
.cal {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px; margin-top: 8px;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.cal-head b { font-family: "Playfair Display", serif; font-size: 19px; }
.cal-head button {
  width: 34px; height: 34px; border-radius: var(--r-full);
  background: transparent; border: 1px solid var(--border);
  color: var(--text); cursor: pointer; font-size: 15px;
}
.cal-head button:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.cal-head button:disabled { opacity: 0.3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow {
  text-align: center; font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--faint); padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1 / 1; border-radius: var(--r-sm);
  border: 1px solid transparent; background: rgba(255, 255, 255, 0.04);
  color: var(--text); font-family: inherit; font-size: 14px; cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.cal-day:hover:not(:disabled) { border-color: var(--accent); }
.cal-day:disabled { opacity: 0.22; cursor: not-allowed; background: transparent; }
.cal-day.sel { background: var(--accent); color: var(--on-accent); font-weight: 700; }
.cal-day.blank { background: transparent; cursor: default; }

.slots-wrap { margin-top: 20px; }
.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 12px; }
.slot {
  padding: 12px 8px; border-radius: var(--r-sm);
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); font-family: inherit; font-size: 14px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.slot:hover { border-color: var(--accent); }
.slot.sel { background: var(--accent); border-color: var(--accent); color: var(--on-accent); font-weight: 700; }
.slot small { display: block; font-size: 10px; opacity: 0.65; margin-top: 2px; }

.muted-note { font-size: 13px; color: var(--faint); margin: 12px 0 0; }
.err {
  border: 1px solid #ff2d6f; background: rgba(255, 45, 111, 0.12);
  border-radius: var(--r-sm); padding: 12px 14px; font-size: 13px; margin-top: 14px;
}

/* modal */
.modal {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-card {
  width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto;
  background: #140a10; border: 1px solid var(--border);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 26px 20px calc(26px + env(safe-area-inset-bottom));
  transform: translateY(16px); transition: transform 0.25s;
}
.modal.open .modal-card { transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: var(--r-full); background: var(--card);
  border: 1px solid var(--border); color: var(--text); font-size: 19px; cursor: pointer;
}
.modal h3 { font-size: 26px; margin-bottom: 4px; }
.modal .when-line { font-size: 14px; color: var(--accent); margin: 0 0 18px; font-weight: 600; }

.breakdown {
  border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; margin-bottom: 18px;
}
.breakdown div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px 16px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.breakdown div:last-child { border-bottom: 0; }
.breakdown .now { background: rgba(255, 79, 168, 0.14); font-weight: 700; }
.breakdown .now b { color: var(--accent); font-size: 17px; }
.breakdown .later { color: var(--muted); }
.breakdown .total { background: rgba(255, 255, 255, 0.03); }

.pay-box {
  border: 1px solid var(--accent); border-radius: var(--r-md);
  background: rgba(255, 79, 168, 0.08); padding: 16px; margin-bottom: 18px;
}
.pay-box h4 { font-family: Inter, sans-serif; font-size: 13px; font-weight: 700; margin: 0 0 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.pay-line {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.14); font-size: 14px;
}
.pay-line:last-of-type { border-bottom: 0; }
/* Payment handles must be unmistakable. A serif turns $4rammii into a
   guessing game, so these use a monospace face with wide tracking. */
.pay-line b, .pay.hero-pay b, .handle {
  font-family: ui-monospace, "Cascadia Mono", "Consolas", "Courier New", monospace;
  font-size: 19px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--accent-soft); word-break: break-all;
}
.pay-line { align-items: center; }

.paste {
  margin-top: 12px; background: rgba(0, 0, 0, 0.45);
  border: 1px dashed var(--accent); border-radius: var(--r-sm); padding: 12px 14px;
}
.paste small { display: block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.paste code {
  display: block; font-family: ui-monospace, "Courier New", monospace;
  font-size: 13px; color: var(--text); word-break: break-word; line-height: 1.5;
}
.paste .btn { margin-top: 10px; width: 100%; }

.done-mark {
  width: 62px; height: 62px; border-radius: var(--r-full); margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 30px;
  background: rgba(255, 79, 168, 0.16); border: 1px solid var(--accent);
  box-shadow: 0 0 34px var(--glow);
}
.confirm-box {
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--card); padding: 20px; margin: 22px 0; text-align: left;
}
.confirm-box dl { margin: 0; display: grid; gap: 10px; }
.confirm-box .row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
.confirm-box .row dt { color: var(--faint); }
.confirm-box .row dd { margin: 0; font-weight: 600; text-align: right; }

/* admin */
.admin-row {
  border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--card); padding: 16px; margin-bottom: 12px;
}
.admin-row .top { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.admin-row h3 { font-family: Inter, sans-serif; font-size: 16px; font-weight: 700; }
.admin-row .meta { font-size: 13px; color: var(--muted); margin: 2px 0; }
.admin-row .meta b { color: var(--text); }
.pill {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-full); white-space: nowrap;
}
/* Red means money is still owed. Green means it is handled. */
.pill.pending   { background: #e8143c; color: #fff; }
.pill.confirmed { background: #12a150; color: #fff; }
.pill.cancelled { background: rgba(255, 255, 255, 0.14); color: var(--faint); }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }

/* The whole card picks up the same signal, readable at a glance. */
.admin-row.is-pending   { border-left: 4px solid #e8143c; }
.admin-row.is-confirmed { border-left: 4px solid #12a150; }
.admin-row.is-cancelled { border-left: 4px solid rgba(255, 255, 255, 0.18); opacity: 0.65; }

.btn-danger { background: #e8143c; color: #fff; font-weight: 600; }
.btn-danger:hover { background: #ff2d55; color: #fff; }
.btn-go { background: #12a150; color: #fff; font-weight: 600; }
.btn-go:hover { background: #16c563; color: #fff; }

@media (min-width: 640px) {
  .slot-grid { grid-template-columns: repeat(4, 1fr); }
  .modal { align-items: center; }
  .modal-card { border-radius: var(--r-lg); padding: 32px; }
  .cal { padding: 22px; }
  .modal h3 { font-size: 30px; }
}

/* ============================================================
   ADMIN: calendar view, inquiries, editors
   ============================================================ */

/* input with a locked prefix, used for the CashApp tag */
.prefixed { display: flex; align-items: stretch; }
.prefixed .pfx {
  display: grid; place-items: center; width: 40px; flex: 0 0 auto;
  background: rgba(255, 79, 168, 0.16);
  border: 1px solid var(--border); border-right: 0;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  font-family: ui-monospace, "Consolas", monospace;
  font-size: 17px; font-weight: 700; color: var(--accent);
}
.prefixed input { flex: 1; min-width: 0; border-radius: 0 var(--r-sm) var(--r-sm) 0; }

/* month grid of bookings */
.adm-cal { margin-top: 18px; }
.adm-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.adm-cal-head b { font-family: "Playfair Display", serif; font-size: 21px; }
.adm-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.adm-dow {
  text-align: center; font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--faint); padding-bottom: 6px;
}
.adm-day {
  min-height: 62px; border-radius: 8px; padding: 4px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid transparent;
  display: flex; flex-direction: column; gap: 2px; overflow: hidden;
}
.adm-day.blank { background: transparent; }
.adm-day.today { border-color: var(--accent); }
.adm-day.off { background: rgba(255, 255, 255, 0.01); }
.adm-day .num { font-size: 11px; color: var(--faint); font-weight: 600; }
.adm-day.off .num { text-decoration: line-through; }
.adm-chip {
  font-size: 9px; line-height: 1.25; padding: 2px 4px; border-radius: 4px;
  color: #fff; cursor: pointer; text-align: left;
  border: 0; font-family: inherit; width: 100%;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.adm-chip.pending { background: #e8143c; }
.adm-chip.confirmed { background: #12a150; }
.adm-chip.blocked { background: rgba(255, 255, 255, 0.22); color: var(--muted); }
.cal-key { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; font-size: 12px; color: var(--muted); }
.cal-key span { display: flex; align-items: center; gap: 6px; }
.cal-key i { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }

/* inquiries */
.inq { border-left: 4px solid var(--accent); }
.inq .q { font-size: 13px; color: var(--muted); margin: 3px 0; }
.inq .q b { color: var(--text); }

/* service and image editors */
.editor-row {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px; margin-bottom: 12px;
}
.editor-grid { display: grid; gap: 10px; }
.editor-grid label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 4px;
}
.editor-grid input, .editor-grid textarea, .editor-grid select {
  width: 100%; background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  color: var(--text); font-family: inherit; font-size: 15px; padding: 10px 12px;
}
.editor-grid input:focus, .editor-grid textarea:focus {
  outline: none; border-color: var(--accent);
}
.thumb {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--r-sm); background: rgba(255, 255, 255, 0.05);
}
.img-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 16px; }
.drop {
  border: 2px dashed var(--border); border-radius: var(--r-md);
  padding: 26px 16px; text-align: center; color: var(--faint);
  font-size: 13px; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.drop:hover, .drop.over { border-color: var(--accent); background: rgba(255, 79, 168, 0.06); }

@media (min-width: 640px) {
  .editor-grid { grid-template-columns: repeat(2, 1fr); }
  .editor-grid .wide { grid-column: 1 / -1; }
  .img-grid { grid-template-columns: repeat(4, 1fr); }
  .adm-day { min-height: 88px; }
  .adm-chip { font-size: 10px; }
}
