/* ============================================================
   Lashes by Lexi — styles.css
   Elegant monochrome · white · black sections · greys #656565 / #E4E4E4
   Playfair Display (editorial serif) + Montserrat (clean sans)
   ============================================================ */

:root {
  --primary:      #656565;   /* dusty rose — brand moments, accents */
  --primary-deep: #656565;   /* dark grey — italic headline accents, labels, prices */
  --secondary:    #E4E4E4;   /* blush — soft backgrounds, highlights */
  --black:        #000000;   /* premium CTAs, editorial contrast */
  --ink:          #111111;
  --ink-soft:     #656565;
  --surface:      #FFFFFF;   /* warm off-white base */
  --surface-low:  #F5F5F5;
  --surface-mid:  #E4E4E4;
  --line:         #E4E4E4;
  --white:        #FFFFFF;
  --shadow:       0 24px 60px -28px rgba(0, 0, 0, 0.22);
  --shadow-soft:  0 12px 40px -18px rgba(0, 0, 0, 0.16);
  --wrap:         1200px;
  --ease:         cubic-bezier(.25,.6,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; margin: 0; color: var(--ink); }
h1 { font-weight: 700; font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-weight: 600; font-size: clamp(1.85rem, 3.6vw, 2.5rem); line-height: 1.15; }
h3 { font-weight: 500; font-size: 1.35rem; line-height: 1.3; }
em.accent { font-style: italic; color: var(--primary-deep); }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #221c1c; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-rose { background: transparent; color: var(--primary-deep); border-color: var(--primary); }
.btn-rose:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Chips ---------- */
.chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: #E4E4E4;
  padding: 6px 14px;
  border-radius: 999px;
}
.chip-dark { background: rgba(0,0,0,0.55); color: #fff; backdrop-filter: blur(4px); }

/* ---------- Eyebrow label ---------- */
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary-deep);
  margin: 0 0 18px;
}

/* ============================================================
   HEADER — glass bar, logo left, black Book Now pill
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228, 228, 228, 0.9);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; gap: 20px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { height: 76px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.main-nav a:hover { color: var(--primary-deep); }
.main-nav a.active { color: var(--primary-deep); border-bottom-color: var(--primary); }
.main-nav a.btn-black, .mobile-nav a.btn-black { color: var(--white); border-bottom: 0; }
.main-nav a.btn-black:hover, .mobile-nav a.btn-black:hover { color: var(--white); }
.nav-book { margin-left: 6px; }
.nav-book .btn { padding: 12px 26px; font-size: 0.72rem; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; }
.menu-toggle span { width: 24px; height: 1.5px; background: var(--ink); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 8px 24px 26px;
  display: flex;
  flex-direction: column;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 14px 4px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--surface-mid);
}
.mobile-nav a.active { color: var(--primary-deep); }
.mobile-nav .btn { margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--surface) 0%, var(--surface-low) 45%, #E4E4E4 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 620px;
  padding: 80px 0;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 26px; }
.hero-lead { font-size: 1.1rem; color: var(--ink-soft); max-width: 460px; margin: 0 0 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-height: 640px;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.001); transition: transform 8s var(--ease); }
.hero:hover .hero-media img { transform: scale(1.06); }

/* Compact page hero for inner pages */
.page-hero { background: linear-gradient(115deg, var(--surface) 0%, var(--surface-low) 55%, #E4E4E4 100%); padding: 88px 0 72px; text-align: center; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--ink-soft); font-size: 1.06rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-blush { background: var(--surface-low); }
.section-mid { background: var(--surface-mid); }
.section-black { background: var(--black); color: #F2F2F2; }
.section-black h2, .section-black h3 { color: #fff; }
.section-head { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.section-head p { color: var(--ink-soft); margin: 16px 0 0; }
.section-head-left { max-width: 640px; margin-bottom: 56px; }
.section-head-left p { color: var(--ink-soft); margin: 16px 0 0; }

/* ---------- Service cards (image top) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc-card:hover img { transform: scale(1.05); }
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.68) 30%, rgba(0,0,0,0.15) 62%, rgba(0,0,0,0) 78%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}
.svc-card-overlay .chip-dark { align-self: flex-start; margin-bottom: 12px; background: rgba(10,10,10,0.85); color: #FFFFFF; border: 1px solid rgba(255,255,255,0.35); }
.svc-card-overlay h3 { color: #fff; font-size: 1.6rem; text-shadow: 0 2px 10px rgba(0,0,0,0.55); }

/* ---------- Menu (services price list) ---------- */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.menu-item {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 34px 32px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.menu-item:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.menu-top { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 6px; }
.menu-top h3 { font-size: 1.45rem; }
.price {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--primary-deep);
  white-space: nowrap;
}
.menu-meta { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary-deep); margin: 0 0 12px; }
.menu-item p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Standard trio (icon-less refined list) ---------- */
.standard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.standard-item { text-align: center; padding: 0 8px; }
.standard-mark {
  width: 54px; height: 54px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #E4E4E4;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-deep);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.3rem;
}
.standard-item h3 { margin-bottom: 10px; font-size: 1.2rem; }
.standard-item p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.section-black .standard-item p { color: #B8B8B8; }
.section-black .standard-mark { background: rgba(228,228,228,0.14); color: #E4E4E4; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.g-item { position: relative; border-radius: 0.5rem; overflow: hidden; aspect-ratio: 1 / 1; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.g-item:hover figcaption { opacity: 1; }

/* ---------- Steps / care lists ---------- */
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.care-card { background: var(--white); border-radius: 0.5rem; padding: 38px 36px; box-shadow: 0 1px 0 rgba(0,0,0,0.02); }
.care-card h3 { margin-bottom: 20px; }
.care-card h3 span { font-style: italic; color: var(--primary-deep); }
.care-list { list-style: none; margin: 0; padding: 0; }
.care-list li { padding: 13px 0 13px 30px; border-bottom: 1px solid var(--surface-mid); position: relative; font-size: 0.96rem; color: var(--ink-soft); }
.care-list li:last-child { border-bottom: 0; }
.care-list li strong { color: var(--ink); display: block; font-weight: 600; font-size: 0.95rem; }
.care-list li::before {
  content: "";
  position: absolute;
  left: 2px; top: 22px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about-media { border-radius: 0.5rem; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.pullquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
  border-left: 3px solid var(--primary);
  padding-left: 26px;
  margin: 30px 0;
}
.quote-by { font-family: "Montserrat", sans-serif; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary-deep); }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border-radius: 0.5rem; padding: 44px; box-shadow: var(--shadow-soft); }
.field { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 4px;
  border: 0;
  border-bottom: 1.5px solid var(--line);
  background: transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color .2s var(--ease);
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--primary-deep); }
.field textarea { resize: vertical; }
.field input.invalid, .field select.invalid { border-bottom-color: #BA1A1A; }
.form-note { margin: 16px 0 0; font-size: 0.9rem; font-weight: 500; min-height: 1.2em; }
.form-note.ok { color: #406656; }
.form-note.err { color: #BA1A1A; }

/* ---------- Contact info ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { padding: 18px 0; border-bottom: 1px solid var(--surface-mid); }
.info-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary-deep); display: block; margin-bottom: 6px; }
.info-list li p { margin: 0; color: var(--ink); font-size: 1rem; }
.soon { color: var(--ink-soft); font-style: italic; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 34px; }
.section-black.cta-band p { color: #B8B8B8; }

/* ---------- Courses ---------- */
.course-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.course-row h3 { font-size: 1.4rem; }
.course-meta { color: var(--ink-soft); font-size: 0.92rem; margin: 6px 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); color: #B8B8B8; padding: 70px 0 46px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; margin-bottom: 46px; }
.footer-logo { display: inline-block; margin-bottom: 14px; line-height: 0; }
.footer-logo img { height: 84px; width: auto; display: block; }
.footer-tag { font-family: "Playfair Display", serif; font-style: italic; color: #E4E4E4; font-size: 1.02rem; margin: 0 0 8px; }
.footer-addr { font-size: 0.9rem; line-height: 1.7; margin: 0; }
.footer-col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
}
.footer-col a { display: block; color: #B8B8B8; text-decoration: none; font-size: 0.9rem; padding: 6px 0; }
.footer-col a:hover { color: #FFFFFF; }
.footer-col p { font-size: 0.9rem; margin: 0 0 8px; }
.footer-bottom { border-top: 1px solid rgba(228,228,228,0.16); padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 64px 0; }
  .hero-media { order: -1; aspect-ratio: 4 / 3; max-height: 420px; }
  .card-grid, .standard-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid, .care-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 72px 0; }
  .card-grid, .standard-grid, .gallery-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .brand img { height: 58px; }
  .form-card { padding: 30px 24px; }
}

:focus-visible { outline: 2.5px solid var(--primary-deep); outline-offset: 3px; border-radius: 3px; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-media img, .svc-card img, .g-item img { transition: none; }
}

/* ---------- Footer links row & legal pages ---------- */
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 0; justify-content: center; width: 100%; padding-bottom: 18px; }
.footer-links a { color: #B8B8B8; text-decoration: none; font-size: 0.8rem; letter-spacing: 0.04em; padding: 0 14px; border-right: 1px solid rgba(228,228,228,0.28); }
.footer-links a:last-child { border-right: 0; }
.footer-links a:hover { color: #FFFFFF; }
.credit a { color: #E4E4E4; text-decoration: none; }
.credit a:hover { text-decoration: underline; }

.doc-page { max-width: 760px; }
.doc-page h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.doc-page h2:first-of-type { margin-top: 0; }
.doc-page p, .doc-page li { color: var(--ink-soft); font-size: 0.98rem; }
.doc-page ul { padding-left: 22px; }
.doc-updated { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-deep); margin-bottom: 30px; }
.doc-note { background: var(--surface-low); border-left: 3px solid var(--primary); padding: 16px 20px; border-radius: 0 0.4rem 0.4rem 0; font-size: 0.92rem; margin-bottom: 34px; color: var(--ink-soft); }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 22px 46px 22px 2px;
  font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.15rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); color: var(--primary-deep); font-family: "Montserrat", sans-serif; font-size: 1.4rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-a { padding: 0 2px 24px; color: var(--ink-soft); font-size: 0.97rem; max-width: 680px; }

.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-grid h2 { font-size: 1.25rem; margin-bottom: 16px; }
.sitemap-grid a { display: block; padding: 9px 0; color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--surface-mid); font-size: 0.96rem; }
.sitemap-grid a:hover { color: var(--primary-deep); }
@media (max-width: 700px) { .sitemap-grid { grid-template-columns: 1fr; } }

/* ---------- Nav dropdowns ---------- */
.nav-item { position: relative; }
.nav-item > a .caret { font-size: 0.6rem; margin-left: 5px; opacity: 0.6; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  box-shadow: var(--shadow-soft);
  z-index: 70;
}
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0 !important;
}
.dropdown a:hover { background: var(--surface-low); color: var(--primary-deep); }
.mobile-nav .sub { padding-left: 22px; font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Hours table ---------- */
.hours-table { max-width: 560px; margin: 0 auto; }
.hours-row { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.hours-row .day { font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.2rem; }
.hours-row .time { font-size: 0.95rem; letter-spacing: 0.06em; color: var(--ink-soft); }
.hours-row.closed .time { color: var(--primary-deep); font-style: italic; }

/* ---------- Policy page ---------- */
.policy-fee { display: flex; gap: 18px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.policy-fee .fee { min-width: 130px; font-family: "Playfair Display", serif; font-style: italic; font-weight: 600; color: var(--primary-deep); font-size: 1.05rem; }
.policy-fee p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Category pages (lashes / brows / bridal) ---------- */
.collage { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.collage img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.collage img:nth-child(even) { margin-top: 26px; }
.feature-row { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--surface-mid); }
.feature-row:last-of-type { border-bottom: 0; }
.feature-row.rev .feature-media { order: 2; }
.feature-media { border-radius: 0.5rem; overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4 / 3; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy h2 { margin-bottom: 16px; }
.feature-copy p { color: var(--ink-soft); margin: 0 0 16px; }
.feature-note { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary-deep); }
@media (max-width: 900px) {
  .collage { grid-template-columns: repeat(3, 1fr); }
  .collage img:nth-child(n+4) { display: none; }
  .feature-row, .feature-row.rev { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .feature-row.rev .feature-media { order: 0; }
}

/* ---------- Price style cards with fill tiers ---------- */
.style-card .fill-rows { margin-top: 16px; border-top: 1px solid var(--surface-mid); }
.fill-rows .fr { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--surface-mid); font-size: 0.92rem; color: var(--ink-soft); }
.fill-rows .fr:last-child { border-bottom: 0; }
.fill-rows .fr b { color: var(--ink); font-weight: 600; }
.addon-row { display: flex; justify-content: space-between; gap: 18px; padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
.addon-row:last-child { border-bottom: 0; }
.addon-row .price { font-size: 1.05rem; }
.notice-band { background: var(--black); color: #F2F2F2; border-radius: 0.5rem; padding: 26px 30px; display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-bottom: 56px; }
.notice-band strong { font-family: "Playfair Display", serif; font-size: 1.15rem; color: #fff; display: block; }
.notice-band p { margin: 4px 0 0; color: #B8B8B8; font-size: 0.92rem; }

/* ---------- Style card photos ---------- */
.style-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 0.35rem; margin-bottom: 18px; }

/* ---------- Visible breadcrumbs ---------- */
.crumbs { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 20px; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--primary-deep); }
.crumbs .sep { margin: 0 8px; color: #B8B8B8; }

/* ---------- About portrait ---------- */
.about-portrait { margin: 0; text-align: center; }
.about-portrait img { width: 100%; max-width: 340px; border-radius: 6px; box-shadow: 0 18px 44px rgba(0,0,0,0.14); display: inline-block; }
.about-portrait figcaption { font-family: "Montserrat", sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: 16px; }

/* ---------- Footer connect icons ---------- */
.footer-col p.conn { margin: 0 0 12px; }
.footer-col p.conn a { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; transition: color 0.2s ease; }
.footer-col p.conn a:hover { color: #FFFFFF; }
.ci { width: 16px; height: 16px; flex: 0 0 16px; opacity: 0.85; }

/* ---------- Service-area tables ---------- */
.sa-tablewrap { overflow-x: auto; margin-top: 22px; border: 1px solid var(--line); border-radius: 8px; }
.sa-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: var(--white); }
.sa-table th, .sa-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.sa-table thead th { font-family: "Montserrat", sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; background: var(--surface-low); color: var(--ink); }
.sa-table tbody tr:last-child th, .sa-table tbody tr:last-child td { border-bottom: none; }
.sa-table tbody tr:hover { background: #FAFAFA; }
.sa-table tbody th { font-weight: 600; white-space: nowrap; }
.sa-table a { color: var(--primary-deep); }
.sa-kw td:nth-child(3) { color: var(--ink-soft); }

/* ---------- Explore chips on area pages ---------- */
.chip-label { margin: 18px 0 8px; font-family: "Montserrat", sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; }
.chip { display: inline-block; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 0.85rem; color: var(--ink); text-decoration: none; transition: border-color 0.15s ease; }
.chip:hover { border-color: var(--black); }
a.cta-btn, button.cta-btn { display: inline-block; background: var(--black); color: var(--white); border: none; padding: 15px 28px; font-family: "Montserrat", sans-serif; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 3px; cursor: pointer; transition: opacity 0.2s ease; }
a.cta-btn:hover, button.cta-btn:hover { opacity: 0.85; }

/* ---------- A11y: footer column headings (non-heading) + credit contrast ---------- */
.footer-col .footer-h { font-family: "Playfair Display", Georgia, serif; color: var(--white); font-size: 1.05rem; margin: 0 0 16px; }
.credit, .credit a { color: #CFCFCF; }
.credit a { text-decoration: underline; text-underline-offset: 3px; }
.credit a:hover { color: var(--white); }

/* ---------- About: service-area list ---------- */
.sa-listgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; margin-top: 30px; }
.sa-row { display: flex; align-items: center; gap: 12px; padding: 15px 4px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); transition: background 0.15s ease; }
.sa-row:hover { background: rgba(0,0,0,0.03); }
.sa-pin { width: 15px; height: 15px; max-width: 15px; max-height: 15px; flex: 0 0 15px; color: var(--ink-soft); }
.sa-city { font-weight: 600; font-size: 0.95rem; }
.sa-tag { margin-left: auto; font-family: "Montserrat", sans-serif; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 640px) { .sa-listgrid { grid-template-columns: 1fr; } }
.cta-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.cta-ghost:hover { background: var(--black); color: var(--white); }

/* ---------- City hub service cards ---------- */
.cityhub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 26px; }
.cityhub-card { display: flex; flex-direction: column; gap: 6px; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); text-decoration: none; color: var(--ink); transition: border-color 0.15s ease, transform 0.15s ease; }
.cityhub-card:hover { border-color: var(--black); transform: translateY(-2px); }
.cityhub-name { font-family: "Playfair Display", Georgia, serif; font-size: 1.08rem; }
.cityhub-price { font-family: "Montserrat", sans-serif; font-size: 0.8rem; letter-spacing: 0.12em; color: var(--ink-soft); }
.cityhub-feel { font-size: 0.85rem; color: var(--ink-soft); }
.sa-table th .sa-tag, .sa-table th a { display: block; margin-left: 0; }
.sa-table tbody th a { color: var(--ink); text-decoration: none; }
.sa-table tbody th a:hover { text-decoration: underline; }

a.cta-btn { text-decoration: none; text-align: center; }
.cta-ghost { background: transparent !important; color: var(--ink) !important; border: 1px solid var(--ink) !important; }
.cta-ghost:hover { background: var(--black) !important; color: var(--white) !important; }

/* ---------- Full-bleed hero banner ---------- */
.hero-banner { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; background: #0B0B0B; }
.hero-banner picture, .hero-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.hero-banner-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,0.86) 0%, rgba(5,5,5,0.62) 42%, rgba(5,5,5,0.12) 75%, rgba(5,5,5,0) 100%); }
.hero-banner-copy { position: relative; z-index: 1; padding: 90px 24px; width: 100%; max-width: 1200px; margin: 0 auto; box-sizing: border-box; }
.hero-banner-copy .eyebrow { color: #D9B8AC; }
.hero-banner-copy h1 { color: #FFFFFF; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.12; margin: 14px 0 20px; max-width: 640px; }
.accent-light { font-style: italic; color: #E8CFC5; }
.hero-banner-lead { color: #D9D9D9; font-size: 1.02rem; line-height: 1.75; max-width: 560px; margin: 0 0 30px; }
.btn-hero-solid { background: #FFFFFF; color: #111111; border: 1px solid #FFFFFF; }
.btn-hero-solid:hover { background: #E8CFC5; border-color: #E8CFC5; color: #111111; }
.btn-hero-ghost { background: transparent; color: #FFFFFF; border: 1px solid rgba(255,255,255,0.55); }
.btn-hero-ghost:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.1); color: #FFFFFF; }
@media (max-width: 640px) {
  .hero-banner { min-height: 520px; }
  .hero-banner picture, .hero-banner-img { object-position: 78% center; }
  .hero-banner-shade { background: linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.78) 100%); }
  .hero-banner-copy { padding: 70px 24px; }
}

/* ---------- About split card ---------- */
.about-split { display: grid; grid-template-columns: 1.15fr 1fr; background: var(--white); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.about-split-copy { padding: 52px 56px; align-self: center; }
.about-split-copy h2 { margin: 10px 0 18px; }
.about-split-copy p { color: var(--ink-soft); line-height: 1.8; margin: 0 0 16px; }
.about-split-copy a { color: var(--primary-deep); }
.about-split-cta { margin-top: 26px; }
.about-split-cta a.cta-btn { color: var(--white); }
.about-split-cta a.cta-ghost { color: var(--ink) !important; }
.about-split-media { margin: 0; min-height: 100%; }
.about-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-media { order: -1; max-height: 340px; }
  .about-split-copy { padding: 34px 26px; }
}
