/* Luna Bloom Beauty Studio — standalone demo */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --lb-cream: #fefdfb;
  --lb-blush: #fdf2f4;
  --lb-rose: #e8b4bc;
  --lb-gold: #9a7b4f;
  --lb-gold-light: #c4a574;
  --lb-charcoal: #3a3634;
  --lb-muted: #6b6560;
  --lb-line: #ebe5e0;
  --lb-radius: 12px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lb-charcoal);
  background: var(--lb-cream);
}

img { max-width: 100%; height: auto; display: block; }

.lb-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .lb-wrap { padding: 0 2rem; }
}

.lb-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

/* Header */
.lb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 253, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lb-line);
}

.lb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
}

.lb-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--lb-charcoal);
  text-decoration: none;
}

.lb-logo span { color: var(--lb-gold); font-weight: 600; }

.lb-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lb-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--lb-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lb-nav a:hover { color: var(--lb-charcoal); }

@media (max-width: 640px) {
  .lb-nav .lb-hide-sm { display: none; }
}

.lb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lb-btn-fill {
  background: var(--lb-charcoal);
  color: var(--lb-cream);
}

.lb-btn-fill:hover { background: #2a2624; }

.lb-btn-outline {
  background: transparent;
  color: var(--lb-charcoal);
  border: 1px solid var(--lb-charcoal);
}

.lb-btn-outline:hover { background: var(--lb-charcoal); color: var(--lb-cream); }

/* Hero */
.lb-hero {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(165deg, var(--lb-blush) 0%, var(--lb-cream) 45%, #fff 100%);
}

@media (min-width: 768px) {
  .lb-hero { padding: 4rem 0 4.5rem; }
}

.lb-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lb-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}

.lb-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--lb-charcoal);
}

.lb-hero-lead {
  font-size: 1.0625rem;
  color: var(--lb-muted);
  font-weight: 400;
  margin: 0 0 1.75rem;
  max-width: 38ch;
}

.lb-hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.lb-hero-img {
  border-radius: var(--lb-radius);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(58, 54, 52, 0.12);
  border: 1px solid var(--lb-line);
}

.lb-hero-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Services */
.lb-section {
  padding: 3.5rem 0;
}

.lb-section-alt {
  background: var(--lb-blush);
}

.lb-section h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--lb-charcoal);
}

.lb-section-intro {
  text-align: center;
  color: var(--lb-muted);
  margin: 0 auto 2.5rem;
  max-width: 42ch;
  font-size: 0.95rem;
}

.lb-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .lb-services { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .lb-services { grid-template-columns: repeat(3, 1fr); }
}

.lb-card {
  background: #fff;
  border: 1px solid var(--lb-line);
  border-radius: var(--lb-radius);
  padding: 1.5rem 1.35rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.lb-card:hover {
  box-shadow: 0 16px 40px rgba(58, 54, 52, 0.08);
}

.lb-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.lb-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--lb-muted);
}

/* Highlight */
.lb-highlight {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--lb-line);
  border-radius: calc(var(--lb-radius) + 4px);
  padding: 2rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lb-highlight { grid-template-columns: 1fr 1fr; padding: 0; }
}

.lb-highlight-img img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.lb-highlight-copy {
  padding: 1.5rem 2rem 2rem;
}

@media (min-width: 768px) {
  .lb-highlight-copy { padding: 2.5rem; }
}

.lb-highlight-copy h2 {
  text-align: left;
  font-size: 2rem;
}

.lb-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lb-gold);
  margin-bottom: 0.75rem;
}

/* Gallery */
.lb-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .lb-gallery { grid-template-columns: repeat(4, 1fr); }
}

.lb-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--lb-line);
}

.lb-gallery .lb-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* Reviews */
.lb-reviews {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .lb-reviews { grid-template-columns: repeat(3, 1fr); }
}

.lb-review {
  background: #fff;
  border: 1px solid var(--lb-line);
  border-radius: var(--lb-radius);
  padding: 1.5rem;
}

.lb-stars { color: var(--lb-gold); letter-spacing: 0.15em; margin-bottom: 0.75rem; font-size: 0.85rem; }

.lb-review p {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--lb-charcoal);
}

.lb-review cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--lb-muted);
  font-style: normal;
}

/* Form */
.lb-form-wrap { max-width: 480px; margin: 0 auto; }

.lb-form {
  background: #fff;
  border: 1px solid var(--lb-line);
  border-radius: var(--lb-radius);
  padding: 2rem;
}

.lb-field { margin-bottom: 1rem; }

.lb-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lb-muted);
  margin-bottom: 0.35rem;
}

.lb-field input,
.lb-field textarea,
.lb-field select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--lb-line);
  border-radius: 8px;
  background: var(--lb-cream);
}

.lb-field textarea { min-height: 110px; resize: vertical; }

.lb-form-note {
  font-size: 0.75rem;
  color: var(--lb-muted);
  margin-top: 0.75rem;
}

/* Footer */
.lb-footer {
  background: var(--lb-charcoal);
  color: #e8e4e0;
  padding: 2.75rem 0 2rem;
}

.lb-footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .lb-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .lb-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

.lb-footer h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 0.75rem;
}

.lb-footer p, .lb-footer li {
  font-size: 0.875rem;
  color: #b8b0a8;
  margin: 0;
  line-height: 1.65;
}

.lb-footer ul { list-style: none; padding: 0; margin: 0; }

.lb-footer li { margin-bottom: 0.35rem; }

.lb-footer a { color: #f5f0eb; text-decoration: none; }

.lb-footer a:hover { color: var(--lb-gold-light); }

.lb-demo-strip {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--lb-muted);
  padding: 1rem;
  background: var(--lb-blush);
  border-top: 1px solid var(--lb-line);
}

.lb-demo-strip a {
  color: var(--lb-gold);
  font-weight: 600;
  text-decoration: none;
}

.lb-demo-strip a:hover { text-decoration: underline; }

.lb-sep { margin: 0 0.4rem; opacity: 0.5; }
