:root {
  --burgundy: #64130e;
  --burgundy-dark: #43100d;
  --rose: #b96f68;
  --cream: #f6f1e9;
  --paper: #fffdf9;
  --ink: #2b2421;
  --muted: #6b605b;
  --line: #ded4c8;
  --sage: #66745e;
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: var(--burgundy); text-underline-offset: .18em; }
a:hover { color: var(--burgundy-dark); }
:focus-visible { outline: 3px solid #e09d24; outline-offset: 3px; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: white; padding: .7rem 1rem; }
.skip-link:focus { top: 1rem; }

.topline { background: var(--burgundy-dark); color: white; font-size: .86rem; }
.topline .wrap { display: flex; justify-content: space-between; gap: 1rem; padding-block: .45rem; }
.topline a { color: white; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(100,19,14,.98); color: white; border-bottom: 1px solid rgba(255,255,255,.18); }
.nav-row { min-height: 82px; display: flex; align-items: center; gap: 2rem; }
.brand { flex: 0 0 238px; }
.brand img { width: 238px; height: auto; }
.nav-toggle { display: none; margin-left: auto; padding: .6rem .8rem; color: white; background: transparent; border: 1px solid rgba(255,255,255,.7); border-radius: 4px; font: inherit; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.35rem; }
.site-nav a { color: white; text-decoration: none; font-size: .94rem; font-weight: 700; }
.site-nav a:hover, .site-nav a[aria-current='page'] { text-decoration: underline; text-decoration-thickness: 2px; }
.button, .site-nav .book-button {
  display: inline-flex; justify-content: center; align-items: center; gap: .5rem;
  min-height: 48px; padding: .7rem 1.15rem; border: 2px solid var(--burgundy);
  border-radius: 4px; background: var(--burgundy); color: white; text-decoration: none;
  font-weight: 800; letter-spacing: .01em; transition: transform .16s ease, background .16s ease;
}
.button:hover, .site-nav .book-button:hover { background: var(--burgundy-dark); color: white; transform: translateY(-1px); }
.site-nav .book-button { background: white; color: var(--burgundy); border-color: white; min-height: 44px; padding-block: .55rem; }
.button.secondary { background: transparent; color: var(--burgundy); }
.button.secondary:hover { background: #efe3da; }
.button.light { background: white; color: var(--burgundy); border-color: white; }

.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero::before { content: ''; position: absolute; width: 330px; height: 330px; border: 1px solid rgba(100,19,14,.18); border-radius: 50%; left: -190px; top: 55px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; min-height: 610px; }
.hero-copy { padding: 5rem 4.2rem 5rem 0; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 1rem; color: var(--burgundy); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.08; font-weight: 500; margin-top: 0; }
h1 { font-size: clamp(2.75rem, 5.5vw, 5.5rem); letter-spacing: -.04em; margin-bottom: 1.35rem; color: var(--burgundy-dark); }
h2 { font-size: clamp(2rem, 3.6vw, 3.5rem); letter-spacing: -.025em; margin-bottom: 1.15rem; color: var(--burgundy-dark); }
h3 { font-size: 1.45rem; color: var(--burgundy-dark); margin-bottom: .55rem; }
.lede { font-size: 1.22rem; line-height: 1.55; max-width: 620px; color: #453a35; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.quiet { color: var(--muted); }
.hero-media { position: relative; height: 100%; min-height: 610px; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ''; position: absolute; inset: 0; box-shadow: inset 35px 0 45px -42px rgba(0,0,0,.7); pointer-events: none; }
.since { position: absolute; left: -43px; bottom: 3rem; z-index: 2; width: 108px; height: 108px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--burgundy); color: white; font-family: var(--serif); font-size: 1rem; line-height: 1.15; border: 7px solid var(--cream); }
.trust-strip { background: var(--burgundy); color: white; }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { padding: 1.25rem 2rem; text-align: center; border-left: 1px solid rgba(255,255,255,.2); }
.trust-item:last-child { border-right: 1px solid rgba(255,255,255,.2); }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.18rem; }
.trust-item span { font-size: .88rem; opacity: .86; }

.section { padding: 6rem 0; }
.section.compact { padding: 3.5rem 0; }
.section.tint { background: var(--cream); }
.section.dark { background: var(--burgundy-dark); color: white; }
.section.dark h2, .section.dark h3, .section.dark a { color: white; }
.section-head { max-width: 720px; margin-bottom: 2.7rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.card { border-top: 4px solid var(--burgundy); background: white; padding: 2rem; min-height: 100%; }
.card p:last-child { margin-bottom: 0; }
.card-link { font-weight: 800; text-decoration-thickness: 1px; }
.image-frame { position: relative; }
.image-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-frame::before { content: ''; position: absolute; inset: -13px 13px 13px -13px; border: 1px solid var(--rose); z-index: -1; }
.tick-list { padding: 0; margin: 1.5rem 0 0; list-style: none; }
.tick-list li { position: relative; padding-left: 1.7rem; margin: .65rem 0; }
.tick-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: bold; }
.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { padding: .68rem 0; border-bottom: 1px solid var(--line); text-align: left; }
.hours td { text-align: right; font-weight: 700; }
.callout { border-left: 5px solid var(--rose); background: white; padding: 1.2rem 1.4rem; }
.cta-band { background: var(--burgundy); color: white; padding: 3.4rem 0; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { color: white; margin: 0; font-size: clamp(2rem,3vw,3rem); }
.cta-band p { margin: .45rem 0 0; }

.page-hero { padding: 5rem 0 4.2rem; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero .wrap { max-width: 920px; margin-left: max(20px, calc((100% - var(--max))/2)); }
.page-hero h1 { font-size: clamp(2.7rem,5vw,4.7rem); max-width: 850px; }
.breadcrumbs { margin-bottom: 1.3rem; font-size: .88rem; color: var(--muted); }
.breadcrumbs a { color: inherit; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.6rem; font-size: 2.15rem; }
.prose h3 { margin-top: 2rem; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.info-panel { background: var(--cream); padding: 2rem; border-top: 4px solid var(--burgundy); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: .8rem 0; }
.faq details { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; color: var(--burgundy-dark); font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.booking-panel { padding: 2.5rem; background: var(--cream); border: 1px solid var(--line); }
.role-card { padding: 2rem; background: var(--cream); border-bottom: 4px solid var(--burgundy); }
.role-mark { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--burgundy); color: white; font-family: var(--serif); font-size: 1.55rem; margin-bottom: 1.3rem; }
.map-link { min-height: 360px; display: grid; place-items: center; padding: 2rem; text-align: center; color: white; background: linear-gradient(rgba(67,16,13,.82),rgba(67,16,13,.82)), url('/assets/physio-room.png') center/cover; text-decoration: none; }
.map-link span { max-width: 350px; font-family: var(--serif); font-size: 2rem; line-height: 1.2; }

.site-footer { padding: 4.2rem 0 2rem; background: #211a18; color: #eee8e3; }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 3rem; }
.footer-logo { width: 250px; margin-bottom: 1.4rem; }
.site-footer h2 { color: white; font-size: 1.25rem; }
.site-footer a { color: white; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: .45rem 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid #554a46; font-size: .82rem; color: #c9c0bb; }
.mobile-actions { display: none; }

@media (max-width: 960px) {
  .topline { display: none; }
  .nav-row { min-height: 72px; }
  .brand { flex-basis: 210px; }
  .brand img { width: 210px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 20px 1.3rem; background: var(--burgundy); box-shadow: 0 14px 20px rgba(0,0,0,.18); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem .2rem; }
  .site-nav .book-button { margin-top: .5rem; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 4.2rem 0 3rem; }
  .hero-media { min-height: 460px; }
  .since { left: auto; right: 20px; bottom: auto; top: -54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 16px; padding-bottom: 66px; }
  .wrap { width: min(calc(100% - 32px), var(--max)); }
  h1 { font-size: clamp(2.7rem, 15vw, 4.2rem); }
  .hero-copy { padding-top: 3.2rem; }
  .hero-media { min-height: 340px; }
  .trust-strip .wrap { grid-template-columns: 1fr; }
  .trust-item { border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); padding: .9rem; }
  .trust-item:last-child { border-right: 0; border-bottom: 0; }
  .section { padding: 4rem 0; }
  .grid-2, .grid-3, .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .grid-2 { align-items: start; }
  .cta-row { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 3.4rem 0 3rem; }
  .page-hero .wrap { margin-inline: 16px; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions { position: fixed; z-index: 60; inset: auto 0 0; display: grid; grid-template-columns: 1fr 1fr; background: white; border-top: 1px solid var(--line); }
  .mobile-actions a { display: grid; place-items: center; min-height: 66px; text-decoration: none; font-weight: 800; }
  .mobile-actions a:last-child { color: white; background: var(--burgundy); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media print {
  .site-header, .topline, .mobile-actions, .cta-band { display: none; }
  body { padding: 0; color: black; background: white; }
  .section, .page-hero { padding: 1.5rem 0; }
}
