:root {
  --ink: #18313a;
  --ink-soft: #42616a;
  --paper: #fbfaf6;
  --mist: #eef5f2;
  --sage: #8fa85b;
  --teal: #416c75;
  --teal-deep: #274d57;
  --clay: #b96346;
  --white: #ffffff;
  --line: rgba(24, 49, 58, 0.16);
  --shadow: 0 24px 60px rgba(24, 49, 58, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--sage);
  color: var(--ink);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 34, 40, 0.74), rgba(16, 34, 40, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 260px;
  min-width: 210px;
}

.brand-text {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.brand-text small {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 0.92rem;
  font-weight: 700;
}

nav a,
.header-cta {
  opacity: 0.92;
}

nav a:hover,
.header-cta:hover,
.text-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: clamp(112px, 16vh, 180px) clamp(20px, 6vw, 84px) clamp(56px, 8vh, 96px);
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/massage-therapy-room.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 43, 49, 0.92), rgba(18, 43, 49, 0.64) 44%, rgba(18, 43, 49, 0.2)),
    linear-gradient(180deg, rgba(18, 43, 49, 0.18), rgba(18, 43, 49, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dba572;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 8.6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border: 1px solid var(--sage);
  background: var(--sage);
  color: #132c33;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-facts div {
  min-height: 96px;
  padding: 20px;
  background: rgba(14, 35, 41, 0.28);
}

.hero-facts dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.77rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-weight: 800;
  line-height: 1.35;
}

.portrait {
  position: absolute;
  right: clamp(22px, 6vw, 88px);
  bottom: clamp(22px, 6vh, 70px);
  z-index: 3;
  width: clamp(172px, 23vw, 300px);
  margin: 0;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.section {
  padding: clamp(70px, 10vw, 132px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.lead-copy {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.72;
}

.lead-copy p:last-child,
.coverage-copy p:last-child,
.location-panel p:last-child,
.service-card p:last-child,
.site-footer p:last-child {
  margin-bottom: 0;
}

.services {
  background: var(--mist);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 34px;
  border-radius: 99px;
  background: var(--clay);
}

.service-card p {
  color: var(--ink-soft);
  line-height: 1.62;
}

.coverage {
  background: var(--teal-deep);
  color: var(--white);
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: center;
}

.coverage-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.72;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-list li {
  min-height: 56px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.location {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
}

.location-photo {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(251, 250, 246, 0.14), rgba(24, 49, 58, 0.68)),
    url("assets/clinic-team-image.jpg");
  background-position: center;
  background-size: cover;
}

.location-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(36px, 8vw, 86px);
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.94);
  box-shadow: var(--shadow);
}

.location-panel p {
  max-width: 740px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

.contact-stack {
  display: grid;
  justify-items: start;
  gap: 14px;
  min-width: 196px;
}

.contact-stack .button {
  width: 100%;
}

.text-link {
  color: var(--teal-deep);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.78);
  background: #132c33;
  font-size: 0.93rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 66px;
  }

  .brand {
    width: 220px;
    min-width: 180px;
  }

  nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 43, 49, 0.88), rgba(18, 43, 49, 0.5) 48%, rgba(18, 43, 49, 0.86)),
      linear-gradient(90deg, rgba(18, 43, 49, 0.64), rgba(18, 43, 49, 0.34));
  }

  .portrait {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(240px, 62vw);
    margin: 38px 0 0;
  }

  .hero-facts,
  .service-grid,
  .coverage-layout,
  .location-panel,
  .two-column {
    grid-template-columns: 1fr;
  }

  .location-panel {
    align-items: start;
  }
}

@media (max-width: 600px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    width: 190px;
    min-width: 0;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-text small {
    font-size: 0.62rem;
  }

  .header-cta {
    min-width: 66px;
    min-height: 40px;
  }

  .hero {
    padding: 100px 18px 48px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .button {
    width: 100%;
  }

  .hero-facts div {
    min-height: 82px;
    padding: 16px;
  }

  .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .section {
    padding: 58px 0;
  }

  .service-card {
    min-height: 0;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .location {
    min-height: 640px;
  }

  .location-panel {
    margin-bottom: 22px;
    padding: 24px;
  }
}
