/* Chars Lash Bar — brand system
   Cream/ivory base, espresso type, dusty rose + warm gold accents.
   Serif display (Playfair Display) + clean sans body (Jost). */

:root {
  --cream: #FBF5EF;
  --cream-2: #F4EBE1;
  --espresso: #362621;
  --espresso-soft: #55433C;
  --rose: #B98891;
  --rose-deep: #9C6672;
  --blush: #EFE1DD;
  --blush-soft: #F7EDEA;
  --gold: #B68A52;
  --gold-soft: #D9BD8E;
  --line: #E7DAC9;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .display {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--espresso);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
@media (max-width: 640px) { section { padding: 52px 0; } }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  margin-bottom: 0.9em;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 48px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--rose-deep);
  color: #fff;
}
.btn-primary:hover { background: var(--espresso); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--espresso);
  color: var(--espresso);
}
.btn-outline:hover { background: var(--espresso); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--espresso);
}

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,245,239,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--espresso-soft);
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; cursor: pointer; color: var(--espresso); -webkit-tap-highlight-color: transparent; }
.nav-toggle svg { width: 26px; height: 26px; stroke: currentColor; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .brand img { height: 48px; }
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  height: calc(100vh - 76px);
  background: var(--cream);
  z-index: 49;
  padding: 20px 24px 40px;
  overflow-y: auto;
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
  font-family: 'Playfair Display', serif;
}
.mobile-drawer .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* Sticky mobile book bar */
.mobile-book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 10px 16px;
  display: none;
  gap: 10px;
}
.mobile-book-bar a { flex: 1; text-align: center; justify-content: center; }
@media (max-width: 640px) {
  .mobile-book-bar { display: flex; }
  body { padding-bottom: 128px; }
  section:last-of-type, footer.site-footer { margin-bottom: 0; }
  .footer-bottom { padding-bottom: 8px; }
}

/* Pull quote block */
.pull {
  background: var(--blush);
  border-radius: 18px;
  padding: 30px 34px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: var(--espresso);
  font-weight: 600;
  margin: 28px 0;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 24px; }
  .hero .hero-img { order: -1; }
}
.hero-img img, .photo-frame img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.hero-img, .photo-frame { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px -20px rgba(54,38,33,0.35); }

/* Shorter hero image on mobile for content-first pages (Aftercare, etc.) */
@media (max-width: 900px) {
  .hero-compact .hero-img img { aspect-ratio: 3/2; }
}

.small-line {
  font-size: 0.85rem;
  color: var(--espresso-soft);
  margin-top: 14px;
}

/* Two column feature */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-row.reverse .feature-img { order: 2; }
@media (max-width: 860px) {
  .feature-row, .feature-row.reverse .feature-img { grid-template-columns: 1fr; order: initial; }
  .feature-row { grid-template-columns: 1fr; }
}

.band { background: var(--cream-2); }
.band-dark { background: var(--espresso); color: var(--cream); }
.band-dark h2, .band-dark h3 { color: var(--cream); }
.band-dark .small-line { color: var(--gold-soft); opacity: 1; }

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

.service-card {
  background: var(--cream-2);
  border-radius: 18px;
  padding: 28px 26px;
}
.service-card .tag { color: var(--rose-deep); font-style: italic; font-size: 0.92rem; display:block; margin-bottom:10px; }
.price-row { display:flex; justify-content:space-between; align-items:baseline; margin-top:14px; font-weight:600; gap:12px; }
.fills-row { font-size: 0.88rem; color: var(--espresso-soft); margin-top: 8px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid img { border-radius: 12px; aspect-ratio: 1/1; object-fit: cover; width: 100%; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.editorial-duo { display: grid; grid-template-columns: 1.6fr 1fr; gap: 14px; }
.editorial-duo img { border-radius: 12px; object-fit: cover; width: 100%; height: 100%; }
.editorial-duo .duo-lash { aspect-ratio: 3/4; }
.editorial-duo .duo-brow { aspect-ratio: 3/4; }
@media (max-width: 700px) { .editorial-duo { grid-template-columns: 1fr; } }

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }

.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--espresso);
}
.accordion-item .a-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 4px;
  color: var(--espresso-soft);
}
.accordion-item.open .a-body { padding-bottom: 18px; }
.accordion-item .plus { transition: transform .2s ease; font-size: 1.4rem; color: var(--rose-deep); }
.accordion-item.open .plus { transform: rotate(45deg); }

.step-num {
  display:inline-flex; align-items:center; justify-content:center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--rose-deep); color:#fff; font-size:0.85rem; font-weight:700;
  margin-right: 10px;
}

footer.site-footer {
  background: var(--espresso);
  color: var(--cream-2);
  padding: 56px 0 26px;
}
footer.site-footer a { color: var(--cream-2); opacity: .85; }
footer.site-footer a:hover { opacity: 1; color: var(--rose); }
.footer-grid { display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 40px; padding-top: 20px; font-size: 0.82rem; opacity: .7; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

.policy-box { background: var(--cream-2); border-radius: 14px; padding: 20px 24px; margin: 18px 0; }
ul.plain { padding-left: 1.1em; margin: 0 0 1em; }
ul.plain li { margin-bottom: 0.4em; }

.badge-list { display:flex; flex-wrap:wrap; gap: 10px 22px; margin: 18px 0; }
.badge-list span { font-size: 0.92rem; color: var(--espresso-soft); }
.badge-list span b { color: var(--espresso); }
