:root {
    --cream: #f4f0e9;
    --cream-soft: #faf8f4;
    --sand: #d9caba;
    --sage: #768377;
    --sage-dark: #58665b;
    --ink: #1f2420;
    --muted: #737873;
    --white: #ffffff;
    --border: rgba(31, 36, 32, .12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--cream-soft);
    overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
    font-family: "Italiana", serif;
    font-weight: 400;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

button.navbar-toggler.border-0.shadow-none.collapsed {
    padding: 0;
}

.container.hero-tiempo {
    padding: 0px 10px;
}

/* =====================================================
       NAVBAR
    ===================================================== */

.navbar-premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: .4s ease;
}

.navbar-premium.scrolled {
    padding: 13px 0;
    background: rgba(250, 248, 244, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.brand {
    font-family: "Italiana", serif;
    font-size: 27px;
    color: var(--ink);
    letter-spacing: 2px;
}

.brand span {
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    display: block;
    letter-spacing: 5px;
    margin-top: -4px;
    color: var(--muted);
}

.nav-link {
    font-size: 13px;
    color: var(--ink) !important;
    padding: 10px 16px !important;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 3px;
    height: 1px;
    background: var(--ink);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/* =====================================================
       BUTTONS
    ===================================================== */

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 15px 23px;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--ink);
    transform: translateY(102%);
    transition: .35s ease;
}

.btn-premium span,
.btn-premium i {
    position: relative;
    z-index: 2;
}

.btn-premium:hover {
    color: var(--white);
}

.btn-premium:hover::before {
    transform: translateY(0);
}

.btn-dark-premium {
    background: var(--ink);
    color: white;
}

.btn-dark-premium::before {
    background: var(--sage);
}


/* =====================================================
       HERO
    ===================================================== */

.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%,
            rgba(217, 202, 186, .28),
            transparent 36%),
        var(--cream-soft);
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sage-dark);
    margin-bottom: 28px;
}

.hero-kicker::before {
    content: "";
    width: 42px;
    height: 1px;
    background: var(--sage);
}

.hero-title {
    font-size: clamp(64px, 7vw, 118px);
    line-height: .88;
    letter-spacing: -3px;
    max-width: 760px;
}

.hero-title .italic-word {
    font-style: italic;
    color: var(--sage);
}

.hero-description {
    max-width: 480px;
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image-wrap {
    position: relative;
    min-height: 700px;
}

.hero-image-main {
    position: absolute;
    width: 73%;
    height: 590px;
    right: 0;
    top: 15px;
    object-fit: cover;
    border-radius: 200px 200px 15px 15px;
}

.hero-image-small {
    position: absolute;
    width: 42%;
    height: 275px;
    object-fit: cover;
    left: 0;
    bottom: 30px;
    border: 12px solid var(--cream-soft);
}

.floating-circle {
    position: absolute;
    width: 142px;
    height: 142px;
    right: 58%;
    top: 85px;
    border-radius: 50%;
    border: 1px solid rgba(88, 102, 91, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(250, 248, 244, .7);
    backdrop-filter: blur(10px);
    z-index: 5;
    animation: floatCircle 4s ease-in-out infinite;
}

.floating-circle span {
    width: 82px;
    text-align: center;
    font-family: "Italiana";
    font-size: 15px;
    line-height: 1.4;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.vertical-text {
    position: absolute;
    right: -25px;
    bottom: 20%;
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
}


/* =====================================================
       INTRO STRIP
    ===================================================== */

.experience-strip {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--cream);
}

.marquee {
    display: flex;
    width: max-content;
    animation: marqueeMove 24s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-right: 36px;
    font-family: "Italiana";
    font-size: 25px;
    white-space: nowrap;
}

.marquee-item i {
    font-size: 8px;
    color: var(--sage);
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =====================================================
       SHARED
    ===================================================== */

.section-space {
    padding: 125px 0;
}

.eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sage-dark);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(46px, 5vw, 78px);
    line-height: 1.02;
    letter-spacing: -1.5px;
}

.section-description {
    color: var(--muted);
    line-height: 1.85;
    max-width: 560px;
}


/* =====================================================
       PHILOSOPHY
    ===================================================== */

.philosophy-image {
    height: 630px;
    width: 100%;
    object-fit: cover;
}

.stat-box {
    padding: 26px 0;
    border-top: 1px solid var(--border);
}

.stat-number {
    font-family: "Italiana";
    font-size: 42px;
}

.stat-label {
    color: var(--muted);
    font-size: 12px;
}


/* =====================================================
       SERVICES
    ===================================================== */

.services-section {
    background: var(--ink);
    color: var(--white);
}

.services-section .eyebrow,
.services-section .section-description {
    color: rgba(255, 255, 255, .56);
}

.treatment-card {
    min-height: 470px;
    position: relative;
    overflow: hidden;
    background: #2b302c;
    cursor: pointer;
}

.treatment-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2, .75, .25, 1);
}

.treatment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(18, 22, 19, .92),
            rgba(18, 22, 19, .08) 70%);
}

.treatment-card:hover img {
    transform: scale(1.07);
}

.treatment-content {
    position: absolute;
    z-index: 3;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.treatment-number {
    font-size: 10px;
    letter-spacing: 2px;
    opacity: .65;
    margin-bottom: 10px;
}

.treatment-content h3 {
    font-size: 31px;
    margin: 0;
}

.treatment-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding-top: 18px;
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 1px;
}


/* =====================================================
       EXPERIENCE
    ===================================================== */

.experience-card {
    background: var(--cream);
    padding: 55px 42px;
    height: 100%;
    transition: .35s ease;
    border: 1px solid transparent;
}

.experience-card:hover {
    background: transparent;
    border-color: var(--border);
    transform: translateY(-8px);
}

.experience-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    margin-bottom: 55px;
    font-size: 20px;
}

.experience-card h3 {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 13px;
}

.experience-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =====================================================
       IMAGE BREAK
    ===================================================== */

.image-break {
    height: 76vh;
    overflow: hidden;
    position: relative;
}

.image-break img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    position: absolute;
    top: -10%;
}

.image-break-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(20, 26, 22, .18);
    text-align: center;
    color: white;
}

.image-break-overlay h2 {
    font-size: clamp(55px, 8vw, 120px);
    line-height: .9;
    max-width: 1000px;
    text-shadow: 0 5px 40px rgba(0, 0, 0, .12);
}


/* =====================================================
       JOURNEY
    ===================================================== */

.journey-step {
    display: grid;
    grid-template-columns: 90px 1fr 35px;
    gap: 25px;
    padding: 33px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.journey-step:hover {
    padding-left: 12px;
}

.journey-step .number {
    font-size: 11px;
    color: var(--sage);
}

.journey-step h3 {
    font-family: "DM Sans";
    font-size: clamp(21px, 2vw, 29px);
    font-weight: 400;
    margin: 0;
}

.journey-step i {
    transition: .3s ease;
}

.journey-step:hover i {
    transform: rotate(45deg);
}


/* =====================================================
       TESTIMONIAL
    ===================================================== */

.testimonial-section {
    background: var(--sage);
    color: white;
}

.quote-mark {
    font-family: "Italiana";
    font-size: 115px;
    line-height: .5;
    opacity: .35;
}

.testimonial-text {
    font-family: "Italiana";
    font-size: clamp(32px, 4vw, 58px);
    line-height: 1.25;
    max-width: 960px;
}

.testimonial-author {
    margin-top: 35px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .8;
}


/* =====================================================
       FAQ
    ===================================================== */

.accordion-item {
    border: 0;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.accordion-button {
    padding: 26px 0;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 16px;
    color: var(--ink) !important;
}

.accordion-body {
    padding: 0 0 28px 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 760px;
}


/* =====================================================
       CTA
    ===================================================== */

.final-cta {
    background: var(--cream);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(88, 102, 91, .17);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.final-cta::after {
    content: "";
    position: absolute;
    width: 690px;
    height: 690px;
    border: 1px solid rgba(88, 102, 91, .09);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.final-cta-content {
    position: relative;
    z-index: 3;
}

.final-cta h2 {
    font-size: clamp(58px, 7vw, 105px);
    line-height: .94;
    max-width: 850px;
    margin: auto;
}


/* =====================================================
       FOOTER
    ===================================================== */

footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .65);
    padding: 80px 0 30px;
}

.footer-brand {
    color: white;
    font-family: "Italiana";
    font-size: 38px;
}

footer a {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    transition: .25s;
}

footer a:hover {
    color: white;
}

.footer-line {
    margin-top: 65px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 22px;
    font-size: 11px;
}


/* =====================================================
       WHATSAPP
    ===================================================== */

.whatsapp-btn {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 24px;
    right: 24px;
    background: var(--ink);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
    transition: .3s;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    background: var(--sage);
    color: white;
}


/* =====================================================
       ANIMATION INITIAL STATES
    ===================================================== */

.reveal-up {
    opacity: 0;
    transform: translateY(45px);
}

.reveal-image {
    overflow: hidden;
}


/* =====================================================
       RESPONSIVE
    ===================================================== */

@media (max-width: 991px) {

    .navbar-premium {
        background: rgba(250, 248, 244, .95);
    }

    .navbar-collapse {
        padding: 22px 0;
    }

    .hero {
        padding-top: 155px;
        padding-bottom: 80px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .hero-image-wrap {
        min-height: 600px;
        margin-top: 55px;
    }

    .hero-image-main {
        width: 75%;
        height: 500px;
    }

    .hero-image-small {
        width: 45%;
        height: 230px;
    }

    .floating-circle {
        right: auto;
        left: 4%;
    }

    .vertical-text {
        display: none;
    }

    .section-space {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {

    .hero-title {
        font-size: 59px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-premium {
        width: 100%;
    }

    .hero-image-wrap {
        min-height: 510px;
    }

    .hero-image-main {
        width: 82%;
        height: 430px;
    }

    .hero-image-small {
        width: 47%;
        height: 185px;
        bottom: 5px;
    }

    .floating-circle {
        width: 105px;
        height: 105px;
        top: 50px;
    }

    .floating-circle span {
        font-size: 12px;
    }

    .philosophy-image {
        height: 450px;
        margin-bottom: 45px;
    }

    .treatment-card {
        min-height: 430px;
    }

    .image-break {
        height: 62vh;
    }

    .journey-step {
        grid-template-columns: 48px 1fr 25px;
    }

    .final-cta {
        padding: 105px 0;
    }
}

.video-spa {
    width: 100%;
    height: 500px;
    object-fit: cover;
    
    display: block;
}

/* section services */

/* =====================================================
   MINI SERVICES STRIP
===================================================== */

.service-strip {
  padding: 22px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mini-service-card {
  position: relative;
  min-height: 270px;
  padding: 24px 22px;
  background: rgba(255, 255, 255, .35);
  border: 1px solid rgba(31, 36, 32, .10);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
  overflow: hidden;
}

/* detalle decorativo */
.mini-service-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  right: -55px;
  top: -55px;
  border: 1px solid rgba(88, 102, 91, .15);
  transition: .45s ease;
}

.mini-service-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.72);
  border-color: rgba(88, 102, 91, .25);
  box-shadow: 0 18px 45px rgba(31, 36, 32, .07);
}

.mini-service-card:hover::before {
  width: 145px;
  height: 145px;
  right: -65px;
  top: -65px;
}


/* TOP */

.mini-service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.mini-service-top span {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--muted);
}

.mini-service-top > i {
  font-size: 11px;
  color: var(--sage);
}


/* TITLE */

.mini-service-card h3 {
  font-family: "Italiana", serif;
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--ink);
}


/* ICON */

.mini-service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(88, 102, 91, .25);
  margin-bottom: 22px;

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease;
}

.mini-service-icon i {
  font-size: 18px;
  color: var(--sage-dark);
}

.mini-service-card:hover .mini-service-icon {
  background: var(--sage);
  transform: rotate(-8deg);
}

.mini-service-card:hover .mini-service-icon i {
  color: white;
}


/* DESCRIPTION */

.mini-service-card p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 210px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

  .service-strip {
    padding: 20px 0;
  }

  .mini-service-card {
    min-height: 250px;
  }

}

@media (max-width: 575px) {

  .mini-service-card {
    min-height: 230px;
    padding: 20px 18px;
  }

  .mini-service-card h3 {
    font-size: 22px;
  }

}

/* =====================================================
   TESTIMONIAL PREMIUM SLIDER
===================================================== */

.testimonial-section {
  position: relative;
  overflow: hidden;

  background: var(--sage);
  color: white;
}


.testimonial-section::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -180px;
  top: -230px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.12);
}


.testimonial-section::after {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  right: -80px;
  top: -140px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.10);
}


.testimonial-section .container {
  position: relative;
  z-index: 2;
}



/* =====================================================
   TOP
===================================================== */

.testimonial-slider-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 55px;
}


.testimonial-rating {
  display: flex;
  align-items: center;

  gap: 18px;
}


.testimonial-stars {
  display: flex;
  gap: 6px;
}


.testimonial-stars i {
  font-size: 13px;
  color: #f2dfad;
}


.testimonial-rating > span {
  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 2.5px;

  color: rgba(255,255,255,.65);
}



/* =====================================================
   CONTROLS
===================================================== */

.testimonial-controls {
  display: flex;

  align-items: center;

  gap: 16px;
}


.testimonial-arrow {
  width: 50px;
  height: 50px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.25);

  background: transparent;

  color: white;

  display: grid;
  place-items: center;

  font-size: 16px;

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease,
    border-color .35s ease;
}


.testimonial-arrow:hover {
  background: white;
  color: var(--sage-dark);

  border-color: white;

  transform: scale(1.05);
}


.testimonial-arrow:active {
  transform: scale(.94);
}



.testimonial-counter {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  min-width: 78px;

  font-size: 9px;

  letter-spacing: 2px;

  color: rgba(255,255,255,.55);
}


#testimonialCurrent {
  color: white;
}


.testimonial-counter-line {
  width: 20px;
  height: 1px;

  background: rgba(255,255,255,.25);
}



/* =====================================================
   CAROUSEL
===================================================== */

.testimonial-carousel {
  overflow: hidden;
}


.testimonial-carousel .carousel-item {
  transition:
    transform .8s cubic-bezier(.65,0,.35,1),
    opacity .55s ease;
}


.testimonial-slide {
  min-height: 400px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;
}



/* =====================================================
   QUOTE
===================================================== */

.quote-mark {
  font-family: "Italiana", serif;

  font-size: 120px;

  line-height: .45;

  opacity: .25;

  margin-bottom: 20px;
}


.testimonial-text {
  font-family: "Italiana", serif;

  font-size: clamp(36px, 4.5vw, 62px);

  line-height: 1.2;

  max-width: 1050px;

  letter-spacing: -.5px;
}



/* =====================================================
   AUTHOR
===================================================== */

.testimonial-footer {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 30px;

  margin-top: 55px;

  padding-top: 28px;

  border-top: 1px solid rgba(255,255,255,.18);
}


.testimonial-person {
  display: flex;

  align-items: center;

  gap: 16px;
}


.testimonial-avatar {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,.25);

  background: rgba(255,255,255,.08);

  font-family: "Italiana", serif;

  font-size: 14px;
}


.testimonial-author {
  font-size: 11px;

  letter-spacing: 1.8px;

  text-transform: uppercase;

  color: white;
}


.testimonial-role {
  margin-top: 5px;

  font-size: 11px;

  color: rgba(255,255,255,.55);
}


.testimonial-verified {
  display: flex;

  align-items: center;

  gap: 9px;

  font-size: 9px;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: rgba(255,255,255,.6);
}


.testimonial-verified i {
  font-size: 14px;

  color: #f2dfad;
}



/* =====================================================
   SLIDE CONTENT ANIMATION
===================================================== */

.carousel-item .testimonial-slide > * {
  opacity: 0;

  transform: translateY(22px);
}


.carousel-item.active .testimonial-slide > * {
  animation: testimonialContentIn .75s ease forwards;
}


.carousel-item.active .testimonial-slide > *:nth-child(2) {
  animation-delay: .08s;
}


.carousel-item.active .testimonial-slide > *:nth-child(3) {
  animation-delay: .18s;
}


@keyframes testimonialContentIn {

  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 767px) {

  .testimonial-slider-top {
    flex-direction: column;

    align-items: flex-start;

    margin-bottom: 45px;
  }


  .testimonial-controls {
    width: 100%;

    justify-content: space-between;
  }


  .testimonial-rating {
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
  }


  .testimonial-text {
    font-size: 37px;
  }


  .quote-mark {
    font-size: 95px;
  }


  .testimonial-footer {
    flex-direction: column;

    align-items: flex-start;

    margin-top: 40px;
  }


  .testimonial-slide {
    min-height: 460px;
  }

}

/* =====================================================
   FAQ PREMIUM BACKGROUND
===================================================== */

.faq-section {
  position: relative;

  overflow: hidden;

  background: var(--cream);
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.faq-background {
  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      90deg,
      rgba(244, 240, 233, .96) 0%,
      rgba(231, 234, 228, .92) 38%,
      rgba(118, 131, 119, .63) 100%
    ),

    url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=2000&q=90");

  background-size: cover;

  background-position: center;

  transform: scale(1.03);
}


/* soft texture */

.faq-background::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255,255,255,.4),
      transparent 45%
    );
}


/* =====================================================
   LEFT SIDE
===================================================== */

.faq-intro {
  position: sticky;

  top: 140px;

  padding-right: 20px;
}


.faq-section .eyebrow {
  color: var(--sage-dark);
}


.faq-section .section-title {
  color: var(--ink);

  max-width: 360px;
}


.faq-intro-text {
  max-width: 340px;

  margin-top: 28px;

  font-size: 13px;

  line-height: 1.9;

  color: rgba(31,36,32,.68);
}


/* =====================================================
   HELP MINI CARD
===================================================== */

.faq-help {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  margin-top: 35px;

  padding: 14px 17px;

  background: rgba(255,255,255,.42);

  border: 1px solid rgba(255,255,255,.55);

  backdrop-filter: blur(15px);

  -webkit-backdrop-filter: blur(15px);
}


.faq-help-icon {
  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--sage);

  color: white;

  font-size: 14px;
}


.faq-help span {
  display: block;

  font-size: 11px;

  color: var(--ink);
}


.faq-help small {
  display: block;

  margin-top: 3px;

  font-size: 9px;

  color: var(--muted);
}



/* =====================================================
   GLASS ACCORDION
===================================================== */

.faq-glass {
  padding: 20px 35px;

  background: rgba(250,248,244,.74);

  backdrop-filter: blur(22px);

  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255,255,255,.6);

  box-shadow:
    0 35px 80px rgba(31,36,32,.10);
}



/* =====================================================
   ACCORDION
===================================================== */

.faq-glass .accordion {
  --bs-accordion-bg: transparent;
}


.faq-glass .accordion-item {
  background: transparent;

  border: 0;

  border-bottom:
    1px solid rgba(31,36,32,.12);
}


.faq-glass .accordion-item:last-child {
  border-bottom: 0;
}


.faq-glass .accordion-button {
  position: relative;

  display: flex;

  align-items: center;

  gap: 20px;

  padding: 29px 0;

  background: transparent;

  box-shadow: none;

  color: var(--ink);

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  font-weight: 400;
}


.faq-glass .accordion-button:not(.collapsed) {
  color: var(--sage-dark);
}


/* NUMBER */

.faq-number {
  min-width: 28px;

  font-size: 9px;

  letter-spacing: 2px;

  color: var(--sage);
}



/* =====================================================
   CUSTOM + ICON
===================================================== */

.faq-glass .accordion-button::after {

  width: 32px;
  height: 32px;

  margin-left: auto;

  flex-shrink: 0;

  background-image: none;

  content: "+";

  display: grid;

  place-items: center;

  border-radius: 50%;

  border: 1px solid rgba(31,36,32,.16);

  font-family: "DM Sans";

  font-size: 18px;

  font-weight: 300;

  color: var(--ink);

  transition: .35s ease;
}


.faq-glass
.accordion-button:not(.collapsed)::after {

  content: "−";

  transform: rotate(180deg);

  background: var(--sage);

  border-color: var(--sage);

  color: white;
}



/* =====================================================
   BODY
===================================================== */

.faq-glass .accordion-body {
  max-width: 600px;

  padding:

    0 55px
    30px
    48px;

  font-size: 13px;

  line-height: 1.9;

  color: var(--muted);
}



/* =====================================================
   HOVER
===================================================== */

.faq-glass .accordion-button:hover {
  padding-left: 8px;
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

  .faq-background {

    background:

      linear-gradient(
        180deg,
        rgba(244,240,233,.97) 0%,
        rgba(231,234,228,.91) 50%,
        rgba(118,131,119,.65) 100%
      ),

      url("https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1600&q=90");

    background-position: center;
  }


  .faq-intro {
    position: relative;

    top: auto;

    max-width: 650px;
  }


  .faq-glass {
    margin-top: 20px;
  }

}



@media (max-width: 575px) {

  .faq-glass {
    padding: 10px 20px;
  }


  .faq-glass .accordion-button {
    gap: 12px;

    padding: 24px 0;

    font-size: 14px;
  }


  .faq-number {
    min-width: 22px;
  }


  .faq-glass .accordion-body {

    padding:

      0 20px
      25px
      34px;
  }


  .faq-help {
    width: 100%;
  }

}