/* ============================================================
   Enhanced Skincare & Aesthetics, Liverpool.
   Bespoke brand build. Luminous, cool and modern: a deep
   mulberry signature over cool porcelain and pearl, with a
   soft radial "glow" as the hero motif and a faceted EA
   diamond monogram (a nod to her Diamond Glow packages).
   Modern high contrast serif (Fraunces) paired with a clean
   geometric sans (Manrope). Distinct from the warm gold
   sister demos. Skin first, safety led, consultation first.
   ============================================================ */

:root {
  --plum:       #6C2A4D;   /* signature mulberry */
  --plum-deep:  #421A2F;   /* headings, footer */
  --plum-ink:   #2A1620;   /* near black plum */
  --orchid:     #9E5A7C;   /* mid accent */
  --rose:       #C88BA6;   /* soft glow accent */
  --blush:      #EAD4DE;   /* pale rose band */
  --pearl:      #F2EAEE;   /* soft band */
  --porcelain:  #FBF8FA;   /* page base */
  --ink:        #3A2E35;   /* body text */
  --muted:      #7C6B75;   /* secondary text */
  --white:      #FFFFFF;

  --line:       rgba(66, 26, 47, .14);
  --line-soft:  rgba(66, 26, 47, .07);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 22px 48px rgba(66, 26, 47, .16);
  --shadow-soft: 0 12px 26px rgba(66, 26, 47, .09);
  --wrap: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--porcelain);
  line-height: 1.72;
  font-size: 1.04rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--plum); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--plum-deep); line-height: 1.14; font-weight: 500; font-optical-sizing: auto; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); letter-spacing: -.01em; font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.8vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 600; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--plum-deep); color: #fff; padding: 10px 18px; }
.skip-link:focus { left: 0; }

.demo-ribbon { background: var(--plum-ink); color: #E8D5DF; font-size: .82rem; text-align: center; padding: 7px 14px; letter-spacing: .02em; }
.demo-ribbon strong { color: var(--rose); }

/* ---------- EA diamond monogram (rebuilt in CSS) ---------- */
.ea-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: 0 0 auto;
  border: 1.5px solid var(--plum);
  border-radius: 8px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--pearl), var(--white));
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.7);
}
.ea-mark span {
  transform: rotate(-45deg);
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem;
  color: var(--plum); letter-spacing: -.01em;
}

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(251, 248, 250, .94); backdrop-filter: blur(9px); border-bottom: 1px solid var(--line-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 22px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-name { font-family: var(--font-head); color: var(--plum-deep); font-size: 1.24rem; letter-spacing: .06em; text-transform: uppercase; line-height: 1.1; font-weight: 500; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; color: var(--orchid); font-size: .6rem; letter-spacing: .34em; text-transform: uppercase; margin-top: 3px; }

.site-nav ul { display: flex; gap: 26px; list-style: none; align-items: center; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--plum); }
.site-nav .nav-cta { background: var(--plum); color: #fff; padding: 10px 24px; border-radius: 999px; }
.site-nav .nav-cta:hover { background: var(--plum-deep); color: #fff; }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--plum-deep); border-radius: 8px; padding: 7px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--plum-deep); margin: 4px 0; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--porcelain); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .site-nav li { width: 100%; text-align: center; }
  .site-nav a { display: block; padding: 13px 0; }
  .site-nav .nav-cta { margin: 10px auto; display: inline-block; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--plum-ink); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 72% 34%, rgba(200,139,166,.32) 0%, rgba(42,22,32,0) 60%),
    linear-gradient(180deg, rgba(42,22,32,.55) 0%, rgba(42,22,32,.9) 90%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; padding: clamp(84px, 13vw, 170px) 22px clamp(66px, 9vw, 112px); }
.hero-kicker { font-weight: 700; letter-spacing: .4em; text-transform: uppercase; font-size: .72rem; color: var(--rose); }
.hero h1 { color: #fff; margin: 18px auto; max-width: 780px; }
.hero h1 em { font-style: italic; color: var(--rose); font-weight: 400; }
.hero p.lead { max-width: 600px; margin: 0 auto 30px; color: #EBDDE4; font-size: 1.13rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; text-decoration: none; font-weight: 600; letter-spacing: .02em; padding: 14px 32px; border-radius: 999px; transition: transform .15s ease, background .15s ease; font-size: .96rem; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-plum { background: var(--plum); color: #fff; }
.btn-plum:hover { background: var(--plum-deep); }
.btn-rose { background: var(--rose); color: var(--plum-ink); }
.btn-rose:hover { background: #d79cb5; }
.btn-outline { border: 1.5px solid var(--rose); color: #fff; }
.btn-outline:hover { background: var(--rose); color: var(--plum-ink); }

/* trust strip */
.trust-strip { background: var(--plum); color: #fff; }
.trust-strip .wrap { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 4vw, 48px); flex-wrap: wrap; padding: 15px 22px; }
.trust-strip span { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .star { color: var(--rose); font-size: 1rem; letter-spacing: 1px; }

/* ---------- sections ---------- */
section { padding: clamp(56px, 8vw, 100px) 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 46px; }
.section-head .eyebrow { font-weight: 700; letter-spacing: .4em; text-transform: uppercase; font-size: .7rem; color: var(--plum); }
.section-head h2 { margin-top: 12px; }
.section-head p { margin-top: 12px; color: var(--muted); }

.eyebrow { font-weight: 700; letter-spacing: .4em; text-transform: uppercase; font-size: .7rem; color: var(--plum); }

.band-pearl { background: var(--pearl); }
.band-blush { background: linear-gradient(180deg, var(--blush), var(--pearl)); }
.band-plum { background: var(--plum-deep); }
.band-plum h2, .band-plum h3 { color: #fff; }
.band-plum p { color: #E3CFDA; }
.band-plum .eyebrow { color: var(--rose); }

/* facet divider */
.facet { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 auto 4px; }
.facet i { display: block; width: 9px; height: 9px; transform: rotate(45deg); border: 1.5px solid var(--orchid); }
.facet::before, .facet::after { content: ""; height: 1px; width: 46px; background: var(--line); }

/* split */
.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.tick-list { list-style: none; margin-top: 18px; }
.tick-list li { padding: 8px 0 8px 30px; position: relative; }
.tick-list li::before { content: ""; position: absolute; left: 2px; top: 14px; width: 8px; height: 8px; transform: rotate(45deg); background: var(--rose); }

/* stat row */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 860px; margin: 0 auto; }
@media (max-width: 680px) { .stat-row { grid-template-columns: 1fr; max-width: 340px; } }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3rem); color: var(--plum); font-weight: 600; line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: .84rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* treatment cards */
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .treat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .treat-grid { grid-template-columns: 1fr; } }
.treat-card { background: var(--white); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-soft); border-top: 3px solid var(--rose); display: flex; flex-direction: column; gap: 8px; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.treat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.treat-card h3 { color: var(--plum-deep); }
.treat-card p { color: var(--muted); font-size: .95rem; }
.treat-card .price-line { margin-top: auto; padding-top: 10px; font-weight: 700; color: var(--plum); font-size: .92rem; }

/* price tables */
.treat-block { max-width: 800px; margin: 0 auto 34px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.treat-block h3 { background: var(--plum-deep); color: #fff; padding: 16px 26px; font-size: 1.14rem; letter-spacing: .02em; font-family: var(--font-head); font-weight: 500; }
.treat-block h3 small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose); margin-top: 4px; }
.treat-block table { width: 100%; border-collapse: collapse; }
.treat-block th, .treat-block td { padding: 14px 26px; text-align: left; border-bottom: 1px solid var(--line-soft); font-weight: 400; font-size: .98rem; vertical-align: top; }
.treat-block th { color: var(--ink); font-weight: 600; }
.treat-block th small { display: block; color: var(--muted); font-size: .85rem; font-weight: 400; margin-top: 3px; }
.treat-block td:last-child { text-align: right; font-weight: 700; color: var(--plum); white-space: nowrap; }
.treat-block tr:last-child td, .treat-block tr:last-child th { border-bottom: none; }
.consult-tag { display: inline-block; background: var(--blush); color: var(--plum-deep); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.price-note { max-width: 800px; margin: 0 auto; font-size: .9rem; color: var(--muted); text-align: center; }

/* reviews */
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 800px) { .review-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--white); border-radius: var(--radius); padding: 30px 28px 26px; box-shadow: var(--shadow-soft); position: relative; }
.review-card::before { content: "\201C"; font-family: var(--font-head); font-size: 3rem; color: var(--rose); position: absolute; top: 12px; left: 22px; line-height: 1; }
.review-card .review-stars { color: #D98CB0; letter-spacing: 2px; margin: 0 0 4px; font-size: .95rem; }
.review-card blockquote { margin-top: 8px; color: var(--ink); font-size: .99rem; }
.review-card cite { display: block; margin-top: 14px; font-style: normal; font-weight: 700; color: var(--plum); font-size: .9rem; }
.review-card cite small { display: block; font-weight: 500; color: var(--muted); letter-spacing: .04em; margin-top: 2px; font-size: .8rem; }

/* info cards */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (max-width: 780px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-soft); }
.info-card h3 { margin-bottom: 12px; color: var(--plum-deep); }
.info-card ul { list-style: none; }
.info-card li { padding: 9px 0; border-bottom: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 14px; }
.info-card li:last-child { border-bottom: none; }
.info-card li b { color: var(--plum-deep); font-weight: 600; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 24px; }

/* prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { margin-bottom: 18px; }
.prose h2 { margin: 34px 0 14px; }

/* ---------- footer ---------- */
.site-footer { background: var(--plum-ink); color: #CBB2BF; padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--rose); font-size: .86rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer a { color: #EBDDE4; text-decoration: none; }
.site-footer a:hover { color: var(--rose); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(235, 221, 228, .14); margin-top: 38px; padding-top: 20px; font-size: .82rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: var(--rose); }

/* page hero (inner pages) */
.page-hero { position: relative; background: var(--plum-deep); text-align: center; padding: clamp(58px, 8vw, 104px) 22px; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 60% at 70% 30%, rgba(200,139,166,.22), rgba(66,26,47,0) 62%); }
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #E3CFDA; max-width: 660px; margin: 14px auto 0; }
.page-hero .eyebrow { color: var(--rose); }

/* imagery slots (brand-tone placeholders, ready for Joanne's own photos) */
.imgslot { position: relative; border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; color: rgba(255,255,255,.92); background: linear-gradient(135deg, var(--plum) 0%, var(--orchid) 55%, var(--rose) 100%); box-shadow: var(--shadow); }
.imgslot::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 30% 24%, rgba(255,255,255,.28), rgba(255,255,255,0) 60%); pointer-events: none; }
.imgslot.ratio-45 { aspect-ratio: 4/5; }
.imgslot.ratio-11 { aspect-ratio: 1/1; }
.imgslot.ratio-32 { aspect-ratio: 3/2; }
.imgslot .slot-label { position: relative; z-index: 2; padding: 18px; }
.imgslot .slot-label span { display: block; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; opacity: .85; }
.imgslot .slot-label b { display: block; font-family: var(--font-head); font-weight: 500; font-size: 1.2rem; margin-top: 8px; }
.hero-glass { position: absolute; inset: 0; background: radial-gradient(70% 60% at 74% 32%, rgba(200,139,166,.5) 0%, rgba(66,26,47,0) 58%), linear-gradient(135deg, #4a1c35 0%, #2a1620 60%); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* compliance callout */
.note-box { max-width: 800px; margin: 0 auto 34px; background: var(--blush); border-left: 4px solid var(--plum); border-radius: var(--radius-sm); padding: 20px 24px; }
.note-box p { color: var(--plum-deep); font-size: .95rem; margin: 0; }
.note-box b { font-weight: 700; }
