:root {
  --bg: #f7f2ec;
  --surface: #fffaf6;
  --surface-strong: #fff;
  --ink: #2d201b;
  --muted: #6f5a51;
  --accent: #b77b64;
  --accent-deep: #8d5b48;
  --accent-soft: #ead5c8;
  --line: rgba(45, 32, 27, 0.1);
  --shadow: 0 24px 60px rgba(88, 53, 40, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234, 213, 200, 0.75), transparent 32%),
    linear-gradient(180deg, #fcf8f3 0%, var(--bg) 42%, #f3ede6 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-shell { min-height: 100vh; }
.topbar {
  background: rgba(45, 32, 27, 0.92);
  color: #fff;
  padding: 0.7rem 1.2rem;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(252, 248, 243, 0.84);
  border-bottom: 1px solid rgba(45, 32, 27, 0.08);
}
.nav-wrap, .section-wrap, .footer-wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand { display: inline-flex; flex-direction: column; gap: 0.15rem; }
.brand-mark { font-size: 1.7rem; font-weight: 700; letter-spacing: 0.08em; }
.brand-copy { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.18em; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a,
.nav-dropdown-toggle {
  font-size: 0.95rem;
  color: var(--muted);
  font: inherit;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}
.nav-dropdown.open .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 0;
  min-width: 250px;
  padding: 0.8rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  background: rgba(255, 250, 246, 0.98);
  border: 1px solid rgba(45,32,27,0.08);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(88, 53, 40, 0.14);
  backdrop-filter: blur(16px);
}
.nav-dropdown.open .nav-dropdown-menu {
  display: flex;
}
.nav-dropdown-menu a {
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--accent-deep);
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(183,123,100,0.1);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-cta:hover,
.nav-cta:focus-visible {
  background: #744536;
  transform: translateY(-1px);
}
.button, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(141, 91, 72, 0.22);
}
.button-secondary {
  background: rgba(255,255,255,0.85);
  color: var(--accent-deep);
  border: 1px solid rgba(183, 123, 100, 0.25);
}
.button:hover, .button-secondary:hover, .card:hover, .service-item:hover { transform: translateY(-2px); }
main section { padding: 5rem 0; }
.hero { padding: 5.5rem 0 4rem; }
.hero-with-photo {
  position: relative;
  overflow: hidden;
}
.hero-with-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(252, 248, 243, 0.42), rgba(247, 242, 236, 0.58)),
    url("./before-afters-header.png") center center / cover no-repeat;
  filter: blur(2px) saturate(0.97);
  transform: scale(1.04);
}
.hero-with-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(183,123,100,0.14));
}
.hero-with-photo .section-wrap {
  position: relative;
  z-index: 1;
}
.hero-grid, .content-grid, .cta-grid, .about-grid, .contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(183, 123, 100, 0.12);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.1; font-weight: 700; }
h1 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3vw, 3.3rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; color: var(--muted); }
.hero-copy p.lead, .section-intro { font-size: 1.1rem; }
.hero-panel, .feature-box, .review-card, .card, .service-item, .cta-panel, .detail-card, .photo-frame, .contact-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(45,32,27,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel { padding: 2rem; position: relative; overflow: hidden; }
.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -15% -20% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183,123,100,0.26), transparent 70%);
}
.hero-facts, .bullet-list, .mini-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.hero-facts li, .bullet-list li, .mini-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(45,32,27,0.08);
  color: var(--ink);
}
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.stat {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(45,32,27,0.08);
  text-align: center;
}
.stat strong { display: block; font-size: 1.5rem; color: var(--accent-deep); }
.muted-band {
  background: linear-gradient(180deg, rgba(255,250,246,0.5), rgba(234,213,200,0.4));
  border-top: 1px solid rgba(45,32,27,0.06);
  border-bottom: 1px solid rgba(45,32,27,0.06);
}
.grid-3, .grid-4, .services-grid, .reviews-grid, .photos-grid { display: grid; gap: 1.5rem; }
.grid-3, .services-grid, .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.photos-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-box, .review-card, .card, .service-item, .detail-card, .contact-card { padding: 1.7rem; }
.card, .service-item { height: 100%; }
.card span, .service-item span { display: inline-flex; margin-top: 1rem; color: var(--accent-deep); font-weight: 700; }
.price-card {
  text-align: center;
  justify-content: center;
}
.price-card h3 {
  margin-bottom: 0.65rem;
}
.price-tag {
  margin: 0;
  color: var(--accent-deep);
  font-size: 1.5rem;
  font-weight: 700;
}
.faq-grid {
  align-items: start;
}
.faq-item h3 {
  font-size: 1.2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
}
.blog-card-meta,
.post-meta {
  margin-bottom: 0.85rem;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.blog-read-more,
.post-cta {
  color: var(--accent-deep);
  font-weight: 700;
}
.blog-read-more {
  margin-top: auto;
}
.post-shell {
  max-width: 860px;
}
.post-body h2 {
  margin-top: 2rem;
}
.post-body p {
  font-size: 1.05rem;
}
.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,241,235,0.95));
}
.review-stars {
  margin-bottom: 1rem;
  color: #c58a2b;
  letter-spacing: 0.18em;
  font-size: 1rem;
}
.reviewer-name {
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
}
.team-photo {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: 20px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(88, 53, 40, 0.16);
}
.treatment-photo-wrap {
  margin: 2rem 0;
}
.treatment-photo {
  width: min(100%, 560px);
  margin: 0 auto;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(45,32,27,0.08);
  box-shadow: 0 24px 60px rgba(88, 53, 40, 0.18);
}
.treatment-photo-inline {
  width: 100%;
  margin: 0 0 1rem;
  border-radius: 20px;
}
.card .card-cta {
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(141, 91, 72, 0.22);
}
.photo-frame {
  min-height: 260px;
  padding: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.25), rgba(183,123,100,0.16)),
    radial-gradient(circle at top, rgba(234,213,200,0.75), rgba(255,255,255,0.85));
}
.photo-frame strong { display: block; margin-bottom: 0.8rem; font-size: 1.1rem; }
.cta-panel { padding: 2rem; }
.map-pill {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(45,32,27,0.92);
  color: #fff;
  margin-top: 0.5rem;
}
.footer { padding: 2rem 0 3rem; border-top: 1px solid rgba(45,32,27,0.08); }
.footer-wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  background: rgba(45,32,27,0.08);
  color: var(--accent-strong);
  transform: translateY(-1px);
}
.page-hero { padding: 4.8rem 0 2.6rem; }
.page-hero .section-wrap, .page-section .section-wrap { max-width: 980px; }
.lash-extensions-hero {
  position: relative;
  overflow: hidden;
}
.lash-extensions-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(252, 248, 243, 0.5), rgba(247, 242, 236, 0.62)),
    url("./volume-fill-photo.jpg") center center / cover no-repeat;
  filter: blur(2px) saturate(0.98);
  transform: scale(1.04);
}
.lash-extensions-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(183,123,100,0.12));
}
.lash-extensions-hero .section-wrap {
  position: relative;
  z-index: 1;
}
.facials-hero {
  position: relative;
  overflow: hidden;
}
.facials-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(252, 248, 243, 0.5), rgba(247, 242, 236, 0.62)),
    url("./facials-hero-photo.jpg") center center / cover no-repeat;
  filter: blur(2px) saturate(0.97);
  transform: scale(1.04);
}
.facials-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(183,123,100,0.12));
}
.facials-hero .section-wrap {
  position: relative;
  z-index: 1;
}
.service-highlight {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.64);
  border-radius: 16px;
}
.detail-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: start;
}
.contact-stack {
  display: grid;
  gap: 1.5rem;
}
.contact-photo-card {
  position: sticky;
  top: 8rem;
}
.contact-photo-placeholder {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.seo-links { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.seo-links a {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(183,123,100,0.22);
  background: rgba(255,255,255,0.9);
  color: var(--accent-deep);
}
@media (max-width: 980px) {
  .hero-grid, .content-grid, .cta-grid, .about-grid, .contact-grid, .contact-layout, .grid-3, .grid-4, .services-grid, .reviews-grid, .photos-grid, .detail-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .contact-photo-card { position: static; }
}
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    padding: 0 0 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.75rem;
    box-shadow: none;
    background: rgba(255,255,255,0.7);
  }
  .nav-wrap { flex-wrap: wrap; }
  .nav-cta {
    order: 2;
    margin-left: auto;
  }
  .nav-toggle {
    order: 1;
  }
  .brand {
    order: 0;
  }
}
@media (max-width: 640px) {
  .topbar { font-size: 0.82rem; }
  .nav-wrap, .section-wrap, .footer-wrap { width: min(calc(100% - 1.2rem), var(--max)); }
  main section { padding: 4rem 0; }
  .hero, .page-hero { padding-top: 4rem; }
  .button, .button-secondary { width: 100%; }
}

