/* ============================================================
   Serenity Physio, Birmingham. Women's health specialists.
   Bespoke brand build grounded in their real identity:
   navy lotus emblem (#002441 sampled from their logo),
   inscriptional serif wordmark, calm porcelain neutrals,
   dignity and sensitivity first. Quiet, airy, editorial.
   ============================================================ */

:root {
  --navy:       #002441;   /* their lotus navy, sampled */
  --navy-soft:  #123A5C;
  --navy-mist:  #E8EDF2;   /* pale navy wash */
  --porcelain:  #FAF8F4;   /* page base */
  --stone:      #F0EBE3;   /* alt bands */
  --taupe:      #A79A8A;   /* soft warm accents */
  --blush:      #D9BEB4;   /* gentle highlight, from their photography */
  --blush-deep: #C3A093;
  --ink:        #22333F;   /* body text */
  --muted:      #66727C;
  --white:      #FFFFFF;

  --line:       rgba(0, 36, 65, .14);
  --line-soft:  rgba(0, 36, 65, .07);

  --font-head: "Cinzel", "Trajan Pro", Georgia, serif;
  --font-body: "Nunito Sans", "Avenir", "Segoe UI", sans-serif;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 20px 44px rgba(0, 36, 65, .12);
  --shadow-soft: 0 10px 24px rgba(0, 36, 65, .08);
  --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(--porcelain);
  line-height: 1.75;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(1.9rem, 4.6vw, 3.1rem); letter-spacing: .02em; }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.1rem); letter-spacing: .02em; }
h3 { font-size: 1.12rem; letter-spacing: .03em; }

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

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

/* thin keyline motif, from their logo's circular keyline */
.keyline { height: 1px; background: var(--line); max-width: var(--wrap); margin: 0 auto; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250, 248, 244, .95); 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: 12px 22px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 58px; height: 58px; }
.brand-name { font-family: var(--font-head); color: var(--navy); font-size: 1.05rem; letter-spacing: .06em; line-height: 1.15; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 700; color: var(--taupe); font-size: .62rem; letter-spacing: .3em; 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: 700; font-size: .95rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blush-deep); }
.site-nav .nav-cta { background: var(--navy); color: #fff; padding: 10px 22px; border-radius: 999px; }
.site-nav .nav-cta:hover { background: var(--navy-soft); color: #fff; }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--navy); border-radius: 8px; padding: 7px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); 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(--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 { background: linear-gradient(180deg, var(--navy) 0%, #0A3050 100%); color: #E7EDF3; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; right: -140px; top: -140px; width: 460px; height: 460px;
  border: 1px solid rgba(217, 190, 180, .25); border-radius: 50%;
}
.hero::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border: 1px solid rgba(231, 237, 243, .12); border-radius: 50%;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding: clamp(64px, 9vw, 120px) 22px; max-width: var(--wrap); margin: 0 auto; }
@media (max-width: 840px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } }
.hero-kicker { font-weight: 800; letter-spacing: .32em; text-transform: uppercase; font-size: .76rem; color: var(--blush); }
.hero h1 { color: #fff; margin: 16px 0; }
.hero p.lead { color: #C6D3DE; font-size: 1.1rem; max-width: 540px; }
@media (max-width: 840px) { .hero p.lead { margin: 0 auto; } }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 840px) { .hero-ctas { justify-content: center; } }
.hero-badge { background: var(--porcelain); border: 1px solid rgba(217, 190, 180, .4); border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow); }
.hero-badge img { width: 190px; margin: 0 auto 14px; }
.hero-badge p { font-size: .9rem; color: var(--muted); }

.btn { display: inline-block; text-decoration: none; font-weight: 800; letter-spacing: .03em; padding: 14px 30px; border-radius: 999px; transition: transform .15s ease, background .15s ease; font-size: .98rem; }
.btn:hover { transform: translateY(-2px); }
.btn-blush { background: var(--blush); color: var(--navy); }
.btn-blush:hover { background: var(--blush-deep); color: #fff; }
.btn-ghost { border: 1.5px solid var(--blush); color: var(--blush); }
.btn-ghost:hover { background: var(--blush); color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); }

/* discovery strip */
.discovery-strip { background: var(--blush); color: var(--navy); text-align: center; padding: 14px 22px; font-weight: 700; font-size: .98rem; }
.discovery-strip a { color: var(--navy); }

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

.band-stone { background: var(--stone); }
.band-mist { background: var(--navy-mist); }
.band-navy { background: var(--navy); }
.band-navy h2, .band-navy h3 { color: #fff; }
.band-navy p { color: #C6D3DE; }
.band-navy .eyebrow { color: var(--blush); }

/* founders */
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 44px); }
@media (max-width: 840px) { .founder-grid { grid-template-columns: 1fr; } }
.founder-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border-top: 4px solid var(--navy); display: grid; grid-template-columns: 168px 1fr; }
@media (max-width: 560px) { .founder-card { grid-template-columns: 1fr; } }
.founder-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; }
.founder-body { padding: 24px 24px 22px; }
.founder-body h3 { margin-bottom: 6px; }
.founder-body ul { list-style: none; margin-top: 10px; }
.founder-body li { font-size: .92rem; color: var(--muted); padding: 4px 0 4px 20px; position: relative; }
.founder-body li::before { content: ""; position: absolute; left: 0; top: 13px; width: 8px; height: 8px; border-radius: 50%; background: var(--blush); }

/* services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 10px; text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card h3 { color: var(--navy); }
.service-card p { color: var(--muted); font-size: .95rem; }
.service-card .more { margin-top: auto; font-weight: 800; font-size: .88rem; color: var(--blush-deep); letter-spacing: .04em; }

/* service detail rows */
.service-row { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; padding: 34px 0; border-bottom: 1px solid var(--line-soft); }
.service-row:last-child { border-bottom: none; }
@media (max-width: 760px) { .service-row { grid-template-columns: 1fr; } }
.service-row img { border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.service-row h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-row p { color: var(--muted); }

/* testimonials */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 840px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card { background: var(--white); border-radius: var(--radius); padding: 30px 28px 26px; box-shadow: var(--shadow-soft); position: relative; }
.quote-card::before { content: "\201C"; font-family: var(--font-head); font-size: 3rem; color: var(--blush); position: absolute; top: 10px; left: 22px; line-height: 1; }
.quote-card blockquote { margin-top: 24px; color: var(--ink); font-size: .99rem; }
.quote-card cite { display: block; margin-top: 12px; font-style: normal; font-weight: 800; color: var(--taupe); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }

/* accreditations */
.accred-row { display: flex; justify-content: center; align-items: center; gap: clamp(26px, 5vw, 60px); flex-wrap: wrap; }
.accred-row img { height: 64px; width: auto; }

/* prices */
.price-table { max-width: 640px; margin: 0 auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); overflow: hidden; }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.price-table th { font-family: var(--font-head); color: var(--navy); font-size: .95rem; letter-spacing: .04em; }
.price-table td:last-child { text-align: right; font-weight: 800; color: var(--navy); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }

.info-card { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-soft); }
.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; }

/* contact */
.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); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 840px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-soft); text-align: center; }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 14px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .95rem; }

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

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #A9BBC9; 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(--blush); font-size: .92rem; letter-spacing: .08em; margin-bottom: 12px; }
.site-footer a { color: #D9E2EA; text-decoration: none; }
.site-footer a:hover { color: var(--blush); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(217, 226, 234, .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(--blush); }

/* page hero (inner pages) */
.page-hero { background: linear-gradient(180deg, var(--navy) 0%, #0A3050 100%); text-align: center; padding: clamp(56px, 8vw, 100px) 22px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #C6D3DE; max-width: 640px; margin: 14px auto 0; }
.page-hero .eyebrow { font-weight: 800; letter-spacing: .32em; text-transform: uppercase; font-size: .74rem; color: var(--blush); }
