:root {
  --ink: #18352f;
  --forest: #173f36;
  --forest-deep: #0f2c26;
  --sage: #769084;
  --mint: #dce8df;
  --paper: #f7f4ed;
  --paper-2: #eee9de;
  --white: #fffdf8;
  --copper: #c47b50;
  --gold: #d8ac66;
  --line: rgba(24, 53, 47, 0.16);
  --shadow: 0 24px 70px rgba(22, 47, 40, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 28px;
  --page: min(1240px, calc(100vw - 48px));
}

* {
  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.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  max-width: 940px;
  font-size: clamp(3rem, 6.2vw, 6.3rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

h3 {
  line-height: 1.25;
}

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

.promo-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px 24px;
  color: var(--white);
  background: var(--forest-deep);
  font-size: 0.78rem;
  letter-spacing: 0.035em;
  text-align: center;
}

.promo-bar a {
  color: #f6c27f;
  font-weight: 750;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.93);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--page);
  min-height: 84px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.brand small {
  margin-top: 5px;
  color: var(--sage);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.primary-nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 720;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--copper);
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 63, 54, 0.22);
}

.button-small {
  min-height: 44px;
  padding: 11px 19px;
}

.button-light {
  border-color: var(--white);
  color: var(--forest);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  padding: clamp(60px, 8vw, 120px) 0;
}

.hero-home {
  min-height: calc(100vh - 122px);
}

.hero-subpage {
  min-height: 720px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero-lede {
  max-width: 670px;
  margin-bottom: 32px;
  color: #4b625b;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 36px;
}

.trust-row span {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4a615a;
  background: rgba(255, 253, 248, 0.55);
  font-size: 0.76rem;
  font-weight: 720;
}

.trust-row span::before {
  content: "●";
  margin-right: 8px;
  color: var(--copper);
  font-size: 0.52rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -26px;
  right: -26px;
  width: 65%;
  height: 65%;
  border: 1px solid rgba(196, 123, 80, 0.5);
  border-radius: 52% 48% 20px 20px;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 260px 260px 24px 24px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: -30px;
  bottom: 42px;
  min-width: 180px;
  padding: 20px 23px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 18px 45px rgba(22, 47, 40, 0.14);
  backdrop-filter: blur(14px);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.hero-note span {
  margin-top: 3px;
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(55px, 8vw, 105px) max(24px, calc((100vw - 1120px) / 2));
  color: var(--white);
  background: var(--forest);
}

.intro-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 3.25rem);
  line-height: 1.25;
}

.round-link {
  width: 78px;
  height: 78px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.round-link:hover {
  transform: rotate(10deg);
  color: var(--forest);
  background: var(--white);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 150px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 62px;
}

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

.section-heading > p {
  margin-bottom: 8px;
  color: #526760;
}

.section-heading.compact {
  margin-bottom: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 560px;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(22, 47, 40, 0.12);
}

.service-card-1,
.service-card-3 {
  grid-column: span 4;
}

.service-card-2 {
  grid-column: span 4;
  transform: translateY(46px);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 31, 26, 0.9), rgba(10, 31, 26, 0.05) 68%);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card > div {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.service-card > div > span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 10px 0 15px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
}

.service-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  line-height: 1.55;
}

.service-card b {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.source-story-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 82px;
}

.source-story-pair p {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: #4e655e;
  background: rgba(255, 253, 248, 0.7);
}

.section-caption {
  margin: 28px 0 0;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.story-image,
.location-photo {
  position: relative;
  min-height: 690px;
}

.story-image img,
.location-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  border-radius: 26px 190px 26px 26px;
  box-shadow: var(--shadow);
}

.story-copy h2,
.location-copy h2 {
  margin-bottom: 28px;
}

.story-copy h3 {
  margin: 34px 0 14px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.story-copy p,
.location-copy p {
  color: #4e655e;
}

.membership-ribbon {
  width: var(--page);
  margin: 10px auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 54px;
  padding: clamp(50px, 7vw, 86px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 172, 102, 0.25), transparent 30%),
    var(--forest);
}

.membership-ribbon h2 {
  max-width: 800px;
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
}

.membership-ribbon p {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.membership-ribbon .eyebrow {
  color: #f0bd7d;
}

.closing-ribbon {
  margin-top: 70px;
  margin-bottom: 90px;
}

.faq-section {
  max-width: 1030px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 2px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 850px;
  padding: 0 50px 25px 0;
  color: #4e655e;
}

.final-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  border-top: 1px solid var(--line);
}

.final-panel h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.final-panel p:not(.eyebrow) {
  max-width: 760px;
  color: #4e655e;
}

.final-actions {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.visit-policy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr);
  align-items: start;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.visit-policy-copy p {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.35;
}

.visit-policy-cards {
  display: grid;
  gap: 12px;
}

.visit-policy-cards article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.visit-policy-cards span {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visit-policy-cards strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}

.visit-policy-cards p,
.visit-policy-cards a {
  margin: 0;
  color: #4e655e;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.treatment-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.72);
}

.treatment-image {
  min-height: 250px;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.treatment-card h3 {
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.treatment-card p {
  color: #526760;
  font-size: 0.94rem;
  line-height: 1.6;
}

.card-number {
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.editorial-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.editorial-columns article {
  padding: clamp(34px, 5vw, 65px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.editorial-columns article.tinted {
  background: var(--mint);
}

.editorial-columns h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.editorial-columns p:last-child {
  margin-bottom: 0;
  color: #4f645d;
}

.editorial-page {
  overflow: hidden;
}

.editorial-section {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.98fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
  padding: clamp(76px, 10vw, 142px) 0;
  border-top: 1px solid var(--line);
}

.editorial-section.reverse .editorial-copy {
  order: 2;
}

.editorial-section.reverse .editorial-image {
  order: 1;
}

.editorial-section h2 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.editorial-section h3 {
  margin: 32px 0 10px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.editorial-section p {
  color: #4e655e;
}

.editorial-section blockquote {
  margin: 32px 0;
  padding: 25px 0 25px 28px;
  border-left: 2px solid var(--copper);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
}

.editorial-image {
  position: relative;
  min-height: 560px;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  border-radius: 190px 190px 20px 20px;
  box-shadow: var(--shadow);
}

.content-list {
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding-left: 28px;
}

.content-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--copper);
}

.content-label {
  margin: 24px 0 6px;
  color: var(--ink) !important;
  font-weight: 800;
}

.price-line {
  display: inline-block;
  margin: 8px 12px 16px 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--forest);
  font-weight: 850;
}

.reviews-hero {
  width: var(--page);
  margin: 0 auto;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
  padding: clamp(70px, 9vw, 130px) 0;
}

.reviews-hero h1 {
  margin-bottom: 26px;
}

.reviews-hero p:not(.eyebrow) {
  max-width: 690px;
  color: #4e655e;
}

.rating-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.rating-lockup strong {
  color: var(--copper);
  letter-spacing: 0.1em;
}

.rating-lockup span {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-portrait {
  min-height: 510px;
}

.reviews-portrait img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  border-radius: 50% 50% 24px 24px;
  box-shadow: var(--shadow);
}

.review-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.review-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.review-card:nth-child(3n + 2) {
  transform: translateY(40px);
}

.review-featured {
  color: var(--white);
  background: var(--forest);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--copper);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.review-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card h2 {
  margin: 26px 0 15px;
  font-size: 1.65rem;
  line-height: 1.2;
}

.review-card blockquote {
  margin-bottom: 20px;
  color: #536860;
  font-size: 0.95rem;
}

.review-featured blockquote,
.review-featured > p {
  color: rgba(255, 255, 255, 0.78);
}

.review-card > p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.key-features {
  padding-top: 10px;
}

.key-features p:last-child {
  margin: 0;
  padding: 30px;
  border-radius: 18px;
  color: var(--white);
  background: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.contact-hero {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: 70px;
  padding: clamp(75px, 9vw, 130px) 0;
}

.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #4e655e;
  font-size: 1.12rem;
}

.contact-quick {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-quick a {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-quick span {
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-quick strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.hours-card {
  display: grid;
  margin: 28px 0;
  padding: 24px;
  border-radius: 18px;
  background: var(--mint);
}

.hours-card span,
.hours-card small {
  color: #536a62;
}

.hours-card strong {
  margin: 6px 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
}

.social-row strong {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.social-row a {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 80px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest-deep);
}

.footer-cta {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 75px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta h2 {
  margin-bottom: 0;
  color: var(--white);
}

.footer-cta .eyebrow {
  color: #efbd80;
}

.footer-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
  gap: 48px;
  padding: 72px 0;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #efbd80;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.footer-brand p {
  max-width: 330px;
}

.footer-bottom {
  width: var(--page);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-book {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--white);
  background: var(--copper);
  box-shadow: 0 16px 35px rgba(77, 42, 23, 0.28);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  :root {
    --page: min(100% - 36px, 900px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .header-book {
    order: 3;
  }

  .primary-nav {
    position: fixed;
    top: 121px;
    right: 0;
    left: 0;
    max-height: 0;
    display: grid;
    overflow: hidden;
    justify-content: stretch;
    gap: 0;
    padding: 0 24px;
    background: var(--paper);
    opacity: 0;
    transition: max-height 240ms ease, padding 240ms ease, opacity 180ms ease;
  }

  .primary-nav.is-open {
    max-height: calc(100vh - 121px);
    padding-top: 18px;
    padding-bottom: 28px;
    opacity: 1;
  }

  .primary-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero,
  .reviews-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero-home,
  .hero-subpage {
    min-height: 0;
  }

  .hero-visual {
    min-height: 600px;
  }

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

  .service-card-1,
  .service-card-2,
  .service-card-3 {
    grid-column: auto;
    transform: none;
  }

  .service-card-3 {
    grid-column: span 2;
  }

  .story-split,
  .contact-grid,
  .editorial-section {
    grid-template-columns: 1fr;
  }

  .editorial-section.reverse .editorial-copy,
  .editorial-section.reverse .editorial-image {
    order: initial;
  }

  .treatment-grid,
  .review-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card:nth-child(3n + 2) {
    transform: none;
  }

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

@media (max-width: 720px) {
  :root {
    --page: calc(100% - 28px);
    --radius: 20px;
  }

  body {
    font-size: 16px;
  }

  .promo-bar {
    justify-content: space-between;
    padding: 7px 14px;
    font-size: 0.67rem;
  }

  .promo-bar span {
    max-width: 230px;
  }

  .nav-shell {
    min-height: 72px;
    gap: 12px;
  }

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

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

  .header-book {
    display: none;
  }

  .primary-nav {
    top: 110px;
  }

  .hero {
    gap: 46px;
    padding: 64px 0 75px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .hero-lede {
    font-size: 1.02rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-visual::before {
    top: -14px;
    right: -5px;
  }

  .hero-visual img {
    border-radius: 180px 180px 18px 18px;
  }

  .hero-note {
    right: 12px;
    bottom: 20px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    padding: 58px 20px;
  }

  .round-link {
    width: 62px;
    height: 62px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading,
  .membership-ribbon,
  .final-panel,
  .footer-cta,
  .visit-policy {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 38px;
  }

  .service-grid,
  .treatment-grid,
  .editorial-columns,
  .review-wall,
  .source-story-pair {
    grid-template-columns: 1fr;
  }

  .service-card-3 {
    grid-column: auto;
  }

  .service-card {
    min-height: 500px;
  }

  .story-image,
  .location-photo {
    min-height: 490px;
  }

  .story-image img,
  .location-photo img {
    border-radius: 20px 130px 20px 20px;
  }

  .membership-ribbon {
    padding: 42px 25px;
  }

  .treatment-card {
    grid-template-columns: 1fr;
  }

  .treatment-image {
    min-height: 280px;
  }

  .editorial-section {
    gap: 38px;
  }

  .editorial-image {
    min-height: 430px;
  }

  .reviews-portrait,
  .reviews-portrait img {
    min-height: 420px;
    height: 420px;
  }

  .review-card {
    padding: 26px;
  }

  .contact-hero {
    gap: 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-book {
    display: inline-flex;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
