:root {
  --black: #090909;
  --charcoal: #11110f;
  --charcoal-soft: #181714;
  --cream: #f5f0e8;
  --cream-deep: #e9dfd1;
  --white: #fffdf9;
  --gold: #cba76a;
  --gold-light: #efd39f;
  --gold-dark: #9a7440;
  --ink: #1d1914;
  --body: #5d574f;
  --line: rgba(29, 25, 20, 0.13);
  --dark-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 25px 80px rgba(20, 16, 10, 0.15);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--body);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.offcanvas-open {
  overflow: hidden;
}

::selection {
  color: var(--black);
  background: var(--gold-light);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3 {
  color: var(--ink);
}

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

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 5vw, 4.8rem);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 4px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.opening-bar {
  position: fixed;
  z-index: 1040;
  top: 0;
  right: 0;
  left: 0;
  min-height: 34px;
  padding: 6px 0;
  color: #231c12;
  background: linear-gradient(90deg, #ae824c, #e0bd7b 50%, #a97b43);
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-align: center;
}

.opening-bar strong {
  font-weight: 700;
}

.opening-bar a {
  display: inline-flex;
  font-size: 0.9rem;
}

.opening-dot {
  width: 6px;
  height: 6px;
  background: #2a2115;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(42, 33, 21, 0.12);
}

.navbar {
  top: 34px;
  min-height: 82px;
  padding: 9px 0;
  background: rgba(9, 9, 9, 0.36);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  min-height: 70px;
  background: rgba(9, 9, 9, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.navbar-brand,
.brand-mini,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0;
}

.navbar-brand img,
.brand-mini img,
.footer-brand img {
  border: 1px solid rgba(207, 172, 111, 0.48);
  border-radius: 50%;
}

.navbar-brand span,
.brand-mini span,
.footer-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar-brand strong,
.brand-mini strong,
.footer-brand strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-brand small,
.brand-mini small,
.footer-brand small {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.navbar-nav {
  gap: 8px;
}

.navbar .nav-link {
  position: relative;
  padding: 10px 12px !important;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.navbar .nav-link::after {
  position: absolute;
  right: 12px;
  bottom: 2px;
  left: 12px;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--white);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-phone {
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: var(--gold-light);
  border: 1px solid rgba(224, 190, 128, 0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-phone:hover {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: none !important;
}

.navbar-toggler span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
}

.offcanvas {
  width: min(88vw, 390px) !important;
  background:
    radial-gradient(circle at 100% 0, rgba(204, 166, 103, 0.16), transparent 36%),
    var(--black) !important;
}

.offcanvas-header {
  padding: 24px;
  border-bottom: 1px solid var(--dark-line);
}

.offcanvas-body {
  padding: 24px;
}

.mobile-nav {
  gap: 0;
}

.mobile-nav .nav-link {
  padding: 14px 0;
  color: var(--white);
  border-bottom: 1px solid var(--dark-line);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.mobile-contact {
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-line);
  border-radius: 4px;
}

.mobile-contact p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--gold-light);
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.015) 25%, transparent 25%) 0 0 / 30px 30px,
    var(--black);
}

.hero::before {
  position: absolute;
  top: 116px;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.hero .container {
  z-index: 2;
}

.hero .row {
  padding-top: 145px;
  padding-bottom: 85px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-one {
  top: 12%;
  left: -16%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(177, 132, 72, 0.13), transparent 68%);
}

.hero-glow-two {
  right: -12%;
  bottom: -25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(202, 161, 92, 0.13), transparent 68%);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold-light);
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-kicker::before {
  display: inline-block;
  width: 25px;
  height: 1px;
  content: "";
  background: currentColor;
}

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

.hero h1 {
  max-width: 740px;
  margin-bottom: 30px;
  color: var(--white);
  font-size: clamp(3.6rem, 6.1vw, 6.65rem);
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 25px;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.btn-gold {
  color: #17120c;
  background: linear-gradient(135deg, var(--gold-light), #bb8a4f);
  border: 0;
  box-shadow: 0 12px 30px rgba(197, 150, 81, 0.2);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #17120c;
  background: linear-gradient(135deg, #f7dfb2, #c99a5d);
  box-shadow: 0 15px 38px rgba(197, 150, 81, 0.28);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.hero-meta > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-meta > div + div {
  padding-left: 30px;
  border-left: 1px solid var(--dark-line);
}

.hero-meta i {
  color: var(--gold);
  font-size: 1.25rem;
}

.hero-meta span {
  display: flex;
  flex-direction: column;
  font-size: 0.73rem;
  line-height: 1.5;
}

.hero-meta strong {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  width: min(100%, 585px);
  margin-left: auto;
  padding: 21px 0 28px 30px;
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: 48px;
  bottom: 8px;
  left: 0;
  content: "";
  border: 1px solid rgba(217, 177, 108, 0.3);
  border-radius: 220px 220px 16px 16px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.85;
  background: var(--charcoal);
  border-radius: 230px 230px 12px 12px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.32));
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
}

.hero-visual:hover .hero-image-wrap img {
  transform: scale(1.025);
}

.hero-seal {
  position: absolute;
  top: 29%;
  left: -32px;
  display: flex;
  width: 106px;
  height: 106px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--gold-light);
  border: 6px solid var(--black);
  border-radius: 50%;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-seal i {
  margin: 2px 0;
  font-size: 1rem;
}

.hero-card {
  position: absolute;
  right: -20px;
  bottom: 0;
  display: flex;
  max-width: 275px;
  align-items: center;
  gap: 13px;
  padding: 15px 19px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(18, 17, 15, 0.94);
  border: 1px solid rgba(226, 190, 126, 0.25);
  border-radius: 3px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  font-size: 0.68rem;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.hero-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 50%;
  place-items: center;
  font-size: 1.1rem;
}

.hero-card span:last-child {
  display: flex;
  flex-direction: column;
}

.hero-card strong {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.73rem;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.57rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: inline-block;
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.intro-section {
  position: relative;
  padding: 105px 0;
  background: var(--cream);
}

.intro-section::after {
  position: absolute;
  right: 5%;
  bottom: -115px;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(167, 125, 68, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.intro-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.65rem, 4.4vw, 4.2rem);
}

.intro-text {
  margin-bottom: 30px;
  color: #49433b;
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2vw, 1.8rem);
  line-height: 1.45;
}

.benefit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.benefit-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  color: #5c5348;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(141, 105, 57, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.benefit-row i {
  color: var(--gold-dark);
}

.treatments-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #ebe2d6;
}

.treatments-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(94%, 1320px);
  height: 1px;
  content: "";
  background: rgba(75, 60, 40, 0.12);
  transform: translateX(-50%);
}

.section-heading {
  width: min(100%, 790px);
  margin: 0 auto 56px;
}

.section-heading p {
  max-width: 680px;
  margin: 0 auto;
}

.treatment-tabs {
  position: relative;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(86, 67, 42, 0.12);
  box-shadow: var(--shadow);
}

.treatment-tabs .nav-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  background: var(--charcoal);
}

.treatment-tabs .nav-item + .nav-item {
  border-left: 1px solid var(--dark-line);
}

.treatment-tabs .nav-link {
  display: flex;
  width: 100%;
  min-height: 102px;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border-radius: 0;
  text-align: left;
  transition: color 0.25s ease, background 0.25s ease;
}

.treatment-tabs .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.treatment-tabs .nav-link.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), #bb8a4f);
}

.treatment-tabs .nav-link > i {
  flex: 0 0 auto;
  font-size: 1.6rem;
}

.treatment-tabs .nav-link span {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.treatment-tabs .nav-link small {
  margin-top: 5px;
  opacity: 0.65;
  font-size: 0.63rem;
  font-weight: 500;
}

.tab-content {
  padding: 36px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.treatment-grid.three-items {
  grid-template-columns: repeat(3, 1fr);
}

.treatment-card {
  position: relative;
  min-height: 238px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid rgba(99, 76, 45, 0.12);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold-dark);
  transition: width 0.35s ease;
}

.treatment-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(46, 35, 20, 0.1);
  transform: translateY(-5px);
}

.treatment-card:hover::after {
  width: 100%;
}

.treatment-card > span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
}

.treatment-card h3 {
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.treatment-card p {
  margin: 0;
  color: #686057;
  font-size: 0.77rem;
  line-height: 1.7;
}

.treatment-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(99, 76, 45, 0.12);
}

.treatment-note > i {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.treatment-note p {
  margin: 0;
  font-size: 0.77rem;
}

.treatment-note a {
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 700;
  white-space: nowrap;
}

.treatment-note a i {
  margin-left: 5px;
  color: var(--gold-dark);
}

.experience-section {
  position: relative;
  min-height: 780px;
  padding: 125px 0;
  background-image: url("../assets/img/recovery-space.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.experience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.34), rgba(7, 7, 7, 0.78) 56%, rgba(7, 7, 7, 0.92));
}

.experience-panel {
  padding: 54px;
  color: rgba(255, 255, 255, 0.63);
  background: rgba(10, 10, 9, 0.78);
  border: 1px solid rgba(225, 187, 120, 0.25);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.experience-panel h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.8rem, 4.8vw, 4.7rem);
}

.experience-panel > p {
  margin-bottom: 32px;
}

.experience-points > div {
  display: grid;
  grid-template-columns: 49px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-top: 1px solid var(--dark-line);
}

.experience-points > div:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.experience-points span {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--gold-light);
  border: 1px solid rgba(226, 191, 130, 0.33);
  border-radius: 50%;
  place-items: center;
}

.experience-points p {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.65;
}

.experience-points strong {
  margin-bottom: 2px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(239, 211, 159, 0.4);
}

.text-link:hover {
  color: var(--white);
}

.steps-section {
  padding: 120px 0;
  background: var(--cream);
}

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

.btn-outline-dark-custom {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(29, 25, 20, 0.4);
}

.btn-outline-dark-custom:hover,
.btn-outline-dark-custom:focus {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.step-list {
  counter-reset: step;
}

.step-card {
  position: relative;
  min-height: 310px;
  padding: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--line);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.step-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(174, 130, 73, 0.2);
  border-radius: 50%;
}

.step-card:hover {
  color: rgba(255, 255, 255, 0.62);
  background: var(--charcoal);
  transform: translateY(-6px);
}

.step-card > span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
}

.step-card > i {
  display: block;
  margin: 42px 0 22px;
  color: var(--gold-dark);
  font-size: 2rem;
}

.step-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.step-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.75;
}

.step-card:hover h3 {
  color: var(--white);
}

.step-card:hover > span,
.step-card:hover > i {
  color: var(--gold-light);
}

.faq-section {
  padding: 120px 0;
  background: #e8ded1;
}

.faq-intro {
  max-width: 480px;
  margin-bottom: 34px;
}

.faq-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.faq-phone > span:first-child {
  display: grid;
  width: 49px;
  height: 49px;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  place-items: center;
  transition: background 0.25s ease;
}

.faq-phone:hover > span:first-child {
  background: var(--gold-dark);
}

.faq-phone > span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-phone small {
  color: #71685d;
  font-size: 0.68rem;
  font-weight: 500;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: rgba(68, 52, 34, 0.18);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-bg: transparent;
  --bs-accordion-active-color: var(--ink);
}

.accordion-item {
  border-right: 0;
  border-left: 0;
}

.accordion-button {
  padding: 24px 48px 24px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none !important;
}

.accordion-button::after {
  width: 32px;
  height: 32px;
  margin-right: 4px;
  background-image: none;
  border: 1px solid rgba(73, 55, 33, 0.3);
  border-radius: 50%;
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.accordion-button:not(.collapsed)::after {
  color: var(--cream);
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  content: "−";
  transform: none;
}

.accordion-body {
  max-width: 700px;
  padding: 0 50px 25px 0;
  color: #625b53;
  font-size: 0.86rem;
  line-height: 1.8;
}

.contact-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--charcoal);
}

.contact-section::before {
  position: absolute;
  top: -220px;
  left: -220px;
  width: 650px;
  height: 650px;
  content: "";
  background: radial-gradient(circle, rgba(190, 144, 78, 0.12), transparent 66%);
}

.contact-shell {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #1a1916;
  border: 1px solid rgba(224, 187, 122, 0.2);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
}

.contact-info {
  padding: 58px;
  color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(150deg, rgba(206, 169, 105, 0.08), transparent 48%),
    #0d0d0c;
}

.contact-info h2 {
  color: var(--white);
  font-size: clamp(3rem, 4.6vw, 4.7rem);
}

.contact-list {
  margin: 34px 0;
}

.contact-list a {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-top: 1px solid var(--dark-line);
}

.contact-list a:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.contact-list a > span:first-child {
  display: grid;
  width: 40px;
  height: 40px;
  color: var(--gold-light);
  border: 1px solid rgba(225, 188, 124, 0.25);
  border-radius: 50%;
  place-items: center;
  transition: color 0.25s ease, background 0.25s ease;
}

.contact-list a:hover > span:first-child {
  color: var(--black);
  background: var(--gold-light);
}

.contact-list a > span:last-child,
.opening-callout span {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-size: 0.79rem;
  font-weight: 600;
}

.contact-list small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.65rem;
  font-weight: 400;
}

.opening-callout {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), #bd8e54);
}

.opening-callout > i {
  font-size: 1.6rem;
}

.opening-callout span {
  color: rgba(25, 20, 13, 0.72);
  font-size: 0.67rem;
}

.opening-callout strong {
  color: var(--black);
  font-size: 0.75rem;
}

.contact-form-wrap {
  padding: 58px;
  background: var(--cream);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading span {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 600;
}

.form-heading p {
  margin: 0;
  font-size: 0.76rem;
}

.form-label {
  margin-bottom: 7px;
  color: #544d44;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.form-control,
.form-select {
  min-height: 51px;
  padding: 12px 14px;
  color: var(--ink);
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(62, 49, 33, 0.2);
  border-radius: 2px;
  font-size: 0.79rem;
  box-shadow: none !important;
}

textarea.form-control {
  min-height: 118px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  background-color: var(--white);
  border-color: var(--gold-dark);
}

.form-control::placeholder {
  color: #999084;
}

.form-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #777067;
  font-size: 0.66rem;
}

.map-wrap {
  position: relative;
  z-index: 2;
  height: 350px;
  margin-top: 26px;
  overflow: hidden;
  background: #28241e;
  border: 1px solid rgba(224, 187, 122, 0.2);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) sepia(0.18) contrast(0.92);
}

.map-button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  color: var(--black);
  background: var(--gold-light);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.7rem;
  font-weight: 700;
}

.footer {
  padding: 0 0 26px;
  color: rgba(255, 255, 255, 0.5);
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 48px 0;
  border-bottom: 1px solid var(--dark-line);
}

.footer-brand small {
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.71rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social a {
  display: grid;
  width: 41px;
  height: 41px;
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  place-items: center;
  transition: color 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  color: var(--black);
  background: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  font-size: 0.64rem;
}

.footer-bottom a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(239, 211, 159, 0.35);
}

.back-to-top {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: var(--gold-light);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-booking {
  display: none;
}

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

@media (max-width: 1199.98px) {
  .navbar .container {
    max-width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .navbar .nav-link {
    padding-right: 9px !important;
    padding-left: 9px !important;
    font-size: 0.72rem;
  }

  .nav-phone {
    font-size: 0.7rem;
  }

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

  .hero-card {
    right: 0;
  }

  .treatment-card {
    padding: 24px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 45px;
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 94px;
  }

  .navbar {
    min-height: 72px;
  }

  .navbar-brand img {
    width: 49px;
    height: 49px;
  }

  .hero::before,
  .scroll-cue {
    display: none;
  }

  .hero .row {
    min-height: auto !important;
    padding-top: 170px;
    padding-bottom: 95px;
  }

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

  .hero h1 {
    max-width: 780px;
    font-size: clamp(4.1rem, 9vw, 6.4rem);
  }

  .hero-lead {
    max-width: 700px;
  }

  .hero-visual {
    width: min(90%, 620px);
    margin: 15px auto 0;
  }

  .hero-image-wrap {
    aspect-ratio: 1.08;
    border-radius: 260px 260px 12px 12px;
  }

  .hero-seal {
    left: -22px;
  }

  .intro-section,
  .treatments-section,
  .steps-section,
  .faq-section,
  .contact-section {
    padding: 90px 0;
  }

  .treatment-tabs .nav-pills {
    grid-template-columns: repeat(2, 1fr);
  }

  .treatment-tabs .nav-item:nth-child(3) {
    border-top: 1px solid var(--dark-line);
    border-left: 0;
  }

  .treatment-tabs .nav-item:nth-child(4) {
    border-top: 1px solid var(--dark-line);
  }

  .treatment-grid,
  .treatment-grid.three-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-section {
    min-height: auto;
    padding: 90px 0;
    background-attachment: scroll;
  }

  .experience-overlay {
    background: rgba(7, 7, 7, 0.73);
  }

  .contact-info,
  .contact-form-wrap {
    padding: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 64px;
    font-size: 15px;
  }

  .opening-bar {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 0.64rem;
  }

  .opening-bar .opening-dot,
  .opening-bar span span {
    display: none;
  }

  .navbar {
    top: 30px;
    min-height: 66px;
    padding: 7px 0;
  }

  .navbar.scrolled {
    min-height: 62px;
  }

  .navbar .container {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .navbar-brand strong {
    font-size: 1.2rem;
  }

  .navbar-brand small {
    font-size: 0.52rem;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.84) 52%, rgba(8, 8, 8, 0.96) 100%),
      url("../assets/img/treatment-room.webp") center / cover no-repeat;
  }

  .hero .row {
    padding-top: 136px;
    padding-bottom: 78px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 17px;
    font-size: 0.63rem;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.35rem, 15vw, 4.75rem);
  }

  .hero-lead {
    margin-bottom: 27px;
    font-size: 0.94rem;
  }

  .hero-actions {
    margin-bottom: 32px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-meta {
    gap: 14px;
  }

  .hero-meta > div {
    min-width: calc(50% - 8px);
  }

  .hero-meta > div + div {
    padding-left: 14px;
  }

  .hero-visual {
    display: none;
  }

  h2,
  .intro-section h2,
  .experience-panel h2,
  .contact-info h2 {
    font-size: clamp(2.65rem, 12.2vw, 3.65rem);
  }

  .intro-section,
  .treatments-section,
  .steps-section,
  .faq-section,
  .contact-section {
    padding: 72px 0;
  }

  .intro-text {
    font-size: 1.28rem;
  }

  .benefit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading {
    margin-bottom: 36px;
    text-align: left !important;
  }

  .section-heading .section-kicker {
    justify-content: flex-start !important;
  }

  .section-heading p {
    margin-left: 0;
  }

  .treatment-tabs {
    margin-right: -12px;
    margin-left: -12px;
  }

  .treatment-tabs .nav-pills {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
  }

  .treatment-tabs .nav-item,
  .treatment-tabs .nav-item:nth-child(3),
  .treatment-tabs .nav-item:nth-child(4) {
    min-width: 176px;
    border-top: 0;
    border-left: 1px solid var(--dark-line);
    scroll-snap-align: start;
  }

  .treatment-tabs .nav-item:first-child {
    border-left: 0;
  }

  .treatment-tabs .nav-link {
    min-height: 92px;
    padding: 14px;
  }

  .tab-content {
    padding: 16px;
  }

  .treatment-grid,
  .treatment-grid.three-items {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .treatment-card {
    min-height: auto;
    padding: 23px;
  }

  .treatment-card > span {
    margin-bottom: 24px;
  }

  .treatment-note {
    grid-template-columns: auto 1fr;
    margin-right: -12px;
    margin-left: -12px;
    padding: 18px;
  }

  .treatment-note a {
    grid-column: 2;
  }

  .experience-section {
    padding: 70px 0;
    background-position: 31% center;
  }

  .experience-panel {
    padding: 31px 24px;
  }

  .steps-section .text-lg-end {
    margin-top: 22px;
  }

  .step-card {
    min-height: 260px;
    padding: 28px;
  }

  .step-card > i {
    margin: 30px 0 18px;
  }

  .faq-intro {
    margin-bottom: 26px;
  }

  .accordion-button {
    padding: 20px 0;
    font-size: 1.25rem;
  }

  .accordion-button::after {
    width: 29px;
    height: 29px;
    line-height: 25px;
  }

  .accordion-body {
    padding-right: 0;
  }

  .contact-section .container {
    padding-right: 12px;
    padding-left: 12px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 34px 23px;
  }

  .form-heading span {
    font-size: 1.95rem;
  }

  .contact-form-wrap .btn {
    width: 100%;
  }

  .map-wrap {
    height: 310px;
  }

  .map-button {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

  .footer {
    padding-bottom: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 38px 0;
  }

  .footer-brand img {
    width: 55px;
    height: 55px;
  }

  .footer-brand strong {
    font-size: 1.13rem;
  }

  .footer-links {
    gap: 15px 20px;
  }

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

  .back-to-top {
    right: 14px;
    bottom: 77px;
  }

  .mobile-booking {
    position: fixed;
    z-index: 1030;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), #b8864b);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.23);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 399.98px) {
  .opening-bar strong {
    display: inline;
  }

  .hero .row {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 3.15rem;
  }

  .hero-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-meta > div + div {
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid var(--dark-line);
    border-left: 0;
  }

  .footer-brand span {
    display: none;
  }
}

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

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

  .experience-section {
    background-attachment: scroll;
  }
}
