/* ==========================================================================
   Sage Atelier Aesthetics — Homepage Demo
   PASS R3: Homepage build only
   ========================================================================== */

:root {
  --bg: #06110e;
  --bg-soft: #0b1814;
  --panel: rgba(18, 25, 21, 0.88);
  --panel-strong: #101713;
  --text: #f8efe5;
  --muted: rgba(248, 239, 229, 0.72);
  --quiet: rgba(248, 239, 229, 0.54);
  --copper: #c87b55;
  --copper-soft: #e5a47c;
  --gold: #d1a56f;
  --line: rgba(232, 170, 122, 0.2);
  --line-soft: rgba(248, 239, 229, 0.11);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(199, 123, 85, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(14, 87, 62, 0.22), transparent 34rem),
    linear-gradient(180deg, #040b09 0%, #06110e 28%, #08120f 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

::selection {
  color: #0a120f;
  background: var(--copper-soft);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 999;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: #09110e;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 12, 10, 0.76);
  border-bottom: 1px solid rgba(232, 170, 122, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-grid;
  gap: 0.2rem;
  text-transform: uppercase;
  line-height: 1;
}

.brand-main {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.2vw, 2.45rem);
  letter-spacing: 0.12em;
  color: var(--text);
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  color: var(--copper-soft);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2rem);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(248, 239, 229, 0.8);
}

.site-nav a,
.footer-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(232, 170, 122, 0.48);
  padding: 0.9rem 1.2rem;
  color: var(--copper-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta:hover {
  background: var(--copper);
  color: #130b08;
  border-color: var(--copper);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0.28rem auto;
  background: currentColor;
}

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: center;
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 11, 9, 0.92), rgba(4, 11, 9, 0.45) 48%, rgba(4, 11, 9, 0.88)),
    radial-gradient(circle at 72% 46%, rgba(200, 123, 85, 0.18), transparent 28rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--copper-soft);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow-line::before {
  content: "";
  width: 3.5rem;
  height: 1px;
  background: var(--copper);
}

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

h1,
.section-intro h2,
.split-copy h2,
.approach-copy h2,
.consultation-copy h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  font-size: clamp(4.5rem, 10vw, 9.4rem);
  line-height: 0.78;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 54px;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #b96945, #d19068);
  color: #140a07;
  box-shadow: 0 18px 50px rgba(196, 113, 76, 0.22);
}

.btn-ghost {
  border-color: rgba(248, 239, 229, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.btn-ghost:hover {
  border-color: var(--copper);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  border-left: 1px solid rgba(232, 170, 122, 0.16);
}

.hero-visual img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 90px;
  box-shadow: var(--shadow);
  filter: saturate(0.95) contrast(1.05);
}

.hero-card {
  position: absolute;
  right: clamp(0rem, 2vw, 2rem);
  top: 22%;
  width: min(320px, 72%);
  padding: 1.35rem;
  border: 1px solid rgba(232, 170, 122, 0.22);
  border-radius: 22px;
  background: rgba(16, 20, 16, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}

.hero-card article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(248, 239, 229, 0.1);
}

.hero-card article:first-child {
  padding-top: 0;
}

.hero-card article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.card-icon {
  color: var(--copper-soft);
}

.hero-card h2 {
  margin: 0 0 0.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.trust-strip {
  padding: 2rem 0;
  border-block: 1px solid rgba(232, 170, 122, 0.17);
  background:
    linear-gradient(90deg, rgba(11, 25, 20, 0.9), rgba(9, 17, 14, 0.72)),
    radial-gradient(circle at 70% 50%, rgba(200, 123, 85, 0.12), transparent 32rem);
}

.trust-heading {
  margin: 0 0 1.4rem;
  text-align: center;
  color: var(--copper-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(248, 239, 229, 0.08);
}

.trust-grid div {
  min-height: 86px;
  display: grid;
  place-items: center;
  gap: 0.4rem;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(248, 239, 229, 0.08);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.trust-grid span {
  color: rgba(248, 239, 229, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.treatment-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(19, 78, 56, 0.38), transparent 28rem),
    rgba(7, 17, 14, 0.84);
}

.section-intro,
.treatment-intro {
  padding: clamp(2rem, 4vw, 3rem);
}

.section-intro h2,
.treatment-intro h2,
.split-copy h2,
.approach-copy h2,
.consultation-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.88;
}

.section-intro p,
.treatment-intro p,
.split-copy p,
.approach-copy p,
.consultation-copy p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
  color: var(--copper-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-width: 0;
  border-left: 1px solid var(--line);
}

.treatment-card {
  display: grid;
  grid-template-rows: minmax(230px, 1fr) auto;
  min-height: 520px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.treatment-card:last-child {
  border-right: 0;
}

.treatment-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
}

.treatment-card div {
  min-height: 190px;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(10, 17, 14, 0.72), rgba(9, 14, 12, 0.94));
}

.treatment-card h3 {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.treatment-card p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.treatment-card a {
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-section {
  padding-top: 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(10, 26, 20, 0.96), rgba(6, 13, 11, 0.94)),
    radial-gradient(circle at 100% 30%, rgba(200, 123, 85, 0.12), transparent 30rem);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy {
  position: relative;
  padding: clamp(2.4rem, 5vw, 5rem);
  overflow: hidden;
}

.split-copy::after {
  content: "SA";
  position: absolute;
  right: -0.1em;
  bottom: -0.28em;
  color: rgba(248, 239, 229, 0.04);
  font-family: var(--serif);
  font-size: clamp(9rem, 18vw, 18rem);
  line-height: 1;
  pointer-events: none;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 1.35rem;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(248, 239, 229, 0.1);
}

.feature-list span {
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.feature-list strong {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach {
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 123, 85, 0.09), transparent 32rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.approach-steps {
  display: grid;
  gap: 1rem;
}

.approach-steps article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  padding: 1.4rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.026);
}

.approach-steps span {
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.approach-steps h3 {
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.approach-steps p {
  margin: 0;
  color: var(--muted);
}

.centered {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.testimonials {
  border-top: 1px solid rgba(232, 170, 122, 0.12);
  border-bottom: 1px solid rgba(232, 170, 122, 0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(21, 71, 52, 0.28), transparent 34rem),
    rgba(3, 8, 7, 0.34);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  min-height: 260px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.quote-mark {
  display: block;
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.8;
}

.testimonial-card p {
  color: var(--muted);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 0.8rem;
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consultation-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(8, 24, 18, 0.96), rgba(9, 13, 11, 0.92)),
    radial-gradient(circle at 72% 50%, rgba(200, 123, 85, 0.17), transparent 30rem);
  box-shadow: var(--shadow);
}

.consultation-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.consultation-points span {
  padding: 1rem;
  border-left: 1px solid var(--line);
  color: rgba(248, 239, 229, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consultation-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(248, 239, 229, 0.12);
  background: rgba(2, 7, 6, 0.45);
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  color: var(--copper-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(248, 239, 229, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.9rem;
  outline: none;
}

.form-row select {
  color: rgba(248, 239, 229, 0.72);
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--copper);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--quiet);
  font-size: 0.82rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(232, 170, 122, 0.13);
  background: #030807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer p,
.footer-contact {
  color: var(--quiet);
}

.footer-links {
  display: grid;
  gap: 0.72rem;
  align-content: start;
  color: rgba(248, 239, 229, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-contact a {
  color: rgba(248, 239, 229, 0.82);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 239, 229, 0.08);
  color: var(--quiet);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 140ms;
}

.reveal-delay-3 {
  transition-delay: 200ms;
}

.reveal-delay-4 {
  transition-delay: 260ms;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .site-nav {
    gap: 1rem;
  }

  .treatment-layout,
  .split-grid,
  .approach-grid,
  .consultation-panel {
    grid-template-columns: 1fr;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .treatment-card:nth-child(2) {
    border-right: 0;
  }

  .consultation-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 74px;
    grid-template-columns: 1fr auto;
  }

  .brand-main {
    font-size: 1.45rem;
  }

  .brand-sub {
    font-size: 0.62rem;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    inset: 74px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--line);
    background: rgba(5, 12, 10, 0.98);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 1rem;
    border-bottom: 1px solid rgba(248, 239, 229, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 3.75rem;
  }

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

  h1 {
    font-size: clamp(4.2rem, 19vw, 6.2rem);
  }

  .hero-visual {
    min-height: auto;
    border-left: 0;
  }

  .hero-visual img {
    height: min(92vw, 620px);
    border-radius: 34px 34px 0 0;
  }

  .hero-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: -1px;
    border-radius: 0 0 24px 24px;
  }

  .trust-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 239, 229, 0.08);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }

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

  .treatment-card,
  .treatment-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .treatment-card:last-child {
    border-bottom: 0;
  }

  .treatment-card {
    min-height: auto;
  }

  .split-image img {
    min-height: 360px;
  }

  .approach-steps article {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .treatment-intro,
  .consultation-panel {
    padding: 1.35rem;
  }

  .section-intro h2,
  .treatment-intro h2,
  .split-copy h2,
  .approach-copy h2,
  .consultation-copy h2 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 52px;
  }

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

  .consultation-form {
    padding: 1rem;
  }
}


/* ==========================================================================
   PASS R4 — Inner page styles
   Scope: services.html, contact.html, thank-you.html
   ========================================================================== */

.page-hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: clip;
  border-bottom: 1px solid rgba(232, 170, 122, 0.13);
  background:
    radial-gradient(circle at 78% 25%, rgba(200, 123, 85, 0.16), transparent 32rem),
    radial-gradient(circle at 10% 15%, rgba(20, 88, 63, 0.2), transparent 34rem),
    rgba(3, 8, 7, 0.32);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.page-hero-copy h1 {
  max-width: 780px;
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7.3rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.page-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.page-hero-image {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: var(--shadow);
}

.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(248, 239, 229, 0.1);
  pointer-events: none;
  z-index: 1;
}

.page-hero-image img {
  width: 100%;
  height: min(62vw, 620px);
  min-height: 440px;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

.page-hero--contact .page-hero-image img {
  object-position: center;
}

.service-categories {
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 123, 85, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.category-card {
  min-height: 100%;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(6, 14, 12, 0.72);
}

.category-card > span {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.category-card h3 {
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.category-card p {
  color: var(--muted);
}

.category-card ul {
  display: grid;
  gap: 0.58rem;
  margin: 1.25rem 0 0;
  padding: 1.2rem 0 0;
  color: rgba(248, 239, 229, 0.78);
  list-style: none;
  border-top: 1px solid rgba(248, 239, 229, 0.1);
}

.category-card li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
}

.category-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--copper-soft);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: stretch;
}

.service-feature,
.expectation-panel,
.mini-cta-panel,
.contact-details,
.thank-you-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(6, 13, 11, 0.82);
  box-shadow: var(--shadow);
}

.service-feature {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
}

.service-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-feature > div,
.expectation-panel {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}

.service-feature h2,
.expectation-panel h2,
.contact-details h2,
.thank-you-panel h1,
.mini-cta-panel h2 {
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.service-feature p,
.expectation-panel p {
  color: var(--muted);
}

.expectation-list {
  display: grid;
  gap: 0;
  margin-top: 1.6rem;
}

.expectation-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(248, 239, 229, 0.1);
}

.expectation-list span {
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.expectation-list strong {
  align-self: center;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.faq-item {
  border: 1px solid rgba(248, 239, 229, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.2rem;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.mini-cta {
  padding-top: 0;
}

.mini-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.mini-cta-panel h2 {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(3, 8, 7, 0.62);
  box-shadow: var(--shadow);
}

.form-row textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  border: 1px solid rgba(248, 239, 229, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.9rem;
  outline: none;
}

.form-row textarea:focus {
  border-color: var(--copper);
}

.contact-details {
  position: sticky;
  top: 108px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.contact-details h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
}

.detail-group {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(248, 239, 229, 0.1);
}

.detail-group h3 {
  margin: 0 0 0.4rem;
  color: var(--copper-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-group p {
  margin: 0;
  color: var(--muted);
}

.detail-group a {
  color: var(--text);
}

.next-steps {
  padding-top: 0;
}

.next-step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.thank-you-page {
  min-height: calc(100svh - 84px);
  display: grid;
  align-items: center;
  padding: clamp(5rem, 8vw, 8rem) 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(200, 123, 85, 0.14), transparent 32rem),
    radial-gradient(circle at 15% 10%, rgba(20, 88, 63, 0.2), transparent 34rem);
}

.thank-you-panel {
  max-width: 920px;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.thank-you-panel h1 {
  max-width: 800px;
  margin-inline: auto;
  font-size: clamp(3.7rem, 8vw, 7rem);
}

.thank-you-panel p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.thank-you-panel .hero-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .page-hero-grid,
  .service-feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .next-step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-details {
    position: static;
  }
}

@media (max-width: 820px) {
  .page-hero {
    padding-top: 3.75rem;
  }

  .page-hero-copy h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .page-hero-image img {
    height: min(98vw, 560px);
    min-height: 340px;
  }

  .category-grid,
  .faq-grid,
  .next-step-grid,
  .service-feature {
    grid-template-columns: 1fr;
  }

  .service-feature img {
    min-height: 380px;
  }

  .mini-cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .mini-cta-panel .btn {
    width: 100%;
  }

  .thank-you-panel {
    text-align: left;
  }

  .thank-you-panel .hero-actions {
    justify-content: flex-start;
  }
}


/* ==========================================================================
   PASS R5A — Homepage reference alignment
   Scope: homepage visual rhythm only.
   ========================================================================== */

@media (min-width: 1101px) {
  .hero {
    min-height: calc(100svh - 84px);
    padding-top: clamp(3rem, 5vw, 5.2rem);
    padding-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: clamp(2rem, 4vw, 4.2rem);
  }

  .hero-copy {
    align-self: center;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(5.2rem, 9.8vw, 10.6rem);
    letter-spacing: -0.058em;
  }

  .hero-lede {
    max-width: 470px;
    font-size: clamp(1.08rem, 1.55vw, 1.34rem);
    line-height: 1.55;
  }

  .hero-visual {
    min-height: 720px;
    align-self: end;
  }

  .hero-visual img {
    height: min(78vh, 760px);
    min-height: 690px;
    border-radius: 0;
    object-position: 54% center;
  }

  .hero-card {
    right: clamp(1.25rem, 4vw, 4.2rem);
    top: 26%;
    width: min(330px, 50%);
    border-radius: 16px;
  }
}

.site-header {
  border-bottom-color: rgba(232, 170, 122, 0.1);
}

.header-cta {
  min-width: 188px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ad6040, #d28a63);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c7764f, #e19c72);
}

.trust-strip--badges {
  padding: 1.9rem 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 16, 0.98), rgba(8, 28, 22, 0.88), rgba(7, 20, 16, 0.98)),
    radial-gradient(circle at 50% 50%, rgba(200, 123, 85, 0.13), transparent 30rem);
}

.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid rgba(232, 170, 122, 0.16);
  border-bottom: 1px solid rgba(232, 170, 122, 0.16);
}

.trust-badge {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 112px;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(248, 239, 229, 0.09);
}

.trust-badge:last-child {
  border-right: 0;
}

.trust-badge__mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(232, 170, 122, 0.28);
  border-radius: 999px;
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.trust-badge strong,
.trust-badge small {
  display: block;
}

.trust-badge strong {
  color: rgba(248, 239, 229, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.05;
}

.trust-badge small {
  margin-top: 0.35rem;
  color: var(--quiet);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-layout {
  max-width: 100%;
  width: min(1320px, calc(100% - 40px));
}

@media (min-width: 1101px) {
  .treatment-layout {
    grid-template-columns: 340px minmax(0, 1fr);
  }

  .treatment-intro {
    min-height: 515px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--line);
  }

  .treatment-grid {
    border-left: 0;
  }

  .treatment-card {
    min-height: 515px;
  }
}

.treatment-card {
  background: rgba(2, 8, 7, 0.56);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.treatment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 170, 122, 0.34);
  background: rgba(255, 255, 255, 0.035);
}

.treatment-card img {
  min-height: 300px;
}

.treatment-card div {
  min-height: 170px;
  border-top: 1px solid rgba(232, 170, 122, 0.16);
}

.treatment-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 800;
}

.treatment-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.split-section {
  padding-bottom: 0;
}

.split-grid {
  width: min(1320px, calc(100% - 40px));
  max-width: none;
}

@media (min-width: 1101px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-image img {
    min-height: 560px;
  }
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.care-band {
  padding: clamp(3rem, 5.5vw, 5rem) 0;
  border-top: 1px solid rgba(232, 170, 122, 0.12);
  border-bottom: 1px solid rgba(232, 170, 122, 0.12);
  background:
    linear-gradient(90deg, rgba(3, 8, 7, 0.96), rgba(9, 32, 24, 0.78), rgba(3, 8, 7, 0.96)),
    radial-gradient(circle at 80% 50%, rgba(200, 123, 85, 0.1), transparent 26rem);
}

.care-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.care-band-copy h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.care-band-copy p {
  max-width: 620px;
  color: var(--muted);
}

.care-band-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(232, 170, 122, 0.18);
}

.care-band-points article {
  min-height: 160px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.65rem;
  padding: 1rem;
  text-align: center;
  border-right: 1px solid rgba(248, 239, 229, 0.09);
}

.care-band-points article:last-child {
  border-right: 0;
}

.care-band-points span {
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 1.85rem;
}

.care-band-points strong {
  color: rgba(248, 239, 229, 0.84);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.testimonials {
  background:
    linear-gradient(180deg, rgba(7, 23, 18, 0.92), rgba(3, 8, 7, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(200, 123, 85, 0.11), transparent 32rem);
}

.testimonial-grid {
  position: relative;
  width: min(1080px, 100%);
  margin-inline: auto;
}

.testimonial-grid::before,
.testimonial-grid::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper-soft);
  font-size: 2.4rem;
  line-height: 1;
  opacity: 0.78;
}

.testimonial-grid::before {
  content: "‹";
  left: -3rem;
}

.testimonial-grid::after {
  content: "›";
  right: -3rem;
}

.testimonial-card {
  min-height: 210px;
  padding: 1.35rem;
}

.booking-band-section {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(380px, 1.12fr) minmax(190px, 0.42fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  border: 1px solid rgba(232, 170, 122, 0.42);
  background:
    linear-gradient(90deg, rgba(13, 44, 33, 0.9), rgba(6, 14, 12, 0.94)),
    radial-gradient(circle at 80% 50%, rgba(200, 123, 85, 0.16), transparent 28rem);
  box-shadow: var(--shadow);
}

.booking-band__copy h2 {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.booking-band__copy p {
  margin: 0;
  color: var(--muted);
}

.booking-band__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-inline: 1px solid rgba(248, 239, 229, 0.11);
}

.booking-band__points div {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-height: 108px;
  padding: 0.8rem;
  text-align: center;
  border-right: 1px solid rgba(248, 239, 229, 0.11);
}

.booking-band__points div:last-child {
  border-right: 0;
}

.booking-band__points span {
  color: var(--copper-soft);
  font-size: 1.55rem;
}

.booking-band__points strong {
  color: rgba(248, 239, 229, 0.82);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.booking-band__button {
  width: 100%;
  min-height: 64px;
}

@media (max-width: 1100px) {
  .care-band-grid,
  .booking-band {
    grid-template-columns: 1fr;
  }

  .booking-band__points {
    border-inline: 0;
    border-block: 1px solid rgba(248, 239, 229, 0.11);
  }

  .testimonial-grid::before,
  .testimonial-grid::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero-copy {
    padding-bottom: 0;
  }

  .trust-badge-grid,
  .care-band-points,
  .booking-band__points {
    grid-template-columns: 1fr;
  }

  .trust-badge,
  .care-band-points article,
  .booking-band__points div {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 239, 229, 0.09);
  }

  .trust-badge:last-child,
  .care-band-points article:last-child,
  .booking-band__points div:last-child {
    border-bottom: 0;
  }

  .treatment-layout,
  .split-grid {
    width: var(--container);
  }

  .care-band-copy h2 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .booking-band__copy h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }
}


/* ==========================================================================
   PASS R5B — Hero composition alignment
   Scope: header + homepage hero only.
   ========================================================================== */

@media (min-width: 1101px) {
  .header-inner {
    grid-template-columns: minmax(260px, 0.42fr) minmax(520px, 1fr) auto;
    gap: clamp(1.5rem, 3vw, 3rem);
  }

  .brand {
    justify-self: start;
  }

  .brand-main {
    font-size: clamp(1.95rem, 2.45vw, 3rem);
    letter-spacing: 0.13em;
  }

  .site-nav {
    justify-self: center;
    gap: clamp(1.1rem, 2vw, 1.8rem);
  }

  .hero--editorial {
    min-height: calc(100svh - 84px);
    padding-top: 0;
    padding-bottom: 0;
    display: grid;
    align-items: stretch;
  }

  .hero--editorial .hero-bg {
    background:
      linear-gradient(90deg, rgba(4, 11, 9, 0.96), rgba(4, 11, 9, 0.48) 48%, rgba(4, 11, 9, 0.78)),
      radial-gradient(circle at 72% 45%, rgba(200, 123, 85, 0.22), transparent 30rem),
      radial-gradient(circle at 82% 12%, rgba(17, 91, 63, 0.18), transparent 32rem);
  }

  .hero--editorial .hero-grid {
    width: min(1320px, calc(100% - 60px));
    min-height: calc(100svh - 84px);
    grid-template-columns: minmax(440px, 0.82fr) minmax(560px, 1.18fr);
    gap: clamp(1.5rem, 3.4vw, 4.2rem);
    align-items: center;
  }

  .hero--editorial .hero-copy {
    align-self: center;
    padding-top: clamp(1rem, 3vh, 2rem);
    padding-bottom: clamp(1rem, 3vh, 2rem);
    transform: translateY(-1.5vh);
  }

  .hero--editorial h1 {
    max-width: 760px;
    font-size: clamp(5.8rem, 9.65vw, 11.1rem);
    line-height: 0.76;
    letter-spacing: -0.064em;
  }

  .hero--editorial .hero-lede {
    max-width: 470px;
    margin-bottom: 1.75rem;
  }

  .hero--editorial .hero-actions {
    gap: 1rem;
  }

  .hero--editorial .hero-actions .btn-primary {
    min-width: 300px;
  }

  .hero--editorial .hero-visual {
    position: relative;
    min-height: calc(100svh - 84px);
    align-self: stretch;
    border-left: 0;
    display: grid;
    align-items: end;
    overflow: visible;
  }

  .hero--editorial .hero-visual::before {
    content: "";
    position: absolute;
    inset: 4% -16% 0 14%;
    pointer-events: none;
    background:
      radial-gradient(circle at 62% 45%, rgba(200, 123, 85, 0.16), transparent 28rem),
      linear-gradient(90deg, transparent, rgba(232, 170, 122, 0.08), transparent);
    opacity: 0.9;
  }

  .hero--editorial .hero-visual img {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    height: calc(100svh - 84px);
    min-height: 680px;
    margin-left: auto;
    margin-right: max(-7vw, -96px);
    border-radius: 0;
    object-fit: cover;
    object-position: center top;
    box-shadow: none;
    filter: saturate(0.96) contrast(1.07) brightness(0.92);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  }

  .hero--editorial .hero-card {
    z-index: 2;
    top: 36%;
    right: clamp(1.25rem, 2.8vw, 3.3rem);
    width: min(305px, 45%);
    padding: 1.25rem;
    border-radius: 14px;
    border-color: rgba(232, 170, 122, 0.32);
    background:
      linear-gradient(180deg, rgba(39, 29, 23, 0.68), rgba(17, 17, 14, 0.74)),
      rgba(16, 20, 16, 0.78);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  }

  .hero--editorial .hero-card article {
    grid-template-columns: 28px 1fr;
    padding: 0.9rem 0;
  }

  .hero--editorial .hero-card h2 {
    font-size: 0.72rem;
  }

  .hero--editorial .hero-card p {
    font-size: 0.8rem;
  }
}

@media (min-width: 1400px) {
  .hero--editorial .hero-grid {
    width: min(1440px, calc(100% - 80px));
  }

  .hero--editorial .hero-visual img {
    width: min(840px, 104%);
    margin-right: max(-9vw, -135px);
  }

  .hero--editorial .hero-card {
    right: clamp(2rem, 4vw, 5rem);
  }
}

@media (max-width: 1100px) and (min-width: 821px) {
  .hero--editorial .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero--editorial .hero-copy {
    padding-top: 1rem;
  }

  .hero--editorial .hero-visual img {
    height: 620px;
    border-radius: 0;
    object-position: center top;
  }
}

@media (max-width: 820px) {
  .hero--editorial {
    padding-top: 2.5rem;
  }

  .hero--editorial h1 {
    line-height: 0.82;
  }

  .hero--editorial .hero-visual img {
    object-position: center top;
    filter: saturate(0.96) contrast(1.05) brightness(0.96);
  }
}


/* ==========================================================================
   PASS R5C — Hero polish calibration
   Scope: desktop header + homepage hero only.
   ========================================================================== */

@media (min-width: 1101px) {
  .site-header {
    background: rgba(4, 11, 9, 0.82);
  }

  .header-inner {
    min-height: 76px;
    grid-template-columns: minmax(230px, 0.36fr) minmax(560px, 1fr) auto;
  }

  .brand-main {
    font-size: clamp(1.62rem, 1.92vw, 2.34rem);
    letter-spacing: 0.115em;
  }

  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.36em;
  }

  .site-nav {
    transform: translateY(-1px);
  }

  .header-cta {
    min-width: 176px;
    padding-block: 0.78rem;
  }

  .hero--editorial {
    min-height: calc(100svh - 76px);
  }

  .hero--editorial .hero-grid {
    min-height: calc(100svh - 76px);
    grid-template-columns: minmax(450px, 0.86fr) minmax(560px, 1.14fr);
  }

  .hero--editorial .hero-copy {
    transform: translateY(-4.8vh);
  }

  .hero--editorial .hero-copy::after {
    content: "";
    position: absolute;
    inset: -18% -20% -22% auto;
    width: 44vw;
    max-width: 660px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(4, 11, 9, 0.34), rgba(4, 11, 9, 0.72));
    opacity: 0.72;
    z-index: -1;
  }

  .hero--editorial h1 {
    font-size: clamp(5.7rem, 9.35vw, 10.65rem);
  }

  .hero--editorial .hero-visual {
    min-height: calc(100svh - 76px);
  }

  .hero--editorial .hero-visual::before {
    inset: 0 -22% 0 -8%;
    background:
      linear-gradient(90deg, rgba(4, 11, 9, 0.78), transparent 24%, transparent 78%, rgba(4, 11, 9, 0.58)),
      radial-gradient(circle at 62% 46%, rgba(200, 123, 85, 0.14), transparent 30rem);
  }

  .hero--editorial .hero-visual img {
    height: calc(100svh - 76px);
    min-height: 660px;
    width: min(820px, 108%);
    margin-right: max(-10vw, -145px);
    object-position: 48% top;
    filter: saturate(0.98) contrast(1.08) brightness(0.9);
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 8%, black 22%, black 86%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 8%, black 22%, black 86%, transparent 100%);
  }

  .hero--editorial .hero-card {
    top: 38%;
    right: clamp(0.4rem, 1.4vw, 1.85rem);
    width: min(292px, 42%);
    transform: translateX(18px);
    background:
      linear-gradient(180deg, rgba(39, 29, 23, 0.66), rgba(17, 17, 14, 0.76)),
      rgba(16, 20, 16, 0.72);
  }
}

@media (min-width: 1400px) {
  .hero--editorial .hero-copy {
    transform: translateY(-5.4vh);
  }

  .hero--editorial .hero-visual img {
    width: min(900px, 112%);
    margin-right: max(-11vw, -180px);
  }

  .hero--editorial .hero-card {
    right: clamp(0.5rem, 1.8vw, 2.2rem);
    transform: translateX(28px);
  }
}

@media (max-width: 1100px) {
  .hero--editorial .hero-copy::after {
    display: none;
  }
}


/* ==========================================================================
   PASS R5E — Hero care panel centered under CTA buttons
   Scope: homepage hero panel placement only.
   ========================================================================== */


.hero-card--under-cta article {
  grid-template-columns: 28px 1fr;
}

@media (min-width: 1101px) {
  .hero--editorial .hero-copy {
    max-width: 760px;
  }

  .hero--editorial 

  .hero--editorial .hero-card--under-cta article {
    grid-template-columns: 28px 1fr;
    padding: 0.82rem 0;
  }

  .hero--editorial .hero-card--under-cta h2 {
    font-size: 0.72rem;
  }

  .hero--editorial .hero-card--under-cta p {
    font-size: 0.8rem;
  }

  .hero--editorial .hero-visual .hero-card {
    display: none;
  }
}

@media (max-width: 820px) {
  
}


/* ==========================================================================
   PASS R5F — Typography cleanup + hierarchy alignment
   Scope: type hierarchy only. No layout redesign.
   ========================================================================== */

/* Intentional homepage title hook. Mirrors existing visual scale while reducing reliance on global h1 overrides. */
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
}

/* Hero care-panel labels are semantically h3s, but visually remain compact UI labels. */
.hero-card h3,
.hero-card--under-cta h3 {
  margin: 0 0 0.25rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (min-width: 1101px) {
  .hero--editorial .hero-card--under-cta h3 {
    font-size: 0.72rem;
  }
}

/* Keep CTA typography luxe, but slightly improve touch-device readability. */
@media (max-width: 820px) {
  .btn {
    font-size: 0.8rem;
    letter-spacing: 0.105em;
  }

  .site-nav {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
  }

  .text-link,
  .treatment-card a {
    font-size: 0.76rem;
    letter-spacing: 0.105em;
  }

  .form-row label {
    font-size: 0.74rem;
    letter-spacing: 0.11em;
  }
}

/* Normalize card-heading treatment after h3 semantic correction. */
.hero-card h2 {
  margin: 0;
}


/* ==========================================================================
   PASS R5G — Hero proof strip refinement
   Scope: homepage hero proof area only.
   ========================================================================== */

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(610px, 100%);
  margin: 1.35rem 0 0;
  border-top: 1px solid rgba(232, 170, 122, 0.22);
  border-bottom: 1px solid rgba(232, 170, 122, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(8, 18, 15, 0.68);
}

.hero-proof-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.72rem;
  min-height: 74px;
  padding: 0.78rem 0.95rem;
  border-right: 1px solid rgba(248, 239, 229, 0.09);
}

.hero-proof-strip article:last-child {
  border-right: 0;
}

.hero-proof-strip span {
  color: var(--copper-soft);
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1;
}

.hero-proof-strip strong {
  display: block;
  color: rgba(248, 239, 229, 0.9);
  font-size: 0.7rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof-strip p {
  margin: 0.18rem 0 0;
  color: var(--quiet);
  font-size: 0.78rem;
  line-height: 1.25;
}

/* Retire the old stacked hero-card behavior on the homepage after the proof strip replacement. */


@media (min-width: 1101px) {
  .hero--editorial .hero-proof-strip {
    margin-top: 1.25rem;
  }
}

@media (max-width: 820px) {
  .hero-proof-strip {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .hero-proof-strip article {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 239, 229, 0.09);
  }

  .hero-proof-strip article:last-child {
    border-bottom: 0;
  }

  .hero-proof-strip strong {
    font-size: 0.74rem;
    letter-spacing: 0.105em;
  }
}


/* ==========================================================================
   PASS R6C — Studio + testimonial flow refinement
   Scope: studio section, testimonial band, and final booking CTA only.
   ========================================================================== */

/* Studio section: make the split feel more cinematic and less like a plain card. */
.studio-flow {
  padding-top: clamp(1.6rem, 2.6vw, 2.8rem);
  padding-bottom: clamp(3.8rem, 6vw, 6rem);
}

.studio-flow .split-grid {
  border-color: rgba(232, 170, 122, 0.26);
  background:
    linear-gradient(135deg, rgba(8, 30, 22, 0.98), rgba(3, 8, 7, 0.96)),
    radial-gradient(circle at 75% 30%, rgba(200, 123, 85, 0.15), transparent 30rem);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.studio-flow .split-image {
  position: relative;
  overflow: hidden;
}

.studio-flow .split-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 70%, rgba(3, 8, 7, 0.24)),
    linear-gradient(180deg, transparent 72%, rgba(3, 8, 7, 0.38));
}

.studio-flow .split-image img {
  min-height: 610px;
  filter: saturate(0.96) contrast(1.08) brightness(0.88);
}

.studio-flow .split-copy {
  padding: clamp(2.8rem, 5.2vw, 5.8rem);
}

.studio-flow .split-copy h2 {
  max-width: 620px;
  font-size: clamp(3.8rem, 6.4vw, 6.8rem);
  line-height: 0.86;
}

.studio-flow .split-copy > p:not(.eyebrow) {
  max-width: 540px;
  font-size: 1rem;
  line-height: 1.78;
}

.studio-flow .split-copy::after {
  opacity: 1;
  color: rgba(248, 239, 229, 0.055);
  right: -0.18em;
  bottom: -0.34em;
}

.studio-flow .feature-list {
  max-width: 520px;
  margin-top: 1.65rem;
  margin-bottom: 1rem;
}

.studio-flow .feature-list div {
  padding: 0.78rem 0;
}

.studio-flow .text-link {
  margin-top: 0.65rem;
}

/* Testimonials: stronger editorial band and tighter cards. */
.testimonials--editorial {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid rgba(232, 170, 122, 0.2);
  border-bottom: 1px solid rgba(232, 170, 122, 0.2);
  background:
    linear-gradient(180deg, rgba(4, 13, 11, 0.98), rgba(7, 24, 18, 0.95), rgba(3, 8, 7, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(200, 123, 85, 0.16), transparent 32rem);
}

.testimonials--editorial .section-intro {
  padding-top: 0;
  padding-bottom: 0;
}

.testimonials--editorial .section-intro h2 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(3.6rem, 6.8vw, 7rem);
  line-height: 0.86;
}

.testimonials--editorial .testimonial-grid {
  width: min(1120px, 100%);
  gap: 0;
  margin-top: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(232, 170, 122, 0.22);
  background: rgba(255, 255, 255, 0.016);
}

.testimonials--editorial .testimonial-card {
  min-height: 230px;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  border: 0;
  border-right: 1px solid rgba(248, 239, 229, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
}

.testimonials--editorial .testimonial-card:last-child {
  border-right: 0;
}

.testimonials--editorial .quote-mark {
  font-size: 2.55rem;
}

.testimonials--editorial .testimonial-card p {
  margin-bottom: 1rem;
  font-size: 0.94rem;
  line-height: 1.72;
}

.testimonials--editorial .stars {
  margin-top: auto;
}

/* Booking band: less busy, stronger closing action. */
.booking-band-section--refined {
  padding-top: clamp(3.2rem, 5.5vw, 5rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
}

.booking-band-section--refined .booking-band {
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 0.95fr) minmax(180px, 0.42fr);
  width: min(1180px, 100%);
  padding: clamp(1.55rem, 2.8vw, 2.25rem);
  border-color: rgba(232, 170, 122, 0.48);
  background:
    linear-gradient(90deg, rgba(12, 45, 33, 0.96), rgba(5, 12, 10, 0.96)),
    radial-gradient(circle at 78% 50%, rgba(200, 123, 85, 0.2), transparent 28rem);
}

.booking-band-section--refined .booking-band__copy h2 {
  font-size: clamp(3rem, 5.4vw, 5.7rem);
}

.booking-band-section--refined .booking-band__copy p {
  max-width: 520px;
  line-height: 1.72;
}

.booking-band-section--refined .booking-band__points {
  border-inline-color: rgba(248, 239, 229, 0.14);
}

.booking-band-section--refined .booking-band__points div {
  min-height: 96px;
}

.booking-band-section--refined .booking-band__points strong {
  font-size: 0.68rem;
  letter-spacing: 0.105em;
}

.booking-band-section--refined .booking-band__button {
  min-height: 62px;
}

/* Responsive refinements for the targeted lower homepage flow. */
@media (max-width: 1100px) {
  .studio-flow .split-image img {
    min-height: 440px;
  }

  .testimonials--editorial .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonials--editorial .testimonial-card {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 239, 229, 0.1);
  }

  .testimonials--editorial .testimonial-card:last-child {
    border-bottom: 0;
  }

  .booking-band-section--refined .booking-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .studio-flow {
    padding-bottom: 3.2rem;
  }

  .studio-flow .split-copy {
    padding: 1.35rem;
  }

  .studio-flow .split-copy h2,
  .testimonials--editorial .section-intro h2,
  .booking-band-section--refined .booking-band__copy h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .studio-flow .split-image img {
    min-height: 340px;
  }

  .testimonials--editorial {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .booking-band-section--refined {
    padding-bottom: 4rem;
  }
}


/* ==========================================================================
   PASS R7A/R7B — Inner page premium alignment
   Scope: services.html and contact.html only.
   ========================================================================== */

/* Shared inner-page hero refinement */
.inner-hero {
  background:
    linear-gradient(90deg, rgba(3, 8, 7, 0.98), rgba(7, 25, 19, 0.88), rgba(3, 8, 7, 0.98)),
    radial-gradient(circle at 78% 22%, rgba(200, 123, 85, 0.18), transparent 32rem),
    radial-gradient(circle at 12% 15%, rgba(20, 88, 63, 0.22), transparent 34rem);
  border-bottom-color: rgba(232, 170, 122, 0.2);
}

.inner-hero .page-hero-grid {
  width: min(1180px, calc(100% - 40px));
}

.inner-hero .page-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(4.25rem, 7.6vw, 7.8rem);
  line-height: 0.84;
}

.inner-hero .page-hero-copy p:not(.eyebrow) {
  max-width: 610px;
  line-height: 1.72;
}

.inner-hero .page-hero-image {
  border-color: rgba(232, 170, 122, 0.28);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.inner-hero .page-hero-image img {
  filter: saturate(0.94) contrast(1.07) brightness(0.9);
}

/* PASS R7A — Services page */
.service-categories--premium {
  padding-top: clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 123, 85, 0.1), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), transparent);
}

.service-categories--premium .section-intro h2 {
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.86;
}

.service-categories--premium .section-intro p {
  max-width: 680px;
  margin-inline: auto;
}

.service-categories--premium .category-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  border: 1px solid rgba(232, 170, 122, 0.22);
  gap: 0;
  background: rgba(255, 255, 255, 0.014);
}

.service-categories--premium .category-card {
  border: 0;
  border-right: 1px solid rgba(248, 239, 229, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(6, 14, 12, 0.78);
}

.service-categories--premium .category-card:last-child {
  border-right: 0;
}

.service-categories--premium .category-card > span {
  color: var(--copper-soft);
}

.service-categories--premium .category-card h3 {
  font-size: clamp(1.65rem, 2.3vw, 2.05rem);
  line-height: 1;
}

.service-categories--premium .category-card p {
  min-height: 4.9em;
  font-size: 0.93rem;
  line-height: 1.62;
}

.service-categories--premium .category-card ul {
  margin-top: 1rem;
  padding-top: 1rem;
}

.featured-services--premium {
  padding-top: clamp(3.5rem, 6vw, 5.6rem);
}

.featured-services--premium .service-feature-grid {
  width: min(1180px, 100%);
}

.featured-services--premium .service-feature,
.featured-services--premium .expectation-panel {
  border-color: rgba(232, 170, 122, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(5, 13, 11, 0.88);
}

.featured-services--premium .service-feature img {
  filter: saturate(0.94) contrast(1.08) brightness(0.9);
}

.featured-services--premium .service-feature h2,
.featured-services--premium .expectation-panel h2 {
  font-size: clamp(3rem, 5.4vw, 5.6rem);
}

.featured-services--premium .service-feature p,
.featured-services--premium .expectation-panel p {
  line-height: 1.74;
}

.faq-section--premium {
  padding-top: clamp(3.8rem, 6vw, 6rem);
  background:
    linear-gradient(180deg, rgba(3, 8, 7, 0.35), rgba(7, 24, 18, 0.22));
}

.faq-section--premium .faq-grid {
  width: min(980px, 100%);
  margin-inline: auto;
}

.faq-section--premium .faq-item {
  border-color: rgba(232, 170, 122, 0.18);
  background: rgba(255, 255, 255, 0.024);
}

.faq-section--premium .faq-item summary {
  color: rgba(248, 239, 229, 0.92);
}

.mini-cta--premium .mini-cta-panel {
  width: min(1120px, 100%);
  border-color: rgba(232, 170, 122, 0.4);
  background:
    linear-gradient(90deg, rgba(12, 45, 33, 0.94), rgba(5, 12, 10, 0.96)),
    radial-gradient(circle at 78% 50%, rgba(200, 123, 85, 0.18), transparent 28rem);
}

/* PASS R7B — Contact page */
.contact-section--premium {
  padding-top: clamp(4rem, 7vw, 6.5rem);
}

.contact-section--premium .contact-grid {
  width: min(1120px, 100%);
}

.contact-section--premium .contact-form {
  border-color: rgba(232, 170, 122, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
    rgba(3, 8, 7, 0.74);
}

.contact-section--premium .form-row {
  gap: 0.48rem;
}

.contact-section--premium .form-row input,
.contact-section--premium .form-row select,
.contact-section--premium .form-row textarea {
  border-color: rgba(248, 239, 229, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.contact-section--premium .form-row input::placeholder,
.contact-section--premium .form-row textarea::placeholder {
  color: rgba(248, 239, 229, 0.42);
}

.contact-section--premium .contact-details {
  border-color: rgba(232, 170, 122, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(7, 22, 17, 0.88);
}

.contact-section--premium .contact-details h2 {
  line-height: 0.92;
}

.contact-section--premium .detail-group {
  border-top-color: rgba(248, 239, 229, 0.12);
}

.next-steps--premium {
  padding-top: 0;
}

.next-steps--premium .section-intro h2 {
  font-size: clamp(3.4rem, 6vw, 6rem);
}

.next-steps--premium .next-step-grid {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.next-steps--premium .approach-steps article {
  border-color: rgba(232, 170, 122, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.014)),
    rgba(5, 13, 11, 0.78);
}

/* Inner-page mobile/tablet calibration */
@media (max-width: 1100px) {
  .service-categories--premium .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-categories--premium .category-card:nth-child(2) {
    border-right: 0;
  }

  .service-categories--premium .category-card:nth-child(1),
  .service-categories--premium .category-card:nth-child(2) {
    border-bottom: 1px solid rgba(248, 239, 229, 0.1);
  }
}

@media (max-width: 820px) {
  .inner-hero .page-hero-grid,
  .contact-section--premium .contact-grid {
    width: var(--container);
  }

  .inner-hero .page-hero-copy h1,
  .service-categories--premium .section-intro h2,
  .featured-services--premium .service-feature h2,
  .featured-services--premium .expectation-panel h2,
  .next-steps--premium .section-intro h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .service-categories--premium .category-grid {
    grid-template-columns: 1fr;
  }

  .service-categories--premium .category-card,
  .service-categories--premium .category-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 239, 229, 0.1);
  }

  .service-categories--premium .category-card:last-child {
    border-bottom: 0;
  }

  .service-categories--premium .category-card p {
    min-height: auto;
  }
}


/* ==========================================================================
   PASS R8 — CSS consolidation / no visual change
   Notes:
   - Removed obsolete treatment-board and retired hero-panel patch blocks.
   - Preserved final visual rule sets, HTML, JavaScript, and assets.
   - No new visible design changes are intended in this pass.
   ========================================================================== */


/* ==========================================================================
   PASS R8A — Permanent treatment alignment fix
   Scope: Treatment section only.
   Uses isolated class names so older treatment rules cannot affect this layout.
   ========================================================================== */

.sage-treatments {
  padding-top: clamp(3.8rem, 6vw, 6.25rem);
  padding-bottom: clamp(2.4rem, 3.8vw, 3.8rem);
}

.sage-treatments__board {
  width: min(1320px, calc(100% - 40px));
  max-width: none;
  display: grid;
  grid-template-columns: minmax(345px, 375px) minmax(0, 1fr);
  align-items: stretch;
  margin-inline: auto;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(19, 78, 56, 0.34), transparent 28rem),
    rgba(7, 17, 14, 0.84);
  overflow: hidden;
}

.sage-treatments__intro {
  min-width: 0;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.9rem, 2.7vw, 2.55rem);
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.sage-treatments__intro .eyebrow {
  margin-bottom: 1rem;
}

.sage-treatments__title {
  width: 100%;
  max-width: 270px;
  display: grid;
  gap: 0.02em;
  margin: 0 0 1rem;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 4.05vw, 4.45rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.052em;
  overflow: hidden;
}

.sage-treatments__title span {
  display: block;
  max-width: 100%;
  overflow: hidden;
}

.sage-treatments__intro > p:not(.eyebrow) {
  max-width: 285px;
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.sage-treatments__intro .text-link {
  width: fit-content;
  margin-top: auto;
}

.sage-treatments__cards {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sage-treatment-card {
  min-width: 0;
  min-height: 540px;
  display: grid;
  grid-template-rows: minmax(330px, 1fr) 180px;
  border-right: 1px solid var(--line);
  background: rgba(2, 8, 7, 0.62);
  overflow: hidden;
}

.sage-treatment-card:last-child {
  border-right: 0;
}

.sage-treatment-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.94) contrast(1.06) brightness(0.92);
}

.sage-treatment-card__body {
  min-height: 180px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1rem 1rem 1.05rem;
  border-top: 1px solid rgba(232, 170, 122, 0.16);
  background:
    linear-gradient(180deg, rgba(10, 17, 14, 0.82), rgba(9, 14, 12, 0.97));
}

.sage-treatment-card__body h3 {
  margin: 0 0 0.5rem;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.sage-treatment-card__body p {
  max-width: 218px;
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.52;
}

.sage-treatment-card__body a {
  align-self: end;
  color: var(--copper-soft);
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .sage-treatments__board {
    width: min(1180px, calc(100% - 32px));
    grid-template-columns: minmax(300px, 325px) minmax(0, 1fr);
  }

  .sage-treatments__intro {
    min-height: 515px;
    padding: 1.45rem;
  }

  .sage-treatments__title {
    max-width: 235px;
    font-size: clamp(2.75rem, 3.55vw, 3.7rem);
  }

  .sage-treatments__intro > p:not(.eyebrow) {
    max-width: 250px;
    font-size: 0.88rem;
  }

  .sage-treatment-card {
    min-height: 515px;
    grid-template-rows: minmax(315px, 1fr) 170px;
  }

  .sage-treatment-card img {
    min-height: 315px;
  }

  .sage-treatment-card__body {
    min-height: 170px;
    padding: 0.88rem;
  }

  .sage-treatment-card__body h3 {
    font-size: 0.69rem;
    letter-spacing: 0.095em;
  }

  .sage-treatment-card__body p {
    max-width: 190px;
    font-size: 0.735rem;
    line-height: 1.5;
  }

  .sage-treatment-card__body a {
    font-size: 0.64rem;
  }
}

@media (max-width: 1100px) {
  .sage-treatments__board {
    width: var(--container);
    grid-template-columns: 1fr;
  }

  .sage-treatments__intro {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: clamp(1.35rem, 3vw, 2rem);
  }

  .sage-treatments__title {
    max-width: 520px;
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .sage-treatments__intro > p:not(.eyebrow) {
    max-width: 620px;
  }

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

  .sage-treatment-card {
    min-height: auto;
    grid-template-rows: minmax(300px, 1fr) auto;
  }

  .sage-treatment-card:nth-child(2),
  .sage-treatment-card:nth-child(4) {
    border-right: 0;
  }

  .sage-treatment-card:nth-child(1),
  .sage-treatment-card:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .sage-treatment-card__body p {
    max-width: 360px;
  }
}

@media (max-width: 820px) {
  .sage-treatments {
    padding-top: clamp(3rem, 12vw, 4.5rem);
    padding-bottom: 2.2rem;
  }

  .sage-treatments__cards {
    grid-template-columns: 1fr;
  }

  .sage-treatment-card,
  .sage-treatment-card:nth-child(2),
  .sage-treatment-card:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sage-treatment-card:last-child {
    border-bottom: 0;
  }

  .sage-treatments__title {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .sage-treatment-card {
    grid-template-rows: auto auto;
  }

  .sage-treatment-card img {
    min-height: 300px;
  }

  .sage-treatment-card__body {
    min-height: auto;
  }
}


/* ==========================================================================
   PASS R8B — Treatment text crash fix
   Scope: Treatment section title and board rhythm only.
   ========================================================================== */

.sage-treatments__title {
  max-width: 100%;
  font-size: clamp(3.6rem, 4.85vw, 5.45rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
  overflow: visible;
}

.sage-treatments__title span {
  overflow: visible;
}

.sage-treatments__intro {
  min-height: 500px;
}

.sage-treatment-card {
  min-height: 500px;
  grid-template-rows: minmax(300px, 1fr) 165px;
}

.sage-treatment-card img {
  min-height: 300px;
}

.sage-treatment-card__body {
  min-height: 165px;
}

.sage-treatments__intro .text-link {
  margin-top: 2rem;
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .sage-treatments__title {
    font-size: clamp(3.2rem, 4.3vw, 4.45rem);
  }

  .sage-treatments__intro {
    min-height: 485px;
  }

  .sage-treatment-card {
    min-height: 485px;
    grid-template-rows: minmax(290px, 1fr) 160px;
  }

  .sage-treatment-card img {
    min-height: 290px;
  }

  .sage-treatment-card__body {
    min-height: 160px;
  }
}

@media (max-width: 820px) {
  .sage-treatments__title {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }
}


/* ==========================================================================
   PASS R9A — Final premium micro-polish
   Scope: final standalone polish only. No redesign.
   ========================================================================== */

/* Header/nav: slightly calmer premium rhythm without changing structure. */
@media (min-width: 1101px) {
  .site-nav {
    gap: clamp(1.25rem, 2.15vw, 1.95rem);
  }

  .site-nav,
  .header-cta {
    font-size: 0.72rem;
  }

  .header-cta {
    letter-spacing: 0.14em;
  }
}

/* Hero proof strip: make reassurance feel less mechanical and more premium. */
.hero-proof-strip {
  border-top-color: rgba(232, 170, 122, 0.26);
  border-bottom-color: rgba(232, 170, 122, 0.26);
}

.hero-proof-strip strong {
  color: rgba(248, 239, 229, 0.94);
}

.hero-proof-strip p {
  color: rgba(248, 239, 229, 0.62);
}

/* Treatment board: final rhythm tightening after the permanent crash fix. */
.sage-treatments__intro {
  min-height: 480px;
}

.sage-treatment-card {
  min-height: 480px;
  grid-template-rows: minmax(290px, 1fr) 160px;
}

.sage-treatment-card img {
  min-height: 290px;
}

.sage-treatment-card__body {
  min-height: 160px;
  padding: 0.95rem 1rem 1rem;
}

.sage-treatment-card__body h3 {
  margin-bottom: 0.45rem;
}

.sage-treatment-card__body p {
  margin-bottom: 0.65rem;
}

.sage-treatments__intro .text-link {
  margin-top: 1.65rem;
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .sage-treatments__intro {
    min-height: 468px;
  }

  .sage-treatment-card {
    min-height: 468px;
    grid-template-rows: minmax(282px, 1fr) 154px;
  }

  .sage-treatment-card img {
    min-height: 282px;
  }

  .sage-treatment-card__body {
    min-height: 154px;
  }
}

/* Studio section: tighten feature-list rhythm without altering layout. */
.studio-flow .feature-list {
  margin-top: 1.45rem;
}

.studio-flow .feature-list div {
  padding: 0.68rem 0;
}

/* Testimonials: more polished reading density. */
.testimonials--editorial .testimonial-card p {
  line-height: 1.66;
}

.testimonials--editorial .testimonial-card strong {
  margin-top: 0.7rem;
}

/* Booking band: simplify close-out feel. */
.booking-band-section--refined .booking-band__points div {
  min-height: 88px;
}

.booking-band-section--refined .booking-band__points span {
  font-size: 1.42rem;
}

/* Inner pages: align final polish with homepage without structural changes. */
.inner-hero .page-hero-copy p:not(.eyebrow),
.service-categories--premium .section-intro p,
.contact-section--premium .form-note {
  line-height: 1.68;
}

.service-categories--premium .category-card p {
  line-height: 1.58;
}

.contact-section--premium .contact-form {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

/* Mobile final polish: prevent luxury spacing from feeling cramped. */
@media (max-width: 820px) {
  .hero-proof-strip article {
    min-height: 58px;
  }

  .sage-treatment-card__body {
    padding: 1rem;
  }

  .booking-band-section--refined .booking-band__points div {
    min-height: 76px;
  }
}


/* ==========================================================================
   PASS R9B — Mobile safety patch
   Scope: mobile/tablet safety only. No desktop redesign.
   ========================================================================== */

@media (max-width: 820px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  img,
  video,
  svg {
    max-width: 100%;
  }

  .container,
  .hero--editorial .hero-grid,
  .inner-hero .page-hero-grid,
  .sage-treatments__board,
  .split-section--stabilized .split-grid,
  .studio-flow .split-grid,
  .testimonial-grid,
  .booking-band,
  .contact-section--premium .contact-grid,
  .service-feature-grid,
  .mini-cta-panel {
    max-width: 100%;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .site-nav {
    max-height: calc(100svh - 88px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero--editorial {
    min-height: auto;
    overflow: hidden;
  }

  .hero--editorial .hero-grid {
    min-height: auto;
  }

  .hero--editorial .hero-copy {
    transform: none;
  }

  .hero--editorial .hero-visual {
    min-height: auto;
    overflow: hidden;
  }

  .hero--editorial .hero-visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-proof-strip,
  .trust-badge-grid,
  .care-band-points,
  .booking-band__points {
    min-width: 0;
  }

  .hero-proof-strip article,
  .trust-badge,
  .care-band-points article,
  .booking-band__points div {
    min-width: 0;
  }

  .hero-title,
  .sage-treatments__title,
  .section-intro h2,
  .treatment-intro h2,
  .split-copy h2,
  .approach-copy h2,
  .consultation-copy h2,
  .page-hero-copy h1,
  .thank-you-panel h1 {
    overflow-wrap: normal;
    word-break: normal;
  }

  .sage-treatments__board {
    overflow: hidden;
  }

  .sage-treatment-card {
    min-width: 0;
  }

  .sage-treatment-card img {
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 420px;
    object-fit: cover;
  }

  .sage-treatment-card__body {
    min-width: 0;
  }

  .contact-form,
  .consultation-form {
    min-width: 0;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    max-width: 100%;
    min-width: 0;
  }

  .btn,
  .header-cta,
  .text-link {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .brand-main {
    font-size: clamp(1.15rem, 6vw, 1.45rem);
  }

  .brand-sub {
    max-width: 100%;
    letter-spacing: 0.28em;
  }

  .hero-title {
    font-size: clamp(3.65rem, 18vw, 5.35rem);
  }

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

  .hero-proof-strip {
    width: 100%;
  }

  .sage-treatments__title {
    font-size: clamp(3.2rem, 16vw, 4.55rem);
  }

  .page-hero-copy h1,
  .thank-you-panel h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .site-footer,
  .thank-you-page,
  .page-hero,
  .section {
    overflow-x: hidden;
  }
}



/* Demo return link */
.jc-demo-return {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(247, 231, 219, 0.28);
  border-radius: 999px;
  background: rgba(5, 12, 10, 0.82);
  color: #f7e7db;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.jc-demo-return:hover,
.jc-demo-return:focus-visible {
  transform: translateY(-2px);
  background: #f7e7db;
  border-color: rgba(247, 231, 219, 0.5);
  color: #050c0a;
  outline: none;
}

@media (max-width: 640px) {
  .jc-demo-return {
    top: 12px;
    left: 12px;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }
}
