:root {
  --ink: #080808;
  --charcoal: #17191a;
  --steel: #657071;
  --fog: #e7ece8;
  --paper: #f8f7f2;
  --gold: #FFBF00;
  --oxide: #a12d2b;
  --leaf: #314934;
  --line: rgba(248, 247, 242, 0.16);
  --dark-line: rgba(8, 8, 8, 0.12);
  --max: 1180px;
  --font-display: "Oswald", "Montserrat", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-utility: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  width: 100%;
  min-height: 86px;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--paper);
  padding: 0 max(20px, calc((100vw - var(--max)) / 2));
  transition:
    min-height 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  min-height: 76px;
  border-color: rgba(8, 8, 8, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav,
.hero-actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: var(--font-utility);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand img,
.site-header.menu-is-open .brand img {
  filter: invert(1);
}

.desktop-nav {
  justify-self: center;
  gap: clamp(24px, 3.2vw, 42px);
  color: rgba(248, 247, 242, 0.74);
  font-family: var(--font-utility);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header.is-scrolled .desktop-nav,
.site-header.menu-is-open .desktop-nav {
  color: rgba(8, 8, 8, 0.74);
}

.desktop-nav a {
  position: relative;
  padding: 32px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] {
  color: var(--gold);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.book-button,
.primary-link,
.secondary-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-utility);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.book-button {
  justify-self: end;
  background: var(--gold);
  color: var(--ink);
  padding: 0 18px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.95) contrast(1.08);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.62) 40%, rgba(8, 8, 8, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.58) 0%, transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(132px, 18svh, 188px) 0 clamp(48px, 8svh, 84px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--font-utility);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 820px;
  font-family: var(--font-display);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-utility);
  font-size: 1.08rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  color: rgba(248, 247, 242, 0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.3rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-link {
  background: var(--gold);
  color: var(--ink);
  padding: 0 22px;
}

.secondary-link {
  border: 1px solid rgba(248, 247, 242, 0.26);
  color: var(--paper);
  padding: 0 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid var(--gold);
  color: inherit;
  font-family: var(--font-utility);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section,
.logo-carousel-section,
.services-section,
.sports-support-section,
.home-hours-section,
.bio-section,
.consulting-section {
  padding: clamp(48px, 6.5vw, 82px) max(20px, calc((100vw - var(--max)) / 2));
}

.section-heading {
  max-width: 900px;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.care-grid article {
  min-height: 270px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
}

.slide-hint {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  color: rgba(8, 8, 8, 0.56);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.slide-hint::after {
  display: block;
  width: 42px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.slide-hint-light {
  color: rgba(248, 247, 242, 0.68);
}

.sports-support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 191, 0, 0.2), transparent 32%),
    linear-gradient(135deg, #050505 0%, #17191a 62%, #090909 100%);
  color: var(--paper);
  padding-block: clamp(34px, 4.6vw, 56px);
}

.sports-support-section h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--paper);
  font-size: clamp(2rem, 4vw, 4rem);
}

.sports-support-copy {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.sports-support-copy p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(248, 247, 242, 0.78);
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
}

.care-icon {
  display: inline-flex;
  margin-bottom: 42px;
  border-bottom: 4px solid var(--gold);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.care-grid p,
.bio-copy p,
.consulting-section p,
.services-list p {
  color: rgba(8, 8, 8, 0.68);
}

.services-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 191, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #050505 0%, #151718 58%, #090909 100%);
  color: var(--paper);
}

.services-heading h2 {
  color: var(--paper);
}

.services-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 3.5vw, 38px);
  padding-block: clamp(42px, 5vw, 68px);
}

.services-heading {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-heading h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 1;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  border-top: 0;
}

.services-list article {
  display: grid;
  min-height: 240px;
  grid-template-rows: auto 1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid rgba(248, 247, 242, 0.16);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.44);
  padding: clamp(20px, 2.3vw, 28px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.services-list span {
  color: var(--gold);
  font-family: var(--font-utility);
  font-size: 0.84rem;
  font-weight: 900;
}

.services-list h3 {
  color: var(--paper);
  margin-bottom: 12px;
  font-size: 1rem;
}

.services-list p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(248, 247, 242, 0.74);
  font-size: 0.96rem;
}

.logo-carousel-section {
  overflow: hidden;
  background: #ffffff;
  color: var(--ink);
}

.logo-carousel-head {
  text-align: center;
}

.logo-carousel-head h2 {
  max-width: none;
  margin-bottom: 0;
}

.logo-marquee {
  margin: clamp(26px, 4vw, 40px) -20px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  animation: logo-scroll 58s linear infinite;
}

.logo-item {
  display: flex;
  width: clamp(134px, 13vw, 190px);
  height: clamp(78px, 8vw, 112px);
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.home-hours-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: #ffffff;
}

.home-hours-section h2 {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink);
}

.home-hours-list {
  margin: 0;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
}

.home-hours-list div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  align-items: baseline;
  border-bottom: 1px solid rgba(8, 8, 8, 0.14);
  padding: 18px 0;
}

.home-hours-list dt {
  color: var(--gold);
  font-family: var(--font-utility);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-hours-list dd {
  margin: 0;
  color: rgba(8, 8, 8, 0.78);
  font-size: 1rem;
  font-weight: 700;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .logo-track {
    animation: none;
  }
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.bio-logo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.bio-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-copy p {
  max-width: 680px;
  color: rgba(248, 247, 242, 0.76);
  font-size: 1.02rem;
}

.consulting-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  background: var(--paper);
  padding-block: clamp(34px, 4.8vw, 58px);
}

.consulting-section h2 {
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  min-height: 70svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.95) contrast(1.06);
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.52), rgba(8, 8, 8, 0.08)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.56), transparent 58%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(128px, 20svh, 190px) 0 clamp(56px, 10svh, 84px);
}

.page-hero-content p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(248, 247, 242, 0.82);
  font-size: clamp(1.04rem, 1.8vw, 1.3rem);
}

.story-section,
.contact-page-grid,
.team-section,
.hours-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: 54px;
  padding: clamp(48px, 6.5vw, 82px) max(20px, calc((100vw - var(--max)) / 2));
}

.story-copy p {
  color: rgba(8, 8, 8, 0.68);
  font-size: 1.05rem;
}

.practitioner-profile {
  min-height: 100svh;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.practitioner-photo {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 191, 0, 0.18), transparent 34%),
    linear-gradient(180deg, #17191a, #050505);
}

.practitioner-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 38%;
  content: "";
  background: linear-gradient(0deg, rgba(8, 8, 8, 0.72), transparent);
}

.practitioner-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: contain;
  object-position: center bottom;
}

.practitioner-profile .story-copy {
  max-width: 720px;
}

.practitioner-profile h2 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 4.9vw, 5.1rem);
}

.practitioner-profile .lead-copy {
  max-width: 660px;
  color: rgba(248, 247, 242, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.profile-highlights {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.profile-highlights div {
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.profile-highlights strong {
  color: var(--paper);
  font-family: var(--font-utility);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-highlights span {
  color: rgba(248, 247, 242, 0.68);
  font-size: 0.95rem;
}

.team-grid,
.hours-grid {
  display: grid;
  gap: 14px;
}

.solo-team-grid {
  align-self: start;
}

.team-grid article,
.hours-grid div {
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
}

.team-grid p {
  margin-bottom: 0;
  color: rgba(8, 8, 8, 0.68);
}

.credential-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--gold);
}

.credential-band div {
  padding: clamp(24px, 4vw, 46px) max(20px, calc((100vw - var(--max)) / 2 / 3));
}

.credential-band div + div {
  border-left: 1px solid rgba(8, 8, 8, 0.18);
}

.credential-band strong,
.credential-band span,
.contact-detail-panel dt,
.contact-detail-panel dd {
  display: block;
}

.credential-band strong {
  font-family: var(--font-utility);
  font-size: 1.24rem;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-band span {
  color: rgba(8, 8, 8, 0.68);
  font-size: 0.94rem;
  font-weight: 700;
}

.page-bio .primary-link {
  width: max-content;
}

.about-page {
  background: var(--ink);
  color: var(--paper);
}

.about-profile-section {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 191, 0, 0.2), transparent 28%),
    linear-gradient(135deg, #050505 0%, #151718 58%, #090909 100%);
  padding: clamp(118px, 15vw, 154px) max(20px, calc((100vw - var(--max)) / 2)) clamp(42px, 5vw, 68px);
}

.about-portrait {
  position: relative;
  overflow: hidden;
  align-self: center;
  width: min(100%, 620px);
  margin: 0;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-profile-copy {
  max-width: 780px;
}

.about-profile-copy h1 {
  max-width: 840px;
  margin-bottom: 30px;
  color: var(--paper);
  font-size: clamp(3rem, 6vw, 6.1rem);
}

.about-profile-copy p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(248, 247, 242, 0.76);
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.about-actions .text-link {
  color: var(--paper);
}

.about-proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: #ffffff;
}

.about-proof-row div {
  padding: clamp(24px, 4vw, 44px) max(20px, calc((100vw - var(--max)) / 2 / 3));
}

.about-proof-row div + div {
  border-left: 1px solid var(--dark-line);
}

.about-proof-row span,
.about-proof-row strong {
  display: block;
  font-family: var(--font-utility);
  text-transform: uppercase;
}

.about-proof-row span {
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 850;
}

.about-proof-row strong {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 950;
}

.about-social-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: #ffffff;
  padding: clamp(28px, 4.6vw, 54px) max(20px, calc((100vw - var(--max)) / 2));
}

.about-social-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--font-utility);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-social-copy h2 {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.about-social-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  gap: 12px;
}

.about-social-links a {
  display: grid;
  min-height: 124px;
  place-items: center;
  gap: 12px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 18px 12px;
  font-family: var(--font-utility);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.about-social-links a:hover,
.about-social-links a:focus-visible {
  border-color: var(--gold);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.about-social-links svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.about-social-links a:nth-child(n + 2) svg {
  fill: currentColor;
  stroke: none;
}

.about-location-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) max(20px, calc((100vw - var(--max)) / 2));
}

.location-copy {
  max-width: 500px;
}

.location-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
}

.location-copy p {
  color: rgba(8, 8, 8, 0.68);
}

.location-copy address {
  margin-top: 28px;
  font-style: normal;
  font-weight: 850;
}

.location-map {
  overflow: hidden;
  min-height: min(52svh, 460px);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: #ffffff;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.contact-page-main {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 191, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #050505 0%, #151718 58%, #090909 100%);
  color: var(--paper);
}

.contact-intake-section {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(300px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: clamp(122px, 15vw, 164px) max(20px, calc((100vw - var(--max)) / 2)) clamp(54px, 7vw, 88px);
}

.contact-intro {
  max-width: 620px;
}

.contact-intro h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
}

.contact-intro p:not(.eyebrow),
.contact-support-section p,
.form-note {
  color: rgba(248, 247, 242, 0.72);
}

.contact-intro p:not(.eyebrow) {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.quick-contact {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: rgba(248, 247, 242, 0.82);
  font-weight: 750;
}

.quick-contact a {
  width: max-content;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(248, 247, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(248, 247, 242, 0.78);
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(248, 247, 242, 0.18);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--paper);
  font: inherit;
  font-family: var(--font-body);
  font-size: 0.98rem;
  letter-spacing: 0;
  padding: 14px 15px;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.contact-form option {
  background: var(--ink);
  color: var(--paper);
}

.contact-form button {
  min-height: 52px;
  cursor: pointer;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-utility);
  font-size: 0.92rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form .form-botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-form button[disabled] {
  cursor: progress;
  opacity: 0.68;
}

.form-status {
  margin: 0;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 14px 16px;
  font-family: var(--font-utility);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  border-color: rgba(255, 191, 0, 0.55);
  background: rgba(255, 191, 0, 0.12);
  color: var(--gold);
}

.form-status.is-error {
  border-color: rgba(255, 122, 106, 0.55);
  background: rgba(255, 122, 106, 0.12);
  color: #ff9d92;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.8rem;
}

.contact-support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding: clamp(44px, 6vw, 76px) max(20px, calc((100vw - var(--max)) / 2));
}

.contact-support-section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.contact-support-section .primary-link {
  margin-top: 16px;
}

.contact-hours {
  border: 1px solid rgba(248, 247, 242, 0.14);
  border-radius: 8px;
  padding: 24px;
}

.contact-hours dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.contact-hours div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
}

.contact-hours dt,
.contact-hours dd {
  margin: 0;
}

.contact-hours dt {
  color: var(--gold);
  font-weight: 900;
}

.contact-hours dd {
  color: rgba(248, 247, 242, 0.72);
}

.contact-detail-panel {
  align-self: start;
}

.contact-detail-panel dl {
  display: grid;
  gap: 20px;
  margin: 34px 0;
}

.contact-detail-panel dt {
  color: var(--steel);
  font-family: var(--font-utility);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-detail-panel dd {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 850;
}

.contact-poster {
  margin: 0;
}

.contact-poster img {
  width: min(420px, 100%);
  justify-self: end;
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(8, 8, 8, 0.18);
}

.contact-consulting {
  border-top: 1px solid var(--dark-line);
}

.hours-section {
  border-top: 1px solid var(--dark-line);
  background: var(--fog);
}

.hours-grid div {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
}

.hours-grid span {
  color: var(--steel);
  font-family: var(--font-utility);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hours-grid strong {
  font-size: 1.02rem;
}

footer {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background: var(--ink);
  color: rgba(248, 247, 242, 0.72);
  padding: 24px max(20px, calc((100vw - var(--max)) / 2));
  font-size: 0.82rem;
  font-family: var(--font-utility);
  font-weight: 750;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-inline: 28px;
  }

  .site-header.menu-is-open {
    min-height: 96px;
    background: #ffffff;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand {
    gap: 12px;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .desktop-nav,
  .book-button {
    display: none;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    cursor: pointer;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    transition:
      background-color 180ms ease,
      border-color 180ms ease;
  }

  .site-header.is-scrolled .menu-toggle,
  .site-header.menu-is-open .menu-toggle {
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 32px;
    height: 2px;
    grid-area: 1 / 1;
    background: var(--paper);
    transition:
      background-color 180ms ease,
      transform 180ms ease,
      opacity 180ms ease;
  }

  .site-header.is-scrolled .menu-toggle span:not(.sr-only),
  .site-header.menu-is-open .menu-toggle span:not(.sr-only) {
    background: var(--ink);
  }

  .menu-toggle span:nth-child(2) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(4) {
    transform: translateY(7px);
  }

  .mobile-menu[open] .menu-toggle span:nth-child(2) {
    transform: rotate(45deg);
  }

  .mobile-menu[open] .menu-toggle span:nth-child(3) {
    opacity: 0;
  }

  .mobile-menu[open] .menu-toggle span:nth-child(4) {
    transform: rotate(-45deg);
  }

  .mobile-drawer {
    position: fixed;
    top: 96px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    min-height: calc(100svh - 96px);
    overflow: hidden;
    border-top: 1px solid rgba(8, 8, 8, 0.08);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(8, 8, 8, 0.1);
    align-content: start;
    padding: 32px 0 44px;
  }

  .mobile-drawer a {
    display: flex;
    min-height: clamp(82px, 12svh, 108px);
    align-items: center;
    border-bottom: 0;
    padding: 0 clamp(44px, 9vw, 68px);
    font-family: var(--font-utility);
    font-size: clamp(1.35rem, 6vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .mobile-drawer a[aria-current="page"] {
    color: var(--gold);
  }

  .mobile-drawer .mobile-book {
    width: calc(100% - clamp(88px, 18vw, 136px));
    min-height: 58px;
    margin: 18px clamp(44px, 9vw, 68px) 0;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    background: var(--gold);
    color: var(--ink);
    padding: 0 22px;
  }

  .hero-content {
    width: min(calc(100% - 32px), var(--max));
    padding-top: 142px;
    padding-bottom: 44px;
  }

  .logo-carousel-head,
  .services-section,
  .home-hours-section,
  .sports-support-section,
  .about-profile-section,
  .about-location-section,
  .contact-intake-section,
  .contact-support-section,
  .bio-section,
  .consulting-section,
  .about-social-row,
  .story-section,
  .contact-page-grid,
  .about-proof-row,
  .credential-band,
  .team-section,
  .hours-section {
    grid-template-columns: 1fr;
  }

  .services-section {
    align-items: stretch;
  }

  .services-heading {
    text-align: left;
  }

  .services-list {
    display: flex;
    margin-right: -16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .services-list article {
    min-width: min(300px, 78vw);
    min-height: 230px;
    scroll-snap-align: start;
  }

  .slide-hint {
    display: flex;
  }

  .care-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .care-grid article {
    min-width: min(300px, 78vw);
    min-height: 240px;
    scroll-snap-align: start;
  }

  .story-section,
  .contact-page-grid,
  .team-section,
  .hours-section,
  .services-section,
  .home-hours-section,
  .sports-support-section,
  .bio-section,
  .consulting-section {
    gap: 28px;
  }

  .practitioner-profile {
    min-height: auto;
    padding-top: 52px;
  }

  .practitioner-photo {
    min-height: 430px;
    align-self: auto;
  }

  .practitioner-photo img {
    min-height: 430px;
  }

  .profile-highlights div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-poster img {
    justify-self: start;
  }

  .about-profile-section {
    min-height: auto;
    padding-top: 112px;
  }

  .about-portrait {
    align-self: center;
  }

  .about-portrait img {
    aspect-ratio: 5 / 4;
  }

  .about-proof-row div + div {
    border-top: 1px solid var(--dark-line);
    border-left: 0;
  }

  .about-social-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-location-section {
    align-items: start;
  }

  .location-map {
    min-height: 360px;
  }

  .contact-intake-section {
    min-height: auto;
    padding-top: 112px;
  }

  .contact-support-section {
    align-items: stretch;
  }

  .credential-band div + div {
    border-top: 1px solid rgba(8, 8, 8, 0.18);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 24px;
  }

  .brand {
    font-size: 0.76rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media img {
    object-position: 58% center;
  }

  h2 {
    font-size: 2rem;
  }

  .about-profile-copy h1 {
    font-size: 2.85rem;
  }

  .about-portrait {
    width: 100%;
  }

  .about-portrait img {
    aspect-ratio: 1 / 1;
  }

  .about-actions {
    align-items: stretch;
  }

  .about-actions .primary-link,
  .about-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .about-social-row {
    gap: 22px;
  }

  .about-social-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-social-links a {
    min-height: 108px;
  }

  .location-copy h2 {
    font-size: 2.1rem;
  }

  .contact-intro h1 {
    font-size: 2.85rem;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-hours div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .home-hours-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .services-list p {
    font-size: 0.9rem;
  }

  .services-list article {
    gap: 30px;
    padding: 22px;
  }

  .logo-carousel-head > p {
    font-size: 0.95rem;
  }

  .logo-item {
    width: 128px;
    height: 76px;
    padding: 10px 16px;
  }

  .care-grid article {
    min-height: auto;
  }
}
