/* ==========================================
   1. Variables
========================================== */

:root {
  --inv-charcoal: #141414;
  --inv-dark-soft: #22201D;
  --inv-text: #2E2A27;
  --inv-muted: #6D675F;

  --inv-cream: #FAF9F6;
  --inv-cream-soft: #F3EDE5;
  --inv-white: #FCFBF8;
  --inv-paper: #FFFFFF;

  --inv-bronze: #B88E58;
  --inv-bronze-dark: #8D6A3D;
  --inv-champagne: #E6D1A7;
  --inv-soft: #CFC7BD;

  --inv-bronze-gradient: linear-gradient(
    90deg,
    #9D7A4C 0%,
    #CDB58E 45%,
    #F0DDB5 100%
  );
}


/* ==========================================
   2. Base
========================================== */

body {
  font-family: 'Inter', sans-serif;
  color: var(--inv-text);
  background: var(--inv-cream);
  padding-top: 70px;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', serif;
}

a {
  transition: .25s ease;
}


/* ==========================================
   3. Typography
========================================== */

.inv-label {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: .85rem;
  font-weight: 600;
  color: var(--inv-bronze);
}

.inv-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: .98;
  font-weight: 400;
  color: var(--inv-text);
  margin-bottom: 2rem;
}

.inv-heading.light {
  color: #fff8ef;
}

.inv-soft {
  color: var(--inv-soft);
}

.inv-mini-line,
.inv-line,
.inv-bronze-line {
  width: 80px;
  height: 2px;
  background: var(--inv-bronze-gradient);
}

.inv-pullquote {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.16;
  font-weight: 300;
  color: var(--inv-text);
  max-width: 420px;
}

.inv-copy {
  max-width: 620px;
}

.inv-copy .lead {
  font-size: 1.45rem;
  line-height: 1.65;
  color: var(--inv-text);
  margin-bottom: 2rem;
}

.inv-copy p {
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(46,42,39,.86);
}


/* ==========================================
   4. Buttons
========================================== */

.inv-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2.5rem;
  color: var(--inv-bronze);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  font-weight: 700;
  transition: .3s ease;
}

.inv-editorial-link i {
  transition: .3s ease;
}

.inv-editorial-link:hover {
  color: var(--inv-bronze-dark);
}

.inv-editorial-link:hover i {
  transform: translateX(6px);
}

.inv-btn-main {
  background: var(--inv-bronze-gradient);
  color: var(--inv-charcoal);
  border: 0;
  border-radius: 0;
  padding: 1.1rem 2rem;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 1rem 2.2rem rgba(0,0,0,.28);
  transition: all .25s ease;
}

.inv-btn-main:hover {
  background: linear-gradient(90deg, #8d6a3d 0%, #b59666 45%, #e6d1a7 100%);
  color: var(--inv-charcoal);
  transform: translateY(-2px);
}
.inv-btn-bronze {
  background: var(--inv-bronze-gradient);
  color: var(--inv-charcoal);
  border: 1px solid rgba(181,150,102,.7);
  border-radius: 0;
  padding: .9rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
  transition: all .25s ease;
}

.inv-btn-bronze:hover {
  background: var(--inv-bronze-dark);
  border-color: var(--inv-bronze-dark);
  color: #fff;
  transform: translateY(-2px);
}

.inv-btn-outline {
  color: var(--inv-champagne);
  border: 1px solid rgba(181,150,102,.85);
  background: transparent;
  border-radius: 0;
  padding: .9rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
  transition: all .25s ease;
}

.inv-btn-outline:hover {
  background: var(--inv-bronze-gradient);
  color: var(--inv-charcoal);
  border-color: transparent;
  transform: translateY(-2px);
}


.inv-btn-dark {
  background: transparent;
  border: 1px solid var(--inv-text);
  color: var(--inv-text);
  border-radius: 0;
  padding: .85rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
  transition: all .25s ease;
}

.inv-btn-dark:hover {
  background: var(--inv-text);
  color: #fff;
  transform: translateY(-2px);
}

.inv-section{
    position:relative;
    overflow:hidden;
    padding:7rem 0;
}

/* ==========================================
   Homepage Treatment Routes
========================================== */

.inv-treatment-routes-feature .inv-treatment-routes {
  margin-top: 4rem;
}

.inv-treatment-routes-feature .inv-treatment-route {
  position: relative;
  height: 100%;
  padding: 3.4rem 2.7rem;
  background: #201d1a;
  border: 1px solid rgba(205,181,142,.16);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.inv-treatment-routes-feature .inv-treatment-route::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(205,181,142,.12), rgba(205,181,142,0) 42%);
  pointer-events: none;
}

.inv-treatment-routes-feature .inv-treatment-route::after {
  content: "";
  position: absolute;
  top: 0;
  left: 2.7rem;
  width: 72px;
  height: 2px;
  background: var(--inv-bronze-gradient);
  transition: width .35s ease;
}

.inv-treatment-routes-feature .inv-treatment-route:hover {
  transform: translateY(-8px);
  background: #24201d;
  border-color: rgba(205,181,142,.42);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.inv-treatment-routes-feature .inv-treatment-route:hover::after {
  width: 112px;
}

.inv-treatment-routes-feature .inv-route-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--inv-bronze-gradient);
  color: #171513;
  font-size: 1.35rem;
  box-shadow:
    0 0 0 10px rgba(205,181,142,.06),
    0 12px 30px rgba(0,0,0,.18);
}

.inv-treatment-routes-feature .inv-route-goal {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  color: var(--inv-bronze);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 800;
}

.inv-treatment-routes-feature .inv-treatment-route h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 500;
  color: #fcf8f1;
}

.inv-treatment-routes-feature .inv-treatment-route p:not(.inv-route-goal) {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(252,248,241,.76);
  line-height: 1.85;
}

.inv-treatment-routes-feature .inv-route-list {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.5rem;
  border-top: 1px solid rgba(205,181,142,.16);
  border-bottom: 1px solid rgba(205,181,142,.16);
}

.inv-treatment-routes-feature .inv-route-list li {
  position: relative;
  padding: .9rem 0 .9rem 1.4rem;
  margin: 0;
  color: rgba(255,248,239,.78);
  border-bottom: 1px solid rgba(205,181,142,.12);
  line-height: 1.6;
}

.inv-treatment-routes-feature .inv-route-list li:last-child {
  border-bottom: 0;
}

.inv-treatment-routes-feature .inv-route-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--inv-bronze-gradient);
}

.inv-treatment-routes-feature .inv-treatment-route .inv-bronze-line,
.inv-treatment-routes-feature .inv-treatment-route .inv-editorial-link {
  position: relative;
  z-index: 2;
}

.inv-treatment-routes-feature .inv-treatment-route .inv-editorial-link {
  display: inline-block;
  margin-top: 0;
}

@media (max-width: 991px) {
  .inv-treatment-routes-feature .inv-treatment-route {
    padding: 3rem 2.4rem;
  }
}

@media (max-width: 767px) {
  .inv-treatment-routes-feature .inv-treatment-routes {
    margin-top: 2.5rem;
  }

  .inv-treatment-routes-feature .inv-treatment-route {
    padding: 2.8rem 2.1rem;
  }

  .inv-treatment-routes-feature .inv-route-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    font-size: 1.15rem;
  }

  .inv-treatment-routes-feature .inv-treatment-route h3 {
    font-size: 2.45rem;
  }
}

/* ==========================================
   6. Links
========================================== */

.inv-text-link {
  display: inline-block;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .85rem;
  font-weight: 600;
  color: var(--inv-bronze);
  text-decoration: none;
  transition: all .25s ease;
}

.inv-text-link:hover {
  color: var(--inv-bronze-dark);
}

.inv-dark .inv-text-link,
.inv-treatment-section .inv-text-link,
.inv-booking .inv-text-link {
  color: var(--inv-bronze);
}

.inv-dark .inv-text-link:hover,
.inv-treatment-section .inv-text-link:hover,
.inv-booking .inv-text-link:hover {
  color: #fff8ef;
}


/* ==========================================
   7. Back To Top
========================================== */

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 50%;
  background: var(--inv-charcoal);
  color: var(--inv-champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s ease, background .3s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.back-to-top:hover {
  background: var(--inv-bronze-dark);
  color: #fff;
  transform: translateY(-2px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 28px;
  height: 28px;
  pointer-events: none;
}


/* ==========================================
   8. Hero
========================================== */

.inv-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(26,24,22,.96) 0%, rgba(26,24,22,.78) 38%, rgba(26,24,22,.1) 70%),
    url("../img/rachel/invincible-hero-bg-final.webp") center right/cover no-repeat;
  color: #fff;
}

.inv-hero-copy {
  position: relative;
  z-index: 5;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.inv-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 600;
  color: #fff8ef;
  text-shadow: 0 16px 40px rgba(0,0,0,.5);
}

.inv-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
  color: var(--inv-bronze);
}

.inv-intro {
  max-width: 620px;
  font-size: 1.25rem;
  line-height: 1.85;
  color: #f0e7dc;
}

.inv-quote-simple {
  position: absolute;
  right: 3%;
  top: 49%;
  z-index: 6;
  max-width: 19rem;
  padding-left: 1.6rem;
  border-left: 1px solid rgba(181,150,102,.75);
}

.inv-quote-mark {
  display: none;
}

.inv-quote-simple p {
  font-family: 'Cormorant Garamond', serif;
  color: #fff8ef;
  font-size: 1.32rem;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.inv-quote-simple small {
  display: block;
  color: var(--inv-bronze);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .68rem;
  line-height: 1.8;
}


/* ==========================================
   9. Images
========================================== */

.inv-img {
  width: 100%;
  border-radius: 0;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
}


/* ==========================================
   10. Pillars
========================================== */
.inv-pillar{
    position:relative;
    height:100%;
    padding:3rem 2.4rem 2.8rem;
    background:#201D1A;
    border:1px solid rgba(205,181,142,.16);
    overflow:hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

/* Bronze accent */
.inv-pillar:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:72px;
    height:2px;
    background:var(--inv-bronze-gradient);
}

/* Hover */
.inv-pillar:hover{
    transform:translateY(-8px);
    background:#24201D;
    border-color:rgba(205,181,142,.45);
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.inv-pillar-number{
    display:block;
    margin-bottom:2.6rem;
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.24em;
    color:var(--inv-bronze);
    text-transform:uppercase;
}

.inv-pillar h3{
    font-family:'Cormorant Garamond',serif;
    font-weight:500;
    font-size:2.15rem;
    line-height:1.05;
    color:#FCF8F1;
    margin-bottom:1.2rem;
}

.inv-pillar p{
    color:rgba(252,248,241,.76);
    font-size:1rem;
    line-height:1.95;
    margin:0;
}/* ==========================================
   11. Homepage Treatment Routes
========================================== */

.inv-treatment-routes-feature .inv-treatment-routes {
  margin-top: 4rem;
}

.inv-treatment-routes-feature .inv-treatment-route {
  position: relative;
  height: 100%;
  padding: 3.4rem 2.7rem;
  background: #201d1a;
  border: 1px solid rgba(205,181,142,.16);
  overflow: hidden;
  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}

.inv-treatment-routes-feature .inv-treatment-route::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(205,181,142,.12), rgba(205,181,142,0) 42%);
  pointer-events: none;
}

.inv-treatment-routes-feature .inv-treatment-route::after {
  content: "";
  position: absolute;
  top: 0;
  left: 2.7rem;
  width: 72px;
  height: 2px;
  background: var(--inv-bronze-gradient);
  transition: width .35s ease;
}

.inv-treatment-routes-feature .inv-treatment-route:hover {
  transform: translateY(-8px);
  background: #24201d;
  border-color: rgba(205,181,142,.42);
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.inv-treatment-routes-feature .inv-treatment-route:hover::after {
  width: 112px;
}

.inv-treatment-routes-feature .inv-route-icon {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  margin-bottom: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--inv-bronze-gradient);
  color: #171513;
  font-size: 1.35rem;
  box-shadow:
    0 0 0 10px rgba(205,181,142,.06),
    0 12px 30px rgba(0,0,0,.18);
}

.inv-treatment-routes-feature .inv-route-goal {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
  color: var(--inv-bronze);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 800;
}

.inv-treatment-routes-feature .inv-treatment-route h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 500;
  color: #fcf8f1;
}

.inv-treatment-routes-feature .inv-treatment-route p:not(.inv-route-goal) {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(252,248,241,.76);
  line-height: 1.85;
}

.inv-treatment-routes-feature .inv-route-list {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 2rem 0 2.5rem;
  border-top: 1px solid rgba(205,181,142,.16);
  border-bottom: 1px solid rgba(205,181,142,.16);
}

.inv-treatment-routes-feature .inv-route-list li {
  position: relative;
  padding: .9rem 0 .9rem 1.4rem;
  margin: 0;
  color: rgba(255,248,239,.78);
  border-bottom: 1px solid rgba(205,181,142,.12);
  line-height: 1.6;
}

.inv-treatment-routes-feature .inv-route-list li:last-child {
  border-bottom: 0;
}

.inv-treatment-routes-feature .inv-route-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--inv-bronze-gradient);
}

.inv-treatment-routes-feature .inv-treatment-route .inv-bronze-line,
.inv-treatment-routes-feature .inv-treatment-route .inv-editorial-link {
  position: relative;
  z-index: 2;
}

.inv-treatment-routes-feature .inv-treatment-route .inv-editorial-link {
  display: inline-block;
  margin-top: 0;
}

@media (max-width: 991px) {
  .inv-treatment-routes-feature .inv-treatment-route {
    padding: 3rem 2.4rem;
  }
}

@media (max-width: 767px) {
  .inv-treatment-routes-feature .inv-treatment-routes {
    margin-top: 2.5rem;
  }

  .inv-treatment-routes-feature .inv-treatment-route {
    padding: 2.8rem 2.1rem;
  }

  .inv-treatment-routes-feature .inv-route-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    font-size: 1.15rem;
  }

  .inv-treatment-routes-feature .inv-treatment-route h3 {
    font-size: 2.45rem;
  }
}



/* ==========================================
   Editorial Image Duo
========================================== */

.inv-image-duo {
    width: 100%;
    background: #1c1a18;
    overflow: hidden;
}

.inv-image-duo-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 0;
}

.inv-image-duo-item {
    position: relative;
    overflow: hidden;
    height: clamp(520px, 48vw, 760px);
    background: #1c1a18;
}

.inv-image-duo-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.05);
}

.inv-image-duo-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(28,26,24,.26),
        rgba(28,26,24,.02)
    );
    pointer-events: none;
}

.inv-image-duo-large img {
    object-position: center center;
}

.inv-image-duo-small img {
    object-position: center center;
}

@media(max-width: 991px) {
    .inv-image-duo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .inv-image-duo-item {
        height: 560px;
    }
}

@media(max-width: 575px) {
    .inv-image-duo-grid {
        grid-template-columns: 1fr;
    }

    .inv-image-duo-item {
        height: auto;
    }

    .inv-image-duo-item img {
        height: auto;
        object-fit: contain;
    }
}
/* ==========================================
   Treatment Image Break
========================================== */

.inv-treatment-image-break {
    width: 100%;
    background: #1c1a18;
    overflow: hidden;
}

.inv-treatment-image-break img {
    display: block;
    width: 100%;
    height: clamp(420px, 52vw, 760px);
    object-fit: cover;
    object-position: center 42%;
}

@media(max-width: 991px) {
    .inv-treatment-image-break img {
        height: 560px;
        object-position: center center;
    }
}

@media(max-width: 575px) {
    .inv-treatment-image-break img {
        height: 520px;
        object-position: 48% center;
    }
}

/* ==========================================
   12. Statement
========================================== */

.inv-statement {
  padding: 5.5rem 0 6rem;
  background: var(--inv-cream-soft);
  color: var(--inv-text);
  border-top: 1px solid rgba(181,150,102,.18);
  border-bottom: 1px solid rgba(181,150,102,.18);
}

.inv-statement h2 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.18;
  letter-spacing: -.035em;
  margin-bottom: 2.5rem;
}

.inv-statement span {
  color: var(--inv-bronze-dark);
}

.inv-statement .lead {
  max-width: 760px;
  margin: 2rem auto 0;
  line-height: 1.9;
  font-size: 1.25rem;
  color: rgba(46,42,39,.88);
}
/* ==========================================
   13. Journey
========================================== */

.inv-journey {
  background: var(--inv-paper);
  color: var(--inv-text);
  overflow: hidden;
}

.inv-journey .lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(46,42,39,.78);
}

.inv-journey-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.inv-journey-path:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(181,150,102,0),
    rgba(181,150,102,.32),
    rgba(181,150,102,0)
  );
}

.inv-journey-point {
  position: relative;
  text-align: center;
  padding-top: 2.75rem;
}

.inv-journey-point:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--inv-bronze-gradient);
  box-shadow: 0 0 0 8px rgba(181,150,102,.09);
  z-index: 2;
}

.inv-journey-point span {
  display: none;
}

.inv-journey-point h3 {
  font-size: 2.05rem;
  color: var(--inv-text);
  margin-bottom: 1rem;
}

.inv-journey-point .inv-bronze-line {
  width: 42px;
  margin: 0 auto 1.4rem;
}

.inv-journey-point p {
  max-width: 245px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.95;
  color: rgba(46,42,39,.72);
}

.inv-journey-note {
  max-width: 720px;
  margin: 5rem auto 0;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--inv-bronze-dark);
}

@media (max-width: 991px) {
  .inv-journey-path {
    grid-template-columns: repeat(2,1fr);
    row-gap: 4.5rem;
  }

  .inv-journey-path:before {
    display: none;
  }
}

@media (max-width: 575px) {
  .inv-journey-path {
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-top: 4rem;
  }

  .inv-journey-point {
    padding-top: 4rem;
  }

  .inv-journey-point:before {
    width: 30px;
    height: 30px;
    box-shadow: 0 0 0 13px rgba(181,150,102,.08);
  }

  .inv-journey-point h3 {
    font-size: 2.25rem;
    margin-bottom: 1.1rem;
  }

  .inv-journey-point .inv-bronze-line {
    width: 64px;
    margin-bottom: 1.6rem;
  }

  .inv-journey-point p {
    max-width: 330px;
    font-size: 1.05rem;
    line-height: 2;
  }

  .inv-journey-note {
    margin-top: 4rem;
  }
}
/* ==========================================
   14. Areas
========================================== */

.inv-areas {
  border-top: 1px solid rgba(181,150,102,.18);
}

.inv-dark,
.inv-treatment-section,
.inv-booking {
  background: #1c1a18;
  color: #fff;
}
/* ==========================================
   13. Responsive
========================================== */

@media (max-width:991px) {

  body {
    padding-top:40px;
  }

  .inv-section {
    padding:5rem 0;
  }

  .inv-hero {
    min-height:auto;
    padding:7rem 0;
    background:
      linear-gradient(rgba(26,24,22,.84), rgba(26,24,22,.84)),
      url("../img/rachel/invincible-hero-bg-final.webp") 86% center / cover no-repeat;
  }

  .inv-hero-copy {
    padding-top:5rem;
    padding-bottom:5rem;
  }

  .inv-quote-simple {
    display:none;
  }

  .inv-journey-flow {
    grid-template-columns:repeat(2,1fr);
    row-gap:4rem;
  }

  .inv-journey-flow:before {
    display:none;
  }

}


/* ==========================================
   Tablet (576px–991px)
========================================== */

@media (min-width:576px) and (max-width:991px) {

  .inv-hero {
    background:
      linear-gradient(rgba(26,24,22,.86), rgba(26,24,22,.86)),
      url("../img/rachel/invincible-hero-bg-final.webp") 86% center / cover no-repeat;
  }

}


/* ==========================================
   Small Tablets
========================================== */

@media (max-width:768px) {

  .back-to-top {
    right:18px;
    bottom:18px;
    width:48px;
    height:48px;
  }

}


/* ==========================================
   Mobile
========================================== */

@media (max-width:575px) {

  .inv-hero {
    min-height:72vh;
    padding:4.5rem 0 3rem;
    background:
      linear-gradient(rgba(26,24,22,.58), rgba(26,24,22,.88)),
      url("../img/rachel/invincible-hero-bg-final.webp") 68% bottom / cover no-repeat;
  }

  .inv-hero-copy {
    padding-top:2.5rem;
    padding-bottom:2rem;
  }

  .inv-title {
    font-size:3.25rem;
    line-height:.95;
    max-width:18rem;
  }

  .inv-heading {
    font-size:2.5rem;
  }

  .inv-subtitle {
    font-size:1.75rem;
  }

  .inv-intro {
    font-size:1rem;
    line-height:1.7;
    max-width:22rem;
    margin-bottom:2rem !important;
  }

  .inv-btn-main {
    width:auto;
    padding:.95rem 1.4rem;
    font-size:.78rem;
  }

  .inv-statement {
    padding:4rem 0;
  }

  .inv-statement h2 {
    font-size:2.8rem;
  }

  .inv-journey-flow {
    grid-template-columns:1fr;
    gap:3rem;
  }

}
/* ==========================================
   Review Strip
========================================== */

.inv-review-strip {
    position: relative;
    padding: 4.5rem 0;
    background:
        linear-gradient(rgba(26,24,22,.94), rgba(26,24,22,.96)),
        url("../img/brand/charcoal-texture.jpg") center/cover;
    color: #fff;
    overflow: hidden;
}

.inv-review-strip .inv-label {
    color: var(--inv-bronze);
}

.inv-review-slider {
    position: relative;
    min-height: 190px;
}

.inv-review {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
}

.inv-review.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.inv-stars {
    font-size: 1rem;
    letter-spacing: .35rem;
    color: var(--inv-bronze);
}

.inv-review-quote {
    max-width: 820px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.28;
    color: #fff8ef;
    font-weight: 400;
}

.inv-review-author {
    margin-top: 1.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .78rem;
    font-weight: 700;
    color: var(--inv-bronze);
}

.inv-review-dots {
    display: flex;
    justify-content: center;
    gap: .75rem;
}

.inv-review-dots button {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(255,248,239,.32);
    transition: all .25s ease;
}

.inv-review-dots button.active,
.inv-review-dots button:hover {
    background: var(--inv-bronze);
    transform: scale(1.4);
}

@media(max-width: 575px) {
    .inv-review-strip {
        padding: 3.5rem 0;
    }

    .inv-review-slider {
        min-height: 240px;
    }

    .inv-review-quote {
        font-size: 1.8rem;
    }
}

/* ==========================================
   Treatment Hub
========================================== */

/* Inner Hero */

.inv-inner-hero {
  padding: 9rem 0 7rem;
}

.inv-inner-hero .inv-label {
  margin-bottom: 1.5rem;
}

.inv-inner-hero .inv-heading {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  line-height: .95;
  text-wrap: balance;
}

.inv-inner-hero .lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.35rem;
  line-height: 1.8;
  color: rgba(255,255,255,.78);
}

/* Hub Links */

.inv-treatment-hub-link {
  display: block;
  height: 100%;
  padding: 2rem;
  background: var(--inv-white);
  border: 1px solid rgba(181,150,102,.22);
  text-decoration: none;
  transition: all .3s ease;
}

.inv-treatment-hub-link span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--inv-text);
  margin-bottom: .7rem;
}

.inv-treatment-hub-link small {
  display: block;
  color: rgba(46,42,39,.7);
  line-height: 1.6;
}

.inv-treatment-hub-link:hover {
  transform: translateY(-6px);
  border-color: var(--inv-bronze);
  box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

/* Light Treatment Cards */

.inv-treatment-card-light {
  background: var(--inv-white);
  border: 1px solid rgba(181,150,102,.22);
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}

.inv-treatment-card-light h3 {
  color: var(--inv-text);
}

.inv-treatment-card-light p {
  color: rgba(46,42,39,.78);
}

.inv-treatment-card-light a {
  color: var(--inv-bronze);
}

.inv-treatment-card-light a:hover {
  color: var(--inv-bronze-dark);
}

/* Editorial Treatment Image */

.inv-editorial-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.inv-editorial-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.inv-editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.18),
    rgba(0,0,0,0)
  );
  pointer-events: none;
}

/* Responsive */

@media (max-width: 991px) {
  .inv-inner-hero {
    padding: 7rem 0 5rem;
  }

  .inv-inner-hero .inv-heading {
    line-height: 1;
  }

  .inv-inner-hero .lead {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .inv-inner-hero {
    padding: 6rem 0 4rem;
  }

  .inv-inner-hero .lead {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .inv-editorial-image img {
    aspect-ratio: 4 / 3;
  }
}

.inv-editorial-image-light {
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}


/* ==========================================
   Treatment-pages

========================================== */

/* Premium Treatments Page */

.inv-treatment-menu .lead{
  max-width:720px;
  margin:0 auto;
  font-size:1.18rem;
  line-height:1.9;
  color:rgba(46,42,39,.78);
}

.inv-treatment-list{
  border-top:1px solid rgba(184,142,88,.28);
}

.inv-treatment-list h3{
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem;
  font-weight:500;
  color:var(--inv-text);
  margin:0;
  padding:0 0 1.5rem;
}

.inv-treatment-list-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:2rem;
  padding:1.55rem 0;
  border-bottom:1px solid rgba(184,142,88,.22);
  color:var(--inv-text);
  text-decoration:none;
  transition:.3s ease;
}

.inv-treatment-list-item span{
  display:block;
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  line-height:1.05;
  color:var(--inv-text);
}

.inv-treatment-list-item small{
  display:block;
  margin-top:.55rem;
  font-family:'Inter',sans-serif;
  font-size:.88rem;
  line-height:1.6;
  color:rgba(46,42,39,.66);
}

.inv-treatment-list-item i{
  color:var(--inv-bronze);
  font-size:.9rem;
  transition:.3s ease;
}

.inv-treatment-list-item:hover{
  padding-left:.85rem;
  color:var(--inv-text);
  border-color:rgba(184,142,88,.48);
}

.inv-treatment-list-item:hover i{
  transform:translateX(6px);
}

.inv-treatment-guidance{
  border-top:1px solid rgba(205,181,142,.16);
}

@media(max-width:991px){
  .inv-treatment-list h3{
    font-size:2.1rem;
  }

  .inv-treatment-list-item span{
    font-size:1.75rem;
  }
}

@media(max-width:575px){
  .inv-treatment-list-item{
    gap:1rem;
    padding:1.35rem 0;
  }

  .inv-treatment-list-item span{
    font-size:1.55rem;
  }

  .inv-treatment-list-item small{
    font-size:.84rem;
  }
}

/* ==========================================
   Homepage About Rachel
========================================== */

.inv-about-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.14);
}

.inv-about-image img {
  width: 100%;
  display: block;
}

.inv-about-copy {
  max-width: 610px;
}

.inv-about-copy p:not(.inv-label) {
  line-height: 1.9;
}

.inv-about-copy .lead {
  font-size: 1.28rem;
  line-height: 1.75;
  color: var(--inv-text);
}

@media(max-width:991px) {
  .inv-about-copy {
    max-width: none;
  }
}


/* ==========================================
   Contact Page
========================================== */

/* Contact Details */

.inv-contact-details {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.inv-contact-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(181,150,102,.18);
}

.inv-contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.inv-contact-item span {
	display: block;
	margin-bottom: .75rem;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	color: var(--inv-bronze-dark);
	letter-spacing: .02em;
}

.inv-contact-item p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(46,42,39,.82);
}

.inv-contact-item a {
    color: var(--inv-text);
    text-decoration: none;
    font-weight: 500;
    transition: color .25s ease;
}

.inv-contact-item a:hover {
    color: var(--inv-bronze);
}


/* Contact Form Panel */

.inv-form-panel {
    background: var(--inv-white);
    border: 1px solid rgba(181,150,102,.18);
    padding: 3.5rem;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

.inv-form-panel h3 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--inv-text);
}

.inv-form-panel p {
    margin-bottom: 0;
    line-height: 1.8;
    color: rgba(46,42,39,.75);
}

.inv-jotform-wrap {
    margin-top: 2.5rem;
}


/* Visiting The Clinic */

.inv-location-card {
    padding: 3rem;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(181,150,102,.20);
}

.inv-location-point {
    text-align: center;
}

.inv-location-point span {
    display: block;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--inv-bronze);
}

.inv-location-point p {
    margin: 0;
    line-height: 1.8;
    color: var(--inv-soft);
}


/* Google Map */

.inv-map-panel {
    overflow: hidden;
    border: 1px solid rgba(181,150,102,.18);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.inv-map-panel iframe {
    display: block;
    width: 100%;
    border: 0;
}


/* Responsive */

@media (max-width:991px) {

    .inv-form-panel {
        padding: 2.75rem;
    }

}

@media (max-width:767px) {

    .inv-contact-details {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .inv-contact-item {
        padding-bottom: 1.5rem;
    }

    .inv-contact-item span {
        font-size: 1.3rem;
    }

    .inv-contact-item p {
        font-size: 1rem;
    }

    .inv-form-panel {
        padding: 2rem;
    }

    .inv-form-panel h3 {
        font-size: 2rem;
    }

    .inv-location-card {
        padding: 2rem;
    }

    .inv-location-point {
        margin-bottom: 2rem;
    }

    .inv-location-point:last-child {
        margin-bottom: 0;
    }

}




/* ==========================================
   14. Footer
========================================== */

.inv-footer{
    background:#171513;
    color:#fff8ef;
    padding:6rem 0 2.5rem;
}

.inv-footer-logo{
    max-width:240px;
    height:auto;
}

.inv-footer-line{
    width:90px;
    height:2px;
    margin-bottom:2rem;
    background:var(--inv-bronze-gradient);
}

.inv-footer h3{
    font-size:1.85rem;
    color:#fff8ef;
    margin-bottom:1.75rem;
}

.inv-footer p{
    color:rgba(255,248,239,.78);
    line-height:1.8;
}

.inv-footer-tagline{
    font-size:1.1rem;
    color:#fff8ef;
}

.inv-footer-copy{
    max-width:360px;
    margin-bottom:2rem;
}

.inv-footer a{
    color:rgba(255,248,239,.82);
    text-decoration:none;
    transition:all .25s ease;
}

.inv-footer a:hover{
    color:var(--inv-bronze);
    transform:translateX(3px);
}

.inv-footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.inv-footer-links li{
    margin-bottom:1rem;
}

.inv-social-links{
    display:flex;
    gap:1.25rem;
    font-size:1.35rem;
}

.inv-social-links a{
    color:rgba(255,248,239,.8);
}

.inv-social-links a:hover{
    color:var(--inv-bronze);
    transform:translateY(-2px);
}

.inv-footer-trust{
    margin-top:5rem;
    padding:1.5rem 0;
    border-top:1px solid rgba(181,150,102,.18);
    border-bottom:1px solid rgba(181,150,102,.18);

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:2rem;

    color:var(--inv-bronze);

    text-transform:uppercase;
    letter-spacing:.14em;
    font-size:.72rem;
    font-weight:700;
}

.inv-footer-bottom{
    padding-top:2rem;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:2rem;

    color:rgba(255,248,239,.65);
}

.inv-footer-legal{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:.85rem;
}

.inv-footer-legal a{
    color:rgba(255,248,239,.65);
    text-decoration:none;
    transition:all .25s ease;
}

.inv-footer-legal a:hover{
    color:var(--inv-bronze);
    transform:none;
}

.inv-footer-legal span{
    color:rgba(181,150,102,.45);
    font-size:.65rem;
}

@media (max-width:575px){

    .inv-footer{
        padding:4rem 0 2rem;
    }

    .inv-footer-bottom{
        justify-content:center;
        text-align:center;
    }

    .inv-footer-legal{
        justify-content:center;
    }

    .inv-footer-trust{
        gap:1rem;
    }

}/* Mobile */

@media (max-width: 767px) {

    .inv-consult-tab {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: 46px;

        transform: none;

        justify-content: center;

        border-radius: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;

        background: rgba(23,21,19,.96);
        box-shadow: 0 -8px 24px rgba(0,0,0,.18);
    }

    .inv-consult-tab:hover {
        width: 100%;
    }

    .inv-consult-tab i {
        width: auto;
        min-width: 0;
        height: auto;

        margin-right: .55rem;

        background: none;
        color: var(--inv-bronze);

        font-size: .78rem;
    }

    .inv-consult-tab span {
        opacity: 1;
        transform: none;

        padding: 0;

        font-size: .66rem;
        letter-spacing: .13em;
    }

    body {
        padding-bottom: 46px;
    }

    .back-to-top {
        bottom: 64px;
    }

}

/* ==========================================
   Floating Consultation Tab
========================================== */

.inv-consult-tab {

    position: fixed;

    top: 50%;
    right: 0;

    transform: translateY(-50%);

    display: flex;
    align-items: center;

    width: 56px;
    height: 56px;

    overflow: hidden;

    background: rgba(23,21,19,.96);

    border: 1px solid rgba(181,131,79,.35);
    border-right: none;

    border-radius: 18px 0 0 18px;

    color: #fff;
    text-decoration: none;

    box-shadow:
        0 14px 36px rgba(0,0,0,.22);

    transition:
        width .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;

    z-index: 1040;

}

.inv-consult-tab:hover {

    width: 250px;

    color: #fff;

    background: rgba(23,21,19,.99);

    border-color: #b5834f;

    box-shadow:
        0 22px 50px rgba(0,0,0,.30);

}

/* Icon */

.inv-consult-tab i {

    width: 56px;
    min-width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: .9rem;

    color: #171513;

    background: var(--inv-bronze-gradient);

}

/* Text */

.inv-consult-tab span {

    padding: 0 1.2rem;

    white-space: nowrap;

    text-transform: uppercase;

    letter-spacing: .14em;

    font-size: .72rem;

    font-weight: 700;

    opacity: 0;

    transform: translateX(8px);

    transition:
        opacity .2s ease .15s,
        transform .2s ease .15s;

}

.inv-consult-tab:hover span {

    opacity: 1;

    transform: translateX(0);

}


/* ==========================================
   Mobile
========================================== */

@media (max-width:767px) {

    .inv-consult-tab {

        top: auto;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: 46px;

        transform: none;

        justify-content: center;

        border-radius: 0;

        border-left: none;
        border-right: none;
        border-bottom: none;

        background: rgba(23,21,19,.97);

        box-shadow:
            0 -8px 24px rgba(0,0,0,.18);

    }

    .inv-consult-tab:hover {

        width: 100%;

    }

    .inv-consult-tab i {

        width: auto;
        min-width: auto;
        height: auto;

        margin-right: .55rem;

        background: none;

        color: var(--inv-bronze);

        font-size: .8rem;

    }

    .inv-consult-tab span {

        opacity: 1;

        transform: none;

        padding: 0;

        font-size: .66rem;

        letter-spacing: .12em;

    }

    body {

        padding-bottom: 46px;

    }

    .back-to-top {

        bottom: 62px;

    }

}
/* ==========================================
   Legal
========================================== */
.inv-legal-page{
  background:var(--inv-cream);
  color:var(--inv-text);
}

.inv-legal-hero{
  padding:8rem 0 5rem;
  background:#1C1A18;
  color:#fff8ef;
}

.inv-legal-hero .inv-heading{
  max-width:900px;
  color:#fff8ef;
}

.inv-legal-wrap{
  padding:6rem 0;
}

.inv-legal-content{
  max-width:920px;
  margin:0 auto;
  background:var(--inv-white);
  padding:4rem;
  border:1px solid rgba(205,181,142,.18);
}

.inv-legal-content h2{
  font-family:'Cormorant Garamond',serif;
  font-size:2.4rem;
  margin-top:3rem;
  margin-bottom:1rem;
  color:var(--inv-text);
}

.inv-legal-content h2:first-child{
  margin-top:0;
}

.inv-legal-content h3{
  font-family:'Cormorant Garamond',serif;
  font-size:1.7rem;
  margin-top:2rem;
  margin-bottom:.75rem;
}

.inv-legal-content p,
.inv-legal-content li{
  font-size:1rem;
  line-height:1.9;
  color:rgba(46,42,39,.82);
}

.inv-legal-content ul{
  padding-left:1.2rem;
  margin-bottom:1.8rem;
}

.inv-legal-content a{
  color:var(--inv-bronze-dark);
  font-weight:600;
}

.inv-legal-updated{
  margin-top:2rem;
  color:var(--inv-bronze);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.75rem;
  font-weight:700;
}

@media(max-width:767px){
  .inv-legal-hero{
    padding:6rem 0 4rem;
  }

  .inv-legal-wrap{
    padding:4rem 0;
  }

  .inv-legal-content{
    padding:2rem;
  }

  .inv-legal-content h2{
    font-size:2rem;
  }
}