/* ============================================================
   LILLY NAILS LOUNGE — pitch site
   Type: Bodoni Moda (display) · Hanken Grotesk (body) · Space Mono (labels)
   ============================================================ */

:root {
  /* palette */
  --ink: oklch(0.205 0.035 350);        /* warm plum-black */
  --ink-soft: oklch(0.32 0.03 350);
  --paper: oklch(0.976 0.013 55);       /* warm cream */
  --blush: oklch(0.915 0.035 8);        /* soft rose */
  --blush-deep: oklch(0.86 0.052 6);
  --rose: oklch(0.605 0.17 7);          /* confident rose accent */
  --rose-deep: oklch(0.5 0.16 6);
  --gold: oklch(0.74 0.085 85);         /* champagne gold */
  --line: oklch(0.205 0.035 350 / 0.16);
  --line-light: oklch(1 0 0 / 0.16);

  /* tweakable */
  --accent: var(--rose);
  --accent-deep: var(--rose-deep);
  --hero-bg: var(--blush);
  --display: "Bodoni Moda", Georgia, serif;

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- typography ---------- */
.display {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.015em;
}
.italic { font-style: italic; }
.label {
  font-family: "Space Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 400;
}
.eyebrow {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 11vw, 150px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--paper); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px var(--accent); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { transform: translateY(-2px); background: var(--accent); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); background: var(--accent); color: var(--paper); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translate(3px,-3px); }

/* ---------- placeholders ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      oklch(0.205 0.035 350 / 0.05) 0 11px,
      oklch(0.205 0.035 350 / 0.015) 11px 22px),
    var(--blush-deep);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: var(--ink-soft);
}
.ph.on-dark {
  background:
    repeating-linear-gradient(135deg,
      oklch(1 0 0 / 0.06) 0 11px,
      oklch(1 0 0 / 0.02) 11px 22px),
    oklch(0.27 0.03 350);
  border-color: var(--line-light);
  color: oklch(0.85 0.02 350);
}
.ph .ph-tag {
  font-family: "Space Mono", monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 9px 12px;
  background: var(--paper);
  border-radius: 6px;
  margin: 12px;
  border: 1px solid var(--line);
}
.ph.on-dark .ph-tag { background: var(--ink); color: oklch(0.85 0.02 350); border-color: var(--line-light); }

/* image slots filled with real photos */
img.ph { display: block; width: 100%; object-fit: cover; background: var(--blush-deep); }
.gal-grid img.ph:hover { transform: scale(0.97); }
.ig-grid img.ph { cursor: pointer; transition: filter .3s, transform .3s; }
.ig-grid img.ph:hover { filter: brightness(0.9) saturate(1.05); }
