@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");
:root {
  --bg: #f3eee8;
  --surface: #fffaf6;
  --surface-soft: #ebe2d8;
  --ink: #181411;
  --muted: #5f5650;
  --line: rgba(24, 20, 17, 0.1);
  --accent: #c6a27b;
  --accent-dark: #a47d57;
  --shadow: 0 22px 56px rgba(24, 20, 17, 0.14);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: clamp(88px, 9vw, 132px) 0; }
.section-tight { padding: 28px 0; }
.section-tint { background: linear-gradient(180deg, rgba(255,250,246,.6), rgba(235,226,216,.92)); }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; color: var(--accent-dark); font-weight: 700; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; font-family: "Playfair Display", Georgia, serif; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 5.4vw, 5.8rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.9rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); font-size: 1.01rem; }
.lead { font-size: 1.08rem; max-width: 62ch; }
.narrow-text { max-width: 760px; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  font-weight: 600; transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(180deg, #d2b08a 0%, #b4865f 100%); color: #181411; box-shadow: 0 12px 30px rgba(24,20,17,.16); }
.button-secondary { background: rgba(255,250,246,.42); color: var(--ink); border: 1px solid rgba(24,20,17,.12); }
.text-link { font-weight: 700; color: var(--ink); }
.text-link::after { content: ' →'; }
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(243,238,232,.78);
  border-bottom: 1px solid rgba(24,20,17,.08);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #d8b99d, #b78b64); color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 1.3rem;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1rem; }
.brand-text span { font-size: .82rem; color: var(--muted); }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { padding: 8px 0; position: relative; color: var(--muted); }
.site-nav a.is-active, .site-nav a:hover { color: var(--ink); }
.site-nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--ink);
}
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }
.hero { position: relative; min-height: calc(100svh - 84px); display: grid; align-items: stretch; overflow: clip; }
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(24,18,14,.56) 0%, rgba(24,18,14,.22) 40%, rgba(24,18,14,.12) 100%); }
.hero-content { position: relative; z-index: 1; display: flex; align-items: center; min-height: calc(100svh - 84px); padding: 64px 0; }
.hero-card {
  max-width: 640px; color: #fff; padding: 34px; border-radius: 28px;
  background: rgba(14, 10, 8, 0.18); backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}
.hero-card p, .hero-card .eyebrow, .hero-card .micro-trust { color: rgba(255,255,255,.88); }
.hero-card .button-primary { background: #fff; color: var(--ink); }
.hero-card .button-secondary { color: #fff; border-color: rgba(255,255,255,.28); }
.micro-trust { margin: 18px 0 0; font-size: .94rem; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-item {
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.7);
  text-align: center; color: var(--ink); font-weight: 600;
}
.split-section { display: grid; grid-template-columns: 1.15fr .95fr; gap: 48px; }
.align-center { align-items: center; }
.media-stack { display: grid; gap: 18px; }
.media-large img, .media-small img, .rounded-media img, .portrait-frame img, .page-hero-image img {
  border-radius: 26px; box-shadow: var(--shadow);
}
.media-small { max-width: 72%; }
.content-block { max-width: 560px; }
.section-heading { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.section-heading.left-aligned { margin-left: 0; text-align: left; }
.section-heading.narrow { max-width: 640px; }
.card-grid { display: grid; gap: 22px; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.info-card, .service-detail-card, .pricing-card, .contact-card, .step-card, .price-preview-card, .info-panel {
  background: rgba(255,250,246,.82); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 14px 36px rgba(24,20,17,.05);
}
.info-card, .service-detail-card, .pricing-card, .contact-card, .step-card, .price-preview-card, .info-panel {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.info-card:hover, .service-detail-card:hover, .pricing-card:hover, .contact-card:hover, .step-card:hover, .price-preview-card:hover, .info-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(24,20,17,.09);
  border-color: rgba(24,20,17,.16);
}
.info-card-soft { background: rgba(255,255,255,.65); }
.service-detail-grid, .pricing-grid, .contact-grid { display: grid; gap: 22px; }
.service-detail-grid { grid-template-columns: repeat(2, 1fr); }
.pricing-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1.1fr .9fr; }
.service-detail-card ul, .info-panel ul { margin: 18px 0 24px; padding-left: 18px; color: var(--muted); }
.service-detail-card li, .info-panel li { margin-bottom: 8px; }
.section-cta-center { margin-top: 28px; text-align: center; }
.price-preview-card { display: grid; gap: 16px; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.price-row:last-child { border-bottom: 0; padding-bottom: 0; }
.gallery-preview-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px;
}
.gallery-preview-grid figure:first-child { grid-row: span 2; }
.gallery-preview-grid figure { overflow: hidden; border-radius: 22px; }
.gallery-preview-grid img { height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card span { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--surface-soft); color: var(--ink); font-weight: 700; }
.portrait-frame img { max-width: 520px; margin: 0 auto; }
.cta-band { background: linear-gradient(135deg, #140f0d, #2a211c 55%, #110e0d); color: #fff; }
.cta-band p { color: rgba(255,255,255,.84); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band .button-primary { background: #fff; color: var(--ink); }
.page-hero { padding: 72px 0 34px; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 42px; align-items: center; }
.page-hero-compact { padding-bottom: 10px; }
.page-hero-image img { min-height: 420px; object-fit: cover; }
.masonry-grid { columns: 3 260px; column-gap: 16px; }
.gallery-item { display: block; margin-bottom: 16px; overflow: hidden; border-radius: 18px; }
.gallery-item img { border-radius: 18px; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.faq-layout { display: grid; gap: 26px; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.8); padding: 0 22px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 28px 20px 0; font-weight: 700; position: relative; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; top: 18px; font-size: 1.4rem; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 0 20px; margin: 0; }
.contact-list, .hours-list, .footer-list { list-style: none; padding: 0; margin: 0; }
.contact-list li, .footer-list li { margin-bottom: 12px; }
.hours-list li { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-card-emphasis { background: linear-gradient(160deg, #1f1813, #3c2e25); color: #fff; }
.contact-card-emphasis p { color: rgba(255,255,255,.82); }
.info-panel p, .info-panel li { color: var(--muted); }
.site-footer { padding: 72px 0 120px; background: #1c1612; color: rgba(255,255,255,.82); }
.site-footer p, .site-footer a, .site-footer li { color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 28px; }
.footer-bottom { padding-top: 24px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-booking-bar { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.lightbox {
  position: fixed; inset: 0; z-index: 99; display: grid; place-items: center;
  background: rgba(0,0,0,.82); padding: 24px;
}
.lightbox img { max-width: min(1200px, 92vw); max-height: 88vh; object-fit: contain; border-radius: 18px; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; border: 0;
  font-size: 1.8rem; background: #fff; cursor: pointer;
}
body.lightbox-open { overflow: hidden; }
@media (max-width: 1080px) {
  .card-grid-3, .steps-grid, .pricing-grid, .service-detail-grid, .contact-grid, .page-hero-grid, .split-section { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-preview-grid figure:first-child { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 840px) {
  .desktop-cta { display: none; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: fixed; top: 84px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch;
    padding: 18px; border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .media-small { max-width: 100%; }
  .section { padding: 76px 0; }
  .hero, .hero-content { min-height: auto; }
  .hero-content { padding: 64px 0 84px; }
  .hero-card { padding: 24px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .mobile-booking-bar {
    display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  }
  .mobile-booking-bar .button { width: 100%; box-shadow: 0 14px 30px rgba(0,0,0,.18); }
}
@media (max-width: 640px) {
  .brand-text span { display: none; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.85rem; }
  .hero-card { background: rgba(14, 10, 8, 0.3); }
  .trust-grid, .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 2 150px; }
  .footer-grid { grid-template-columns: 1fr; }
  .split-reverse-mobile > :first-child { order: 2; }
  .split-reverse-mobile > :last-child { order: 1; }
}


/* V5 premium update */
body { background: #f3eee8; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; letter-spacing: -0.02em; }
p, li, a, span, strong, summary { font-family: 'Inter', sans-serif; }
.section-beige-v5 { background: #e9dfd5; }
.micro-note { margin: 20px 0 0; font-size: .95rem; color: rgba(255,244,235,.74); }
.hero-v5 {
  position: relative;
  padding: 56px 0 60px;
  background:
    radial-gradient(circle at top left, rgba(198,162,123,.18), transparent 34%),
    linear-gradient(180deg, #171210 0%, #211914 48%, #efe7df 48%, #f3eee8 100%);
  overflow: clip;
}
.hero-v5-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 560px);
  gap: 64px;
  align-items: center;
}
.hero-v5-copy h1 { max-width: 10ch; margin-bottom: 16px; color: #fff7f1; line-height: .95; }
.hero-v5-copy {
  position: relative;
  z-index: 2;
  padding: 44px 42px 38px;
  border-left: 2px solid rgba(198,162,123,.55);
  background: linear-gradient(180deg, rgba(23,18,16,.60) 0%, rgba(23,18,16,.24) 100%);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
}
.hero-v5-copy::before {
  content: '';
  display: block;
  width: 74px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, #d8b798, #c6a27b);
}
.hero-v5-copy .eyebrow { color: rgba(255,244,235,.82); }
.hero-v5-copy .button-secondary { color: #fff7f1; border-color: rgba(255,244,235,.24); background: rgba(255,255,255,.04); }

.hero-v5-copy .lead { max-width: 48ch; font-size: 1.08rem; color: rgba(255,245,238,.84); }
.hero-v5-media {
  position: relative;
  min-height: 720px;
  padding: 30px 18px 44px 56px;
}
.hero-v5-main,
.hero-v5-card {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(10, 8, 7, 0.28);
  background: #fff;
}
.hero-v5-main {
  width: min(100%, 470px);
  margin-left: auto;
  position: relative;
}
.hero-v5-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,.08) 100%);
  pointer-events: none;
}
.hero-v5-main img { aspect-ratio: 4 / 5; object-fit: cover; }
.hero-v5-card {
  position: absolute;
  width: 220px;
  border: 10px solid rgba(255,255,255,.92);
}
.hero-v5-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.hero-v5-card-top {
  left: 0;
  top: 84px;
  transform: rotate(-5deg);
}
.hero-v5-card-bottom {
  right: 6px;
  bottom: 0;
  transform: rotate(4deg);
}
.trust-grid-v5 .trust-item {
  background: rgba(255,250,246,.86);
  font-size: .96rem;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(24,20,17,.05);
}
.media-stack-v5 .media-large img,
.media-stack-v5 .media-small img { aspect-ratio: 1 / 1; object-fit: cover; }
.section-results-v5 { background: #fff9f5; }
.results-grid-v5 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.result-card {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(24,20,17,.09);
}
.result-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
}
.result-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.02);
}
.editorial-band-v5 {
  background: linear-gradient(180deg, #130f0d 0%, #0d0a09 100%);
  color: #fff;
  overflow: clip;
}
.editorial-band-v5 p { color: rgba(255,255,255,.78); }
.editorial-band-v5 .eyebrow { color: rgba(255,255,255,.66); }
.editorial-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .8fr);
  gap: 42px;
  align-items: center;
}
.editorial-band-media { margin: 0; }
.editorial-band-media img {
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.editorial-band-copy h2 { max-width: 10ch; margin-bottom: 12px; }
.price-preview-card-v5 {
  background: linear-gradient(180deg, rgba(255,250,246,.96), rgba(235,226,216,.96));
  box-shadow: 0 26px 54px rgba(24,20,17,.10);
}
.page-hero-v5 .page-hero-image img { min-height: 460px; object-fit: cover; }
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1080px) {
  .hero-v5-grid,
  .editorial-band-inner { grid-template-columns: 1fr; }
  .hero-v5-media {
    min-height: 0;
    padding: 18px 0 0;
    max-width: 620px;
    margin: 0 auto;
  }
  .hero-v5-main { width: min(100%, 440px); }
  .hero-v5-card-top { left: 0; top: 56px; }
  .hero-v5-card-bottom { right: 0; bottom: -10px; }
}
@media (max-width: 840px) {
  .hero-v5 { padding-top: 42px; }
  .hero-v5-grid { gap: 34px; }
  .hero-v5-media {
    display: grid;
    gap: 14px;
    padding: 0;
  }
  .hero-v5-main, .hero-v5-card {
    position: static;
    width: 100%;
    transform: none;
    border-width: 0;
  }
  .hero-v5-main { margin-left: 0; }
  .results-grid-v5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .results-grid-v5 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-v5-copy h1 { max-width: none; }
}


/* V6 premium contrast patch */
.trust-strip {
  position: relative;
  margin-top: -26px;
  z-index: 3;
}
.section:nth-of-type(odd):not(.editorial-band-v5):not(.cta-band):not(.section-beige-v5):not(.section-results-v5):not(.section-tint) {
  background: #fff9f5;
}
.section .section-heading h2,
.content-block h2 {
  letter-spacing: -0.04em;
}
.hero-v5::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,6,5,.36) 0%, rgba(8,6,5,.08) 35%, transparent 60%);
  pointer-events: none;
}
.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(24,20,17,.20);
}
.hero-v5-card-top { left: 8px; top: 78px; }
.hero-v5-card-bottom { right: 0; bottom: 6px; }
@media (max-width: 1080px) {
  .hero-v5 {
    background: linear-gradient(180deg, #171210 0%, #211914 36%, #efe7df 36%, #f3eee8 100%);
  }
  .hero-v5-copy {
    max-width: 720px;
  }
}
@media (max-width: 840px) {
  .hero-v5-copy {
    padding: 30px 24px 28px;
  }
  .trust-strip {
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .hero-v5-copy {
    border-left-width: 0;
    padding: 26px 20px 24px;
    background: linear-gradient(180deg, rgba(23,18,16,.70) 0%, rgba(23,18,16,.34) 100%);
  }
  .hero-v5-copy::before {
    width: 56px;
    margin-bottom: 18px;
  }
}


/* V7 structure patch */
.page-hero-premium {
  background: linear-gradient(180deg, #1a1411 0%, #271d18 46%, #f3eee8 46%, #f3eee8 100%);
}
.page-hero-premium .narrow-text,
.page-hero-premium .page-hero-grid > div {
  position: relative;
  z-index: 2;
  padding: 30px 34px;
  background: linear-gradient(180deg, rgba(23,18,16,.58) 0%, rgba(23,18,16,.18) 100%);
  border-left: 2px solid rgba(198,162,123,.50);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
  backdrop-filter: blur(5px);
}
.page-hero-premium h1,
.page-hero-premium .lead,
.page-hero-premium .eyebrow { color: #fff7f1; }
.page-hero-premium .lead { color: rgba(255,245,238,.84); }
.page-hero-premium .page-hero-image img { box-shadow: 0 28px 60px rgba(0,0,0,.18); }
.compact-heading h2 { margin-bottom: 10px; }
.compact-heading p:last-child { max-width: 60ch; }
.card-grid-4 { display:grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.service-cards-4 .service-card-tall,
.service-cards-4 .pricing-card { height: 100%; }
.service-card-tall h3 { margin-bottom: 10px; }
.service-card-tall p { margin-bottom: 18px; }
.slim-list .price-row { padding: 12px 0; }
.booking-note { margin: 22px 0 0; color: var(--muted); }
.section-separated::before {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: rgba(24,20,17,.10);
  margin: 0 0 38px;
}
.pedicure-note-card {
  max-width: 760px;
  padding: 28px 30px;
  background: rgba(255,250,246,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(24,20,17,.05);
}
.lashes-grid img { aspect-ratio: 1 / 1; object-fit: cover; }
.service-card-plain { min-height: 100%; }
@media (max-width: 1080px) {
  .card-grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .page-hero-premium .narrow-text,
  .page-hero-premium .page-hero-grid > div { padding: 24px 22px; }
}


/* crash fix + lash placement polish */
.lash-service-layout,
.lashes-price-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}
.lash-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.lash-feature-media img,
.lash-home-media img,
.lash-price-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(24,20,17,.12);
}
.section-lashes-feature {
  background: linear-gradient(180deg, #fffaf6 0%, #f3eee8 100%);
}
.section-lashes-feature .content-block {
  max-width: 640px;
}
@media (max-width: 1080px) {
  .lash-service-layout,
  .lashes-price-feature {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .lash-card-grid {
    grid-template-columns: 1fr;
  }
}



/* V8 minor tweaks */
.lash-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.results-editorial img[src*="editorial-red.webp"],
img[src*="editorial-red.webp"] {
  object-position: center center !important;
}

@media (max-width: 640px) {
  .lash-card-grid {
    grid-template-columns: 1fr;
  }
}


/* V9 premium polish */
.hero-v5-copy {
  background: linear-gradient(180deg, rgba(20,18,16,.68) 0%, rgba(20,18,16,.28) 100%);
  backdrop-filter: blur(10px);
}
.hero-v5-copy h1 {
  letter-spacing: -0.05em;
}
.service-pillars .card-grid-3 { align-items: stretch; }
.service-pillars .info-card {
  min-height: 100%;
  box-shadow: 0 14px 36px rgba(24,20,17,.05);
}
.service-pillars .info-card:nth-child(1) {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 58px rgba(24,20,17,.12);
  border-color: rgba(24,20,17,.14);
}
.service-pillars .info-card:nth-child(2) {
  border-color: rgba(198,162,123,.28);
  box-shadow: 0 22px 50px rgba(24,20,17,.10);
}
.service-pillars .info-card:nth-child(3) {
  opacity: .92;
}
.section-lashes-feature {
  padding-top: clamp(104px, 11vw, 148px);
  padding-bottom: clamp(104px, 11vw, 148px);
  background: linear-gradient(180deg, #fffaf6 0%, #efe8e0 100%);
}
.section-lashes-feature .split-section {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 56px;
}
.section-lashes-feature .lash-home-media img {
  aspect-ratio: 5 / 6;
}
.info-card:hover, .service-detail-card:hover, .pricing-card:hover, .contact-card:hover, .step-card:hover, .price-preview-card:hover, .info-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(24,20,17,.12);
  border-color: rgba(24,20,17,.18);
}
.section-heading h2,
.content-block h2,
.page-hero h1,
.hero-v5-copy h1 {
  letter-spacing: -0.05em;
}
.editorial-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  columns: unset;
}
.editorial-gallery .gallery-item {
  margin-bottom: 0;
}
.editorial-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.editorial-gallery .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.editorial-gallery .gallery-item:first-child img {
  aspect-ratio: 1 / 1;
}
@media (max-width: 1080px) {
  .section-lashes-feature .split-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (max-width: 840px) {
  .service-pillars .info-card:nth-child(1) {
    transform: none;
  }
  .editorial-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .editorial-gallery .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 640px) {
  .editorial-gallery {
    grid-template-columns: 1fr;
  }
  .editorial-gallery .gallery-item:first-child {
    grid-column: span 1;
  }
}


/* V10 actual hero patch */
.page-hero-grid-reverse {
  grid-template-columns: .9fr 1fr;
}
.page-hero-grid-reverse > .page-hero-image {
  order: -1;
}
.treatments-hero .page-hero-image img {
  object-position: center 42%;
}
.pricing-hero .page-hero-image img {
  object-position: center 35%;
}
.gallery-hero .page-hero-image img {
  object-position: center center;
}
.booking-hero .page-hero-image img {
  object-position: center 28%;
}
.about-hero .page-hero-image img {
  object-position: center 42%;
}
.pricing-hero .page-hero-image img,
.gallery-hero .page-hero-image img,
.booking-hero .page-hero-image img,
.about-hero .page-hero-image img,
.treatments-hero .page-hero-image img {
  min-height: 460px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .page-hero-grid-reverse {
    grid-template-columns: 1fr;
  }
  .page-hero-grid-reverse > .page-hero-image {
    order: 0;
  }
}


/* V11 */
.booking-v11-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.booking-v11-image img{width:100%;border-radius:20px}
.gallery-v11 img:first-child{grid-column:span 2}
.pricing-v11{background:linear-gradient(#fff,#f5f1ea)}
.about-v11-box{background:#181512;color:#fff;padding:40px;border-radius:20px}
