/* ============================================================
   Pretty Rare Boutique — Site styles
   Palette: pink, ink-black, off-white. Brand mark: diamond.
   Sections share the same off-white bg so the page flows.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  font-family: var(--font-sans);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ---------- LAYOUT ---------- */
.wrap        { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 980px;  margin: 0 auto; padding: 0 32px; }
.wrap-prose  { max-width: 680px;  margin: 0 auto; padding: 0 32px; }

/* Sections all share off-white. No more alternating colored panels. */
.section          { padding: 88px 0; position: relative; background: var(--bg); }
.section--tight   { padding: 64px 0; }
.section--bleed   { padding: 0; }

/* ---------- TYPE ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);          /* diamond mark */
  display: inline-block;
}

.h-display {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.h-display .thin {
  font-weight: 200;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.h-1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.h-1 .thin { font-weight: 200; letter-spacing: -0.025em; color: var(--accent); }

.h-2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0;
}
.h-3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0;
}

.body  { font-family: var(--font-sans); font-size: 17px; line-height: 1.6;  color: var(--fg-soft); font-weight: 300; }
.body--sm { font-size: 14px; line-height: 1.55; color: var(--fg-soft); }

.label-cap {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--fg);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 17px 32px;
  border-radius: 999px;
  border: 1px solid var(--fg);
  color: var(--fg);
  background: transparent;
  cursor: pointer;
  transition: background 320ms var(--ease-soft),
              color 320ms var(--ease-soft),
              border-color 320ms var(--ease-soft);
}
.btn:hover { background: var(--fg); color: var(--fg-on-dark); }

.btn--fill { background: var(--fg); color: var(--fg-on-dark); }
.btn--fill:hover { background: var(--accent); color: var(--pr-white); border-color: var(--accent); }

.btn--pink { background: var(--accent); border-color: var(--accent); color: var(--pr-white); }
.btn--pink:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn--cream { border-color: var(--pr-off-100); color: var(--pr-off-100); }
.btn--cream:hover { background: var(--pr-off-100); color: var(--fg); }

.btn--sm { padding: 12px 22px; font-size: 11px; letter-spacing: 0.2em; }

.link-cap {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--fg);
  transition: color 220ms var(--ease-soft), border-color 220ms var(--ease-soft);
}
.link-cap:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- DIAMOND ORNAMENTS ---------- */
.diamond {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}
.diamond--outline {
  width: 10px; height: 10px;
  background: transparent;
  border: 1px solid var(--accent);
}

/* ---------- IMAGE FRAMES ---------- */
.arch       { border-radius: 9999px 9999px 12px 12px; overflow: hidden; }
.rect-soft  { border-radius: 12px; overflow: hidden; }
.circle-img { border-radius: 999px; overflow: hidden; }

.zoom-frame { overflow: hidden; border-radius: 12px; }
.zoom-frame > * { transition: transform 900ms var(--ease-soft); }
.zoom-frame:hover > * { transform: scale(1.05); }

/* ---------- FADE-IN ON SCROLL ---------- */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fade { animation: fadeUp var(--dur-slow) var(--ease-out) both; }
.fade--d1 { animation-delay: 80ms; }
.fade--d2 { animation-delay: 160ms; }
.fade--d3 { animation-delay: 240ms; }
.fade--d4 { animation-delay: 320ms; }

/* ---------- STICKY FLOATING BOOK ---------- */
.book-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  background: var(--fg);
  color: var(--fg-on-dark);
  border-radius: 999px;
  padding: 16px 28px;
  box-shadow: var(--shadow-lg);
  border: 0;
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: transform 240ms var(--ease-soft),
              background 240ms var(--ease-soft);
}
.book-fab:hover {
  transform: translateY(-2px);
  background: var(--accent);
}

/* ---------- PINK HALOS ---------- */
.halo {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(220, 156, 173, 0.45) 0%, rgba(251, 247, 248, 0) 65%);
  pointer-events: none;
  filter: blur(20px);
}

/* ---------- WATERMARK (deprecated — kept inert) ---------- */
.watermark { display: none; }
.watermark--legacy { display: none; }

/* ---------- SCRIPT (deprecated — kept inert) ---------- */
.script { display: none; }

/* ---------- MARQUEE ---------- */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-track {
  overflow: hidden;
  width: 100%;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 32px;
  white-space: nowrap;
}

/* ---------- STAMP ---------- */
.stamp {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--pr-white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg);
}

/* ---------- SCRIPT SIGNATURE (deprecated) ---------- */
.script-legacy { display: none; }

/* ---------- WATERMARK ---------- */
.watermark--legacy {
  position: absolute;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(11, 11, 11, 0.04);
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  line-height: 0.85;
}

/* ---------- SECTION BLEED (image transitions between sections) ---------- */
.bleed-image {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bleed-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    transparent 12%,
    transparent 88%,
    var(--bg) 100%
  );
  pointer-events: none;
}

/* ============================================================
   MOBILE — max-width: 767px
   ============================================================ */
@media (max-width: 767px) {
  .wrap,
  .wrap-narrow,
  .wrap-prose { padding: 0 20px; }

  .section       { padding: 56px 0; }
  .section--tight { padding: 40px 0; }

  .h-display {
    font-size: clamp(40px, 12vw, 72px);
    line-height: 0.96;
  }
  .h-1 {
    font-size: clamp(28px, 7.5vw, 44px);
  }
  .h-2 { font-size: 22px; }

  .eyebrow { font-size: 10px; }

  /* Book FAB — sits above phone UI chrome */
  .book-fab {
    bottom: 20px;
    right: 20px;
    padding: 14px 24px;
  }

  /* Menu row treatment list — tighten on mobile */
  .marquee-item { gap: 20px; padding: 0 20px; }

  /* Buttons full-width feel on small screens */
  .btn { padding: 15px 28px; }
}
