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

:root {
  --bg: #f5efe9;
  --bg-alt: #f0e7df;
  --text: #2f2522;
  --muted: #6a5750;
  --line: rgba(71, 48, 39, 0.12);
  --primary: #7f5e57;
  --primary-deep: #624740;
  --card: rgba(255, 252, 249, 0.84);
  --shadow: 0 18px 50px rgba(47, 30, 24, 0.12);
  --radius: 24px;
  --max: 1200px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: linear-gradient(180deg, #f8f3ee 0%, #f4ece5 100%);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(252, 247, 243, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(86, 60, 49, 0.08);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav { display: flex; gap: 1rem; align-items: center; }

.site-nav a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(127, 94, 87, 0.12);
  color: var(--primary-deep);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  color: #1f78ff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  transform: scale(1.02);
}

.hero-bg-home {
  background-image: linear-gradient(90deg, rgba(255,248,242,0.86) 0%, rgba(255,248,242,0.55) 38%, rgba(31, 20, 18, 0.18) 100%), url('assets/images/hero-home.jpg');
  background-position: center right;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 2rem));
  color: #fff9f5;
  padding-top: 5rem;
}

.hero-content-left {
  text-align: left;
  margin-inline: auto auto;
  color: var(--text);
  max-width: 760px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.section h2,
.cta-banner h2,
.note-banner h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 12ch;
}

.hero-text {
  width: min(640px, 100%);
  margin: 0 0 2rem;
  font-size: 1.05rem;
  color: rgba(47, 37, 34, 0.9);
}

.hero-actions,
.social-links,
.about-highlights,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: #fff5ef;
  color: var(--primary-deep);
  border: 1px solid rgba(98, 71, 64, 0.12);
}

.btn-secondary {
  border: 1px solid rgba(98,71,64,0.22);
  color: var(--text);
  background: rgba(255,255,255,0.38);
}

.btn-outline {
  border: 1px solid rgba(98,71,64,0.22);
  color: var(--primary-deep);
  background: transparent;
}

.section,
.page-hero,
.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.section { padding: 5rem 0; }
.page-hero { padding: 8rem 0 2rem; }

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.page-hero p { max-width: 760px; color: var(--muted); }

.about-grid,
.spotlight,
.footer-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.about-photo-wrap {
  background: rgba(255, 250, 246, 0.75);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.about-photo {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.about-highlights span {
  display: inline-flex;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(127, 94, 87, 0.1);
  font-weight: 600;
  color: var(--primary-deep);
}

.card-grid,
.pricing-layout,
.payment-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.payment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card,
.service-card,
.portfolio-card,
.price-panel,
.payment-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.service-card,
.price-panel,
.payment-card {
  padding: 1.5rem;
}

.price-panel-wide { grid-column: span 2; }
.price-group + .price-group { margin-top: 1.15rem; }

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(71, 48, 39, 0.08);
}

.price-row:first-of-type { border-top: 0; }
.price-row span { color: var(--text); }
.price-row strong { white-space: nowrap; color: var(--primary-deep); }

.payment-card-qr { text-align: center; }
.qr-image {
  width: min(280px, 100%);
  margin: 1rem auto 0;
  border-radius: 18px;
  background: #fff;
  padding: 0.5rem;
}

.note-banner,
.cta-banner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(127, 94, 87, 0.1), rgba(255, 246, 241, 0.8));
  border: 1px solid var(--line);
  border-radius: 28px;
  margin-bottom: 5rem;
}

.center { text-align: center; margin-bottom: 1rem; }

.spotlight-text h2 { font-size: clamp(2.3rem, 4vw, 3.8rem); }
.text-link { font-weight: 700; color: var(--primary-deep); }

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mini-gallery img {
  border-radius: 22px;
  min-height: 210px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.mini-gallery img:nth-child(3) { grid-column: 1 / -1; }

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(252, 248, 245, 0.88);
}

.footer-inner { padding: 2rem 0 2.5rem; }
.social-links { justify-content: end; }

.social-links a {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf7;
  font-weight: 600;
}

.inner-page { padding-bottom: 3rem; }
.service-card ul { padding-left: 1.2rem; margin-bottom: 0; }

.portfolio-group-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.portfolio-card { overflow: hidden; }
.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 4.3;
  object-fit: cover;
}

.lash-card img {
  aspect-ratio: 4 / 2.4;
  object-fit: contain;
  background: #f2ebe4;
  padding: 0.25rem;
}

.portfolio-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  font-weight: 600;
}

.quote-strip {
  text-align: center;
  background: rgba(255, 250, 246, 0.7);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.quote-strip p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.muted { color: var(--muted); }

@media (max-width: 980px) {
  .card-grid,
  .pricing-layout,
  .payment-grid { grid-template-columns: 1fr; }
  .price-panel-wide { grid-column: auto; }
}

@media (max-width: 900px) {
  .about-grid,
  .spotlight,
  .footer-inner,
  .portfolio-grid,
  .cta-banner,
  .note-banner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .social-links { justify-content: flex-start; }
  .portfolio-group-header { flex-direction: column; align-items: start; }

  .mini-gallery { grid-template-columns: 1fr; }
  .mini-gallery img:nth-child(3) { grid-column: auto; }

  .hero-bg-home {
    background-image: linear-gradient(180deg, rgba(255,248,242,0.82) 0%, rgba(255,248,242,0.70) 50%, rgba(255,248,242,0.45) 100%), url('assets/images/hero-home.jpg');
    background-position: center;
  }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + 0.5rem);
    background: rgba(255, 249, 245, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 0.75rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    min-width: 180px;
  }

  .site-nav.open { display: flex; }
  .hero h1 { max-width: 10ch; }
  .section { padding: 4rem 0; }
  .cta-banner, .note-banner { align-items: start; }
  .portfolio-card img { aspect-ratio: 4 / 4.8; }
  .lash-card img { aspect-ratio: 4 / 2.2; object-fit: contain; }
}
