/* ======================
   Base / Reset / Tokens
   ====================== */
* {
    box-sizing: border-box
}

html, body {
    margin: 0;
    padding: 0
}

:root {
    --brand: #1C392A;
    --gold: #C7A76C;

    --ink: #1C392A;
    --muted: #475467;
    --surface: #fff;
    --line: #eef3f1;
    --shadow: 0 10px 30px rgba(16, 24, 40, .12);
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: #f3f6f4;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

/* *** Margin-Top *** */
.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-100 {
    margin-top: 100px;
}

/* *** Margin-Bottom *** */
.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}


/* ===============
   Header / Nav
   =============== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 120px;
    display: flex;
    align-items: center;
    z-index: 100;
    background: #f3f6f4;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .04)
}

.site-header .bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 72px;
    padding: 0 20px;
}

.site-header .bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(1.2) blur(10px);
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
}


.logo img {
    height: 70px;
    width: 100%;
    max-width: 160px;
    display: block;
}

.nav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.nav a {
    color: var(--ink);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
}

.nav a:hover{
    background: var(--brand);
    color: #fff;
    transition: all .35s ease;
}

.nav .phone {
    background: var(--gold);
    padding: 8px 14px;
    color: #111;
    border-radius: 10px;
    font-weight: 600;

}

.burger {
    display: none;
    background: none;
    border: 0;
    font-size: 28px;
    position: relative;
    z-index: 210
}


/* ===============
   Dropdown
   =============== */
.dropdown {
    position: relative
}

.dropdown-toggle {
    background: none;
    border: 0;
    padding: 8px 10px;
    border-radius: 10px;
    font: inherit;
    color: var(--ink);
    cursor: pointer;
}

.dropdown-toggle:hover {
    background: #f3f8fb
}

.dropdown-toggle:focus-visible {
    outline: 2px solid #a3c9ff;
    outline-offset: 2px
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
    padding: 8px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 205;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #111;
    text-decoration: none;
}

/*.dropdown-menu a:hover {*/
/*    background: #f7f9fb*/
/*}*/

/* active menu */
.active{
    font-weight: 600;
}


/* ==================
   Burger / Drawer UI
   ================== */
.scrim {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, .45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 50;
}

body.menu-open .scrim {
    opacity: 1;
    pointer-events: auto;
}


/* ===============
   Hero Slider
   =============== */
.hero-slider {
    position: relative;
    height: 90vh;
    min-height: 500px;
    overflow: visible;
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slider .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, .25));
}

.hero-slider .inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-slider h1 {
    font-size: 60px;
    margin: 0 0 15px;
    text-shadow: 0 4px 28px rgba(0, 0, 0, .7)
}

.hero-slider p {
    color: #e6eef2;
    margin: 0 0 20px
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    transition: all .35s ease;
}

.btn.primary {
    background: var(--brand);
    color: #fff
}

.btn.secondary {
    background: var(--gold);
    color: #1a1a1a
}

.btn.full {
    width: 100%
}

.btn:hover {
    color: #fff;
    background: var(--brand);
    transition: all .35s ease;
}


/* Under-Slider */
.under-slider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    z-index: 10;
    line-height: 0;
    pointer-events: none;
}

.under-slider img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: fill;
    position: static;
    transform: none;
}

.hero-curve {
    display: none
}

/* Slider controls */
.hs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .85);
    color: #0b2030;
    font-size: 28px;
    line-height: 46px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(16, 24, 40, .18);
}

.hs-nav:hover {
    background: #fff
}

.hs-nav.prev {
    left: 18px
}

.hs-nav.next {
    right: 18px
}

.hs-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
    z-index: 2;
}

.hs-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, .65);
    cursor: pointer;
}

.hs-dots button.is-active {
    background: #fff
}


/* ===============
   Sections
   =============== */
/* Section transition */
.diagonal {
    position: relative;
    background: #fff
}

.diagonal::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -70px;
    height: 140px;
    background: #fff;
    border-radius: 40%/30%;
    transform: skewY(-6deg);
    box-shadow: 0 -6px 30px rgba(0, 0, 0, .06);
}

/* Foundation */
.foundation {
    padding: 40px 0 100px 0;
}

.foundation .wrap {
    display: grid;
    grid-template-columns:1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.polaroids {
    position: relative;
    height: 480px;
    overflow: visible;
}

.polaroids img {
    position: absolute;
    display: block;
    width: auto;
    border-radius: 14px;
    border: 12px solid #fff;
    box-shadow: 0 30px 60px rgba(16, 24, 40, .18);
}

.polaroids img:nth-child(1) {
    width: 100%;
    left: 0;
    top: 10%;
    transform: rotate(4deg);
    z-index: 1;
}

.polaroids img:nth-child(2) {
    width: 35%;
    left: -2%;
    bottom: -5%;
    transform: rotate(-8deg);
    z-index: 2;
}

.polaroids img:nth-child(3) {
    width: 40%;
    right: -2%;
    top: 0;
    transform: rotate(-6deg);
    z-index: 3;
}

.kicker {
    font-size: 12px;
    letter-spacing: .18em;
    color: #7b8a9a;
    text-transform: uppercase;
    margin: 0 0 8px
}

.h2 {
    font-size: clamp(20px, 3.2vw, 38px);
    line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 600;
    color: #1C392A;
}

.lead {
    color: var(--muted)
}

/* Insurers (owl) */
.insurers {
    padding: 40px 0;
    background: #fff;
    margin: 50px 0;
    border-top: 1px solid #ccc;
}

.insurers .owl-carousel img {
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.insurers .owl-carousel img:hover {
    filter: grayscale(0) opacity(1)
}

.owl-nav, .owl-dots {
    display: none
}

/**** Why Choose ****/
.features {
    padding: 20px 0 80px
}

.features-text {
    padding: 20px 0;
    text-align: center;
}

.features-text h2 {
    margin-bottom: 15px
}

.features-text p {
    margin: 0 auto 25px;
    max-width: 780px;
}

.cards {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 25px
}

.card {
    min-height: 130px;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-auto-rows: min-content;
    column-gap: 16px;
    align-items: start;

    background: #EAEDF1;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 8px 18px rgba(16, 24, 40, .04)
}


.card h3 {
    margin: 6px 0 8px;
    color: var(--ink);
    font-size: 18px
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px
}

.icon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: 1 / span 2;
}

.icon i {
    font-size: 42px;
    color: #9eb06d;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* CTA Banner */
.cta-band {
    position: relative;
    color: #fff;
    margin: 20px 0 20px;

}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/04/3T7A2110.jpg") center/cover no-repeat
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6))
}

.cta-band .inner {
    position: relative;
    z-index: 1;
    padding: 80px 20px;
}

.cta-band h2 {
    font-size: clamp(26px, 3.2vw, 40px);
    margin: 0 0 8px
}

.cta-band p {
    max-width: 640px;
    color: #e6eef2
}

/* Programs */
.programs {
    padding: 80px 0 30px;
}

.programs .kicker,
.programs .h2,
.programs .lead {
    text-align: center;
}

.programs .lead {
    max-width: 780px;
    margin: 0 auto 28px;
    color: var(--muted);
}

/* ===== Grid ===== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 50px;
}

/* ===== Card ===== */
.program {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    isolation: isolate;
    --ol: 42 70 56;
    --ol-a: .88;
}

.program img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.85);
    z-index: 0;
}

.program::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .15));
    z-index: 1;
    pointer-events: none;
}

.program::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: rgb(var(--ol) / var(--ol-a));
    transform: translateY(100%);
    transform-origin: bottom;
    transition: transform .35s cubic-bezier(.22, .61, .36, 1);
    z-index: 2;
    pointer-events: none;
}

.program:hover::before,
.program:focus-within::before {
    transform: translateY(0);
}

.program .label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    color: #fff;
    font-weight: 600;
    z-index: 3;
    transition: opacity .22s ease, transform .22s ease;
}

.program .label h4 {
    margin: 0;
    font-weight: 700;
}

.program .label p {
    margin: 6px 0 0;
}

.program:hover .label,
.program:focus-within .label {
    opacity: 0;
    transform: translateY(6px);
}

.program .hover {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 24px;
    z-index: 4;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
}

.program .hover h4 {
    margin: 0;
    font-weight: 700;
}

.program .hover p {
    margin: 0;
    opacity: .95;
}

.program .hover .btn {
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 8px;
    background: #e5e6e8;
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
}

.program:hover .hover,
.program:focus-within .hover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: .08s;
}

.program--detox {
    --ol: 66 86 110;
}

.program--residential {
    --ol: 80 128 95;
}

.program--aftercare {
    --ol: 180 141 65;
}


/* Gallery */
.gallery {
    padding: 80px 0 80px;
}

.gallery .grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    row-gap: 30px;
    column-gap: 15px;
}

.gallery-text {
    width: 100%;
    max-width: 60%;
    padding: 0 0 30px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08)
}


/* === Holistic Approach  === */
.approach {
    padding: 40px 0 80px;
}

.approach-wrap {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 48px;
    align-items: center;
    grid-template-areas: "photos text";
}

.approach-photos {
    grid-area: photos;
    position: relative;
    height: 520px;
    min-width: 300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    filter: drop-shadow(0 26px 70px rgba(16, 24, 40, .12));
}

.approach-text {
    grid-area: text;
}

.approach-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 12px solid #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(16, 24, 40, .10);
}

.approach-photos .big {
    grid-column: 1;
    grid-row: 1 / 3;
}

.approach-photos .top {
    grid-column: 2;
    grid-row: 1;
}

.approach-photos .bottom {
    grid-column: 2;
    grid-row: 2;
}

/* Right Section */
.approach-text .h2 {
    margin: 0 0 10px;
}

.approach-text .lead {
    color: var(--muted);
    margin: 0 0 22px;
    max-width: 620px;
}

.approach-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 16px;
}

.approach-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.approach-list .badge {
    flex: 0 0 56px;
    height: 56px;
    border-radius: 999px;
    background: var( --brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
    margin-top: 4px;
}

.approach-list .title {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}

.approach-list p {
    margin: 0;
    color: var(--muted);
}

.approach .btn.secondary {
    padding: 14px 22px;
    border-radius: 12px;
    letter-spacing: .03em;
}

/* Testimonials */
.stories {
    padding: 60px 0 90px;
    background: #fff;
}

.stories-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.5fr;
    gap: 60px;
    align-items: stretch;
}

.stories-left {
    position: relative;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.stories-left::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    width: 2px;
    background: var(--line);
    border-radius: 1px;
}

.stories-right {
    max-width: 860px;
    width: 100%;
    min-width: 0;
}

.story {
    padding: 0;
    display: block;
}

.quote-text {
    margin: 0 0 22px;
    font-size: clamp(18px, 2.1vw, 26px);
    line-height: 1.5;
    color: var(--muted);
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--ink);
}

.avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 100%;
    object-fit: cover;
    display: block;
}

.stories-right .owl-stage-outer {
    overflow: hidden;
}

.stories-right .owl-item {
    opacity: 0;
    transition: opacity .25s ease;
}

.stories-right .owl-item.active {
    opacity: 1;
}

.stories-right .owl-nav {
    display: none;
}

.stories-right .owl-dots {
    display: none;
}

.insurers .owl-nav, .insurers .owl-dots {
    display: none;
}


/* Contact */
.contact-band {
    padding: 60px 0 80px;
}

.contact-band--split {
    z-index: 9999;
    background: linear-gradient(rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)), url("../img/bg/map_bg.png") center/cover no-repeat;
}

.grid-two-detox {
    margin-bottom: 15px;
}

.contact-band--split .contact-grid {
    position: relative;
}

.contact-band--split .contact-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #ccc;
    transform: translateX(-50%);
}

.contact-band--split .contact-grid::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

/* Detox split variant: form without card background */
.contact-band--split .contact-form {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.contact-band--split .contact-form label {
    display: none;
}

.contact-info-detox {
    padding-right: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.contact-info,
.form.contact-form {
    min-width: 0;
}

.contact-info .lead {
    max-width: 580px;
    margin: 0 0 18px;
}

.contact-info .kicker {
    color: #6c7a8a;
}

.contact-info hr,
.contact-sep {
    height: 1px;
    border: 0;
    background: var(--muted);
    margin: 18px 0 22px;
    max-width: 640px;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.contact-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
}

.ci-badge {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--brand);
    display: grid;
    place-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}

.ci-badge i {
    font-size: 26px;
    color: #fff;
}

.ci-label {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #7b8a9a;
    margin-bottom: 4px;
}

.ci-value {
    font-size: 18px;
    color: var(--ink);
    text-decoration: none;
}

.ci-value:hover {
    text-decoration: underline;
}

.form.contact-form {
    background: var(--brand);
    border: 0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(16, 24, 40, .10);
    color: #fff;
}

.contact-form .form-title {
    margin: 0 0 8px;
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.15;
    color: #fff;
}

.contact-form .form-subtitle {
    margin: 0 0 18px;
    color: #eef1f5;
    max-width: 640px;
}

.contact-form .grid.two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form .grid.two > div {
    min-width: 0;
}

.contact-form label {
    display: block;
    font-size: 13px;
    color: #f0f3f7;
    margin: 10px 0 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    height: 44px;
    border: 1px solid #d5dbe3;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    font: inherit;
    line-height: 1.3;
}
.form-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    height: 44px;
    border: 1px solid #d5dbe3;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    font: inherit;
    line-height: 1.3;
}
.form-input.small {
    height: 39px;
}
.contact-form textarea {
    height: auto;
    max-height: 100px;
    resize: vertical;
}
.subscribe {
    display: flex;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9aa3af;
}
.text-input::placeholder {
    color: #9aa3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(252, 211, 77, .25);
}

.contact-form .btn {
    width: 100%;
    margin-top: 16px;
    padding: 14px;
    font-size: 16px;
    border-radius: 12px;
    background: var(--gold);
    color: #fff;
    font-weight: 800;
    letter-spacing: .03em;
    transition: all .35s ease;
    border: 1px solid transparent;
}

.contact-form .btn:hover {
    color: #fff;
    background: var(--brand);
    transition: all .35s ease;
    border: 1px solid #fff;
}

/* Detox split overrides */
.contact-band--split .form.contact-form {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 30px;
}

.contact-band--split .contact-form label {
    display: none;
}

/* Footer */
.site-footer {
    background: var(--line);
    border-top: 1px solid var(--line);
    color: #6a7a87;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr .8fr .9fr 1.2fr;
    gap: 56px;
    padding: 64px 20px;
    align-items: start;
}

.footer-logo-lg {
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
    margin: 0 0 12px;
}

.footer-mission {
    max-width: 420px;
    margin: 8px 0 0;
    color: #6a7a87;
}

.footer-col h4 {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: #6c7a8a;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin: 8px 0;
}

.footer-col a {
    color: var(--ink);
    text-decoration: none;
}

.footer-col a:hover {
    color: var(--brand);
}

.get-in-touch .contact-item {
    grid-template-columns: 44px 1fr;
}

.get-in-touch .ci-badge {
    width: 44px;
    height: 44px;
    background: var(--gold);
}

.get-in-touch .ci-label {
    margin: 0 0 2px;
}

.get-in-touch .ci-value {
    font-weight: 600;
}

.footer-cert .dhcs-logo {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    margin: 0 0 10px;
}

.footer-bottom {
    border-top: 1px solid #e5edf5;
    padding: 16px 20px;
    font-size: 13px;
    color: #6a7a87;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom .privacy {
    color: var(--muted);
    text-decoration: none;
}

.footer-bottom .privacy:hover {
    color: var(--brand);
}



/* ==============================================
                        ABOUT
   ============================================== */

/* ===== About ===== */
.about-hero {
    --bg: url('/assets/img/bg/bg2.jpg');
    position: relative;
    min-height: clamp(700px, 68vh, 760px);
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.about-hero__media {
    position: absolute;
    inset: 0;
    background: var(--bg) center / cover no-repeat;
    z-index: 0;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .56));
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    padding: 0 14px;
}

.about-hero__title {
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: .02em;
    font-size: clamp(36px, 5.2vw, 60px);
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}

.about-hero__lead {
    margin: 0 auto;
    max-width: 900px;
    font-size: clamp(15px, 1.55vw, 20px);
    line-height: 1.6;
    color: #f1f4f7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .25);
}

.about-hero__edge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 110px;
    display: block;
    z-index: 0;
    pointer-events: none;
}


/* --- foundation --- */
.foundation-points {
    list-style: none;
    margin: 28px 0 0;
    display: grid;
    gap: 18px;
    border-left: 3px solid rgba(100, 130, 180, 0.2);
    padding-left: 20px;
}

.foundation-points li {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 12px;
}

.foundation-points i {
    font-size: 22px;
    color: #1C392A;
    line-height: 1.3;
}

.foundation-points span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

/* About Version */
.about-values {
    padding: 100px 0;
    background-color: #f8f9fc;
    text-align: center;
}

.about-values .h2 {
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 600;
    color: #111;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.value-card h3 {
    font-size: 20px;
    margin: 20px 0 10px;
    font-weight: 600;
    color: #1C392A;
}

.value-card p {
    color: #444;
    line-height: 1.6;
    padding: 0 20px;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}


/* ===== About: Why Choose ===== */
.about-why {
    padding: 70px 0 60px;
}

.about-why .kicker {
    text-align: center;
}

.about-why .h2 {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 10px;
}

.about-why__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.arch-card {
    width: 100%;
    max-width: 350px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 220px 220px 16px 16px;
    padding: 46px 26px 28px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .06);
}

.arch-card__icon {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 34px;
    color: #7aa05f;
    background: #eef5ea;
}

.arch-card h3 {
    margin: 8px 0 10px;
    font-size: 25px;
}

.arch-card p {
    margin: 0 auto;
    max-width: 520px;
    color: var(--muted);
}

.arch-card--green .arch-card__icon {
    color: #7aa05f;
    background: #eef5ea;
}

.arch-card--violet .arch-card__icon {
    color: #7b79c6;
    background: #f0effa;
}

.arch-card--blue .arch-card__icon {
    color: #4f83d6;
    background: #eef4ff;
}


/* ==============================================
                        DETOX
 ============================================== */
.info-list-detox .contact-item {
    box-sizing: border-box;
    flex: 0 0 calc(50% - 9px);
    max-width: calc(50% - 9px);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 30px;
    align-items: start;
}

.info-list-detox {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 20px 0;
    padding: 0;
}

.info-list-detox .contact-item {
    width: 100%;
    min-width: 240px;
}

.info-list-detox h6 {
    line-height: 1.5;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 0;
}

.info-list-detox .ci-label {
    color: #475467;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0;
    text-transform: none;
}

/* Detox bg center */
.inner-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* ==============================================
                    Amenities
============================================== */
/* Amenities Grid */
.amenities {
    padding: 90px 25px;
}

.amen-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.amen-media {
    width: 100%;
    height: 460px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(16, 24, 40, .10);
}

.amen-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amen-media, .amen-media figure {
    margin: 0;
}

.amen-text {
    padding: 0 10px;
}

.amen-text h3 {
    font-size: clamp(24px, 3.2vw, 36px);
    line-height: 1.25;
    margin: 0 0 14px;
    font-weight: 700;
}
.amen-text h3 .amen-link{
    text-decoration: none;
    color: var(--brand);
}

.amen-text p {
    color: var(--muted);
    margin: 0;
    max-width: 720px;
    line-height: 1.65;
}

/* Force 3-row 4-col  */
.amen-grid > *:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.amen-grid > *:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.amen-grid > *:nth-child(4) {
    grid-column: 3;
    grid-row: 1;
}

.amen-grid > *:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}

.amen-grid > *:nth-child(6) {
    grid-column: 1;
    grid-row: 2;
}

.amen-grid > *:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.amen-grid > *:nth-child(11) {
    grid-column: 3;
    grid-row: 2;
}

.amen-grid > *:nth-child(12) {
    grid-column: 4;
    grid-row: 2;
}

.amen-grid > *:nth-child(8) {
    grid-column: 1;
    grid-row: 3;
}

.amen-grid > *:nth-child(7) {
    grid-column: 2;
    grid-row: 3;
}

.amen-grid > *:nth-child(9) {
    grid-column: 3;
    grid-row: 3;
}

.amen-grid > *:nth-child(10) {
    grid-column: 4;
    grid-row: 3;
}


/* ==============================================
                    Verification
============================================== */
/* Verification form */
.verify {
    padding: 60px 0 50px;
}

.verify .intro .kicker {
    text-align: center;
    color: #6c7a8a;
}

.verify-wrap {
    max-width: 70%;
    margin: 0 auto;
}

.verify-card {
    background: #6f7f8f;
    color: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(16, 24, 40, .10);
}

.verify-card .form-title {
    color: #fff;
}

.verify-card .form-subtitle {
    color: #e7ecf3;
}

.verify-card label {
    color: #eef1f5;
}

.verify .btn {
    background: var(--gold);
}

.verify label {
    margin: 5px 0 6px;
}


/* ==============================================
                    BLOG
============================================== */
.blog {
    padding: 40px 0 80px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.post-card {
    display: block;
}

.post-media { 
    display: block;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(16, 24, 40, .08);
}

.post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-title {
    font-size: clamp(20px, 2.4vw, 20px);
    margin: 16px 0 6px;
    line-height: 1.35;
}

.post-title a {
    color: var(--ink);
    text-decoration: none;
}

.post-title a:hover {
    text-decoration: underline;
}

.post-meta {
    color: #7b8a9a;
    font-size: 14px;
    margin-bottom: 10px;
}

.post-more {
    display: inline-block;
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
}

.post-more:hover {
    text-decoration: underline;
}


/* ==============================================
                    BLOG DETAIL
============================================== */
.blog-detail {
    padding: 40px 0 80px;
}

.detail-wrap {
    display: grid;
    grid-template-columns: 1.6fr .8fr;
    gap: 36px;
}

.post-body .detail-list {
    margin: 0 0 12px 20px;
}

.post-body .detail-list li {
    margin: 8px 0;
    color: var(--muted);
}

.detail-aside .latest-box {
    background: #f4f6fb;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 18px;
    position: sticky;
    top: 20px;
}

.detail-aside .kicker {
    margin: 0 0 10px;
}

.latest-item {
    display: grid;
    grid-template-columns:72px 1fr;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.latest-item:first-of-type {
    border-top: 0;
}

.latest-item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.latest-item .li-title {
    font-size: 14px;
    line-height: 1.35;
    color: var(--ink);
}

.latest-item .li-meta {
    font-size: 12px;
    color: #7b8a9a;
}


/* Post extras */
.post-extras {
    padding: 10px 0 80px;
}

.detail-post{
    width: 100%;
    max-width: 580px;
    margin-left: 0;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1C392A;
    color: #fff;
    padding: 10px 16px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.share-btn i {
    font-size: 16px;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #eef2f6;;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 26px;
}

.author-box .avatar img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
}

.author-name {
    font-weight: 600;
}

.reply .h2 {
    margin: 10px 0 6px;
}

.reply-note {
    color: #6c7a8a;
    margin: 0 0 10px;
}

.reply-form {
    text-align: left;
}

.reply-form label {
    display: block;
    font-weight: 600;
    margin: 10px 0 6px;
}

.reply-form .form-check {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.reply-form .form-check input {
    margin-right: 10px;
    width: 20px;
}

.reply-form input, .reply-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border: 1px solid #d5dbe3;
    border-radius: 10px;
    background: #eef2f6;
    font: inherit;
}

.reply-form textarea {
    height: 150px;
}

.reply-form .save-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475467;
    margin: 12px 0;
    font-weight: 400;
    text-align: left;
    max-width: 700px;
}

.reply-btn {
    background: var(--gold);
    color: #fff;
    border-radius: 16px;
    font-weight: 700;
}


/* ==============================================
                    FAQ
   ============================================== */
.faq {
    padding: 50px 0 80px;
}

.faq-wrap {
    display: grid;
    grid-template-columns: 1.3fr .9fr;
    gap: 36px;
    align-items: start;
}

.accordion {
    display: grid;
    gap: 12px;
    margin-top: 8px;
}

.ac-item {
    border-radius: 8px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: #fff;
}

.ac-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    font-weight: 700;
    cursor: pointer;
    background: var(--line);
    transition: background .3s ease, color .3s ease;
}

.ac-head::-webkit-details-marker {
    display: none;
}

.ac-head i {
    font-size: 20px;
    transition: transform .3s ease;
}

.ac-item[open] .ac-head {
    background: #1C392A;
    color: #fff;
}

.ac-item[open] .ac-head i {
    transform: rotate(180deg);
}

.ac-body {
    max-height: 0;
    padding: 0 18px;
    overflow: hidden;
    opacity: .0;
    color: var(--muted);
    background: #fff;
    transition: max-height .3s ease, padding .3s ease, opacity .3s ease;
}

.ac-item[open] .ac-body {
    max-height: 260px;
    padding: 16px 18px;
    opacity: 1;
}

.faq-card {
    background: #f7f9ff;
    border: 0;
    border-top: 4px solid #6f7f8f;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(16, 24, 40, .10);
}

.faq-card .form-title {
    font-size: 22px;
}

.faq-right {
    position: sticky;
    top: 20px;
}

.btn-secondary {
    background: var(--gold);
}
.btn-primary {
    background: var(--green);
}
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.container-fluid {
    position: relative;
    overflow: hidden;
}

.component-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #fff;
    font-family: sans-serif;
}

/* Блок с медиа (видео, iframe, img и т.д.) */
.component-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* Все возможные медиа-элементы */
.component-media video,
.component-media iframe,
.component-media img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    border: none;
}

/* Затемняющий оверлей */
.component-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Контент поверх всего */
.component-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.component-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.component-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f1f1;
}

.component-wrapper {
    min-height: 400px;
}