/* ============================================================
   SKINS Clinic, Manchester Medical Aesthetics. Blackfriars Road.
   Bespoke brand build grounded in their real identity:
   coral S monogram, blush #FFE6EE and #FFF1F1 surfaces,
   deep rose #834242, pill buttons, Montserrat + Roboto.
   Feminine, warm, clinical but approachable. 5.0 everywhere.
   ============================================================ */

:root {
  --blush:      #FFF1F1;   /* their background */
  --blush-deep: #FFE6EE;   /* their theme surface */
  --coral:      #E08A8C;   /* their logo coral */
  --coral-deep: #D4726F;
  --rose:       #834242;   /* their deep rose accent */
  --rose-deep:  #6A3434;
  --ink:        #171313;   /* their near black */
  --body:       #4A403F;
  --muted:      #8A7B79;
  --white:      #FFFFFF;

  --line:       rgba(131, 66, 66, .16);
  --line-soft:  rgba(131, 66, 66, .08);

  --font-head: "Montserrat", "Segoe UI", sans-serif;
  --font-body: "Roboto", "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-pill: 48px;      /* their pill buttons */
  --shadow: 0 20px 44px rgba(131, 66, 66, .14);
  --shadow-soft: 0 10px 24px rgba(131, 66, 66, .09);
  --wrap: 1130px;
}

* { 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(--body);
  background: var(--blush);
  line-height: 1.72;
  font-size: 1.04rem;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.18; font-weight: 700; }
h1 { font-size: clamp(2rem, 4.8vw, 3.3rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: 1.14rem; }

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

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

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 241, 241, .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: 10px 22px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 52px; width: auto; }
.brand-name { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.06rem; letter-spacing: .18em; text-transform: uppercase; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 400; color: var(--rose); font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; }

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

.nav-toggle { display: none; background: none; border: 2px solid var(--rose); border-radius: 10px; padding: 7px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--rose); 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(--blush); 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(--blush-deep); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; left: -120px; bottom: -160px; width: 420px; height: 420px;
  border-radius: 50%; background: var(--coral); opacity: .14;
}
.hero::after {
  content: ""; position: absolute; right: -100px; top: -140px; width: 380px; height: 380px;
  border-radius: 50%; background: var(--rose); opacity: .08;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: center; max-width: var(--wrap); margin: 0 auto; padding: clamp(64px, 10vw, 130px) 22px; }
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } }
.hero-kicker { font-family: var(--font-head); font-weight: 700; letter-spacing: .3em; text-transform: uppercase; font-size: .76rem; color: var(--coral-deep); }
.hero h1 { margin: 14px 0 16px; }
.hero p.lead { color: var(--muted); font-size: 1.12rem; max-width: 540px; }
@media (max-width: 860px) { .hero p.lead { margin: 0 auto; } }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 860px) { .hero-ctas { justify-content: center; } }
.hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 8px solid var(--white); }
.hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.btn { display: inline-block; text-decoration: none; font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; padding: 14px 32px; border-radius: var(--radius-pill); transition: transform .15s ease, background .15s ease; font-size: .95rem; }
.btn:hover { transform: translateY(-2px); }
.btn-rose { background: var(--rose); color: #fff; }
.btn-rose:hover { background: var(--rose-deep); }
.btn-outline { border: 2px solid var(--rose); color: var(--rose); }
.btn-outline:hover { background: var(--rose); color: #fff; }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-deep); }

/* trust strip */
.trust-strip { background: var(--rose); color: #FBE9E9; }
.trust-strip .wrap { display: flex; justify-content: center; gap: clamp(18px, 4vw, 60px); flex-wrap: wrap; padding: 16px 22px; }
.trust-strip span { font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.trust-strip b { color: #fff; }

/* ---------- sections ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 46px; }
.section-head .eyebrow { font-family: var(--font-head); font-weight: 700; letter-spacing: .3em; text-transform: uppercase; font-size: .74rem; color: var(--coral-deep); }
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 12px; color: var(--muted); }

.band-white { background: var(--white); }
.band-blush-deep { background: var(--blush-deep); }
.band-rose { background: var(--rose); }
.band-rose h2, .band-rose h3 { color: #fff; }
.band-rose p { color: #F3DEDE; }
.band-rose .eyebrow { color: #F0BFBF; }

/* 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-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 28px 26px; display: flex; flex-direction: column; gap: 8px; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; border-top: 4px solid var(--coral); }
.treat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.treat-card h3 { color: var(--ink); }
.treat-card p { color: var(--muted); font-size: .95rem; }
.treat-card .price-line { margin-top: auto; padding-top: 10px; font-family: var(--font-head); font-weight: 700; color: var(--rose); font-size: .92rem; }

/* price tables */
.treat-block { max-width: 780px; margin: 0 auto 34px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.treat-block h3 { background: var(--rose); color: #fff; padding: 16px 26px; font-size: 1.05rem; letter-spacing: .04em; }
.treat-block h3 small { display: block; font-family: var(--font-body); font-weight: 400; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: #F0BFBF; margin-top: 3px; }
.treat-block table { width: 100%; border-collapse: collapse; }
.treat-block th, .treat-block td { padding: 13px 26px; text-align: left; border-bottom: 1px solid var(--line-soft); font-weight: 400; font-size: .97rem; }
.treat-block th small { display: block; color: var(--muted); font-size: .84rem; }
.treat-block td:last-child { text-align: right; font-family: var(--font-head); font-weight: 700; color: var(--ink); 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-deep); color: var(--rose); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; padding: 4px 14px; border-radius: var(--radius-pill); }
.price-note { max-width: 780px; margin: 0 auto; font-size: .9rem; color: var(--muted); text-align: center; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 28px 24px; text-align: center; }
.team-card .initial { width: 64px; height: 64px; border-radius: 50%; background: var(--blush-deep); color: var(--rose); font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border: 2px solid var(--coral); }
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--coral-deep); font-family: var(--font-head); font-weight: 600; font-size: .86rem; letter-spacing: .06em; text-transform: uppercase; }
.team-card p { color: var(--muted); font-size: .93rem; margin-top: 10px; }

/* partner strip */
.partner-row { display: flex; justify-content: center; align-items: center; gap: clamp(22px, 4vw, 48px); flex-wrap: wrap; }
.partner-row img { height: 44px; width: auto; filter: grayscale(.3); opacity: .85; }

/* venue gallery */
.venue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .venue-grid { grid-template-columns: 1fr; } }
.venue-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* info cards */
.info-card { background: var(--white); border-radius: var(--radius); 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: .96rem; font-weight: 400; }
.hours-table td { text-align: right; font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.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; border-radius: var(--radius); box-shadow: var(--shadow); }

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

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #B7A6A4; 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: var(--coral); font-family: var(--font-head); font-size: .92rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer a { color: #EBDCDA; text-decoration: none; }
.site-footer a:hover { color: var(--coral); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(235, 220, 218, .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: var(--coral); }

/* page hero (inner pages) */
.page-hero { background: var(--blush-deep); text-align: center; padding: clamp(56px, 8vw, 100px) 22px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; left: -100px; bottom: -140px; width: 320px; height: 320px; border-radius: 50%; background: var(--coral); opacity: .13; }
.page-hero h1 { position: relative; z-index: 2; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 14px auto 0; position: relative; z-index: 2; }
.page-hero .eyebrow { font-family: var(--font-head); font-weight: 700; letter-spacing: .3em; text-transform: uppercase; font-size: .74rem; color: var(--coral-deep); position: relative; z-index: 2; }
