/* -------------------------------------------------- */
/* Fonts                                               */
/* -------------------------------------------------- */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* -------------------------------------------------- */
/* Type scale (heading design system)                 */
/* -------------------------------------------------- */
:root {
    --text-h1: clamp(2rem, 1.1rem + 3.6vw, 3.75rem);
    --text-h2: clamp(1.75rem, 1.15rem + 2.2vw, 3rem);
    --text-h3: clamp(1.5rem, 1.2rem + 1.2vw, 2.125rem);
    --text-h4: clamp(1.25rem, 1.12rem + 0.45vw, 1.5rem);
    --text-h5: 1.125rem;
    --text-h6: 1.0625rem;
    --text-badge: 0.875rem;
    --text-label: 0.9375rem;

    --weight-h1: 650;
    --weight-h2: 600;
    --weight-h3: 600;
    --weight-h4: 600;
    --weight-h5: 600;
    --weight-h6: 600;
    --weight-label: 700;

    --leading-h1: 1.08;
    --leading-h2: 1.14;
    --leading-h3: 1.2;
    --leading-h4: 1.28;
    --leading-h5: 1.36;
    --leading-h6: 1.42;
    --leading-label: 1.3;
}

/* -------------------------------------------------- */
/* Reset                                               */
/* -------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    overflow-x: hidden;
}

img,
picture,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* -------------------------------------------------- */
/* Base                                                */
/* -------------------------------------------------- */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222222;
    background-color: #ffffff;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: var(--text-h1);
    font-weight: var(--weight-h1);
    line-height: var(--leading-h1);
    margin-bottom: 16px;
}

h2 {
    font-size: var(--text-h2);
    font-weight: var(--weight-h2);
    line-height: var(--leading-h2);
    margin-bottom: 14px;
}

h3 {
    font-size: var(--text-h3);
    font-weight: var(--weight-h3);
    line-height: var(--leading-h3);
    margin-bottom: 12px;
}

h4 {
    font-size: var(--text-h4);
    font-weight: var(--weight-h4);
    line-height: var(--leading-h4);
    margin-bottom: 10px;
}

h5 {
    font-size: var(--text-h5);
    font-weight: var(--weight-h5);
    line-height: var(--leading-h5);
    margin-bottom: 8px;
}

h6 {
    font-size: var(--text-h6);
    font-weight: var(--weight-h6);
    line-height: var(--leading-h6);
    margin-bottom: 8px;
}

h1,
h2,
h3,
h4,
h5,
h6,
[class*="__heading"],
[class*="__title"] {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
}

p {
    margin-bottom: 16px;
}

/* -------------------------------------------------- */
/* Header                                              */
/* -------------------------------------------------- */
.site-header {
    width: 100%;
    padding: 0;
    background-color: #ede6d8;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    min-height: 88px;
}

.page-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 120;
}

.page-home .header__inner {
    width: min(94%, 1640px);
    margin-top: 20px;
    padding: 0 28px;
    min-height: 86px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(56, 34, 22, 0.28) 0%, rgba(24, 17, 15, 0.18) 28%, rgba(24, 17, 15, 0.18) 72%, rgba(95, 55, 28, 0.3) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 48px rgba(15, 10, 8, 0.18);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.page-home .logo img {
    height: 54px;
}

.page-home .site-nav > ul > li > a,
.page-home .btn-book,
.page-home .nav-toggle {
    color: #f7f1e7;
}

.page-home .site-nav {
    display: flex;
    align-items: center;
    align-self: stretch;
}

.page-home .site-nav > ul {
    align-items: center;
}

.page-home .site-nav > ul > li > a {
    min-height: 56px;
    padding-top: 0;
    padding-bottom: 0;
    font-weight: 500;
}


.page-home .nav-toggle span {
    background-color: #f7f1e7;
}

.page-home .btn-book {
    --btn-book-color: #f7f1e7;
    --btn-book-border: rgba(247, 241, 231, 0.46);
    --btn-book-bg: rgba(255, 255, 255, 0.06);
    --btn-book-hover-bg: rgba(255, 255, 255, 0.08);
    --btn-book-arrow-bg: rgba(255, 255, 255, 0.08);
    --btn-book-arrow-hover-bg: rgba(255, 255, 255, 0.1);
}

.page-home .btn-book__arrow {
    border-color: var(--btn-book-border);
    background-color: var(--btn-book-arrow-bg);
    color: inherit;
}

.page-home .site-header.is-light-section .site-nav > ul > li > a,
.page-home .site-header.is-light-section .btn-book,
.page-home .site-header.is-light-section .nav-toggle {
    color: #14210f;
}


.page-home .site-header.is-light-section .nav-toggle span {
    background-color: #14210f;
}

.page-home .site-header.is-light-section .btn-book {
    --btn-book-color: #14210f;
    --btn-book-border: rgba(20, 33, 15, 0.3);
    --btn-book-bg: rgba(20, 33, 15, 0.05);
    --btn-book-hover-bg: rgba(20, 33, 15, 0.05);
    --btn-book-arrow-bg: rgba(20, 33, 15, 0.08);
    --btn-book-arrow-hover-bg: rgba(20, 33, 15, 0.08);
}

.page-home .site-header.is-light-section .btn-book__arrow {
    border-color: var(--btn-book-border);
    background-color: var(--btn-book-arrow-bg);
    color: inherit;
}

.page-home .mega-menu {
    top: calc(100% + 18px);
}

.page-home .mega-menu__inner {
    border-radius: 28px;
    background-color: rgba(242, 239, 230, 0.98);
    box-shadow: 0 24px 54px rgba(9, 8, 7, 0.28);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    order: 1;
}

.logo img {
    height: 48px;
    width: auto;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    order: 4;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #2b2620;
}

.site-nav {
    order: 2;
}

.site-nav__close {
    display: none;
}

.site-nav > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 40px;
}

.site-nav > ul > li {
    position: relative;
}

.site-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: #2b2620;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s ease;
}


.dropdown-arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 10;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
}

.dropdown a {
    color: #123c3a;
    text-transform: none;
    font-weight: 500;
    letter-spacing: normal;
    padding: 10px 20px;
    border-bottom: none;
}

.dropdown a:hover {
    background-color: #f3f7f5;
}

/* -------------------------------------------------- */
/* Mega menu                                           */
/* -------------------------------------------------- */
.site-nav > ul > li.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
    pointer-events: none;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu__inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    background-color: #f2efe6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    pointer-events: auto;
}

.mega-menu__body {
    display: grid;
    grid-template-columns: 36fr 64fr;
    gap: 32px;
}

.mega-menu__intro {
    min-height: 480px;
    background-color: #14210f;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
}

.mega-menu__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 40px;
    min-width: 0;
}

.mega-menu__column {
    min-width: 0;
}

.mega-menu__column ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-menu__column li {
    border-bottom: 1px solid #ddd8ca;
}

.mega-menu__column li:last-child {
    border-bottom: none;
}

.mega-menu__column a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 0;
    text-transform: none;
    letter-spacing: normal;
    white-space: normal;
    font-weight: 400;
    border-bottom: none;
    min-width: 0;
}

.mega-menu__index {
    font-size: 12px;
    font-weight: 700;
    color: #c99a6c;
    padding-top: 4px;
    flex-shrink: 0;
}

.mega-menu__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mega-menu__title {
    display: block;
    min-width: 0;
    font-size: var(--text-h6);
    font-weight: var(--weight-h6);
    line-height: var(--leading-h6);
    color: #14210f;
}

.mega-menu__desc {
    display: block;
    min-width: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #7a7565;
}

.mega-menu--plain .mega-menu__inner {
    padding: 32px 24px;
}

.mega-menu__body--plain {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mega-menu__plain-heading {
    display: block;
    font-size: var(--text-label);
    font-weight: var(--weight-label);
    line-height: var(--leading-label);
    color: #14210f;
    margin-bottom: 6px;
}

.mega-menu__plain-column ul {
    display: flex;
    flex-direction: column;
}

.mega-menu__plain-column li {
    border-bottom: 1px solid #ddd8ca;
}

.mega-menu__plain-column li:last-child {
    border-bottom: none;
}

.mega-menu__plain-column a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
    color: #4a463c;
    border-bottom: none;
    white-space: normal;
}

.mega-menu__plain-column a:hover {
    color: #123c3a;
}

/* -------------------------------------------------- */
/* Full-screen nav overlay                             */
/* -------------------------------------------------- */
.nav-toggle span {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-overlay-open {
    overflow: hidden;
}

.site-sticky-actions {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 110;
}

.site-sticky-actions__item {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(195, 217, 78, 0.32);
    background: rgba(18, 60, 42, 0.92);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(9, 24, 17, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.site-sticky-actions__item:hover {
    transform: translateX(3px);
    background: rgba(17, 49, 34, 0.98);
    border-color: rgba(195, 217, 78, 0.62);
}

.site-sticky-actions__item svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-sticky-actions__item i {
    font-size: 18px;
    line-height: 1;
}

body.nav-overlay-open .site-sticky-actions {
    opacity: 0;
    pointer-events: none;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background-color: #ffffff;
    padding: 60px 4% 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    overflow-y: auto;
}

.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-overlay__close {
    position: absolute;
    top: 26px;
    right: 4%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #2b2620;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2620;
}

.nav-overlay__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.nav-overlay__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-overlay__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    min-height: 260px;
    padding: 40px 24px;
    border-radius: 24px;
    color: #ffffff;
    overflow: hidden;
}

.nav-overlay__card h3 {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-h4);
    font-weight: var(--weight-h4);
    line-height: var(--leading-h4);
    margin-bottom: 0;
}

.nav-overlay__card p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 240px;
    opacity: 0.85;
    margin-bottom: 0;
}

.nav-overlay__card--1 { background: linear-gradient(135deg, #a8461c, #6b2a10); }
.nav-overlay__card--2 { background: linear-gradient(135deg, #b98a5e, #3f342c); }
.nav-overlay__card--3 { background: linear-gradient(135deg, #7c8268, #40412e); }
.nav-overlay__card--4 { background: linear-gradient(135deg, #35455c, #1b2431); }
.nav-overlay__card--5 { background: linear-gradient(135deg, #8a5a6b, #3a2530); }
.nav-overlay__card--6 { background: linear-gradient(135deg, #6b7a4f, #303726); }
.nav-overlay__card--7 { background: linear-gradient(135deg, #7d6a4e, #362d20); }
.nav-overlay__card--8 { background: linear-gradient(135deg, #4a5b6b, #1e2732); }
.nav-overlay__card--9 { background: linear-gradient(135deg, #6b6b6b, #2b2b2b); }
.nav-overlay__card--10 { background: linear-gradient(135deg, #d9d3c6, #a49c8a); color: #2b2620; }
.nav-overlay__card--11 { background: linear-gradient(135deg, #2b2620, #14110d); }

@media (max-width: 1100px) {
    .nav-overlay__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .nav-overlay {
        padding: 80px 6% 40px;
    }

    .nav-overlay__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nav-overlay__card {
        min-height: 180px;
        padding: 30px 20px;
    }
}

.mega-menu__column a:hover .mega-menu__title {
    color: #123c3a;
}

.btn-book {
    --btn-book-color: #2b2620;
    --btn-book-border: #2b2620;
    --btn-book-bg: transparent;
    --btn-book-hover-bg: rgba(20, 33, 15, 0.05);
    --btn-book-arrow-bg: transparent;
    --btn-book-arrow-hover-bg: rgba(20, 33, 15, 0.08);
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    order: 3;
    background-color: var(--btn-book-bg);
    color: var(--btn-book-color);
    border: 1px solid var(--btn-book-border);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-height: 54px;
    padding: 10px 24px 10px 58px;
    border-radius: 999px;
    overflow: hidden;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, border-color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.btn-book__text {
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    transition: transform 0.45s ease-in-out;
}

.btn-book__arrow {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--btn-book-border);
    background-color: var(--btn-book-arrow-bg);
    color: inherit;
    flex-shrink: 0;
    transition: left 0.45s ease-in-out, background-color 0.45s ease-in-out, color 0.45s ease-in-out, border-color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.btn-book__arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-book:hover {
    background-color: var(--btn-book-hover-bg);
    color: var(--btn-book-color);
    border-color: var(--btn-book-border);
    padding: 10px 58px 10px 24px;
    box-shadow: none;
}

.btn-book:hover .btn-book__text {
    transform: translateX(-2px);
}

.btn-book:hover .btn-book__arrow {
    left: calc(100% - 42px);
    background-color: var(--btn-book-arrow-hover-bg);
    color: inherit;
    border-color: var(--btn-book-border);
    transform: translateY(-50%) rotate(-45deg);
}

.page-home .btn-book:hover {
    background-color: var(--btn-book-hover-bg);
    color: var(--btn-book-color);
    border-color: var(--btn-book-border);
}

.page-home .btn-book:hover .btn-book__arrow {
    background-color: var(--btn-book-arrow-hover-bg);
    border-color: var(--btn-book-border);
}

.page-home .site-header.is-light-section .btn-book:hover {
    background-color: var(--btn-book-hover-bg);
    color: var(--btn-book-color);
    border-color: var(--btn-book-border);
}

.page-home .site-header.is-light-section .btn-book:hover .btn-book__arrow {
    background-color: var(--btn-book-arrow-hover-bg);
    border-color: var(--btn-book-border);
}


/* -------------------------------------------------- */
/* Main / Hero (starter placeholder)                   */
/* -------------------------------------------------- */
main {
    min-height: 70vh;
}

.hero {
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero--thank-you {
    padding-top: 100px;
    padding-bottom: 60px;
    background-color: #123c2a;
    background-image: url('../images/service-banner-pattern.png');
    background-repeat: repeat;
    background-position: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero--thank-you h1 {
    color: #ffffff;
}

.hero--thank-you p {
    color: rgba(255, 255, 255, 0.75);
}

.hero--thank-you .who-we-are__cta {
    margin-top: 8px;
    border: 1px solid #c3d94e;
}

.hero__lottie {
    display: block;
    width: 640px;
    max-width: 100%;
    height: 640px;
    margin: 0 auto -60px;
}

/* -------------------------------------------------- */
/* 404 page (split layout)                             */
/* -------------------------------------------------- */
.error-404 {
    width: 100%;
    min-height: 100vh;
    background-color: #123c2a;
    background-image: url('../images/service-banner-pattern.png');
    background-repeat: repeat;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 140px 0 60px;
    box-sizing: border-box;
}

.error-404__inner {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

.error-404__content {
    color: #ffffff;
}

.error-404__code {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(70px, 9vw, 120px);
    line-height: 1;
    color: #c3d94e;
    margin-bottom: 8px;
}

.error-404__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #ffffff;
    margin-bottom: 16px;
}

.error-404__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 460px;
    margin-bottom: 32px;
}

.error-404__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.error-404__actions .who-we-are__cta {
    margin: 0;
    border: 1px solid #c3d94e;
}

.error-404__btn {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 6px 28px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    box-sizing: border-box;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.error-404__btn--light {
    background-color: #ffffff;
    color: #123c2a;
}

.error-404__btn--light:hover {
    background-color: #c3d94e;
}

.error-404__media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.error-404__media img {
    width: auto;
    max-width: 180%;
    height: auto;
    max-height: 800px;
}

@media (max-width: 900px) {
    .error-404 {
        padding-top: 110px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .error-404__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .error-404__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .error-404__actions {
        justify-content: center;
    }

    .error-404__media {
        order: -1;
    }

    .error-404__media img {
        max-height: 340px;
    }
}

/* -------------------------------------------------- */
/* Hero slider                                         */
/* -------------------------------------------------- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 145vh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 130px 0 30px;
}

.hero-banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(92vh - 160px);
}

@media (min-width: 901px) {
    .hero-banner__content,
    .page-hero__content {
        padding-left: 64px;
    }
}

.hero-banner__parallax {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    will-change: transform;
}

.hero-banner__parallax-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease;
}

.hero-banner__parallax-slide.is-active {
    opacity: 1;
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 12, 8, 0.85) 0%, rgba(10, 12, 8, 0.55) 45%, rgba(10, 12, 8, 0.15) 100%);
}

.hero-banner__fade {
    position: absolute;
    inset: 0;
    background: #14210f;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-banner__line {
    position: absolute;
    top: 0;
    left: 34%;
    width: 44%;
    max-width: 860px;
    height: 135vh;
    z-index: 1;
    pointer-events: none;
}

.hero-banner__line svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.hero-banner__inner {
    position: relative;
    z-index: 2;
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: left;
}

.hero-banner__reveal {
    margin: 10vh auto 0;
    max-width: 640px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.hero-banner__reveal-icon {
    display: block;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-banner__reveal-quote p {
    font-family: 'Inter', sans-serif;
    font-size: 34px;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 18px;
}

.hero-banner__reveal-quote cite {
    display: block;
    font-style: normal;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-banner__bubbles {
    position: absolute;
    top: 16%;
    right: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-banner__bubble {
    position: absolute;
}

.hero-banner__bubble-photo {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-banner__bubble-ring {
    position: absolute;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    fill: none;
    transform: rotate(0deg);
}

.hero-banner__bubble-ring circle {
    fill: none;
    stroke: #c3d94e;
    stroke-width: 4;
    stroke-linecap: round;
}

.hero-banner__bubble--1,
.hero-banner__bubble--2,
.hero-banner__bubble--3 {
    right: 0;
    width: 80px;
    height: 80px;
}

.hero-banner__bubble--1 {
    top: 0;
}

.hero-banner__bubble--2 {
    top: 95px;
}

.hero-banner__bubble--3 {
    top: 190px;
}

@media (max-width: 1200px) {
    .hero-banner__bubbles {
        display: none;
    }
}

.hero-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    font-size: var(--text-badge);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-banner__badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c99a6c;
}

.hero-banner__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h1);
    font-size: var(--text-h1);
    line-height: var(--leading-h1);
    color: #ffffff;
    margin-bottom: 16px;
    max-width: 900px;
}

.hero-banner__desc {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
    color: #ede6d8;
    margin-bottom: 22px;
}

.hero-banner__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 65px;
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-banner__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 8px 28px 8px 58px;
    background-color: #123c2a;
    border-radius: 999px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.hero-banner__cta-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #c3d94e;
    color: #123c2a;
    transition: left 0.45s ease-in-out, background-color 0.45s ease-in-out, color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.hero-banner__cta-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-banner__cta:hover {
    padding: 8px 58px 8px 28px;
    background-color: #c3d94e;
    color: #123c2a;
    box-shadow: 0 12px 28px rgba(8, 12, 10, 0.24);
}

.hero-banner__cta:hover .hero-banner__cta-icon {
    left: calc(100% - 44px);
    background-color: #123c2a;
    color: #ffffff;
    transform: rotate(45deg);
}

.hero-banner__social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-banner__avatars {
    display: flex;
    align-items: center;
}

.hero-banner__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #14210f;
    margin-left: -12px;
    background-size: cover;
    background-position: center;
}

.hero-banner__avatar:first-child {
    margin-left: 0;
}

.hero-banner__avatar--1 { background-color: #b98a5e; background-image: url('../images/Header-sub-menu-images/Reiki-healing.webp'); }
.hero-banner__avatar--2 { background-color: #7c8268; background-image: url('../images/Header-sub-menu-images/Meditation.webp'); }
.hero-banner__avatar--3 { background-color: #35455c; background-image: url('../images/Header-sub-menu-images/Yoga.webp'); }

.hero-banner__avatar--more {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c99a6c;
    background-image: url('../images/Header-sub-menu-images/Sound-healing.webp');
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-banner__rating {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.hero-banner__stars {
    color: #c99a6c;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-banner__rating-text {
    display: inline-block;
    font-size: 13px;
    color: #ede6d8;
    margin-left: 6px;
}

.hero-banner__rating-sub {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.hero-banner__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.hero-banner__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 360px;
}

.hero-banner__feature-icon {
    font-size: 18px;
    color: #c99a6c;
    line-height: 1.5;
}

.hero-banner__feature p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
}

@media (max-width: 900px) {
    .hero-banner {
        padding: 160px 0 50px;
    }
}

@media (max-width: 600px) {
    .hero-banner__desc {
        font-size: 16px;
    }

    .hero-banner__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

.page-hero {
    position: relative;
    width: 100%;
    min-height: 93vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #123c2a;
    background-image: url('../images/service-banner-pattern.png');
    background-repeat: repeat;
    background-position: center;
    padding: 160px 0 20px;
    border-radius: 0 0 40px 40px;
}

.page-hero__line {
    position: absolute;
    top: 0;
    left: 37%;
    width: 40%;
    max-width: 860px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.page-hero__line svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.page-hero .who-we-are__cta,
.motivation__head .who-we-are__cta,
.services-panel__head .who-we-are__cta {
    margin: 0;
    border: 2px solid #c3d94e;
}

.page-hero .hero-banner__actions {
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 28px;
    padding-bottom: 0;
    margin-top: 28px;
    margin-bottom: 0;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.page-hero__content {
    flex: 1 1 480px;
    max-width: 660px;
}

.page-hero__media {
    position: relative;
    flex: 1 1 420px;
    max-width: 560px;
}

.page-hero__cutout {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130%;
    max-width: 720px;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.page-hero__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    justify-items: center;
    height: auto;
    border-radius: 24px;
}

@media (max-width: 900px) {
    .page-hero__inner {
        flex-direction: column;
        text-align: center;
    }

    .page-hero__content {
        max-width: 100%;
    }
}

.contact-highlights {
    width: 100%;
    background-color: #eef5f1;
    padding: 72px 0 78px;
}

.contact-highlights__inner {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.contact-highlights__card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 30px 12px;
}

.contact-highlights__icon-wrap {
    flex-shrink: 0;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 3px solid #123c2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-highlights__icon {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2a25;
}

.contact-highlights__icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-highlights__icon i {
    font-size: 34px;
    line-height: 1;
}

.contact-highlights__content {
    flex: 1;
    min-width: 0;
}

.contact-highlights__title {
    margin: 0;
    font-size: var(--text-h4);
    font-weight: var(--weight-h4);
    line-height: var(--leading-h4);
    color: #18221c;
}

.contact-highlights__divider {
    width: 100%;
    height: 1px;
    margin: 12px 0 16px;
    background-color: rgba(24, 34, 28, 0.12);
}

.contact-highlights__lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-highlights__lines a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #5c635d;
}

.contact-highlights__link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #18221c;
    font-size: 22px;
    line-height: 1;
}

.contact-highlights__lines a,
.contact-highlights__lines p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #667068;
}

.contact-highlights__lines a:hover {
    color: #123c2a;
}

@media (max-width: 1200px) {
    .contact-highlights__inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 700px) {
    .contact-highlights {
        padding: 56px 0 60px;
    }

    .contact-highlights__card {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 16px 4px;
    }

    .contact-highlights__icon-wrap {
        width: 108px;
        height: 108px;
    }

    .contact-highlights__icon {
        width: 78px;
        height: 78px;
    }
}

.contact-connect {
    width: 100%;
    background-color: #eef5f1;
    padding: 20px 0 96px;
}

.contact-connect__inner {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-connect__intro {
    margin-bottom: 46px;
}

.contact-connect__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 22px;
    border: 1.5px solid #1e2723;
    border-radius: 999px;
    font-size: var(--text-badge);
    font-weight: var(--weight-label);
    line-height: var(--leading-label);
    letter-spacing: 1px;
    color: #1e2723;
}

.contact-connect__rule {
    width: 100%;
    height: 1px;
    margin: 24px 0 28px;
    background-color: rgba(30, 39, 35, 0.25);
}

.contact-connect__heading {
    margin: 0 0 22px;
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    font-weight: var(--weight-h2);
    color: #161f1b;
}

.contact-connect__desc {
    max-width: 920px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #6c746d;
}

.contact-connect__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.95fr);
    gap: 34px;
    align-items: stretch;
}

.contact-connect__form-card {
    background-color: #ffffff;
    border-radius: 34px;
    padding: 58px 58px 56px;
}

.contact-connect__form-title {
    margin: 0 0 38px;
    font-size: var(--text-h3);
    line-height: var(--leading-h3);
    font-weight: var(--weight-h3);
    color: #171f1c;
}

.contact-connect__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 24px;
}

.contact-connect__field {
    position: relative;
    display: block;
}

.contact-connect__field span {
    font-size: var(--text-label);
    font-weight: var(--weight-h6);
    line-height: var(--leading-label);
    color: #747b75;
}

.contact-connect__field:not(.contact-connect__field--static) span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    pointer-events: none;
    transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.contact-connect__field--full:not(.contact-connect__field--static) span {
    top: 30px;
}

.contact-connect__field--static span {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
    font-weight: 400;
    color: #171f1c;
    pointer-events: none;
}

.contact-connect__field input,
.contact-connect__field select,
.contact-connect__field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(22, 31, 27, 0.45);
    background-color: transparent;
    border-radius: 0;
    padding: 0 0 14px;
    font-family: inherit;
    font-size: 16px;
    color: #171f1c;
    outline: none;
    resize: none;
    transition: border-color 0.2s ease;
}

.contact-connect__field:not(.contact-connect__field--static) input,
.contact-connect__field:not(.contact-connect__field--static) textarea,
.contact-connect__field--static select {
    padding: 30px 0 10px;
}

.contact-connect__field input:focus,
.contact-connect__field select:focus,
.contact-connect__field textarea:focus {
    border-bottom-color: #171f1c;
}

.contact-connect__field input:focus + span,
.contact-connect__field input:not(:placeholder-shown) + span,
.contact-connect__field input:-webkit-autofill + span,
.contact-connect__field textarea:focus + span,
.contact-connect__field textarea:not(:placeholder-shown) + span {
    top: 2px;
    transform: none;
    font-size: 13px;
    color: #171f1c;
}

.contact-connect__field--full {
    grid-column: 1 / -1;
}

.contact-connect__field--full textarea {
    min-height: 88px;
}

.contact-connect__checkbox {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #6c746d;
}

.contact-connect__checkbox input {
    margin-top: 3px;
    accent-color: #123c2a;
}

.contact-connect__submit {
    margin: 0;
    border: none;
    width: auto;
    justify-self: start;
    align-self: start;
}

.contact-connect__status {
    grid-column: 1 / -1;
    min-height: 20px;
    margin: -4px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: #6c746d;
}

.contact-connect__status.is-success {
    color: #1d6b3a;
}

.contact-connect__status.is-error {
    color: #b42318;
}

.contact-connect__promo {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background-color: #4f9a85;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.contact-connect__promo-image {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.contact-connect__promo-body {
    position: relative;
    flex: 1;
    padding: 48px 38px 46px;
    background:
        linear-gradient(#123c2a, #123c2a),
        url('../images/service-banner-pattern.png') center/cover;
    color: #ffffff;
    border-bottom-right-radius: 43px;
    border-bottom-left-radius: 43px;
}

.contact-connect__promo-title {
    margin: 0 0 28px;
    font-size: var(--text-h3);
    line-height: var(--leading-h3);
    font-weight: var(--weight-h3);
    color: #ffffff;
}

.contact-connect__promo-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-connect__promo-label {
    font-size: var(--text-h5);
    font-weight: var(--weight-h5);
    line-height: var(--leading-h5);
    color: #c3d94e;
}

.contact-connect__promo-hours p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.contact-connect__promo-share {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #171f1c;
    box-shadow: 0 18px 36px rgba(18, 60, 42, 0.12);
}

.contact-connect__promo-share svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-connect__promo-social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 32px;
    padding-top: 60px;
    margin-top: -40px;
    background-color: #c3d94e;
    color: #123c2a;
    font-size: var(--text-label);
    font-weight: var(--weight-h6);
    line-height: var(--leading-label);
}

.contact-connect__promo-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-connect__promo-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #123c2a;
    color: #123c2a;
    font-size: 17px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-connect__promo-social-icons a:hover {
    background-color: #123c2a;
    color: #c3d94e;
}

.contact-map {
    width: 95%;
    /* padding: 80 5%; */
    margin: 120px 20px;
    justify-self: center;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 620px;
    border-radius: 32px;
}

@media (max-width: 1200px) {
    .contact-connect__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .contact-connect {
        padding: 12px 0 68px;
    }

    .contact-connect__intro {
        margin-bottom: 30px;
    }

    .contact-connect__rule {
        margin: 18px 0 22px;
    }

    .contact-connect__form-card {
        border-radius: 28px;
        padding: 36px 24px 34px;
    }

    .contact-connect__form-title {
        margin-bottom: 28px;
    }

    .contact-connect__form {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .contact-connect__submit {
        width: 100%;
        justify-content: flex-start;
    }

    .contact-connect__promo {
        border-radius: 28px;
    }

    .contact-connect__promo-image {
        height: 220px;
    }

    .contact-connect__promo-body {
        padding: 34px 24px 90px;
    }

    .contact-connect__promo-hours p {
        font-size: 16px;
    }

    .contact-connect__promo-share {
        right: 20px;
        bottom: 20px;
        width: 56px;
        height: 56px;
    }
}

.hero-slider {
    width: 100%;
    background-color: #ede6d8;
    padding: 150px 0;
    overflow: hidden;
}

.hero-slider__inner {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 70px;
    align-items: center;
    gap: 40px;
}

.hero-slider__content {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}

.hero-slider__track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.hero-slider__slide {
    width: 33.3333%;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: visible;
}

.hero-slider__eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 22px;
    color: #b98a5e;
    margin-bottom: 20px;
}

.hero-slider__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h1);
    font-size: var(--text-h1);
    line-height: var(--leading-h1);
    color: #2b2620;
    margin-bottom: 26px;
}

.hero-slider__desc {
    max-width: 540px;
    font-size: 18px;
    line-height: 1.7;
    color: #6b6355;
    margin-bottom: 40px;
}

.hero-slider__cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px 10px 24px;
    border: 1px solid #123c2a;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: #123c2a;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, border-color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.hero-slider__cta svg {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid #c3d94e;
    background-color: #c3d94e;
    color: #123c2a;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    box-sizing: border-box;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, border-color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.hero-slider__cta:hover {
    flex-direction: row-reverse;
    padding: 10px 24px 10px 10px;
    background-color: #c3d94e;
    color: #123c2a;
    border-color: #c3d94e;
    box-shadow: 0 12px 28px rgba(12, 10, 8, 0.12);
}

.hero-slider__cta:hover svg {
    background-color: #123c2a;
    color: #ffffff;
    border-color: #123c2a;
}

.hero-slider__media {
    position: relative;
    height: 720px;
}

.hero-slider__pattern {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-slider__pattern svg {
    width: 100%;
    height: 100%;
    max-width: 480px;
}

.hero-slider__photos {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-slider__photos-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 300%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slider__photo {
    width: 460px;
    max-width: 90%;
    height: 33.3333%;
    flex-shrink: 0;
    margin: 0 auto;
    background-size: cover;
    background-position: top center;
    box-sizing: border-box;
}

.hero-slider__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-self: center;
}

.hero-slider__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #cfc3a9;
    color: #2b2620;
    flex-shrink: 0;
}

.hero-slider__nav-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-slider__count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #a99b7c;
}

.hero-slider__count-current {
    color: #2b2620;
    font-weight: 600;
}

.hero-slider__count-line {
    position: relative;
    width: 1px;
    height: 70px;
    background-color: #cfc3a9;
    overflow: hidden;
}

.hero-slider__count-line span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 33.33%;
    background-color: #2b2620;
    transition: height 0.8s ease;
}

.stats-counter {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #ddd8ca;
}

.stats-counter__inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.stats-counter__item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-counter__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: #14210f;
}

.stats-counter__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stats-counter__text {
    display: flex;
    flex-direction: column;
}

.stats-counter__number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #2b2620;
}

.stats-counter__label {
    font-size: 15px;
    color: #6b6355;
}

@media (max-width: 900px) {
    .stats-counter__inner {
        justify-content: center;
    }
}

.who-we-are {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
}

.who-we-are__inner {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.who-we-are__eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c3a;
    margin-bottom: 20px;
}

.who-we-are__eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.who-we-are__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
    margin-bottom: 40px;
    max-width: 420px;
}

.who-we-are__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.who-we-are__item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    padding: 16px 0;
    cursor: pointer;
}

.who-we-are__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #f2f4e6;
    color: #14210f;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.who-we-are__item-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.who-we-are__item-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #a9a290;
    transition: color 0.3s ease;
}

.who-we-are__item-progress {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #e5e0d3;
    order: 3;
    position: relative;
    overflow: hidden;
}

.who-we-are__item-progress span {
    display: block;
    width: 0;
    height: 100%;
    background-color: #a9a290;
}

.who-we-are__item.is-active .who-we-are__item-icon {
    background-color: #c3d94e;
    color: #14210f;
}

.who-we-are__item.is-active .who-we-are__item-label {
    color: #14210f;
}

.who-we-are__item.is-active .who-we-are__item-progress span {
    transition: width 4s linear;
    width: 100%;
}

.who-we-are__media {
    display: flex;
    justify-content: center;
}

.who-we-are__image {
    width: 100%;
    max-width: 460px;
    height: 640px;
    border-radius: 230px 230px 12px 12px;
    background-size: cover;
    background-position: center;
    transition: background-image 0.4s ease;
}

.who-we-are__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #6b6355;
    margin-bottom: 20px;
}

.who-we-are__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 6px 24px 6px 80px;
    background-color: #123c2a;
    border-radius: 999px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin: 10px 0 30px;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.who-we-are__cta-icon {
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #c3d94e;
    color: #123c2a;
    transition: left 0.45s ease-in-out, background-color 0.45s ease-in-out, color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.who-we-are__cta-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.who-we-are__cta:hover {
    padding: 6px 80px 6px 24px;
    background-color: #c3d94e;
    color: #123c2a;
    box-shadow: 0 12px 28px rgba(20, 33, 15, 0.12);
}

.who-we-are__cta:hover .who-we-are__cta-icon {
    left: calc(100% - 40px);
    background-color: #123c2a;
    color: #ffffff;
    transform: translateY(-50%) rotate(45deg);
}

.who-we-are__divider {
    width: 100%;
    height: 1px;
    background-color: #e5e0d3;
    margin-bottom: 30px;
}

.who-we-are__badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.who-we-are__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: #14210f;
}

.who-we-are__badge-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.who-we-are__badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #14210f;
}

@media (max-width: 1100px) {
    .who-we-are__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are__media {
        order: -1;
    }
}

.services {
    width: 100%;
    background-color: #f2f4e6;
    padding: 100px 0;
    overflow: hidden;
}

.services__inner {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c3a;
    margin-bottom: 16px;
}

.services__eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
}

.services__carousel {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.services__carousel.is-dragging {
    cursor: grabbing;
}

.services__track {
    display: flex;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.services__page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
    flex-shrink: 0;
}

.services__card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 999px 999px 28px 28px;
    padding: 12px 12px 0;
    transition: transform 0.45s ease-in-out, box-shadow 0.45s ease-in-out, background-color 0.45s ease-in-out;
}

.services__card-media {
    height: 340px;
    border-radius: 999px 999px 12px 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
}

.services__card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 12px 28px;
}

.services__card-title {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h4);
    font-size: var(--text-h4);
    line-height: var(--leading-h4);
    color: #14210f;
    text-align: center;
    margin-bottom: 12px;
    transition: color 0.45s ease-in-out;
}

.services__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4a463c;
    text-align: center;
    margin-bottom: 24px;
    flex-grow: 1;
    transition: color 0.45s ease-in-out;
}

.services__card-price {
    display: inline-block;
    align-self: center;
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: 999px;
    background-color: #c3d94e;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #123c2a;
}

.services__card:hover {
    background-color: #c3d94e;
}

.services__card:hover .services__card-price {
    background-color: #ffffff;
}

.services__card:hover .services__card-title,
.services__card:hover .services__card-desc {
    color: #123c2a;
}

.services__card-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 46px;
    padding: 6px 24px 6px 60px;
    background-color: #123c2a;
    border-radius: 999px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.services__card-cta-icon {
    position: absolute;
    top: 6px;
    left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #c3d94e;
    color: #123c2a;
    transition: left 0.45s ease-in-out, background-color 0.45s ease-in-out, color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.services__card-cta-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(18, 60, 42, 0.1);
}

.services__card:hover .services__card-cta {
    justify-content: flex-start;
    padding: 6px 60px 6px 24px;
    background-color: #ffffff;
    color: #123c2a;
    box-shadow: 0 12px 28px rgba(18, 60, 42, 0.12);
}

.services__card:hover .services__card-cta-icon {
    left: calc(100% - 40px);
    background-color: #123c2a;
    color: #ffffff;
    transform: rotate(45deg);
}

.services__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.services__dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d3d6c4;
    padding: 0;
    transition: background-color 0.3s ease;
}

.services__dots button.is-active {
    background-color: #14210f;
}

@media (max-width: 900px) {
    .hero-slider {
        padding: 60px 0;
    }

    .hero-slider__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-slider__media {
        height: 420px;
        order: -1;
    }

    .hero-slider__photo {
        width: 320px;
    }

    .hero-slider__nav {
        flex-direction: row;
        justify-self: start;
    }

    .hero-slider__count {
        flex-direction: row;
    }

    .hero-slider__count-line {
        width: 70px;
        height: 1px;
    }

    .hero-slider__count-line span {
        width: 33.33%;
        height: 100%;
        transition: width 0.8s ease;
    }

}

/* -------------------------------------------------- */
/* Benefits (Yoga & Meditation)                        */
/* -------------------------------------------------- */
.benefits {
    width: 100%;
    background-color: #faf6f0;
    padding: 100px 0;
}

.benefits__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits__eyebrow {
    display: block;
    font-size: 16px;
    color: #222222;
    margin-bottom: 8px;
}

.benefits__heading {
    font-size: var(--text-h2);
    font-weight: var(--weight-h2);
    line-height: var(--leading-h2);
    color: #c19a75;
    margin-bottom: 24px;
}

.benefits__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #5c5c5c;
    max-width: 480px;
    margin-bottom: 36px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 32px;
    margin-bottom: 44px;
}

.benefits__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefits__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ddc3a4;
}

.benefits__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #6b4a30;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefits__label {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
}

.benefits__cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    border: 1px solid #123c2a;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background-color: #123c2a;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, border-color 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.benefits__cta-arrow {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefits__cta:hover {
    background-color: #c3d94e;
    color: #123c2a;
    border-color: #c3d94e;
    box-shadow: 0 12px 28px rgba(18, 60, 42, 0.12);
}

.benefits__media {
    position: relative;
}

.benefits__photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-color: #e5ddd1;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* -------------------------------------------------- */
/* Footer                                              */
/* -------------------------------------------------- */
.site-footer {
    width: 100%;
    margin-top: 0;
    padding: 44px 0 65px;
    background-color: #123c2a;
    background-image:
        radial-gradient(circle at top left, rgba(98, 163, 190, 0.1), transparent 34%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 28%);
    animation: siteFooterColorShift 8s ease-in-out infinite alternate;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@keyframes siteFooterColorShift {
    from {
        background-color: #123c2a;
    }
    to {
        background-color: #3278b2;
    }
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.18;
    pointer-events: none;
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    width: 92%;
    max-width: 1640px;
    margin: 0 auto;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: start;
    padding: 34px 0 72px;
}

.site-footer__title {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-h1);
    font-weight: var(--weight-h1);
    line-height: var(--leading-h1);
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 24px;
}

.site-footer__phone,
.site-footer__email {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
}

.site-footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(24px, 2.5vw, 32px);
}

.site-footer__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
}

.site-footer__hours,
.site-footer__text,
.site-footer__links a,
.site-footer__copyright {
    font-family: 'Inter', sans-serif;
    color: rgba(231, 240, 243, 0.72);
}

.site-footer__hours {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 19px;
    font-weight: 500;
}

.site-footer__mail {
    justify-self: end;
    text-align: left;
    padding-top: 8px;
}

.site-footer__label,
.site-footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    font-weight: var(--weight-label);
    line-height: var(--leading-label);
    letter-spacing: 0;
    color: #ffffff;
}

.site-footer__label {
    display: block;
    margin-bottom: 22px;
}

.site-footer__email {
    font-size: clamp(30px, 3.6vw, 60px);
    letter-spacing: 0;
    word-break: break-word;
    font-size: 35px;
    font-weight: var(--weight-h2);
    line-height: var(--leading-h2);
}

.site-footer__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.18);
}

.site-footer__sitemap {
    display: grid;
    grid-template-columns: minmax(180px, 220px) repeat(5, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 16px;
    padding: 26px 0 10px;
}

.site-footer__sitemap-title {
    grid-column: 1;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    font-weight: var(--weight-label);
    line-height: var(--leading-label);
    color: #ffffff;
}

.site-footer__sitemap-item {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(231, 240, 243, 0.72);
    min-width: 0;
}

.site-footer__sitemap-item:hover {
    color: #ffffff;
}

.site-footer__sitemap-divider {
    grid-column: 1 / -1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
    .site-footer__sitemap {
        display: block;
    }

    .site-footer__sitemap-title {
        display: block;
        margin-top: 20px;
    }

    .site-footer__sitemap-title:first-child {
        margin-top: 0;
    }

    .site-footer__sitemap-item {
        display: inline-block;
        margin: 6px 20px 0 0;
    }

    .site-footer__sitemap-divider {
        display: none;
    }
}

.site-footer__links a:hover,
.site-footer__phone:hover,
.site-footer__email:hover {
    color: #ffffff;
}

.site-footer__bottom {
    padding: 26px 0 0;
    text-align: center;
}

.site-footer__copyright {
    margin-bottom: 0;
    font-size: 16px;
}

.site-footer__bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.site-footer__bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(231, 240, 243, 0.78);
    transition: color 0.2s ease;
}

.site-footer__bottom-links a:hover {
    color: #ffffff;
}

.site-footer__brand {
    margin-top: 34px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(72px, 13vw, 260px);
    font-weight: var(--weight-h1);
    line-height: 0.95;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.94);
    white-space: nowrap;
    text-align: center;
    transform: translateY(14px);
    user-select: none;
}

.site-footer__brand-soft {
    margin-left: 0.06em;
}

.site-footer__brand {
    position: relative;
}

.site-footer__brand span {
    display: inline-block;
}

.site-footer__brand-strong {
    color: rgba(255, 255, 255, 0.94);
}

.site-footer__brand-soft {
    color: rgba(255, 255, 255, 0.3);
}

.site-footer__connect,
.site-footer__mail,
.site-footer__newsletter,
.site-footer__links {
    min-width: 0;
}

@media (max-width: 1200px) {
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__mail {
        justify-self: start;
    }

}

@media (max-width: 700px) {
    .site-footer {
        padding-top: 28px;
    }

    .site-footer__top {
        padding: 24px 0 48px;
    }

    .site-footer__label {
        margin-bottom: 14px;
    }

    .site-footer__bottom {
        padding-top: 22px;
    }

    .site-footer__bottom-links {
        gap: 14px 20px;
        margin-top: 12px;
    }

    .site-footer__brand {
        margin-top: 28px;
        transform: translateY(8px);
        white-space: normal;
        word-break: break-word;
        line-height: 0.95;
    }
}

@media (max-width: 480px) {
    .site-footer__inner {
        width: calc(100% - 28px);
    }

    .site-footer__phone,
    .site-footer__hours,
    .site-footer__copyright {
        font-size: 15px;
    }
}

/* -------------------------------------------------- */
/* Responsive                                          */
/* -------------------------------------------------- */
@media (max-width: 1024px) {
    .page-home .header__inner {
        width: calc(100% - 24px);
        margin-top: 12px;
        padding: 0 18px;
        min-height: 76px;
    }

    .page-home .logo img {
        height: 46px;
    }

    .site-sticky-actions {
        display: none;
    }

    .btn-book {
        font-size: 12px;
        min-height: 44px;
        padding: 6px 18px 6px 48px;
        margin-left: auto;
    }

    .btn-book__arrow {
        width: 28px;
        height: 28px;
        left: 8px;
    }

    .nav-toggle {
        margin-left: 14px;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .site-nav.is-open {
        max-height: calc(100vh - 76px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    body.site-nav-open {
        overflow: hidden;
    }

    .site-nav__close {
        display: none;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 90px;
        right: 16px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid #d8d4c6;
        background-color: #ffffff;
        color: #14210f;
        z-index: 130;
    }

    .site-nav__close svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

    .site-nav.is-open .site-nav__close {
        display: flex;
    }

    .site-nav ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 0px 24px 0px;
    }

    .site-nav li {
        width: 100%;
        padding: 0;
        border-bottom: none;
    }

    .page-home .site-nav > ul > li > a {
        color: #14210f;
        width: 100%;
        padding: 8px 0;
        font-size: 16px;
        font-weight: 700;
    }

    .page-home .has-dropdown.is-open > a,
    .page-home .has-mega.is-open > a {
        color: #123c3a;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: transparent;
        padding: 0 0 6px;
        display: none;
    }

    .has-dropdown.is-open .dropdown {
        display: block;
    }

    .dropdown a {
        color: #000000;
        padding: 6px 0 6px 16px;
        font-size: 15px;
        font-weight: 500;
    }

    .dropdown a:hover {
        background-color: transparent;
    }

    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .has-mega.is-open .mega-menu {
        display: block;
    }

    .page-home .mega-menu__inner,
    .mega-menu__inner {
        display: block;
        border-radius: 0;
        box-shadow: none;
        background-color: transparent;
        padding: 0 0 6px;
    }

    .mega-menu__body {
        display: block;
    }

    .mega-menu__intro {
        display: none;
    }

    .mega-menu__columns {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }

    .mega-menu__column li {
        border-bottom: none;
    }

    .mega-menu__column a {
        padding: 6px 0 6px 16px;
        gap: 0;
    }

    .mega-menu__index {
        display: none;
    }

    .mega-menu__title {
        color: #000000;
        font-size: 15px;
        font-weight: 500;
        line-height: var(--leading-label);
    }

    .mega-menu__desc {
        display: none;
    }

    .mega-menu__body--plain {
        display: block;
    }

    .mega-menu__plain-column {
        padding: 0;
    }

    .mega-menu__plain-column li {
        border-bottom: none;
    }

    .mega-menu__plain-column a {
        color: #000000;
        padding: 6px 0 6px 16px;
        font-size: 15px;
        font-weight: 500;
    }

}

@media (max-width: 480px) {
    .benefits {
        padding: 60px 0;
    }

    .benefits__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits__media {
        order: -1;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }
}

.why-choose {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.why-choose__inner {
    position: relative;
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    z-index: 1;
}

.why-choose__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.why-choose__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c3a;
    margin-bottom: 16px;
}

.why-choose__eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-choose__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
}

.why-choose__content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.why-choose__col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.why-choose__col--left {
    text-align: left;
}

.why-choose__col--right {
    text-align: left;
}

.why-choose__item-title {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h4);
    font-size: var(--text-h4);
    line-height: var(--leading-h4);
    color: #123c3a;
    margin-bottom: 12px;
}

.why-choose__item-title svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-choose__col--left .why-choose__item-title svg {
    margin-left: 8px;
}

.why-choose__col--right .why-choose__item-title svg {
    margin-right: 8px;
}

.why-choose__item-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4a463c;
    max-width: 320px;
}

.why-choose__col--left .why-choose__item-desc {
    margin-left: auto;
}

.why-choose__col--right .why-choose__item-desc {
    margin-right: auto;
}

.why-choose__para {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4a463c;
    max-width: 320px;
    margin-left: auto;
}

.why-choose__points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose__point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h4);
    font-size: 17px;
    color: #123c3a;
    text-align: left;
}

.why-choose__point svg {
    flex: none;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-choose__media {
    position: relative;
    width: 600px;
    height: 600px;
}

.why-choose__flower {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    animation: whyChooseSpin 24s linear infinite;
}

.why-choose__photo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: auto;
}

@keyframes whyChooseSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.why-choose__footer-item {
    text-align: center;
    max-width: 360px;
    margin: 60px auto 0;
}

.why-choose__footer-item .why-choose__item-desc {
    margin-left: auto;
    margin-right: auto;
}

.why-choose__footer-item .why-choose__item-icon {
    display: inline-flex;
    color: #123c3a;
    margin-bottom: 8px;
}

.why-choose__footer-item .why-choose__item-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1100px) {
    .why-choose__content {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 50px;
    }

    .why-choose__col--left,
    .why-choose__col--right {
        text-align: center;
    }

    .why-choose__col--left .why-choose__item-desc,
    .why-choose__col--right .why-choose__item-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose__para {
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose__points {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .why-choose {
        padding: 60px 0;
    }

    .why-choose__media {
        width: 300px;
        height: 300px;
    }

    .why-choose__photo {
        width: 210px;
    }
}

/* -------------------------------------------------- */
/* Goals scroll (sticky heading, cards reveal on scroll) */
/* -------------------------------------------------- */
.goals-scroll-wrapper {
    position: relative;
    height: 300vh;
    background-color: #faf6ee;
}

.goals-scroll {
    position: sticky;
    top: 85px;
    min-height: calc(100vh - 112px);
    padding: 60px 0;
    display: flex;
    align-items: center;
    background-color: #faf6ee;
    overflow: hidden;
}

.goals-scroll__inner {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
}

.goals-scroll__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.goals-scroll__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #2b2a20;
    margin-bottom: 12px;
}

.goals-scroll__sub {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    color: #6b6a5e;
}

.goals-scroll__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 32px;
}

.goals-scroll__card {
    --t: clamp(0, var(--p, 0), 1);
    --dir-x: 0;
    --dir-y: 0;
    padding: 28px 28px;
    background-color: #0f3d24;
    opacity: var(--t);
    transform: translate(calc((1 - var(--t)) * 220px * var(--dir-x)), calc((1 - var(--t)) * 180px * var(--dir-y))) scale(calc(0.55 + var(--t) * 0.45));
    will-change: transform, opacity;
    border-radius: 10px;
    min-height: 230px;
}

.goals-scroll__grid .goals-scroll__card:nth-child(3n+1) {
    --dir-x: -1;
}

.goals-scroll__grid .goals-scroll__card:nth-child(3n) {
    --dir-x: 1;
}

.goals-scroll__grid .goals-scroll__card:nth-child(-n+3) {
    --dir-y: -1;
}

.goals-scroll__grid .goals-scroll__card:nth-child(n+4) {
    --dir-y: 1;
}

.goals-scroll__icon {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 18px;
}

.goals-scroll__card-title {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h4);
    font-size: var(--text-h4);
    line-height: var(--leading-h4);
    color: #ffffff;
    margin-bottom: 14px;
}

.goals-scroll__card-desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    line-height: 1.6;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .goals-scroll-wrapper {
        height: auto;
    }

    .goals-scroll {
        position: static;
        height: auto;
        padding: 60px 0;
    }

    .goals-scroll__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .goals-scroll__card {
        opacity: 1;
        transform: none;
        height: auto;
        min-height: 230px;
        overflow: visible;
    }
}

@media (max-width: 640px) {
    .goals-scroll__grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .goals-scroll__card {
        opacity: 1;
        transform: none;
    }
}

/* -------------------------------------------------- */
/* Testimonials marquee (3-column auto-scroll)         */
/* -------------------------------------------------- */
.testi-marquee {
    width: 100%;
    padding: 100px 0;
    background-color: #faf6ee;
    overflow: hidden;
}

.testi-marquee__header {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto 56px;
    text-align: center;
}

.testi-marquee__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c3a;
    margin-bottom: 16px;
}

.testi-marquee__eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.testi-marquee__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
    margin-bottom: 12px;
}

.testi-marquee__sub {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-label);
    color: #6b6a5e;
    max-width: 560px;
    margin: 0 auto;
}

.testi-marquee__grid {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    height: 820px;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.testi-marquee__col {
    height: 100%;
    overflow: hidden;
}

.testi-marquee__track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    will-change: transform;
    animation: testiMarqueeUp 34s linear infinite;
}

.testi-marquee__col--up .testi-marquee__track {
    animation-name: testiMarqueeUp;
}

.testi-marquee__col--down .testi-marquee__track {
    animation-name: testiMarqueeDown;
    animation-duration: 30s;
}

.testi-marquee__grid:hover .testi-marquee__track {
    animation-play-state: paused;
}

@keyframes testiMarqueeUp {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

@keyframes testiMarqueeDown {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
}

.testi-marquee__card {
    flex-shrink: 0;
    padding: 28px;
    background-color: #ece6d7;
    height: 280px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 10px;
}

.testi-marquee__card--photo {
    height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.testi-marquee__card--photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 25, 15, 0.75), rgba(15, 25, 15, 0.05) 60%);
}

.testi-marquee__rating {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background-color: rgba(20, 33, 15, 0.85);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testi-marquee__rating svg {
    width: 13px;
    height: 13px;
    fill: #f5c451;
    stroke: none;
}

.testi-marquee__quote {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #2b2a20;
    flex: 1;
}

.testi-marquee__card--photo .testi-marquee__quote {
    color: #ffffff;
}

.testi-marquee__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.testi-marquee__author strong,
.testi-marquee__photo-content strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2b2a20;
}

.testi-marquee__author em,
.testi-marquee__photo-content em {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.8125rem;
    color: #6b6a5e;
}

.testi-marquee__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.testi-marquee__photo-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
}

.testi-marquee__photo-content strong,
.testi-marquee__photo-content em {
    color: #ffffff;
}

.testi-marquee__photo-content .testi-marquee__quote {
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .testi-marquee__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testi-marquee__grid .testi-marquee__col:nth-child(3) {
        display: none;
    }
}

@media (max-width: 640px) {
    .testi-marquee {
        padding: 60px 0;
    }

    .testi-marquee__grid {
        grid-template-columns: 1fr;
        height: 640px;
    }

    .testi-marquee__grid .testi-marquee__col:nth-child(2) {
        display: none;
    }
}

.journey-pin-wrapper {
    position: relative;
    height: 170vh;
}

.journey-pin {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #0f3d24;
}

.journey-pin__card {
    position: absolute;
    top: 0;
    bottom: 0;
}

.journey-cta {
    left: 0;
    right: 0;
    z-index: 1;
    background-color: #0f3d24;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.journey-panel {
    top: 0;
    bottom: 0;
    z-index: 2;
    background-color: #ffffff;
    overflow: hidden;
}

.journey-panel--left {
    left: 0;
    width: 50%;
    background-color: #f2f4e6;
    display: flex;
    align-items: center;
    transform: translateX(-140%);
}

.journey-panel--right {
    right: 0;
    width: 50%;
    padding: 14px;
    transform: translateX(140%);
}

.journey-panel__photo {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
}

.journey-panel__inner {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 44px;
}

.journey-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #4c7a5a;
    margin-bottom: 14px;
}

.journey-panel__eyebrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.journey-panel__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h3);
    font-size: var(--text-h3);
    line-height: var(--leading-h3);
    color: #123c2a;
    margin-bottom: 24px;
}

.journey-panel__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.journey-panel__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.journey-panel__row > *:only-child {
    grid-column: 1 / -1;
}

.journey-panel__field {
    position: relative;
    display: block;
}

.journey-panel__field span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #7a8075;
    pointer-events: none;
    transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.journey-panel__form input,
.journey-panel__form select,
.journey-panel__form textarea {
    width: 100%;
    padding: 18px 0 10px;
    border: none;
    border-bottom: 1px solid rgba(22, 31, 27, 0.3);
    border-radius: 0;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #2b2620;
    outline: none;
    transition: border-color 0.2s ease;
}

.journey-panel__field input,
.journey-panel__field textarea {
    padding-top: 30px;
}

.journey-panel__field--textarea span {
    top: 2px;
    transform: none;
}

.journey-panel__field input:focus,
.journey-panel__field textarea:focus,
.journey-panel__form select:focus {
    border-bottom-color: #2b2620;
}

.journey-panel__field input:focus + span,
.journey-panel__field input:not(:placeholder-shown) + span,
.journey-panel__field input:-webkit-autofill + span,
.journey-panel__field textarea:focus + span,
.journey-panel__field textarea:not(:placeholder-shown) + span {
    top: 2px;
    transform: none;
    font-size: 13px;
    color: #2b2620;
}

.journey-panel__form select {
    padding-right: 28px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232b2620' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
}

.journey-panel__form textarea {
    resize: vertical;
    min-height: 140px;
}

.journey-panel__submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 8px;
    min-height: 50px;
    padding: 8px 24px 8px 60px;
    border-radius: 999px;
    background-color: #123c2a;
    box-sizing: border-box;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.journey-panel__submit-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #c3d94e;
    color: #123c2a;
    transition: left 0.45s ease-in-out, background-color 0.45s ease-in-out, color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.journey-panel__submit-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.journey-panel__submit:hover {
    padding: 8px 60px 8px 24px;
    background-color: #c3d94e;
    color: #123c2a;
    box-shadow: 0 12px 28px rgba(18, 60, 42, 0.12);
}

.journey-panel__submit:hover .journey-panel__submit-icon {
    left: calc(100% - 42px);
    background-color: #123c2a;
    color: #ffffff;
    transform: rotate(45deg);
}

.journey-panel__contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4a463c;
    margin-top: 24px;
}

.journey-panel__contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #123c2a;
    font-weight: 600;
}

.journey-panel__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.journey-panel__phone-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.journey-cta__inner {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.journey-cta__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c3d94e;
    margin-bottom: 20px;
}

.journey-cta__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #ffffff;
    margin-bottom: 24px;
}

.journey-cta__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #cfe0d2;
    max-width: 640px;
    margin: 0 auto 50px;
}

.journey-cta__badge {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.journey-cta__badge-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: journeyCtaSpin 16s linear infinite;
}

.journey-cta__badge-ring text {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 1px;
    fill: #ffffff;
}

.journey-cta__badge-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #c3d94e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14210f;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.journey-cta__badge-btn:hover {
    background-color: #ffffff;
}

.journey-cta__badge-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@keyframes journeyCtaSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stand-on-wrapper {
    position: relative;
    height: 220vh;
}

.stand-on {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 140px;
    box-sizing: border-box;
}

.stand-on__head {
    width: 90%;
    max-width: 900px;
    text-align: center;
    margin-bottom: 24px;
    flex: 0 0 auto;
}

.stand-on__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
    margin-bottom: 16px;
}

.stand-on__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5245;
}

.stand-on__cards {
    width: 96%;
    max-width: 1900px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}

.stand-on__card {
    position: relative;
    flex: 0 1 auto;
    width: auto;
    height: min(56vh, 640px);
    max-width: 32%;
    aspect-ratio: 3 / 3.5;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px -20px rgba(58, 50, 38, 0.35);
    opacity: 0;
    transform: translateY(60vh);
}

.stand-on__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 24, 16, 0.45) 0%, rgba(30, 24, 16, 0) 30%, rgba(30, 24, 16, 0.55) 100%);
}

.stand-on__card-title {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #ffffff;
    z-index: 1;
}

.stand-on__card-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    z-index: 1;
    opacity: 0;
    transform: translateY(14px);
}

@media (max-width: 900px) {
    .stand-on-wrapper {
        height: auto;
    }

    .stand-on {
        position: static;
        height: auto;
        padding: 60px 0;
    }

    .stand-on__head {
        position: static;
        transform: none;
        margin: 0 auto 40px;
    }

    .stand-on__cards {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
    }

    .stand-on__card {
        flex: 0 0 auto;
        width: 90%;
        max-width: 460px;
        opacity: 1;
        transform: none;
    }

    .stand-on__card-caption {
        opacity: 1;
        transform: none;
    }
}

.services-carousel {
    background-color: #ffffff;
    padding: 100px 0;
}

.services-carousel__inner {
    width: 100%;
}

.services-carousel__header {
    width: 92%;
    max-width: 1600px;
    margin: 0 auto 44px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.services-carousel__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
    margin-bottom: 12px;
}

.services-carousel__desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4b5245;
}

.services-carousel__nav {
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.services-carousel__nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background-color: #123c2a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease;
    flex: 0 0 auto;
}

.services-carousel__nav-btn:hover {
    background-color: #c3d94e;
        color: #123c2a;
    border: solid 2px #123c2a;
}


.services-carousel__nav-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-carousel__viewport {
    overflow: hidden;
    padding: 40px 0;
    cursor: grab;
    touch-action: pan-y;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20%, #000 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 20%, #000 80%, transparent 100%);
}

.services-carousel__viewport.is-dragging {
    cursor: grabbing;
}

.services-carousel__track {
    display: flex;
    align-items: center;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes servicesCardPop {
    0% { transform: scale(0.94); }
    60% { transform: scale(1.035); }
    100% { transform: scale(1.02); }
}

.services-carousel__card {
    position: relative;
    flex: 0 0 42%;
    height: 580px;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: block;
    text-decoration: none;
    transform: scale(0.94);
    transition: transform 0.5s ease;
}

.services-carousel__card.is-active {
    z-index: 2;
    animation: servicesCardPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.services-carousel__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 16, 10, 0.5) 0%, rgba(20, 16, 10, 0) 32%, rgba(20, 16, 10, 0.65) 100%);
    transition: background 0.5s ease;
}

.services-carousel__card:not(.is-active)::before {
    background: linear-gradient(180deg, rgba(40, 30, 18, 0.55) 0%, rgba(40, 30, 18, 0.4) 50%, rgba(40, 30, 18, 0.65) 100%);
}

.services-carousel__badge {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 1;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(30, 24, 16, 0.55);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.services-carousel__view {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%) scale(0.85);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 24px;
    border-radius: 999px;
    background-color: rgba(30, 24, 16, 0.7);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.services-carousel__view-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #14210f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-carousel__view-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-carousel__card:hover .services-carousel__view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.services-carousel__caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
}

.services-carousel__caption-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.services-carousel__caption-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #f1ede3;
    max-width: 460px;
    margin-top: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease;
}

.services-carousel__card:hover .services-carousel__caption-desc {
    opacity: 1;
    max-height: 80px;
}

@media (max-width: 900px) {
    .services-carousel {
        padding: 60px 0;
    }

    .services-carousel__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-carousel__nav {
        display: none;
    }

    .services-carousel__viewport {
        padding: 0;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .services-carousel__track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        transform: none !important;
        scrollbar-width: none;
    }

    .services-carousel__track::-webkit-scrollbar {
        display: none;
    }

    .services-carousel__card {
        flex: 0 0 88%;
        height: auto;
        aspect-ratio: 4 / 3.2;
        opacity: 1;
        transform: none !important;
        scroll-snap-align: center;
        animation: none !important;
    }

    .services-carousel__caption-desc {
        opacity: 1;
        max-height: 80px;
        margin-top: 10px;
    }

    .services-carousel__view {
        display: none;
    }
}


.projects-marquee-wrapper {
    position: relative;
    height: 420vh;
}

.projects-marquee {
    --marquee-item-w: 340px;
    --marquee-item-h: 420px;
    --marquee-gap: 24px;
    --marquee-radius: 20px;
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    padding: 70px 0 50px;
    overflow: hidden;
    box-sizing: border-box;
}

.projects-marquee__header {
    width: 90%;
    max-width: 900px;
    margin: 28px auto 30px;
    text-align: center;
}

.projects-marquee__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c3a;
    margin-bottom: 16px;
}

.projects-marquee__eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.projects-marquee__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
}

.projects-marquee__row {
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--marquee-gap);
}

.projects-marquee__row:last-child {
    margin-bottom: 0;
}

.projects-marquee__track {
    display: flex;
    gap: var(--marquee-gap);
    width: max-content;
    will-change: transform;
}

.projects-marquee__item {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: var(--marquee-item-w);
    height: var(--marquee-item-h);
    border-radius: var(--marquee-radius);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.projects-marquee__overlay {
    position: absolute;
    inset: 14px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px;
    background-color: rgba(15, 46, 36, 0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
}

.projects-marquee__item:hover .projects-marquee__overlay {
    opacity: 1;
    transition-delay: 0s;
}

.projects-marquee__item-divider {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.projects-marquee__item:hover .projects-marquee__item-divider {
    transform: scaleX(1);
    transition-delay: 0.25s;
}

.projects-marquee__item-title {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h5);
    font-size: var(--text-h5);
    line-height: var(--leading-h5);
    margin: 0;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.projects-marquee__item:hover .projects-marquee__item-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.projects-marquee__item-category {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    margin: 0;
    color: #ffffff;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.projects-marquee__item:hover .projects-marquee__item-category {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

@media (max-width: 768px) {
    .projects-marquee-wrapper {
        height: auto;
    }

    .projects-marquee {
        position: static;
        height: auto;
        padding: 60px 0 40px;
    }

    .projects-marquee__item {
        width: 220px;
        height: 280px;
    }
}

.testimonials {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: clamp(60px, 8vh, 140px) 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials__inner {
    width: 96%;
    max-width: 1900px;
    margin: 0 auto;
    background-color: #f2f4e6;
    border-radius: 32px;
    overflow: hidden;
}

.testimonials__card {
    display: grid;
    grid-template-columns: minmax(240px, 20vw) 1fr 1fr;
    align-items: center;
    gap: clamp(32px, 3.5vw, 70px);
    min-height: 70vh;
    padding: clamp(40px, 6vh, 90px) clamp(30px, 4vw, 70px);
}

.testimonials__arch {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: clamp(400px, 58vh, 640px);
    background-color: #c3d94e;
    border-radius: 140px 140px 20px 20px;
    padding: 30px 20px 20px;
    box-sizing: border-box;
}

.testimonials__badge-icon {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #123c2a;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 10px;
}

.testimonials__badge p {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: #123c2a;
    margin-bottom: 20px;
}

.testimonials__photo {
    flex-grow: 1;
    width: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.testimonials__middle {
    display: flex;
    flex-direction: column;
}

.testimonials__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c3a;
    margin-bottom: 16px;
}

.testimonials__eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonials__heading {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
    margin-bottom: 24px;
}

.testimonials__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 50px;
    padding: 8px 24px 8px 66px;
    background-color: #123c2a;
    border-radius: 999px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 28px;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.testimonials__cta-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #c3d94e;
    color: #123c2a;
    transition: left 0.45s ease-in-out, background-color 0.45s ease-in-out, color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.testimonials__cta-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonials__cta:hover {
    padding: 8px 66px 8px 24px;
    background-color: #c3d94e;
    color: #123c2a;
    box-shadow: 0 12px 28px rgba(18, 60, 42, 0.12);
}

.testimonials__cta:hover .testimonials__cta-icon {
    left: calc(100% - 42px);
    background-color: #123c2a;
    color: #ffffff;
    transform: rotate(45deg);
}

.testimonials__rating strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #14210f;
    margin-bottom: 4px;
}

.testimonials__rating span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4c7a5a;
}

.testimonials__right {
    display: flex;
    flex-direction: column;
}

.testimonials__quote-icon {
    color: #c3d94e;
    margin-bottom: 12px;
}

.testimonials__quote-icon svg {
    width: 42px;
    height: 32px;
    fill: currentColor;
}

.testimonials__quote-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.15vw, 20px);
    line-height: 1.6;
    color: #14210f;
    margin-bottom: 16px;
}

.testimonials__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 28px;
}

.testimonials__stars svg {
    width: 18px;
    height: 18px;
    fill: #c3d94e;
}

.testimonials__stars svg.is-empty {
    fill: #d8dbc9;
}

.testimonials__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(20, 33, 15, 0.12);
    margin-bottom: 24px;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials__avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.testimonials__author-info {
    display: flex;
    flex-direction: column;
}

.testimonials__author-info strong {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #14210f;
}

.testimonials__author-info span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #4c7a5a;
}

.testimonials__nav {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.testimonials__nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #123c2a;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.testimonials__nav button:hover {
    background-color: #123c2a;
    color: #ffffff;
}

.testimonials__nav button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonials__logos {
    background-color: #123c2a;
    padding: 24px 0;
    overflow: hidden;
}

.testimonials__logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: testimonialsLogosScroll 22s linear infinite;
}

.testimonials__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    white-space: nowrap;
}

.testimonials__logo svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

@keyframes testimonialsLogosScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.services-ticker {
    width: 100%;
    background-color: #123c2a;
    padding: 36px 0;
    overflow: hidden;
}

.services-ticker__track {
    display: flex;
    align-items: center;
    gap: 52px;
    width: max-content;
    animation: servicesTickerScroll 260s linear infinite;
}

.services-ticker:hover .services-ticker__track {
    animation-play-state: paused;
}

.services-ticker__item {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #ffffff;
    white-space: nowrap;
}

.services-ticker__leaf {
    width: 37px;
    height: 37px;
    flex-shrink: 0;
    fill: #c3d94e;
}

@keyframes servicesTickerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.sub-services-ticker {
    width: 100%;
    background-color: #ffffff;
    padding: 65px 0;
    overflow: hidden;
}

.sub-services-ticker__track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: servicesTickerScroll 260s linear infinite;
}

.sub-services-ticker:hover .sub-services-ticker__track {
    animation-play-state: paused;
}

.sub-services-ticker__item {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 6vw, 65px);
    color: transparent;
    -webkit-text-stroke: 1.8px rgba(20, 33, 15, 0.4);
    white-space: nowrap;
}

.sub-services-ticker__leaf {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    fill: #123c2a;
}

.why-reiki-list {
    display: flex;
    gap: 20px;
}

.reiki-about {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
}

.reiki-about__inner {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 100px;
    align-items: center;
}

.reiki-about__media {
    position: relative;
    width: 100%;
}

.reiki-about__photo-main {
    width: 100%;
    height: 620px;
    border-radius: 240px 240px 24px 24px;
    background-color: #e5e3d4;
    background-size: cover;
    background-position: center;
}

.reiki-about__photo-inset {
    position: absolute;
    right: -52px;
    bottom: -45px;
    width: 220px;
    background-color: #f7f8f1;
    border-radius: 20px;
    padding: 10px 10px 16px;
    box-shadow: 0 20px 40px rgba(18, 60, 42, 0.15);
}

.reiki-about__photo-inset-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
}

.reiki-about__photo-badge {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #123c2a;
}

.reiki-about__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(20, 33, 15, 0.25);
    border-radius: 999px;
    font-size: var(--text-badge);
    font-weight: 600;
    color: #123c2a;
}

.reiki-about__badge i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c99a6c;
}

.reiki-about__heading {
    font-size: var(--text-h2);
    font-weight: var(--weight-h2);
    line-height: var(--leading-h2);
    color: #14210f;
    margin: 20px 0 20px;
}

.reiki-about__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5245;
    max-width: 560px;
    margin-bottom: 24px;
}

.reiki-about__points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.reiki-about__points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: #14210f;
}

.reiki-about__points-icon {
    color: #c99a6c;
    font-size: 18px;
}

.reiki-about__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.reiki-about__cta {
    margin: 0;
}

.reiki-about__help {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reiki-about__help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(18, 60, 42, 0.1);
    color: #123c2a;
}

.reiki-about__help-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.reiki-about__help-text {
    display: flex;
    flex-direction: column;
}

.reiki-about__help-label {
    font-size: 13px;
    color: #747b75;
}

.reiki-about__help-text a {
    font-size: 16px;
    font-weight: 700;
    color: #14210f;
}

.reiki-about__team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reiki-about__team-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.reiki-about__team-text {
    display: flex;
    flex-direction: column;
}

.reiki-about__team-name {
    font-size: 15px;
    font-weight: 700;
    color: #14210f;
}

.reiki-about__team-role {
    font-size: 13px;
    color: #747b75;
}

@media (max-width: 1000px) {
    .reiki-about__inner {
        grid-template-columns: 1fr;
    }

    .reiki-about__media {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .reiki-about__photo-main {
        height: 420px;
    }

    .reiki-about__photo-inset {
        right: 12px;
        bottom: 12px;
        width: 150px;
    }
}

.motivation {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f2f4e6;
    /* padding: 0px 0; */
}

.motivation .container {
    width: 96%;
    max-width: 1600px;
}

.motivation__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid rgba(20, 33, 15, 0.3);
    border-radius: 999px;
    font-size: var(--text-badge);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c2a;
    margin-bottom: 24px;
}

.motivation__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 24px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(20, 33, 15, 0.12);
}

.motivation__heading {
    font-size: var(--text-h2);
    font-weight: var(--weight-h2);
    line-height: var(--leading-h2);
    color: #14210f;
}

.motivation__content {
    display: grid;
    grid-template-columns: 480px 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.motivation__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.motivation__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 999px;
    padding: 14px;
    padding-left: 26px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.motivation__item-label {
    font-size: 16px;
    font-weight: 600;
    color: #14210f;
    transition: color 0.3s ease;
}

.motivation__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #123c2a;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.motivation__item-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.motivation__item.is-active {
    background-color: #c3d94e;
}

.motivation__item.is-active .motivation__item-label {
    color: #123c2a;
}

.motivation__item.is-active .motivation__item-icon {
    background-color: #123c2a;
    color: #c3d94e;
}

.motivation__media {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 5 / 5;
}

.motivation__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.3s ease;
}

.motivation__panel-heading {
    font-size: var(--text-h3);
    font-weight: var(--weight-h3);
    line-height: var(--leading-h3);
    color: #14210f;
    margin-bottom: 16px;
}

.motivation__panel-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5245;
    margin-bottom: 24px;
}

.motivation__points {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.motivation__points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #14210f;
}

.motivation__points svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    fill: none;
    stroke: #123c2a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1100px) {
    .motivation__content {
        grid-template-columns: 1fr;
    }

    .motivation__media {
        order: -1;
    }
}

.feature-cards {
    width: 100%;
    background-color: #f2f4e6;
    padding: 40px 0 140px;
}

.feature-cards .container {
    max-width: 1350px;
}

.feature-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-cards__card {
    position: relative;
    background-color: #c4d94e;
    border-radius: 28px;
    padding: 36px 32px 48px;
    overflow: hidden;
}

.feature-cards__card::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 111px;
    height: 105px;
    z-index: 1;
    pointer-events: none;
    background-color: #f0f2e4;
    -webkit-mask-image: url('../images/shape-bottom.png');
    mask-image: url('../images/shape-bottom.png');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.feature-cards__head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.feature-cards__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: rgba(18, 60, 42, 0.1);
}

.feature-cards__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: #123c2a;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-cards__title {
    font-size: var(--text-h4);
    font-weight: var(--weight-h4);
    line-height: var(--leading-h4);
    color: #123c2a;
}

.feature-cards__divider {
    position: relative;
    display: block;
    height: 1px;
    background-color: rgba(18, 60, 42, 0.2);
    margin-bottom: 20px;
    overflow: hidden;
}

.feature-cards__divider::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #123c2a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-cards__card:hover .feature-cards__divider::after {
    transform: scaleX(1);
}

.feature-cards__card:hover .feature-cards__number {
    background-color: #123c2a;
    color: #c3d94e;
}

.feature-cards__desc {
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(18, 60, 42, 0.75);
}

.feature-cards__number {
    position: absolute;
    z-index: 2;
    bottom: 1px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #c3d94e;
    color: #123c2a;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(18, 60, 42, 0.15);
}

@media (max-width: 900px) {
    .feature-cards__grid {
        grid-template-columns: 1fr;
    }
}

.services-panel {
    padding: 60px 0;
    display: flex;
    align-items: center;
    overflow: visible;
    background-color: #ffffff;
}

.services-panel__card {
    width: 94%;
    min-height: 80vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #123c2a;
    border-radius: 40px;
    padding: 48px 0;
    will-change: width, border-radius;
}

.services-panel__inner {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
}

.services-panel__badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background-color: #ffffff;
    font-size: var(--text-badge);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c2a;
    margin-bottom: 20px;
}

.services-panel__divider {
    display: block;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    margin-bottom: 20px;
}

.services-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.services-panel__heading {
    font-size: var(--text-h2);
    font-weight: var(--weight-h2);
    line-height: var(--leading-h2);
    color: #ffffff;
}

.services-panel__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.services-panel__media-stack {
    position: relative;
    width: 80%;
    aspect-ratio: 1 / 1;
}

.services-panel__media {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
}

.services-panel__media--next {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-panel__list {
    display: flex;
    flex-direction: column;
}

.services-panel__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.services-panel__item:first-child {
    padding-top: 0;
}

.services-panel__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.services-panel__tag::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #ffffff;
}

.services-panel__item-title {
    font-size: var(--text-h3);
    font-weight: var(--weight-h3);
    line-height: var(--leading-h3);
    color: #ffffff;
    margin-top: 6px;
}

.services-panel__item-desc {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}

.services-panel__item:hover .services-panel__item-desc {
    max-height: 100px;
    margin-top: 10px;
    opacity: 1;
}

.services-panel__item-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ffffff;
    color: #123c2a;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.services-panel__item-arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-panel__item-arrow:hover,
.services-panel__item:hover .services-panel__item-arrow {
    background-color: #c3d94e;
    color: #123c2a;
    transform: rotate(135deg);
}

@media (max-width: 900px) {
    .services-panel {
        padding: 60px 0;
    }

    .services-panel__card {
        width: 100% !important;
        border-radius: 28px !important;
    }

    .services-panel__content {
        grid-template-columns: 1fr;
    }
}

.rate-bar {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(24px);
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    background-color: #123c2a;
    color: #ffffff;
    /* border: 2px solid #c3d94e; */
    border-radius: 24px;
    box-shadow: 0 0 0 5px #123c2a;
    padding: 10px 10px 10px 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: max-content;
    max-width: calc(100% - 24px);
}

.rate-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.rate-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #dbe6c8;
    color: #123c2a;
}

.rate-bar__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rate-bar__intro {
    display: flex;
    flex-direction: column;
    /* gap: 4px; */
    flex-shrink: 0;
}

.rate-bar__desc {
    font-size: 14px;
    font-weight: 400;
    color: #c7d3bc;
}

.rate-bar__divider {
    width: 1px;
    align-self: stretch;
    margin: 4px 0;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.rate-bar__price-block {
    display: flex;
    flex-direction: column;
    gap: 0px;
    flex-shrink: 0;
}

.rate-bar__price-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #c3d94e;
}

.rate-bar__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #dbe6c8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.rate-bar__badge svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rate-tab__label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.75;
}

.rate-tab__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 26px;
    font-weight: 700;
}

.rate-tab__unit {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.75;
}

.rate-bar__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
    min-height: 58px;
    background-color: #c3d94e;
    color: #123c2a;
    border-radius: 999px;
    padding: 12px 26px 12px 62px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(195, 217, 78, 0.18);
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.rate-bar__cta-text {
    position: relative;
    z-index: 1;
    transition: transform 0.45s ease-in-out;
}

.rate-bar__cta-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #123c2a;
    color: #c3d94e;
    transition: left 0.45s ease-in-out, background-color 0.45s ease-in-out, color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.rate-bar__cta-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.rate-bar__cta:hover {
    padding: 12px 62px 12px 26px;
    background-color: #123c2a;
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(195, 217, 78, 0.5), 0 12px 28px rgba(8, 12, 10, 0.16);
}

.rate-bar__cta:hover .rate-bar__cta-text {
    transform: translateX(-2px);
}

.rate-bar__cta:hover .rate-bar__cta-icon {
    left: calc(100% - 44px);
    background-color: #c3d94e;
    color: #123c2a;
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 900px) {
    .rate-bar__desc,
    .rate-bar__divider--badge,
    .rate-bar__badge {
        display: none;
    }
}

@media (max-width: 700px) {
    .rate-bar__price-label {
        display: none;
    }
}

.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.booking-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.booking-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(18, 60, 42, 0.6);
}

.booking-modal__panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.booking-modal.is-open .booking-modal__panel {
    transform: scale(1);
}

.booking-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #123c2a;
    color: #ffffff;
    font-size: 20px;
    line-height: 1;
}

.booking-modal__content {
    min-width: 0;
    padding: 48px 40px;
}

.booking-modal__heading {
    display: block;
    width: 100%;
    max-width: none;
    font-size: var(--text-h3);
    font-weight: var(--weight-h3);
    line-height: var(--leading-h3);
    color: #14210f;
    margin-bottom: 12px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.booking-modal__heading-line {
    display: block;
}

.booking-modal__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5245;
    margin-bottom: 18px;
}

.booking-modal__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 14px;
    border-radius: 12px;
    background-color: #f3f6ee;
    color: #123c2a;
    font-size: 14px;
    font-weight: 600;
}

.booking-modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.booking-modal__field {
    position: relative;
    display: block;
    padding: 0 12px;
}

.booking-modal__form input:not(.booking-modal__honeypot) {
    width: 100%;
    padding: 30px 0 10px;
    border: none;
    border-bottom: 1px solid rgba(20, 33, 15, 0.24);
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: 15px;
    color: #14210f;
    outline: none;
    transition: border-color 0.2s ease;
}

.booking-modal__field-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #7a8075;
    pointer-events: none;
    transition: top 0.2s ease, transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.booking-modal__form input:not(.booking-modal__honeypot):focus {
    border-bottom-color: #14210f;
}

.booking-modal__form input:not(.booking-modal__honeypot):focus + .booking-modal__field-label,
.booking-modal__form input:not(.booking-modal__honeypot):not(:placeholder-shown) + .booking-modal__field-label {
    top: 2px;
    transform: none;
    font-size: 13px;
    color: #14210f;
}

.booking-modal__form input:not(.booking-modal__honeypot):-webkit-autofill + .booking-modal__field-label {
    top: 2px;
    transform: none;
    font-size: 13px;
    color: #14210f;
}

.booking-modal__submit {
    padding: 14px 18px;
    background-color: #123c2a;
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
    transition: background-color 0.3s ease;
}

.booking-modal__submit:hover {
    background-color: #c3d94e;
    color: #123c2a;
}

.booking-modal__submit:disabled {
    cursor: wait;
    opacity: 0.7;
}

.booking-modal__status {
    min-height: 20px;
    margin: 4px 2px 0;
    font-size: 14px;
    line-height: 1.4;
}

.booking-modal__status.is-success {
    color: #1d6b3a;
}

.booking-modal__status.is-error {
    color: #b42318;
}

.booking-modal__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.booking-modal__media {
    background-size: cover;
    background-position: center;
}

@media (max-width: 700px) {
    .rate-bar {
        width: calc(100% - 24px);
        padding: 12px;
        gap: 10px;
    }

    .booking-modal__panel {
        grid-template-columns: 1fr;
        width: calc(100% - 24px);
    }

    .booking-modal__media {
        display: none;
    }

    .booking-modal__content {
        padding: 40px 24px 28px;
    }

    .booking-modal__heading {
        font-size: var(--text-h4);
    }

    .booking-modal__summary {
        align-items: flex-start;
        flex-direction: column;
    }
}

.proof {
    width: 100%;
    background-color: #ffffff;
    padding: 0 0 100px;
}

.proof .container {
    width: 96%;
    max-width: 1600px;
}

.proof__panel {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    background-color: #c4d94e;
    border-radius: 32px;
    padding: 48px;
}

.proof__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 36px;
}

.proof__avatars {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.proof__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -16px;
    background-size: cover;
    background-position: center;
}

.proof__avatar:first-child {
    margin-left: 0;
}

.proof__avatar--1 { background-color: #b98a5e; }
.proof__avatar--2 { background-color: #7c8268; }
.proof__avatar--3 { background-color: #35455c; }

.proof__aside-text {
    font-size: 18px;
    line-height: 1.5;
    color: #14210f;
    margin-bottom: 24px;
}

.proof__aside-text strong {
    text-decoration: underline;
}

.proof__aside-cta {
    margin: 0;
}

.proof__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proof__heading {
    font-size: var(--text-h3);
    font-weight: var(--weight-h3);
    line-height: var(--leading-h3);
    color: #14210f;
    margin-bottom: 40px;
}

.proof__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.proof__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.proof__ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
}

.proof__ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.proof__ring-track {
    fill: #ffffff;
    stroke: rgba(20, 33, 15, 0.15);
    stroke-width: 3;
}

.proof__ring-fill {
    fill: none;
    stroke: #123c2a;
    stroke-width: 3;
    stroke-linecap: round;
}

.proof__ring-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #14210f;
}

.proof__stat-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #3c4536;
    max-width: 220px;
}

@media (max-width: 900px) {
    .proof__panel {
        grid-template-columns: 1fr;
    }

    .proof__stats {
        grid-template-columns: 1fr;
    }
}

.testimonial-spot {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.testimonial-spot .container {
    display: flex;
    justify-content: flex-end;
}

.testimonial-spot__card {
    position: relative;
    width: 100%;
    max-width: 400px;
    background-color: #ffffff;
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.testimonial-spot__card.is-sliding-out {
    opacity: 0;
    transform: translateX(-40px);
}

.testimonial-spot__card.is-sliding-in {
    opacity: 0;
    transform: translateX(40px);
    transition: none;
}

.testimonial-spot__quote-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #e0b869;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.testimonial-spot__stars {
    display: block;
    color: #e0b869;
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-spot__quote {
    font-size: 18px;
    line-height: 1.6;
    color: #14210f;
    margin-bottom: 28px;
}

.testimonial-spot__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-spot__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.testimonial-spot__author-name {
    font-size: 17px;
    font-weight: 600;
    color: #14210f;
}

.testimonial-spot__author-role {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a8f80;
}

@media (max-width: 700px) {
    .testimonial-spot .container {
        justify-content: center;
    }
}

.wellness-booking {
    position: relative;
    width: 100%;
    background-color: #f2f4e6;
    padding: 40px 0 40px;
}

.wellness-booking__inner {
    position: relative;
    z-index: 1;
    width: 96%;
    max-width: 1280px;
    margin: 0 auto;
}

.wellness-booking__layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1fr);
    gap: 44px;
    align-items: start;
}

.wellness-booking__right .contact-connect__form-card {
    width: 100%;
    margin: 0;
    background-color: #ffffff;
    box-shadow: 0 26px 60px rgba(18, 60, 42, 0.08);
}

.wellness-booking__left {
    position: sticky;
    top: 96px;
    align-self: start;
    height: fit-content;
}

.wellness-booking__sticky {
    position: static;
    padding-top: 20px;
}

.wellness-booking__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 6px 18px;
    border: 1px solid rgba(18, 60, 42, 0.18);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #14210f;
    margin-bottom: 24px;
}

.wellness-booking__eyebrow i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(20, 33, 15, 0.8);
}

.wellness-booking__heading {
    max-width: 640px;
    margin: 0 0 22px;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.16;
    color: #000000;
}

.wellness-booking__desc {
    max-width: 640px;
    margin: 0 0 34px;
    font-size: 16px;
    line-height: 1.7;
    color: #72766d;
}

.wellness-booking__divider {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 40px;
    background-color: rgba(20, 33, 15, 0.12);
}

.wellness-booking__hours-card {
    max-width: 455px;
    border-radius: 26px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 18px 50px rgba(18, 60, 42, 0.08);
}

.wellness-booking__hours-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background-color: #c4d94e;
    color: #000000;
}

.wellness-booking__hours-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.wellness-booking__hours-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wellness-booking__hours-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.wellness-booking__hours-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 18px 28px;
    font-size: 17px;
    color: #6f746a;
    background-color: #fffdf5;
}

.wellness-booking__hours-row + .wellness-booking__hours-row {
    border-top: 1px solid rgba(18, 60, 42, 0.1);
}

.wellness-booking__form-card {
    display: block;
    width: 100%;
    background-color: #fffdf5;
    border-radius: 32px;
    padding: 40px 58px 42px;
    box-shadow: 0 26px 60px rgba(18, 60, 42, 0.08);
}

.wellness-booking__form-title {
    margin: 0 0 28px;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.08;
    color: #000000;
}

.wellness-booking__form-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 34px;
    background-color: rgba(20, 33, 15, 0.12);
}

.wellness-booking__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.wellness-booking__field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wellness-booking__field span {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
}

.wellness-booking__field input,
.wellness-booking__field textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px;
    border: 1px solid rgba(20, 33, 15, 0.14);
    border-radius: 14px;
    background-color: #fffdf5;
    font-family: inherit;
    font-size: 15px;
    color: #14210f;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wellness-booking__field input:focus,
.wellness-booking__field textarea:focus {
    border-color: rgba(18, 60, 42, 0.35);
    box-shadow: 0 0 0 4px rgba(195, 217, 78, 0.16);
}

.wellness-booking__field textarea {
    min-height: 144px;
    resize: vertical;
}

.wellness-booking__field--full {
    grid-column: 1 / -1;
}

.wellness-booking__submit {
    margin: 28px 0 0;
    border: none;
    width: auto;
}

.wellness-booking__status {
    min-height: 20px;
    margin: 16px 2px 0;
    font-size: 14px;
    line-height: 1.4;
}

.wellness-booking__status.is-success {
    color: #1d6b3a;
}

.wellness-booking__status.is-error {
    color: #b42318;
}

@media (max-width: 1000px) {
    .wellness-booking {
        padding: 40px 0 28px;
    }

    .wellness-booking__layout {
        grid-template-columns: 1fr;
    }

    .wellness-booking__left,
    .wellness-booking__sticky {
        position: static;
        top: auto;
        height: auto;
    }

}

@media (max-width: 700px) {
    .wellness-booking__heading,
    .wellness-booking__form-title {
        font-size: 32px;
    }

    .wellness-booking__desc {
        margin-bottom: 28px;
    }

    .wellness-booking__divider {
        margin-bottom: 28px;
    }

    .wellness-booking__hours-card {
        max-width: 100%;
    }

    .wellness-booking__hours-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wellness-booking__form-card {
        border-radius: 26px;
        padding: 30px 22px 32px;
    }

    .wellness-booking__form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wellness-booking__submit {
        width: 100%;
        justify-content: flex-start;
    }
}

.faq-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
}

.faq-section__inner {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: start;
}

.faq-section__left {
    min-width: 0;
}

.faq-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-badge);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #123c3a;
    margin-bottom: 16px;
}

.faq-section__eyebrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-section__heading {
    display: block;
    width: 100%;
    max-width: none;
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h2);
    font-size: var(--text-h2);
    line-height: var(--leading-h2);
    color: #14210f;
    margin-bottom: 40px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.faq-section__promo {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    background-color: #ffffff;
    border: 1px solid #d8e0c8;
    border-radius: 24px;
    padding: 0 0 0 28px;
    overflow: hidden;
    width: 555px;
    align-items: center;
}

.faq-section__promo-text {
    align-self: flex-start;
    padding-top: 28px;
    padding-bottom: 24px;
}

.faq-section__promo-text p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.4;
    color: #14210f;
    max-width: 220px;
    margin-bottom: 20px;
}

.faq-section__promo-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 8px 22px 8px 58px;
    margin-bottom: 32px;
    background-color: #123c2a;
    border-radius: 999px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, padding 0.45s ease-in-out, box-shadow 0.45s ease-in-out;
}

.faq-section__promo-cta:hover {
    padding: 8px 58px 8px 22px;
    background-color: #c3d94e;
    color: #123c2a;
    box-shadow: 0 12px 28px rgba(18, 60, 42, 0.12);
}

.faq-section__promo-cta-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #c3d94e;
    color: #123c2a;
    transition: left 0.45s ease-in-out, background-color 0.45s ease-in-out, color 0.45s ease-in-out, transform 0.45s ease-in-out;
}

.faq-section__promo-cta-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-section__promo-cta:hover .faq-section__promo-cta-icon {
    left: calc(100% - 38px);
    background-color: #123c2a;
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-section__promo-media {
    position: relative;
    width: 180px;
    flex-shrink: 0;
    line-height: 0;
}

.faq-section__promo-photo {
    display: block;
    width: 100%;
    height: auto;
}

.faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #f2f4e6;
    border-radius: 20px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 26px 28px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h5);
    font-size: var(--text-h5);
    line-height: var(--leading-h5);
    color: #14210f;
}

.faq-item__icon {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ffffff;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #14210f;
    transform: translate(-50%, -50%);
}

.faq-item__icon::before {
    width: 14px;
    height: 2px;
}

.faq-item__icon::after {
    width: 2px;
    height: 14px;
    transition: transform 0.3s ease;
}

.faq-item.is-active .faq-item__icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-item.is-active .faq-item__answer {
    grid-template-rows: 1fr;
}

.faq-item__answer-inner {
    overflow: hidden;
}

.faq-item__answer-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4a463c;
    padding: 0 28px 26px;
}

@media (max-width: 1100px) {
    .faq-section__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-section__promo {
        flex-direction: column;
        padding: 28px;
        width: 100%;
    }

    .faq-section__promo-media {
        width: 100%;
        height: 200px;
    }

    .faq-item__question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-item__answer-inner p {
        padding: 0 20px 20px;
    }
}

/* -------------------------------------------------- */
/* Responsive breakpoints                              */
/* Site-wide layout/spacing pass for index.php,        */
/* reiki-healing.php and contact-us.php components.    */
/* Typography for most headings already scales via the */
/* --text-h* clamp() tokens defined in :root above.     */
/* -------------------------------------------------- */

/* Large Desktop */
@media screen and (min-width: 1440px) {
    .page-hero__inner,
    .hero-banner__inner,
    .services-panel__inner,
    .proof .container,
    .motivation .container,
    .contact-connect__inner,
    .contact-highlights__inner {
        max-width: 1600px;
    }

    /* Contact page responsive start */

    .page-hero__cutout {
        width: 117%;
    }

    .page-hero__image {
        width: 80%;
        justify-self: center;
        bottom: 50px;
    }

    .page-hero__inner {
        gap: 10px !important;
    }

    .page-hero__line {
        left: 35%;
    }

    .page-hero {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-banner__content, .page-hero__content {
        padding-left: 30px;
    }

    .contact-highlights {
        padding: 72px 30px 78px;
    }

    .contact-connect {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 60px;
    }

    .contact-connect__form-card {
        padding: 58px 35px 56px;
    }

    .contact-connect__field span {
        font-size: 20px;
    }

    .contact-connect__field input, .contact-connect__field select, .contact-connect__field textarea {
        font-size: 18px;
    }

    .contact-connect__checkbox {
        font-size: 16px;
    }


    /* Contact page responsive end */

}

/* Header: exactly 1440px (near-default sizing, as before) */
@media screen and (min-width: 1440px) and (max-width: 1440px) {
    .page-home .site-nav > ul,
    .site-nav > ul {
        gap: 26px;
    }

    .page-home .site-nav > ul > li > a,
    .site-nav > ul > li > a {
        font-size: 16px;
    }
}

/* Header: 1025px - 1439px (full nav kept, compact sizing) */
@media screen and (min-width: 1025px) and (max-width: 1439px) {
    .page-home .header__inner,
    .header__inner {
        padding: 0 20px;
    }

    .page-home .logo img,
    .logo img {
        height: 46px;
    }

    .page-home .site-nav > ul,
    .site-nav > ul {
        gap: 14px;
    }

    .page-home .site-nav > ul > li > a,
    .site-nav > ul > li > a {
        font-size: 16px;
        gap: 5px;
    }

    .page-home .btn-book,
    .btn-book {
        font-size: 12px;
        min-height: 44px;
        padding: 7px 18px 7px 46px;
        margin-left: auto;
    }

    .page-home .btn-book__arrow,
    .btn-book__arrow {
        width: 28px;
        height: 28px;
        left: 7px;
    }

    .page-home .nav-toggle,
    .nav-toggle {
        margin-left: 10px;
    }

    .services__page:not([data-services-page]) {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        width: 100%;
        flex-shrink: 0;
    }
}

/* Desktop and Laptop */
@media screen and (max-width: 1439px) {
    .container {
        width: 92%;
    }
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .reiki-about__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .reiki-about__media {
        max-width: 480px;
        margin: 0 auto;
    }

    .motivation__content {
        grid-template-columns: 1fr;
    }

    .motivation__media {
        order: -1;
    }

    .proof__panel {
        grid-template-columns: 1fr;
    }

    .contact-highlights__inner {
        grid-template-columns: 1fr;
        gap: 12px;
    }

     .services__page:not([data-services-page]) {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px;
    width: 100%;
    flex-shrink: 0;
   }

    /* Contact page responsive start */

    .hero-banner__content, .page-hero__content {
        padding-left: 55px;
    }

    .page-hero__cutout {
        width: 115%;
    }

    .page-hero__image {
        width: 80%;
        justify-self: center;
    }

    .hero-banner__heading {
        font-size: 40px;
    }

    .contact-highlights__inner {
        display: flex;
    }

    .contact-highlights__card {
        width: 100%;
        max-width: 373px;
    }

    .contact-highlights__content {
        min-width: 111px;
        width: 200px;
    }

    .contact-highlights__icon-wrap {
        width: 66px;
        height: 66px;
    }

    .contact-highlights__icon {
        width: 50px;
        height: 50px;
    }

    .contact-connect {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-map {
        margin: 80px 0px;
    }

    .page-hero {
        padding-right: 15px;
    }

    /* Contact page responsive end */

    /* Service page responsive start */

    .reiki-about {
        padding: 50px 20px;
    }

    .reiki-about__photo-main {
        width: 75%;
        height: 507px;
    }

    .reiki-about__photo-inset {
        right: 10px;
        bottom: -63px;
        width: 176px;
    }

    .reiki-about__inner {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .reiki-about__desc {
        max-width: 860px;
    }

    .reiki-about__media {
        justify-items: center;
    }

    .container {
        width: 90%;
        /* width: auto; */
    }

    .motivation .container {
        padding: 50px;
    }

    .motivation__list {
        display: flex;
        flex-direction: row !important;
    }

    .motivation__media {
        order: -1;
        width: auto;
    }

    .feature-cards {
        padding: 40px 20px 80px;
    }

    .services-panel__content {
        justify-items: center;
    }

    .services-panel__card {
        padding: 48px 20px;
    }

    .testimonial-spot__card {
        right: 40px;
    }

    .wellness-booking {
        padding: 80px 20px 80px;
    }

    .contact-connect__form-card {
        padding: 20px;
    }

    .faq-section {
        padding: 80px 50px;
    }

    /* Service page responsive end */

    .why-choose__col {
    display: flex;
    flex-direction: row;
    gap: 22px;
    }

   .why-choose__points {
    /* display: flex; */
    flex-direction: column;
    gap: 5px;
    }

}

/* Mobile */
@media screen and (max-width: 768px) {
    .container {
        width: auto;
    }

    .page-hero,
    .hero-banner {
        padding-top: 140px;
    }

    .services-panel__content {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 380px;
        border-radius: 20px;
    }

    .contact-map {
        padding: 0 4%;
    }

    .contact-highlights__card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .contact-highlights__icon-wrap {
        width: 96px;
        height: 96px;
    }

    .contact-highlights__icon {
        width: 68px;
        height: 68px;
    }

    /* Contact responsive start */

    .page-hero__line {
        left: 15%;
        width: 86%; 
    }

    .page-hero__inner {
        gap: 10px;
    }

    .page-hero .hero-banner__actions {
        justify-self: center;
    }

    .page-hero__image {
        width: 80%;
        justify-self: center;
    }

    .page-hero__media {
        padding-bottom: 30px;
    }

    .contact-highlights__inner {
        display: flex;
        align-self: center;
    }

    .contact-highlights__card {
        width: 373px;
    }

    /* aaaaaaaaaaaaa */
    .contact-highlights__content {
        min-width: 111px;
        width: 200px;
    }
 
    .contact-highlights {
        padding: 72px 0 45px;
    }

    .contact-connect__form-card {
        padding: 58px 58px 35px;
    }

    .contact-connect {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .contact-map {
        padding-left: 15px;
        padding-right: 15px;
        width: 98%;
        margin: 80px 0px;
    }

    .contact-connect {
        padding: 20px 0 60px;
    }

    .hero-banner__content, .page-hero__content {
        padding: 0px;
    }

    /* Contact responsive end */

    /* Service page responsive start */

    .reiki-about__desc {
        max-width: 700px;
    }

    .reiki-about {
        padding-bottom: 80px;
        padding-top: 0px;
    }

    .motivation {
        padding: 80px 20px;
    }

    .motivation .container {
        width: 100%;
        padding: 0px;
    }

    .feature-cards {
        padding: 40px 100px 60px;
    }

    .services-panel {
        padding: 60px 20px;
    }

    .services-panel__inner {
        padding: 10px 30px;
    }

    .proof {
        padding-left: 7px;
        padding-right: 7px;
        padding-bottom: 100px;
        padding-top: 45px;
    }

    .proof__stats {
        display: flex;
    }

    .proof__panel {
        padding: 30px;
        gap: 35px;
    }

    .proof__aside {
        padding: 25px;
    }

    .testimonial-spot {
        min-height: 80vh;
    }

    .testimonial-spot__card {
        max-width: 388px;
        right: 20px;
    }

    .wellness-booking {
        padding: 80px 20px 80px;
    }

    .faq-section__inner {
        width: 100%;
    }

    .faq-section {
        padding: 100px 20px;
    }

    .motivation__list {
        flex-direction: column !important;
    }

    .reiki-about__photo-main {
    width: 85%;
    height: 507px;
    }

    /* Service page responsive end */

    .why-choose__col {
    display: flex;
    flex-direction: row;
    gap: 22px;
    }


}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .rate-bar {
        gap: 8px;
        padding: 10px;
    }

    .rate-bar__icon {
        width: 44px;
        height: 44px;
    }

    .rate-bar__cta {
        padding: 10px 20px 10px 52px;
        font-size: 14px;
    }

    .rate-bar__cta-icon {
        width: 28px;
        height: 28px;
    }

    .rate-tab__price {
        font-size: 20px;
    }

    .sub-services-ticker {
        padding: 40px 0;
    }

    .sub-services-ticker__track {
        gap: 28px;
    }

    .sub-services-ticker__leaf {
        width: 32px;
        height: 32px;
    }

    .booking-modal__content {
        padding: 32px 20px 24px;
    }

    .booking-modal__form input {
        padding: 12px 14px;
    }

    /* Contact page responsive start */

    .page-hero__line {
        left: 10%;
        width: 100%;
    }

    .page-hero__cutout {
        width: 114%;
    }

    .page-hero__image {
        width: 83%;
        justify-self: center;
    }

    .page-hero, .hero-banner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-hero .who-we-are__cta, .motivation__head .who-we-are__cta, .services-panel__head .who-we-are__cta {
        align-self: center;
    }

    .hero-banner__social-proof {
        align-self: center;
    }

    .page-hero__inner {
        gap: 15px;
    }

    .contact-highlights__card {
        flex-direction: row;
        gap: 23px;
    }

    .contact-highlights__card {
        padding: 16px 0px;
    }

    .contact-highlights {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-connect {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-connect__form-card {
        padding: 36px 24px 12px;
    }

   .contact-connect__promo-body {
        padding: 34px 24px 40px;
        border-bottom-right-radius: 32px;
        border-bottom-left-radius: 32px;
   }

   .contact-map {
        padding-left: 15px;
        padding-right: 15px;
        margin: 80px 0px;
   }

    .contact-highlights__inner {
        display: block;
        align-self: center;
    }

    .contact-highlights__card {
        width: 360px;
    }

    .hero-banner__content, .page-hero__content {
        padding: 0px;
    }

    /* Contact page responsive end*/


    /* Service page responsive start */

    .sub-services-ticker__item{
        font-size: 45px;
    }

    .sub-services-ticker__leaf {
        width: 50px;
        height: 50px;
    }

    .reiki-about {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .container {
        width: auto;
    }


    .why-reiki-list {
        display: block;
        gap: 0px;
    }

    .reiki-about__points {
        margin-bottom: 12px;
    }

    .motivation {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .motivation .container {
        width: 98%;
    }

    .feature-cards {
        padding: 40px 15px 60px;
    }

    .services-panel__card {
        padding: 48px 15px;
    }

    .services-panel {
        padding: 80px 15px;
    }

    .services-panel__media-stack {
        width: 100%;
    }

    .proof {
         padding-left: 15px;
        padding-right: 15px;
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .proof__panel {
        padding: 15px;
    }

    .proof__stat {
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }

    .proof__stats {
        gap: 0px;
        display: block;
    }

    .proof__aside {
        padding: 20px;
        width: auto;
    }

    .testimonial-spot {
        min-height: 70vh;
    }

    .testimonial-spot__card {
        width: 85%;
    }

    .wellness-booking {
         padding-left: 15px;
        padding-right: 15px;
        padding-top: 80px;
        padding-bottom: 50px;   
    }

    .wellness-booking__hours-row + .wellness-booking__hours-row {
        display: flex;
    }

    .faq-section {
        padding: 60px 15px;
    }

    .faq-section__promo {
        width: auto;
    }

    .faq-section__promo {
        padding: 30px;
    }

    .faq-section__promo-text {
        padding: 0px;
    }

    .faq-section__promo-text {
    padding: 0px;
    align-self: center;
    text-align: center;
    }

    .faq-section__promo-photo {
        width: 60%;
        justify-self: center;
    }

    .services-panel__inner {
        padding: 0px;
    }

    .faq-section__promo-text p {
        max-width: 310px;
    }

    .reiki-about__inner {
        display: flex;
        flex-direction: column;
        gap: 50px !important;
    }

    .reiki-about__media {
        right: 0px;
    }

    .reiki-about__photo-main {
        height: 487px;
        width: 85%;
    }

     .reiki-about__photo-inset {
        right: 12px;
        bottom: -45px;
        width: 150px;
    }

    .motivation__media {
        order: -1;
        width: auto;
    }

    /* Service page responsive end */


    /* Header */
    .page-home .header__inner {
        padding: 0 14px;
        min-height: 68px;
        gap: 10px;
    }

    .page-home .logo img {
        height: 36px;
    }

    .page-home .btn-book {
        font-size: 11px;
        min-height: 38px;
        padding: 5px 14px 5px 40px;
    }

    .page-home .btn-book__arrow {
        width: 24px;
        height: 24px;
        left: 6px;
    }

    .nav-toggle {
        width: 22px;
        height: 15px;
    }

    .site-footer__email {
        font-size: 21px;
    }

    .why-choose__col {
    /* display: flex; */
    /* flex-direction: row; */
    /* gap: 22px; */
    display: block;
    }

    .why-choose__points {
    align-items: start;
    }

}

/* Extra-Small Mobile */
@media screen and (max-width: 375px) {
    .container {
        width: auto;
    }

    .rate-bar__intro,
    .rate-bar__divider {
        display: none;
    }

    .rate-bar__cta {
        padding: 10px 18px 10px 48px;
        font-size: 13px;
    }

    .contact-highlights__icon-wrap {
        width: 80px;
        height: 80px;
    }

    .contact-highlights__icon {
        width: 56px;
        height: 56px;
    }

    .reiki-about__photo-main {
        height: 340px;
    }

    .reiki-about__photo-inset {
        width: 120px;
        right: 8px;
        bottom: 8px;
    }

    /* Contact page responsive start */

    .page-hero__line {
    position: absolute;
    top: 0;
    left: 5%;
    width: 100%;
    max-width: 886px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    }
 
    .page-hero__inner {
        gap: 18px;
    }

    .page-hero__cutout {
        width: 114%;
    }

    .page-hero__image {
        width: 83%;
        justify-self: center;
    }
 
    .contact-highlights__card {
        flex-direction: row;
        /* padding: 16px 17px; */
    }

    .contact-highlights {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-hero, .hero-banner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-connect {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-connect__heading {
        width: 335px;
    }

    .contact-connect__form-card {
        padding: 36px 24px 15px;
    }

    .contact-connect__promo-body {
        padding: 34px 24px 40px; 
    }

    .contact-connect__promo-body {
        border-bottom-right-radius: 30px;
        border-bottom-left-radius: 30px;
    }

    .contact-map {
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact-map {
        margin: 80px 0px;
    }

    .contact-highlights__inner {
        display: block;
        align-self: center;
    }

    .contact-highlights__card {
        width: 325px;
    }

    .hero-banner__content, .page-hero__content {
        padding: 0px;
    }

    /* Contact page responsive end */

    .site-footer__email {
        font-size: 21px;
    }

    /* Service page responsive start */

    .faq-section__promo {
        width: auto;
    }

    .page-hero__media {
        padding-bottom: 0px !important;
    }

    .reiki-about {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .why-reiki-list {
        display: block;
    }

    .reiki-about__points {
        margin-bottom: 10px;
    }

    .motivation {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .feature-cards {
        padding: 40px 15px 40px;
    }

    .container {
        width: auto;
    }

    .services-panel {
        padding: 60px 15px;
    }

    .services-panel__card {
        padding: 40px 15px;
    }

    .services-panel__media-stack {
        width: 100%;
    }

    .proof {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 40px;
        padding-top: 20px;
    }

    .proof__panel {
        padding: 15px;
    }

    .proof__stat {
        display: flex;
        flex-direction: row;
        text-align: left;
        gap: 12px;
        height: 115px;
    }

    .proof__stats {
        gap: 0px;
        display: block;
    }

    .proof__aside {
        padding: 18px;
        width: auto;
    }

    .testimonial-spot__card {
        width: 85%;
    }

    .testimonial-spot {
        min-height: 70vh;
    }

    .wellness-booking {
        padding: 60px 15px 70px;
    }

    .wellness-booking__hours-row + .wellness-booking__hours-row {
        display: flex;
    }

    .contact-connect__form-card {
        padding-bottom: 0px;
    }

    .faq-section {
    padding: 60px 15px;
    }

    .faq-section__promo-text {
        padding: 0px;
        align-self: center;
        text-align: center;
    }

    .faq-section__promo-photo {
        width: 70%;
    }

    .faq-section__promo-media {
        justify-items: center;
    }

    .reiki-about__photo-main {
        height: 407px;
    }

    .sub-services-ticker__item {
        font-size: 45px;
    }

    .sub-services-ticker__leaf {
        width: 50px;
        height: 50px;
    }

    .services-panel__inner {
        padding: 0px;
    }

    .faq-section__promo-text p {
        max-width: 290px;
    }

        .reiki-about__inner {
        display: flex;
        flex-direction: column;
        gap: 50px !important;
    }

    .reiki-about__media {
        right: 0px;
    }

    .reiki-about__photo-main {
        height: 487px;
        width: 100%;
    }

     .reiki-about__photo-inset {
        right: -1px;
        bottom: -45px;
        width: 150px;
    }

    .motivation__media {
        order: -1;
        width: auto;
    }

    .motivation__media {
    order: -1;
    width: auto;
    }

    .proof__aside {
    padding: 18px;
    width: auto;
    }

    .page-home .header__inner {
    padding: 0 14px;
    min-height: 68px;
    gap: 10px;
    margin: 12px 15px;
    }

    /* Service page responsive end */

    /* Footer */
    .site-footer {
        padding: 32px 0 40px;
    }

    .site-footer__inner {
        width: calc(100% - 24px);
    }

    .site-footer__title {
        font-size: 34px;
    }

    .site-footer__phone {
        font-size: 20px;
    }

    .site-footer__top {
        gap: 24px;
        padding: 20px 0 32px;
    }

    .site-footer__sitemap {
        padding: 18px 0 6px;
    }

    .site-footer__sitemap-item {
        margin: 6px 14px 0 0;
        font-size: 14px;
    }

    .site-footer__brand {
        font-size: 44px;
        margin-top: 22px;
    }

    .site-footer__bottom-links {
        gap: 16px;
    }

    .why-choose__points {
        align-items: start;
    }

}

@media screen and (max-width: 360px) {

    .proof__aside {
        padding: 18px;
        width: auto;
    }

    .testimonial-spot__card {
        width: 89%;
    }

    .faq-section__promo-media {
        justify-items: center;
    }

    .motivation__media {
        order: -1;
        width: auto;
    }

    .container {
        width: auto;
    }

    .page-home .header__inner {
    padding: 0 14px;
    min-height: 68px;
    gap: 10px;
    margin: 12px 15px;
    }

    .site-footer__email {
        font-size: 21px;
    }

    .why-choose__points {
        align-items: start;
    }


}


@media screen and (max-width: 390px) {

    .proof__aside {
        padding: 18px;
        width: auto;
    }

    .testimonial-spot__card {
        width: 89%;
    }

    .faq-section__promo-media {
        justify-items: center;
    }

    .motivation__media {
        order: -1;
        width: auto;
    }

    .motivation__media {
        order: -1;
        width: auto;
    }

    .faq-section__promo {
        width: auto;
    }

    .testimonial-spot__card {
        width: 80%;
    }

    .proof {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 10px;
        padding-bottom: 70px;
    }

    .motivation {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .reiki-about__photo-main {
        height: 487px;
        width: 97%;
    }

    .reiki-about {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 50px;
    }

    .container {
        width: auto !important;
    }

    .page-home .header__inner {
    padding: 0 14px;
    min-height: 68px;
    gap: 10px;
    margin: 12px 15px;
    }

    .site-footer__email {
        font-size: 21px;
    }

    .why-choose__points {
    align-items: start !important;
    }


}

/* -------------------------------------------------- */
/* Legal pages (Privacy Policy, Terms & Conditions)    */
/* -------------------------------------------------- */
.legal {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
}

.legal__inner {
    width: 90%;
    max-width: 840px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4a463c;
}

.legal__updated {
    font-weight: 600;
    color: #123c3a;
    margin-bottom: 32px;
}

.legal__inner p {
    margin-bottom: 20px;
}

.legal__inner ul {
    margin: 0 0 20px;
    padding-left: 22px;
    list-style: disc;
}

.legal__inner li {
    margin-bottom: 10px;
    display: list-item;
}

.legal__inner strong {
    color: #14210f;
    font-weight: 600;
}

.legal__inner a {
    color: #123c3a;
    text-decoration: underline;
}

.legal__inner h2 {
    font-family: 'Inter', sans-serif;
    font-weight: var(--weight-h4);
    font-size: var(--text-h4);
    line-height: var(--leading-h4);
    color: #14210f;
    margin: 56px 0 16px;
}

.legal__inner h2:first-of-type {
    margin-top: 40px;
}

.legal__inner h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #123c3a;
    margin: 28px 0 12px;
}

.legal__contact {
    margin-top: 8px;
    padding: 28px 32px;
    background-color: #f2f4e6;
    border-radius: 20px;
}

.legal__contact p {
    margin-bottom: 14px;
}

.legal__contact p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .legal {
        padding: 60px 0;
    }

    .legal__contact {
        padding: 24px 20px;
    }
}
