:root {
  --ink: #160b25;
  --ink-soft: #21122f;
  --ink-bright: #2c1740;
  --purple: #7c3aed;
  --purple-deep: #4c1d95;
  --purple-light: #a879ff;
  --gold: #f4c95d;
  --gold-hot: #ffda71;
  --paper: #f7f2e9;
  --white: #fffdf8;
  --muted: #aaa3b1;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(22, 11, 37, 0.18);
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px 5px);
  content: "";
  opacity: 0.018;
  pointer-events: none;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 12px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(22, 11, 37, 0.82);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(22, 11, 37, 0.96);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.06em;
  transform: rotate(-4deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.21em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.main-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.nav-book)::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-book {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-book:hover,
.nav-book:focus-visible {
  background: var(--gold-hot);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(42px, 6vw, 110px);
  min-height: 100svh;
  padding: clamp(140px, 16vh, 190px) clamp(20px, 6vw, 96px) clamp(76px, 10vh, 120px);
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -35%;
  right: -15%;
  z-index: -2;
  width: min(880px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.55), rgba(76, 29, 149, 0.1) 52%, transparent 70%);
  content: "";
  filter: blur(2px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.eyebrow,
.section-index {
  margin: 0 0 26px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 14px;
  padding: 7px 10px;
  background: var(--purple);
  color: white;
}

.hero-credentials {
  display: flex;
  max-width: 760px;
  margin: -8px 0 28px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  align-items: center;
  gap: 10px 18px;
  background: rgba(244, 201, 93, 0.07);
  flex-wrap: wrap;
}

.hero-credentials strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-credentials span {
  flex: 1 1 390px;
  color: rgba(247, 242, 233, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: uppercase;
}

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

h1,
h2 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 830px;
  font-size: clamp(58px, 7.4vw, 126px);
}

h2 {
  font-size: clamp(48px, 6vw, 96px);
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero-intro {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(247, 242, 233, 0.8);
  font-size: clamp(16px, 1.35vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 230px;
  padding: 18px 22px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-hot);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--ink);
  color: var(--gold);
}

.text-link,
.social-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-underline-offset: 7px;
  text-transform: uppercase;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
  margin: 62px 0 0;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  padding: 20px 18px 0 0;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-facts dt,
.visual-data span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 600px;
  padding: 24px;
  border: 1px solid rgba(244, 201, 93, 0.34);
  background: var(--ink-soft);
  box-shadow: 32px 32px 0 rgba(76, 29, 149, 0.32);
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 11, 37, 0.7) 0%, rgba(22, 11, 37, 0.08) 34%, rgba(22, 11, 37, 0.9) 100%);
  content: "";
  pointer-events: none;
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  top: 84px;
  right: -30px;
  width: 120px;
  height: 12px;
  background: var(--gold);
  content: "";
  transform: rotate(-45deg);
}

.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: contrast(1.04);
}

.hero-visual > :not(.hero-photo) {
  position: relative;
  z-index: 2;
}

.hero-visual-bottom {
  margin-top: auto;
}

.visual-topline,
.price-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
}

.signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}

.recovery-core {
  position: relative;
  display: grid;
  width: min(390px, 82%);
  aspect-ratio: 1;
  margin: 54px auto 36px;
  place-items: center;
}

.orbit,
.core-axis {
  position: absolute;
  display: block;
}

.orbit {
  inset: 0;
  border: 1px solid rgba(244, 201, 93, 0.35);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.orbit::before {
  top: 15%;
  left: 8%;
  width: 8px;
  height: 8px;
}

.orbit::after {
  right: 5%;
  bottom: 25%;
  width: 4px;
  height: 4px;
}

.orbit-two {
  inset: 14%;
  border-color: rgba(168, 121, 255, 0.55);
}

.orbit-three {
  inset: 29%;
  border: 12px solid rgba(124, 58, 237, 0.28);
}

.core-label {
  z-index: 2;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(62px, 8vw, 114px);
  letter-spacing: -0.09em;
}

.core-axis {
  background: rgba(255, 255, 255, 0.08);
}

.axis-x {
  width: 100%;
  height: 1px;
}

.axis-y {
  width: 1px;
  height: 100%;
}

.visual-data {
  display: grid;
  background: rgba(22, 11, 37, 0.6);
  backdrop-filter: blur(7px);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-data div {
  padding: 16px 10px;
}

.visual-data div + div {
  border-left: 1px solid var(--line);
}

.visual-data span,
.visual-data strong {
  display: block;
}

.visual-data strong {
  margin-top: 5px;
  font-size: 11px;
  text-transform: uppercase;
}

.visual-caption {
  margin: 18px 0 0;
  color: rgba(247, 242, 233, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 16px 0;
  animation: ticker 24s linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 17px;
  white-space: nowrap;
}

.ticker i {
  color: var(--purple-deep);
  font-size: 12px;
}

.section {
  padding: clamp(88px, 12vw, 170px) clamp(20px, 7vw, 112px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  column-gap: 60px;
  align-items: end;
  max-width: 1500px;
  margin: 0 auto 72px;
}

.section-heading .section-index {
  grid-column: 1 / -1;
}

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

.section-heading > p:last-child {
  max-width: 500px;
  margin-bottom: 4px;
  color: rgba(22, 11, 37, 0.7);
  font-size: 16px;
}

.service-section,
.rates-section {
  background: var(--paper);
  color: var(--ink);
}

.service-section h2 em,
.rates-section h2 em {
  color: var(--purple);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1500px;
  margin: 0 auto;
  border: 1px solid var(--dark-line);
}

.service-feature {
  position: relative;
  padding: clamp(34px, 5vw, 76px);
  background: var(--purple-deep);
  color: var(--paper);
  overflow: hidden;
}

.service-feature::after {
  position: absolute;
  right: -42px;
  bottom: -110px;
  color: rgba(255, 255, 255, 0.055);
  content: "MG";
  font-family: var(--display);
  font-size: 250px;
  letter-spacing: -0.1em;
}

.feature-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.card-kicker {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-feature h3 {
  max-width: 590px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 58px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-feature > p:not(.card-kicker) {
  max-width: 610px;
  color: rgba(247, 242, 233, 0.76);
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 12px 0 12px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "◆";
  font-size: 9px;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fit-grid article {
  min-height: 280px;
  padding: clamp(28px, 4vw, 54px);
  border-bottom: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.fit-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.fit-grid span {
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.fit-grid h3 {
  margin: 62px 0 13px;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.fit-grid p {
  margin-bottom: 0;
  color: rgba(22, 11, 37, 0.67);
  font-size: 13px;
}

.process-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 8vw, 140px);
  background: var(--purple-deep);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro p:last-child {
  max-width: 560px;
  color: rgba(247, 242, 233, 0.74);
}

.section-index-gold {
  color: var(--gold);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.process-list h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.process-list p {
  max-width: 700px;
  margin: 0;
  color: rgba(247, 242, 233, 0.68);
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1500px;
  margin: 0 auto;
  border: 1px solid var(--dark-line);
}

.price-card {
  min-height: 590px;
  padding: clamp(34px, 5vw, 72px);
}

.price-primary {
  background: var(--ink);
  color: var(--paper);
}

.price-group {
  color: var(--ink);
}

.price-topline {
  padding-bottom: 20px;
  border-bottom: 1px solid currentColor;
}

.price-primary .price-topline {
  color: var(--gold);
}

.price {
  margin: 74px 0 0;
  font-family: var(--display);
  font-size: clamp(72px, 8vw, 130px);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.price small {
  margin-right: 12px;
  color: var(--purple-light);
  font-family: var(--body);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.price-unit {
  margin: 14px 0 38px;
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.price-primary .price-unit {
  color: var(--gold);
}

.price-copy {
  max-width: 520px;
  min-height: 82px;
  color: rgba(22, 11, 37, 0.7);
}

.price-primary .price-copy {
  color: rgba(247, 242, 233, 0.7);
}

.price-card .button {
  margin-top: 36px;
}

.rate-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1500px;
  margin: 34px auto 0;
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
}

.rate-notes p {
  min-height: 112px;
  margin: 0;
  padding: 22px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.rate-notes strong,
.rate-notes span {
  display: block;
}

.rate-notes strong {
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rate-notes span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(52px, 8vw, 150px);
  align-items: center;
}

.profile-panel {
  position: relative;
  display: flex;
  min-height: 650px;
  padding: 34px;
  border: 1px solid rgba(244, 201, 93, 0.38);
  background: var(--ink-soft);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.profile-panel::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 11, 37, 0.18) 0%, rgba(22, 11, 37, 0.05) 42%, rgba(22, 11, 37, 0.88) 100%);
  content: "";
}

.profile-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.92) contrast(1.05);
}

.profile-status {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.profile-panel p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-copy {
  max-width: 760px;
}

.profile-copy > p:not(.section-index) {
  max-width: 650px;
  color: rgba(247, 242, 233, 0.75);
  font-size: clamp(15px, 1.3vw, 19px);
}

.profile-copy .social-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--gold);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 150px);
  background: var(--ink-soft);
}

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

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

.faq-list summary {
  display: flex;
  gap: 24px;
  padding: 27px 0;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -0.025em;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 700px;
  padding: 0 60px 30px 0;
  color: rgba(247, 242, 233, 0.7);
}

.booking-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  padding: clamp(80px, 11vw, 150px) clamp(20px, 7vw, 112px);
  background: var(--gold);
  color: var(--ink);
}

.booking-section h2 {
  font-size: clamp(50px, 6vw, 90px);
}

.booking-copy > p:last-child {
  max-width: 600px;
  margin-bottom: 0;
}

.booking-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-main {
  position: relative;
  display: flex;
  padding: clamp(26px, 4vw, 48px);
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  flex-direction: column;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.booking-main:hover,
.booking-main:focus-visible {
  transform: translate(-6px, -6px);
  box-shadow: 10px 10px 0 var(--purple);
}

.booking-main span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-main strong {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 50px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.booking-main i {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold);
  font-style: normal;
  font-size: 26px;
}

.booking-social {
  margin-top: 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-underline-offset: 7px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  padding: 34px clamp(20px, 4vw, 64px);
  align-items: center;
  background: var(--ink);
}

.footer-brand {
  font-family: var(--display);
  font-size: 25px;
  text-decoration: none;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

footer p:last-child {
  text-align: right;
}

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

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

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

@keyframes pulse {
  50% { opacity: 0.35; transform: scale(0.75); }
}

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

  .hero-visual {
    width: min(100%, 720px);
    min-height: 560px;
  }

  .service-layout,
  .process-section,
  .profile-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .profile-panel {
    width: min(100%, 720px);
    min-height: 560px;
  }

  .rate-notes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 42px;
    padding: 12px;
    border: 1px solid var(--line);
    background: transparent;
    place-content: center;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 430px);
    height: 100svh;
    padding: 110px 30px 40px;
    background: var(--purple-deep);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .main-nav .nav-book {
    margin-top: 18px;
    padding: 18px;
    border-bottom: 0;
    text-align: center;
  }

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

  .section-heading,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    margin-top: 24px;
  }

  .service-feature {
    min-height: 620px;
  }

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

  .price-card {
    min-height: 540px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer p:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .hero-facts,
  .visual-data,
  .fit-grid,
  .rate-notes {
    grid-template-columns: 1fr;
  }

  .hero-facts div + div {
    padding-left: 0;
    border-left: 0;
  }

  .hero-facts div {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    justify-content: space-between;
  }

  .hero-facts dd {
    margin: 0;
  }

  .hero-visual {
    min-height: 480px;
    padding: 18px;
    box-shadow: 14px 14px 0 rgba(76, 29, 149, 0.38);
  }

  .recovery-core {
    margin-top: 38px;
  }

  .visual-data div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .visual-data div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .visual-data strong {
    margin: 0;
  }

  .fit-grid article {
    min-height: 220px;
    border-left: 0;
  }

  .fit-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--dark-line);
  }

  .fit-grid article:last-child {
    border-bottom: 0;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
  }

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

  .price-copy {
    min-height: 0;
  }

  .profile-panel {
    min-height: 480px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .booking-main strong {
    padding-right: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* MOBILE LAYOUT HARDENING */
@media (max-width: 1100px) {
  .hero,
  .service-layout,
  .process-section,
  .profile-section,
  .faq-section,
  .section-heading,
  .booking-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero > *,
  .service-layout > *,
  .process-section > *,
  .profile-section > *,
  .faq-section > *,
  .section-heading > *,
  .booking-section > * {
    min-width: 0;
  }

  .hero-visual,
  .profile-panel,
  .profile-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

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

  .site-header,
  .hero,
  .section,
  .booking-section,
  footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .main-nav {
    max-width: 100%;
    visibility: hidden;
    pointer-events: none;
  }

  .main-nav.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  h1,
  h2,
  h3 {
    overflow-wrap: anywhere;
  }

  .ticker {
    max-width: 100vw;
  }
}

@media (max-width: 560px) {
  h2,
  .booking-section h2 {
    font-size: clamp(38px, 10.5vw, 44px);
    line-height: 0.96;
  }

  .hero {
    gap: 40px;
    padding-top: 112px;
  }

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

  .service-feature {
    min-height: auto;
  }

  .profile-panel {
    min-height: 420px;
    padding: 24px;
  }
}

/* MOBILE PROFILE HEADING FIT */
@media (max-width: 560px) {
  .profile-copy h2 {
    font-size: clamp(32px, 9vw, 36px);
    overflow-wrap: normal;
    word-break: normal;
  }
}

/* DESKTOP PROFILE HEADING FIT */
@media (min-width: 1101px) {
  .profile-copy h2 {
    font-size: clamp(48px, 4.8vw, 76px);
  }
}
