/* ============================================================
   The Luxe Clinic. Wolverhampton, Birmingham, London.
   Bespoke brand build grounded in their real identity:
   bronze gold #857446 on white (pixel sampled from their site),
   charcoal #2F2E2E text, Playfair headings with a clean modern
   body. Quiet luxury, editorial, generous whitespace.
   ============================================================ */

:root {
  --bronze:      #857446;   /* their sampled bronze gold */
  --bronze-deep: #6B5D38;
  --bronze-pale: #F2EEE4;   /* washes */
  --ivory:       #FDFCF9;   /* page base */
  --charcoal:    #2F2E2E;   /* their text colour */
  --ink:         #3B3936;
  --muted:       #7C766B;
  --white:       #FFFFFF;

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

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Figtree", "Avenir", "Segoe UI", sans-serif;

  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 20px 44px rgba(47, 46, 46, .12);
  --shadow-soft: 0 10px 24px rgba(47, 46, 46, .07);
  --wrap: 1120px;
}

* { 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(--ivory);
  line-height: 1.74;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--charcoal); line-height: 1.18; font-weight: 600; }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); letter-spacing: .01em; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.3rem); }
h3 { font-size: 1.22rem; }

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

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

/* hairline gold rule */
.gold-rule { width: 64px; height: 2px; background: var(--bronze); margin: 16px auto 0; }
.gold-rule.left { margin-left: 0; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(253, 252, 249, .96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line-soft); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 22px; }
.brand { text-decoration: none; }
.brand-name { font-family: var(--font-head); font-weight: 600; color: var(--charcoal); font-size: 1.22rem; letter-spacing: .3em; text-transform: uppercase; }
.brand-name small { display: block; font-family: var(--font-body); color: var(--bronze); font-size: .62rem; letter-spacing: .5em; text-transform: uppercase; }

.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; letter-spacing: .04em; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--bronze); }
.site-nav .nav-cta { border: 1.5px solid var(--bronze); color: var(--bronze-deep); padding: 10px 24px; }
.site-nav .nav-cta:hover { background: var(--bronze); color: #fff; }

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

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--ivory); 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; overflow: hidden; background: var(--charcoal); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(47,46,46,.5) 0%, rgba(47,46,46,.85) 90%); }
.hero-inner { position: relative; z-index: 2; text-align: center; padding: clamp(90px, 14vw, 175px) 22px; }
.hero-kicker { font-weight: 600; letter-spacing: .5em; text-transform: uppercase; font-size: .74rem; color: #CBB877; }
.hero h1 { color: #fff; margin: 16px auto; max-width: 760px; }
.hero p.lead { max-width: 580px; margin: 0 auto 32px; color: #D8D2C4; font-size: 1.1rem; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-block; text-decoration: none; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .86rem; padding: 15px 34px; transition: transform .15s ease, background .15s ease, color .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-bronze { background: var(--bronze); color: #fff; }
.btn-bronze:hover { background: var(--bronze-deep); }
.btn-ghost { border: 1.5px solid #CBB877; color: #CBB877; }
.btn-ghost:hover { background: #CBB877; color: var(--charcoal); }
.btn-charcoal { background: var(--charcoal); color: #fff; }
.btn-charcoal:hover { background: #000; }

/* location strip */
.loc-strip { background: var(--bronze); color: #fff; text-align: center; padding: 13px 22px; font-size: .92rem; letter-spacing: .12em; text-transform: uppercase; }

/* ---------- sections ---------- */
section { padding: clamp(60px, 8vw, 104px) 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.section-head .eyebrow { font-weight: 600; letter-spacing: .44em; text-transform: uppercase; font-size: .72rem; color: var(--bronze); }
.section-head h2 { margin-top: 12px; }
.section-head p { margin-top: 12px; color: var(--muted); }

.band-pale { background: var(--bronze-pale); }
.band-charcoal { background: var(--charcoal); }
.band-charcoal h2, .band-charcoal h3 { color: #fff; }
.band-charcoal p { color: #D8D2C4; }
.band-charcoal .eyebrow { color: #CBB877; }

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

/* treatment cards */
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .treat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .treat-grid { grid-template-columns: 1fr; } }
.treat-card { background: var(--white); border: 1px solid var(--line-soft); box-shadow: var(--shadow-soft); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.treat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.treat-card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.treat-body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.treat-body h3 { color: var(--charcoal); }
.treat-body p { color: var(--muted); font-size: .95rem; }
.treat-body .price-line { margin-top: auto; padding-top: 12px; font-weight: 700; color: var(--bronze-deep); font-size: .95rem; letter-spacing: .04em; }

/* price tables */
.treat-block { max-width: 760px; margin: 0 auto 34px; background: var(--white); border: 1px solid var(--line-soft); box-shadow: var(--shadow-soft); overflow: hidden; }
.treat-block h3 { background: var(--charcoal); color: #fff; padding: 16px 26px; font-size: 1.12rem; letter-spacing: .06em; }
.treat-block h3 small { display: block; font-family: var(--font-body); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: #CBB877; margin-top: 3px; }
.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; }
.treat-block th small { display: block; color: var(--muted); font-size: .85rem; }
.treat-block td:last-child { text-align: right; font-weight: 700; color: var(--charcoal); 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(--bronze-pale); color: var(--bronze-deep); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding: 4px 14px; }
.price-note { max-width: 760px; margin: 0 auto; font-size: .9rem; color: var(--muted); text-align: center; }

/* locations */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card { background: var(--white); border-top: 3px solid var(--bronze); border-left: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); box-shadow: var(--shadow-soft); padding: 30px 28px; }
.loc-card h3 { margin-bottom: 8px; }
.loc-card p { color: var(--muted); font-size: .97rem; }

/* info cards */
.info-card { background: var(--white); border: 1px solid var(--line-soft); box-shadow: var(--shadow-soft); padding: 30px 28px; }
.info-card h3 { margin-bottom: 12px; }
.info-card + .info-card { margin-top: 22px; }
.info-card ul { list-style: none; }
.info-card li { padding: 7px 0; border-bottom: 1px solid var(--line-soft); }
.info-card li:last-child { border-bottom: none; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 9px 0; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .97rem; font-weight: 400; }
.hours-table td { text-align: right; font-weight: 700; color: var(--charcoal); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 54px); }
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; } }
.map-frame { border: 0; width: 100%; height: 100%; min-height: 400px; box-shadow: var(--shadow); }

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

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); color: #A69F91; padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
@media (max-width: 840px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #CBB877; font-family: var(--font-head); font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer a { color: #E3DDD1; text-decoration: none; }
.site-footer a:hover { color: #CBB877; }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(227, 221, 209, .15); margin-top: 38px; padding-top: 20px; font-size: .82rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: #CBB877; }

/* page hero (inner pages) */
.page-hero { background: var(--charcoal); text-align: center; padding: clamp(60px, 9vw, 110px) 22px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #D8D2C4; max-width: 640px; margin: 14px auto 0; }
.page-hero .eyebrow { font-weight: 600; letter-spacing: .5em; text-transform: uppercase; font-size: .72rem; color: #CBB877; }

/* ---------- individual treatment pages ---------- */
.prose .eyebrow { font-weight: 600; letter-spacing: .44em; text-transform: uppercase; font-size: .72rem; color: var(--bronze); }
.prose h2 { margin: 10px 0 0; }
.prose p { margin-top: 14px; }

/* benefit / treats list */
.tick-list { list-style: none; max-width: 780px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 40px; }
@media (max-width: 620px) { .tick-list { grid-template-columns: 1fr; } }
.tick-list li { position: relative; padding: 12px 0 12px 30px; border-bottom: 1px solid var(--line-soft); font-size: .98rem; }
.tick-list li::before { content: ""; position: absolute; left: 0; top: 1.15em; width: 9px; height: 9px; background: var(--bronze); transform: rotate(45deg); }

/* numbered process steps */
.steps { list-style: none; counter-reset: step; max-width: 760px; margin: 0 auto; }
.steps li { position: relative; padding: 0 0 28px 68px; }
.steps li:not(:last-child)::after { content: ""; position: absolute; left: 21px; top: 48px; bottom: 4px; width: 1px; background: var(--line); }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--bronze); color: #fff; font-family: var(--font-head); font-size: 1.1rem; border-radius: var(--radius-sm); }
.steps h3 { color: var(--charcoal); margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: .97rem; }

/* aftercare card */
.care-card { max-width: 760px; margin: 0 auto; }
.care-card ul { list-style: none; }
.care-card li { position: relative; padding: 10px 0 10px 26px; border-bottom: 1px solid var(--line-soft); font-size: .98rem; }
.care-card li:last-child { border-bottom: none; }
.care-card li::before { content: ""; position: absolute; left: 0; top: 1.05em; width: 7px; height: 7px; background: var(--bronze); border-radius: 50%; }

/* related treatments link row */
.related-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 760px; margin: 0 auto; }
.related-links a { text-decoration: none; border: 1px solid var(--line); color: var(--ink); padding: 10px 20px; font-size: .9rem; font-weight: 600; letter-spacing: .03em; transition: border-color .15s ease, color .15s ease; }
.related-links a:hover { border-color: var(--bronze); color: var(--bronze-deep); }

/* read more link on treatment rows */
.read-more { display: inline-block; margin-top: 4px; font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--bronze-deep); text-decoration: none; }
.read-more:hover { color: var(--bronze); }
.read-more::after { content: " \2192"; }
