/* Little Bloom Photo Studio — brand tokens */
:root {
  /* Brand palette (sampled from artwork PDF) */
  --lb-cream: #efe8d8;
  --lb-cream-2: #f5f0e3;
  --lb-cream-3: #fbf7ec;
  --lb-tan: #b29b7b;
  --lb-tan-soft: #cec2aa;
  --lb-warm-gray: #aca69a;
  --lb-brown: #5c4a3c;
  --lb-brown-dark: #3a2e25;
  --lb-forest: #4b503e;
  --lb-forest-deep: #2f3328;
  --lb-ink: #2a241e;

  /* Semantic */
  --lb-bg: var(--lb-cream-3);
  --lb-bg-alt: var(--lb-cream);
  --lb-bg-dark: var(--lb-forest-deep);
  --lb-text: var(--lb-brown-dark);
  --lb-text-soft: #6b5d50;
  --lb-rule: #d9cfb8;
  --lb-rule-soft: rgba(92,74,60,.16);

  /* Type */
  --lb-script: "Pinyon Script", "Allura", cursive;
  --lb-display: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --lb-caps: "Tenor Sans", "Optima", "Avenir Next", sans-serif;
  --lb-body: "Jost", "Avenir Next", "Helvetica Neue", system-ui, sans-serif;

  /* Spacing rhythm */
  --lb-gutter: clamp(20px, 4vw, 72px);
  --lb-section: clamp(72px, 11vw, 168px);
  --lb-radius: 2px;
}

* { box-sizing: border-box; }
html { margin: 0; padding: 0; scroll-behavior: smooth; }
body { margin: 0; padding: 0; }
body {
  font-family: var(--lb-body);
  font-weight: 300;
  background: var(--lb-bg);
  color: var(--lb-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---- Type scale ---- */
.lb-eyebrow {
  font-family: var(--lb-caps);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lb-tan);
  font-weight: 400;
}
.lb-eyebrow.dark { color: var(--lb-brown); }
.lb-eyebrow.light { color: var(--lb-cream-2); }

.lb-display {
  font-family: var(--lb-display);
  font-weight: 300;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-size: clamp(48px, 8.5vw, 140px);
  color: var(--lb-brown);
  margin: 0;
}
.lb-display .rom { font-style: normal; }
.lb-display .scr {
  font-family: var(--lb-script);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--lb-tan);
  font-size: 1.05em;
  line-height: 0.9;
}

.lb-h2 {
  font-family: var(--lb-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--lb-brown);
  margin: 0;
}
.lb-h2 .scr {
  font-family: var(--lb-script);
  font-style: normal;
  color: var(--lb-tan);
  font-size: 1.1em;
}

.lb-h3 {
  font-family: var(--lb-display);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: 0.005em;
  color: var(--lb-brown);
  margin: 0;
}

.lb-caps-title {
  font-family: var(--lb-caps);
  font-size: clamp(15px, 1.2vw, 17px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lb-brown);
  font-weight: 400;
}

.lb-body {
  font-family: var(--lb-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--lb-text-soft);
  font-weight: 300;
}
.lb-body.lg { font-size: 18px; }

.lb-lead {
  font-family: var(--lb-display);
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--lb-brown);
  font-style: italic;
}

/* ---- Buttons ---- */
.lb-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--lb-caps);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--lb-brown);
  color: var(--lb-cream-3);
  border: 1px solid var(--lb-brown);
  border-radius: 999px;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  font-weight: 400;
}
.lb-btn:hover {
  background: transparent;
  color: var(--lb-brown);
}
.lb-btn .arrow {
  width: 14px; height: 1px; background: currentColor; position: relative;
  transition: width .35s ease;
}
.lb-btn .arrow::after {
  content: ''; position: absolute; right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.lb-btn:hover .arrow { width: 22px; }

.lb-btn.ghost {
  background: transparent;
  color: var(--lb-brown);
}
.lb-btn.ghost:hover { background: var(--lb-brown); color: var(--lb-cream-3); }

.lb-btn.light {
  background: var(--lb-cream-3);
  color: var(--lb-brown);
  border-color: var(--lb-cream-3);
}
.lb-btn.light:hover { background: transparent; color: var(--lb-cream-3); border-color: var(--lb-cream-3); }

.lb-link {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--lb-caps);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lb-brown);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap .3s ease, color .3s ease;
}
.lb-link:hover { gap: 18px; color: var(--lb-tan); }

/* ---- Layout helpers ---- */
.lb-container { padding-inline: var(--lb-gutter); }
.lb-section { padding-block: var(--lb-section); }
.lb-rule { height: 1px; background: var(--lb-rule); border: 0; margin: 0; }

/* ---- Image treatments ---- */
.lb-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--lb-cream);
}
.lb-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.92) contrast(1.02);
}
.lb-img-wrap:hover img { transform: scale(1.04); }

/* ratios */
.r-4x5 { aspect-ratio: 4/5; }
.r-3x4 { aspect-ratio: 3/4; }
.r-1x1 { aspect-ratio: 1/1; }
.r-2x3 { aspect-ratio: 2/3; }
.r-16x10 { aspect-ratio: 16/10; }
.r-3x2 { aspect-ratio: 3/2; }

/* Reveal-on-scroll baseline */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* Scrollbar tasteful */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--lb-cream); }
::-webkit-scrollbar-thumb { background: var(--lb-tan-soft); border-radius: 999px; }

/* Selection */
::selection { background: var(--lb-tan); color: var(--lb-cream-3); }
