/* =========================================================
   AVANA CARES
   Global + Mobile-first styles
   ========================================================= */


/* ---------------------------------------------------------
   1. Basic reset
   --------------------------------------------------------- */
/* =========================================================
   AVANA CARES — DESIGN TOKENS
   ========================================================= */

:root {
    /* BRAND COLORS */
    --avana-purple: #9333CC;
    --avana-purple-dark: #5C1885;
    --avana-purple-light: #F5E9FC;

    /*  TEXT COLORS */
    --avana-text: #201E1D;
    --avana-text-secondary: rgba(32, 30, 29, 0.80);
    --avana-text-muted: #777777;

    /*  BACKGROUNDS*/
    --avana-white: #FFFFFF;
    --avana-light-bg: #F5F5F5;
    --avana-card-bg: #E9E7E8;

    /* LIGHT ACCENT Future sections */
    --avana-accent-light: #E3FBFF;

    /* BORDERS */
    --avana-border: #DDDDDD;
    --avana-border-light: #EEEEEE;
    --avana-border-dark: #999999;
    --avana-border-section: #BCBCBC;

    /* EFFECTS */
    --avana-shadow: rgba(0, 0, 0, 0.06);
    --avana-shadow-dark: rgba(0, 0, 0, 0.08);

    /* Font */
      --avana-font: "Archivo", sans-serif;

       /* ...existing variables... */
    --mobile-sticky-cta-height: 64px;
}
   
html,
body{
    font-family: var(--avana-font);
}

button,
input,
textarea,
select{
    font-family: var(--avana-font);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: var(--avana-text);
    background: var(--avana-white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   FORCE STICKY HEADER
   ========================================================= */

.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1020 !important;
}

/* ---------------------------------------------------------
   2. Header
   --------------------------------------------------------- */

.site-header {
    width: 100%;
    background: var(--avana-white);
    position: relative;

}


/* ---------------------------------------------------------
   3. Header container
   --------------------------------------------------------- */

.site-header__container {
    padding: 12px 16px 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}


/* ---------------------------------------------------------
   4. Logo
   --------------------------------------------------------- */

.site-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo img {
    display: block;
    width: 180px;
    height: auto;
}


/* ---------------------------------------------------------
   5. Header actions
   --------------------------------------------------------- */

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   6. Call + Menu buttons
   --------------------------------------------------------- */

.site-header__action {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: var(--avana-white);
    border: 1px solid var(--avana-border-dark);

    color: var(--avana-text);

    cursor: pointer;
}


/* ---------------------------------------------------------
   7. Call icon
   --------------------------------------------------------- */

.site-header__call svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ---------------------------------------------------------
   8. Hamburger icon
   --------------------------------------------------------- */

.site-header__menu-toggle {
    flex-direction: column;
    gap: 4px;
}

.site-header__menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    background: currentColor;
}


/* ---------------------------------------------------------
   9. Desktop navigation
   Hidden on mobile
   --------------------------------------------------------- */

.site-header__desktop-nav {
    display: none;
}

.site-header__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   10. Mobile navigation
   --------------------------------------------------------- */

.site-header__mobile-nav {
    display: none;

    border-top: 1px solid #dddddd;
    background: var(--avana-white);
}

.site-header__mobile-nav.is-open {
    display: block;
}

.site-header__mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 16px 16px;
}

.site-header__mobile-nav li {
    border-bottom: 1px solid #eeeeee;
}

.site-header__mobile-nav a {
    display: block;
    padding: 14px 4px;

    font-size: 20px;
    line-height: 1.4;
}


/* ---------------------------------------------------------
   11. Header bottom divider
   --------------------------------------------------------- */

.site-header::after {
    content: "";
    display: block;

    width: calc(100% - 32px);
    max-width: 1200px;

    height: 1px;

    margin: 0 auto;

    background: var(--avana-border-dark);
}


/* ---------------------------------------------------------
   12. Focus states
   Accessibility
   --------------------------------------------------------- */

.site-header a:focus-visible,
.site-header button:focus-visible {
    outline: 2px solid var(--avana-purple);
    outline-offset: 3px;
}

/* =========================================================
   HERO SECTION START

   ========================================================= */


.hero-section {
    width: 100%;
    background: var(--avana-white);
}

.hero-section__container {
    padding: 24px 15px 0;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-section__content {
    width: 100%;
}

.hero-section__eyebrow {
    margin: 0 0 10px;

    color: var(--avana-purple-dark);

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.hero-section__title {
    margin: 0 0 14px;

    color: var(--avana-text);

    font-size: 36px;
    font-weight: 700;
    line-height: 1.08;

    letter-spacing: -0.7px;
}

.hero-section__description {
    margin: 0 0 18px;

    color: var(--avana-text-secondary);

    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-section__media {
    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;
}

.hero-section__media img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
}

/* =========================================
   STATS / KEY HIGHLIGHTS START
========================================= */

.stats-section {
    width: 100%;
    background: var(--avana-white);
    padding: 15px;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid var(--avana-border-dark);
    border-bottom: 1px solid var(--avana-border-dark);
}

.stat-item {
    min-width: 0;
    padding: 18px 0 20px;
}

.stat-item__number {
    margin: 0 0 6px;

    color: var(--avana-purple);

    font-size: 34px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.stat-item__label {
    margin: 0;

    color: var(--avana-text-secondary);

    font-size: 28px;
    line-height: 1.4;
    font-weight: 400;
}

/* =========================================
   MOBILE
   PDF REFERENCE
========================================= */

@media (max-width: 767px) {



    .stats-section__container {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stat-item {
        padding-top: 18px;
        padding-bottom: 20px;
    }

    .stat-item:nth-child(odd) {
        padding-right: 20px;
    }

    .stat-item:nth-child(even) {
        padding-left: 20px;
    }

    .stat-item__number {
        font-size: 34px;
    }

    .stat-item__label {
        font-size: 16px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) {

    .stats-section__container {
        width: calc(100% - 48px);
        max-width: 1100px;
    }

    .stat-item {
        padding: 22px 20px 24px;
    }

    .stat-item__number {
        font-size: 42px;
    }

}

/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

    .stats-section__container {
        width: calc(100% - 80px);
        max-width: 1180px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .stat-item {
        padding: 24px 24px 26px;
    }


    .stat-item__number {
        font-size: 42px;
    }

    .stat-item__label {
        font-size: 20px;
    }

}

/* =========================================
   LARGE DESKTOP
   CONTROLLED MAX-WIDTH
========================================= */

@media (min-width: 1400px) {

    .stats-section__container {
        max-width: 1240px;
    }

}


/* =========================================
   OUR CARE SERVICES
========================================= */

.care-services-section {
    width: 100%;
    background: var(--avana-light-bg);
    padding: 90px 0;
}

.care-services-container {

}


/* Section Heading */

.care-services-heading {
    margin-bottom: 55px;
}

.care-services-eyebrow {
    margin: 0 0 12px;
    color: var(--avana-purple-dark);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.8px;
    line-height: 1.4;
}

.care-services-heading h2 {
    margin: 0;

    color: var(--avana-text);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.5px;
}


/* Services Grid */

.care-services-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 45px;
}


/* Individual Service */

.care-service-item {
    display: grid;
    grid-template-columns: 155px minmax(0, 1fr);
    gap: 24px;

    padding: 28px 0;

    border-top: 1px solid var(--avana-border-dark);
}

.care-service-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--avana-border-dark);
}


/* Service Image */

.care-service-image {
    display: block;
    width: 155px;
    height: 125px;
    overflow: hidden;
}

.care-service-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Service Content */

.care-service-content {
    min-width: 0;
}

.care-service-content h3 {
    margin: 0 0 9px;
    color: var(--avana-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
}

.care-service-content h3 a {
    color: inherit;
    text-decoration: none;
}

.care-service-content p {
    margin: 0 0 17px;
    color: var(--avana-text-secondary);
    font-size: 18px;
    line-height: 1.55;
}

.care-service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--avana-purple);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;

    transition: color 0.2s ease;
}

.care-service-link span {
    font-size: 18px;
    line-height: 1;
}

.care-service-link:hover {
    color: var(--avana-purple-dark);
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

    .care-services-list {
        row-gap: 0;
    }

}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .care-services-container {
        width: min(100% - 80px, 1240px);
    }

}

/* =========================================================
   EVERYDAY MOMENTS OF CARE AND JOY
   ========================================================= */

.moments-section {
    width: 100%;
    background: var(--avana-white);
    padding: 40px 15px;
}

.moments-section__container {
    padding: 0 40px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.moments-section__heading {
    margin-bottom: 55px;
}

.moments-section__eyebrow {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--avana-purple);
}

.moments-section__title {
    margin: 0;
    font-size: 46px;
    line-height: 1.08;
    font-weight: 700;
    color: var(--avana-text);
}


/* =========================================================
   IMAGE GALLERY
   ========================================================= */

.moments-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}


/* =========================================================
   EVERY IMAGE HAS ONE COMMON BOX
   ========================================================= */

.moments-gallery__item {
    width: 100%;
    aspect-ratio: 4 / 3;

    margin: 0;
    padding: 0;

    background: var(--avana-light-bg);

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   IMAGE
   ========================================================= */

.moments-gallery__item img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: cover;
    object-position: center;

    margin: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .moments-section {
        padding: 40px 15px;
    }

    .moments-section__container {
        padding: 0 30px;
    }

    .moments-section__title {
        font-size: 42px;
    }

    .moments-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

}


/* =========================================================
   MOBILE
   PDF REFERENCE
   ========================================================= */

@media (max-width: 767px) {

    .moments-section {
        padding: 40px 15px;
    }

    .moments-section__container {
        padding: 0 15px;
    }

    .moments-section__heading {
        margin-bottom: 30px;
    }

    .moments-section__eyebrow {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .moments-section__title {
        font-size: 34px;
        line-height: 1.15;
    }

    .moments-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

}

/* =========================================================
   TRUSTED CARE, EVERY DAY PEACE
   ========================================================= */

.trusted-care-section {
    width: 100%;
    padding: 40px 15px;
    background: var(--avana-light-bg);
}

.trusted-care-section > .container {
    position: relative;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.trusted-care-heading {
    margin-bottom: 34px;
}

.trusted-care-eyebrow {
    margin: 0 0 14px;
    color: var(--avana-purple);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.trusted-care-heading h2 {
    margin: 0;
    color: var(--avana-text);
    font-size: clamp(38px, 3vw, 58px);
    line-height: 1.08;
    font-weight: 700;
}

.trusted-care-heading p {
    font-size: 20px;
}


/* =========================================================
   FOUNDER CARD
   ========================================================= */

.trusted-care-founder {
    padding: 30px;
    background: var(--avana-white);
    border: 1px solid #dddddd;
    box-shadow: 0 1px 3px var(--avana-shadow);
}


.trusted-care-founder__identity {
    display: flex;
    align-items: center;
    gap: 16px;
}


.trusted-care-founder__initials {
    width: 80px;
    height: 80px;
    flex: 0 0 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--avana-purple);

    color: var(--avana-white);
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
}


.trusted-care-founder__details h3 {
    margin: 0 0 5px;
    color: var(--avana-text);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}


.trusted-care-founder__details p {
    margin: 0;
    color: var(--avana-text-muted);
    font-size: 16px;
    line-height: 1.5;
}


.trusted-care-founder__story {
    margin-top: 26px;
}


.trusted-care-founder__story p {
    margin: 0;
    color: var(--avana-text-secondary);
    font-size: 20px;
    line-height: 1.55;
}


.trusted-care-founder__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 27px;

    color: var(--avana-purple);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none;
}


.trusted-care-founder__link span {
    font-size: 20px;
    line-height: 1;
}


.trusted-care-founder__link:hover {
    color: var(--avana-purple);
    text-decoration: none;
}


/* =========================================================
   FIVE TRUST HIGHLIGHTS
   ========================================================= */

.trusted-care-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 20px;
}


.trusted-care-highlight {
    display: inline-flex;
    align-items: center;

    padding: 7px 13px;

    border: 1px solid var(--avana-purple);
    background: transparent;

    color: var(--avana-purple);
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}


/* =========================================================
   CARE POINTS
   ========================================================= */

.trusted-care-points {
    margin-top: 22px;
    border-top: 1px solid #bcbcbc;
}


.trusted-care-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid #bcbcbc;
}


.trusted-care-point__icon {
    flex: 0 0 auto;

    color: var(--avana-purple);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}


.trusted-care-point__content {
    flex: 1 1 auto;
}


.trusted-care-point__content h3 {
    display: inline;
    margin: 0;

    color: var(--avana-text);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}


.trusted-care-point__content p {
    display: inline;
    margin: 0;

    color: var(--avana-text);
    font-size: 17px;
    line-height: 1.55;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .trusted-care-section {
        padding: 40px 15px;
    }

    .trusted-care-heading {
        margin-bottom: 40px;
    }

    .trusted-care-founder {
        padding: 32px;
    }

    /* .trusted-care-highlights {
        max-width: 900px;
    } */

    .trusted-care-points {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 32px;
    }

    .trusted-care-point {
        min-width: 0;
    }

}

/* =========================================================
   ACCOMMODATION SECTION
   ========================================================= */

.accommodation-section {
    width: 100%;
    padding: 40px 15px;
}


/* =========================================================
   HEADING
   ========================================================= */

.accommodation-heading {
    margin-bottom: 26px;
}

.accommodation-eyebrow {
    margin: 0 0 7px;

    color: var(--avana-purple-dark);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.accommodation-heading h2 {
    margin: 0;

    color: var(--avana-text);
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}


/* =========================================================
   ACCOMMODATION LIST
   ========================================================= */

.accommodation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================================================
   ACCOMMODATION CARD
   ========================================================= */

.accommodation-card {
    display: flex;
    align-items: flex-start;

    width: 100%;
    padding: 16px;

    background: var(--avana-card-bg);
}


/* =========================================================
   ICON
   ========================================================= */

.accommodation-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 56px;

    width: 56px;
    height: 56px;

    margin-right: 16px;

    border-radius: 50%;

    background: var(--avana-purple-light);

    color: var(--avana-purple-dark);

    font-size: 23px;
    line-height: 1;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.accommodation-card__content {
    flex: 1 1 auto;
    min-width: 0;
}


/* =========================================================
   CARD HEADER
   ========================================================= */

.accommodation-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}


.accommodation-card__header h3 {
    margin: 0;

    color: var(--avana-text);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}


.accommodation-card__type {
    flex: 0 0 auto;

    padding-top: 3px;

    color: var(--avana-purple);

    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;

    letter-spacing: 1.8px;
}


/* DESCRIPTION*/

.accommodation-card__content p {
    margin: 6px 0 0;

    color: var(--avana-text-secondary);

    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}

/* =========================================================
   IN THEIR WORDS START
   ========================================================= */
.testimonials-section {
    width: 100%;

    background-color: var(--avana-light-bg);

    padding: 40px 0;
}




/* =========================================================
   SECTION HEADING
   ========================================================= */

.testimonials-section__heading {
    margin: 0;
    padding: 0;
}


.testimonials-section__eyebrow {
    margin: 0 0 8px;

    color: var(--avana-purple-dark);

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.testimonials-section__title {
    margin: 0;

    color: var(--avana-text);

    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   SLIDER WRAPPER
   ========================================================= */

.testimonials-slider {
    position: relative;

    width: 100%;
}


/* =========================================================
   VIEWPORT
   ========================================================= */

.testimonials-slider__viewport {
    width: 100%;
border-radius: 25px;
    overflow: hidden;
}


/* =========================================================
   TESTIMONIAL LIST
   ========================================================= */

.testimonials-list {
    display: block;

    margin-top: 18px;

    border-top: 2px solid var(--avana-border-dark);
}


/* =========================================================
   INDIVIDUAL TESTIMONIAL
   ========================================================= */

.testimonial-item {
    display: block;

    margin: 0;

    padding: 16px 0 20px;

    border-bottom: 2px solid var(--avana-border-dark);
}


/* =========================================================
   LOCATION
   ========================================================= */

.testimonial-item__location {
    display: inline-block;

    margin: 0 0 14px;

    padding: 6px 10px;

    background-color: var(--avana-accent-light);

    color: var(--avana-accent-text);

    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}


/* =========================================================
   QUOTE
   ========================================================= */

.testimonial-item__quote {
    margin: 0 0 12px;

    color: var(--avana-text);

    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    text-align: left;
}


/* =========================================================
   AUTHOR
   ========================================================= */

.testimonial-item__author {
    margin: 0;

    color: var(--avana-text-muted);

    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}


/* =========================================================
   SLIDER BUTTONS
   MOBILE = HIDDEN
   ========================================================= */

.testimonials-slider__button {
    display: none;
}

/* =========================================================
   OUR MISSION & OUR VISION START
   ========================================================= */

.mission-vision-section {
    width: 100%;
    background: var(--avana-light-bg);
    padding: 40px 15px;
}


.mission-vision-section__container {
    background: var(--avana-purple);
    padding: 24px 16px;
}

.mission-vision-block {
    margin: 0;
}


.mission-vision-block__title {
    margin: 0 0 12px;

    color: var(--avana-white);

    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.5px;
}



.mission-vision-block__text {
    margin: 0;

    color: var(--avana-white);

    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}


.mission-vision-block + .mission-vision-block {
    margin-top: 26px;
}

/* =========================================================
   CORE VALUES
   ========================================================= */

.core-values-section {
    width: 100%;
    background: var(--avana-light-bg);
    padding: 40px 15px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.core-values-section__heading {
    margin: 0 0 22px;
}


.core-values-section__eyebrow {
    margin: 0 0 8px;

    color: var(--avana-purple-dark);

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.core-values-section__title {
    margin: 0;

    color: var(--avana-text);

    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   CORE VALUES GRID
   ========================================================= */

.core-values-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 24px;
    row-gap: 24px;

    padding-bottom: 26px;

    border-bottom: 2px solid var(--avana-border-dark);
}


/* INDIVIDUAL VALUE*/

.core-value-item {
    margin: 0;
}


.core-value-item__title {
    margin: 0 0 8px;

    color: var(--avana-text);

    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}


.core-value-item__text {
    margin: 0;

    color: var(--avana-text-secondary);

    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}

/* =========================================================
   TRIAL STAY SECTION
   ========================================================= */

.trial-stay-section {
    width: 100%;
    background: var(--avana-light-bg);
    padding: 0 0 40px;
}


.trial-stay-section__container {
    padding: 22px 16px 22px;

    background: var(--avana-card-bg);

    border-top: 2px solid var(--avana-border-dark);
    border-bottom: 2px solid var(--avana-border-dark);
}


/* =========================================================
   HEADING
   ========================================================= */

.trial-stay-section__heading {
    margin: 0 0 24px;
}


.trial-stay-section__eyebrow {
    margin: 0 0 8px;

    color: var(--avana-purple-dark);

    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.trial-stay-section__title {
    margin: 0 0 8px;

    color: var(--avana-text);

    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.4px;
}


.trial-stay-section__description {
    margin: 0;

    color: var(--avana-text-secondary);

    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================================
   FORM
   ========================================================= */

.trial-stay-form {
    width: 100%;
}


.trial-stay-form__group {
    margin: 0 0 18px;
}


.trial-stay-form__label {
    display: block;

    margin: 0 0 8px;

    color: var(--avana-text-secondary);

    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}


/* =========================================================
   FORM CONTROLS
   ========================================================= */

.trial-stay-form__input,
.trial-stay-form__select,
.trial-stay-form__textarea {
    display: block;

    width: 100%;

    margin: 0;

    padding: 11px 12px;

    border: 1px solid var(--avana-border-dark);
    border-radius: 0;

    background: var(--avana-card-bg);

    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 16px;
    line-height: 1.4;

    box-sizing: border-box;
}


.trial-stay-form__input::placeholder,
.trial-stay-form__textarea::placeholder {
    color: var(--avana-text-muted);
    opacity: 1;
}


.trial-stay-form__input:focus,
.trial-stay-form__select:focus,
.trial-stay-form__textarea:focus {
    outline: 2px solid var(--avana-purple);
    outline-offset: 1px;
}


.trial-stay-form__textarea {
    min-height: 112px;

    resize: vertical;
}


/* SUBMIT BUTTON*/

.trial-stay-form__submit {
    display: block;

    width: 100%;

    margin: 4px 0 0;
    padding: 12px 16px;

    border: 0;
    border-radius: 0;

    background: var(--avana-purple);
    color: var(--avana-white);

    font-family: var(--avana-font);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}


.trial-stay-form__submit:hover {
    background: var(--avana-purple-dark);
}


.trial-stay-form__submit:focus-visible {
    outline: 2px solid var(--avana-purple-dark);
    outline-offset: 2px;
}

/* =========================================================
   FAQ SECTION START
   ========================================================= */

.faq-section {
    width: 100%;

    background: var(--avana-light-bg);

    padding: 40px 0 40px;
}


.faq-section__container {

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.faq-section__heading {
    margin: 0;
    padding: 0;
}


.faq-section__eyebrow {
    margin: 0 0 8px;

    color: var(--avana-purple-dark);

    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.faq-section__title {
    margin: 0;

    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.faq-list {
    width: 100%;

    margin-top: 18px;

    border-top: 2px solid var(--avana-border-dark);
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.faq-item {
    margin: 0;

    border-bottom: 2px solid var(--avana-border-dark);
}


/* =========================================================
   QUESTION
   ========================================================= */

.faq-item__question {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    width: 100%;

    margin: 0;
    padding: 18px 0;

    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 600;

    cursor: pointer;

    list-style: none;
}


/*
 * Remove browser default arrow
 */

.faq-item__question::-webkit-details-marker {
    display: none;
}


.faq-item__question::marker {
    display: none;
}


/*  PLUS / MINUS ICON*/

.faq-item__icon {
    flex: 0 0 auto;

    width: 20px;
    height: 20px;

    color: var(--avana-purple);

    font-family:var(--avana-font);
    font-size: 22px;
    line-height: 18px;
    font-weight: 400;

    text-align: left;
}




.faq-item[open] .faq-item__icon {
    font-size: 0;
}


.faq-item[open] .faq-item__icon::before {
    content: "−";

    font-size: 22px;
    line-height: 18px;
}


/* ANSWER */

.faq-item__answer {
    margin: 0;

    padding: 0 0 18px;
}


.faq-item__answer p {
    margin: 0;

    color: var(--avana-text-secondary);

    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
    text-align: left;
}


/* QUESTION FOCUS */

.faq-item__question:focus-visible {
    outline: 2px solid var(--avana-purple);

    outline-offset: 3px;
}


/* =========================================================
   FAQ COMPARISON
   ========================================================= */

.faq-comparison {
    width: 100%;
    margin-top: 24px;
}

.faq-comparison__title {
    margin: 0;
    padding: 14px 0 8px;

    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    border-top: 1px solid var(--avana-border-dark);
}

.faq-comparison__headers,
.faq-comparison__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.faq-comparison__headers {
    border-bottom: 1px solid var(--avana-border-dark);
}

.faq-comparison__headers > div {
    padding: 0 14px 8px 0;

    color: var(--avana-text-muted);

    font-family: var(--avana-font);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;

    letter-spacing: 1px;
}

.faq-comparison__headers > div:last-child {
    padding-left: 14px;
    color: var(--avana-purple);
}

.faq-comparison__row {
    border-bottom: 1px solid var(--avana-border-dark);
}

.faq-comparison__row > div {
    padding: 10px 14px 14px 0;

    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 16px;
    line-height: 1.45;
}

.faq-comparison__row > div + div {
    padding-left: 14px;
    border-left: 2px solid var(--avana-purple-light);
}

/* =========================================================
   FROM THE BLOG
   BASE / MOBILE
   ========================================================= */

.blog-preview-section {
    width: 100%;
    background-color: var(--avana-light-bg);
    padding: 0 0 40px;
}


.blog-preview-section__container {
    padding-top: 20px;
    border-top: 2px solid var(--avana-border-dark);
}


/* =========================================================
   HEADING
   ========================================================= */

.blog-preview-section__heading {
    margin: 0 0 18px;
}


.blog-preview-section__eyebrow {
    margin: 0 0 8px;

    color: var(--avana-purple-dark);

    font-family: var(--avana-font);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.blog-preview-section__title {
    margin: 0;

    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 34px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   BLOG LIST
   ========================================================= */

.blog-preview-list {
    margin: 0;
}


.blog-preview-list > div {
    margin-bottom: 20px;
}


.blog-preview-list > div:last-child {
    margin-bottom: 0;
}


/* =========================================================
   BLOG ITEM
   MOBILE = PDF REFERENCE
   ========================================================= */

.blog-preview-item {
    display: grid;

    grid-template-columns: 106px minmax(0, 1fr);

    column-gap: 14px;

    align-items: center;
}


/* =========================================================
   IMAGE
   ========================================================= */

.blog-preview-item__image-link {
    display: block;

    width: 106px;
    height: 104px;

    overflow: hidden;
}


.blog-preview-item__image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   CONTENT
   ========================================================= */

.blog-preview-item__content {
    min-width: 0;
}


.blog-preview-item__date {
    display: block;

    margin: 8px 0 8px;

    color: var(--avana-text-muted);

    font-family: var(--avana-font);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.blog-preview-item__title {
    margin: 0;

    font-family: var(--avana-font);
    font-size:16px;
    line-height: 1.4;
    font-weight: 600;
}


.blog-preview-item__title a {
    color: var(--avana-text);

    text-decoration: none;
}


/* READ ALL BUTTON */

.blog-preview-section__button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    margin-top: 18px;
    padding: 11px 16px;

    border: 1px solid var(--avana-border-dark);

    background-color: transparent;
    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;

    text-align: left;
    text-decoration: none;
}

/* =========================================================
   COME AND SEE FOR YOURSELF
   BASE / MOBILE
   ========================================================= */

.visit-cta-section {
    width: 100%;

    background-color: var(--avana-light-bg);

    padding: 0 0 40px;
}




.visit-cta-section__content {
    width: 100%;

    padding: 24px 18px 28px;

    background-color: var(--avana-purple);
}


/* =========================================================
   TITLE
   ========================================================= */

.visit-cta-section__title {
    margin: 0 0 14px;

    color: var(--avana-white);

    font-family: var(--avana-font);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;

    letter-spacing: -0.5px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.visit-cta-section__description {
    margin: 0;

    color: var(--avana-white);

    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
}


/* CALL TO BOOK BUTTON */

.visit-cta-section__button {
    display: flex;

    align-items: center;

    width: 100%;

    margin-top: 24px;
    padding: 12px 18px;

    background-color: var(--avana-white);
    color: var(--avana-purple-dark);

    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;

    text-decoration: none;
}


.visit-cta-section__button:hover,
.visit-cta-section__button:focus-visible {
    color: var(--avana-purple-dark);
    text-decoration: none;
}

/*  VISIT CTA — WHATSAPP BUTTON */

.visit-cta-section__button--whatsapp {
    margin-top: 12px;

    background: transparent;
    color: var(--avana-white);

    border: 1px solid var(--avana-white);
}

.visit-cta-section__button--whatsapp:hover {
    background: var(--avana-white);
    color: var(--avana-purple-dark);
}

/* =========================================================
   SITE FOOTER
   BASE / MOBILE
   ========================================================= */

.site-footer {
    width: 100%;

    background-color: var(--avana-light-bg);


    padding: 0 0 40px;
}




/* =========================================================
   INFORMATION
   ========================================================= */

.site-footer__information {
    margin: 0;
    padding: 24px 0 0;
}


.site-footer__location-title {
    margin: 0 0 14px;

    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}


.site-footer__address {
    margin: 0 0 10px;

    color: var(--avana-text-secondary);

    font-family: var(--avana-font);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
}


.site-footer__address strong {
    color: var(--avana-text);
    font-weight: 700;
}


/*  NAVIGATION */

.site-footer__navigation {
    margin-top: 22px;
}


.site-footer__links {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.site-footer__links li {
    margin: 0 0 14px;
}


.site-footer__links a {
    color: var(--avana-purple-dark);

    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;

    text-decoration: underline;
    text-underline-offset: 2px;
}


.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--avana-purple);
}


/* COPYRIGHT*/

.site-footer__bottom {
    margin-top: 4px;
}


.site-footer__bottom p {
    margin: 0;

    color: var(--avana-text-muted);

    font-family: var(--avana-font);
    font-size: 18px;
    line-height: 1.5;
}


.site-footer__bottom a {
    color: var(--avana-purple-dark);

    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =========================================================
   STICKY MOBILE CTA
   CALL NOW / WHATSAPP
   ========================================================= */

.mobile-sticky-cta {
    position: fixed;
    left: 0;
    bottom: 0;

    width: 100%;

    display: flex;

    z-index: 9999;
}


.mobile-sticky-cta a {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 64px;

    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 700;

    text-decoration: none;
      min-height: var(--mobile-sticky-cta-height);
}


.mobile-sticky-cta__call {
    background-color: var(--avana-purple);
    color: var(--avana-white);
}


.mobile-sticky-cta__whatsapp {
    background-color: #2C2A29;
    color: var(--avana-white);
}
/* STICKY CTA - DESKTOP HIDE*/

@media (min-width: 992px) {

    .mobile-sticky-cta {
        display: none;
    }

}

/* =========================================================
   MOBILE STICKY CTA — FOOTER CLEARANCE
   ========================================================= */

@media (max-width: 991px) {

    .site-footer {
        padding-bottom: calc(
            40px + var(--mobile-sticky-cta-height)
        );
    }

}

/* =========================================================
   SOCIAL MEDIA
   ========================================================= */

.site-footer__social {
    margin-top: 8px;

    padding-top: 20px;

    border-top: 1px solid var(--avana-border);
}

.site-footer__social-title {
    margin: 0 0 14px;

    color: var(--avana-text);

    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.site-footer__social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border: 1px solid var(--avana-border);
    border-radius: 50%;

    background-color: var(--avana-white);
    color: var(--avana-purple-dark);

    font-size: 18px;
    line-height: 1;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    color: var(--avana-white);
    background-color: var(--avana-purple);
    border-color: var(--avana-purple);

    transform: translateY(-2px);
}

.site-footer__social-link:focus-visible {
    outline: 2px solid var(--avana-purple);
    outline-offset: 3px;
}

/* =========================================================
   SERVICE PAGE HERO (BREADCRUMB) START
   ========================================================= */

.service-page-hero {
    width: 100%;
    background: #151515;
    color: #ffffff;
}

.service-page-hero__container {
    min-height: 240px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: left;
}


/*SERVICE PAGE TITLE*/

.service-page-hero__title {
    margin: 0;

    font-family: var(--avana-font);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.15;

    color: #ffffff;
}


/* BREADCRUMB*/

.service-page-hero__breadcrumb {
    margin-top: 20px;
}

.service-page-hero__breadcrumb-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    list-style: none;

    margin: 0;
    padding: 0;

    font-family: var(--avana-font);
    font-size: 15px;
    line-height: 1.5;
}

.service-page-hero__breadcrumb-item {
    display: inline-flex;
    align-items: center;

    color: #d0d0d0;
}

.service-page-hero__breadcrumb-item
+ .service-page-hero__breadcrumb-item::before {

    content: "/";

    margin: 0 11px;

    color: #777777;
}

.service-page-hero__breadcrumb-link {
    color: #ffffff;
    text-decoration: none;

    transition: opacity 0.2s ease;
}

.service-page-hero__breadcrumb-link:hover {
    opacity: 0.7;
}

.service-page-hero__breadcrumb-item--current {
    color: #bdbdbd;
    font-weight: 500;
}


/* SERVICE CONTENT */

.independent-living-content {
    padding: 70px 0;
}


/* MOBILE*/

@media (max-width: 767.98px) {

    .service-page-hero__container {
        min-height: 140px;
    }

    .service-page-hero__title {
        font-size: 34px;
    }

    .service-page-hero__breadcrumb {
        margin-top: 14px;
    }

    .service-page-hero__breadcrumb-list {
        font-size: 13px;
    }

    .service-page-hero__breadcrumb-item
    + .service-page-hero__breadcrumb-item::before {

        margin: 0 7px;
    }

    .independent-living-content {
        padding: 50px 0;
    }

}

/* =========================================================
   INDEPENDENT LIVING — INTRO SECTION START
   ========================================================= */

.independent-living-intro {
    width: 100%;
    background: var(--avana-white);
}


.independent-living-intro__container {
    padding: 40px 15px 40px;
}


/* =========================================================
   INTRO CONTENT
   ========================================================= */

.independent-living-intro__content {
    width: 100%;
}


.independent-living-intro__eyebrow {
    margin: 0 0 8px;

    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--avana-purple-dark);
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.independent-living-intro__title {
    margin: 0 0 28px;

    font-family: var(--avana-font);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;

    color: var(--avana-text);
}


/* =========================================================
   FEATURE IMAGE
   ========================================================= */

.independent-living-intro__image {
    width: 100%;
    margin-bottom: 28px;

    overflow: hidden;
}


.independent-living-intro__image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    /* NO FLIP */
    transform: none;
}


/* =========================================================
   FIRST / INTRO PARAGRAPH
   ========================================================= */

.independent-living-intro__content p {
    margin: 0 0 22px;

    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;

    text-align: left;

    color: var(--avana-text-secondary);
}


/* =========================================================
   CONTINUATION CONTENT
   Appears BELOW image + first content on desktop
   ========================================================= */

.independent-living-intro__continuation {
    width: 100%;
}


.independent-living-intro__continuation p {
    margin: 0 0 22px;

    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;

    text-align: left;

    color: var(--avana-text-secondary);
}


.independent-living-intro__continuation p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SUITABILITY BOX
   ========================================================= */

.independent-living-intro__suitability {
    margin-top: 38px;

    padding: 30px;

    background: var(--avana-card-bg);

    border-top: 1px solid var(--avana-border-dark);
    border-bottom: 1px solid var(--avana-border-dark);
}


/* =========================================================
   SUITABILITY TITLE
   ========================================================= */

.independent-living-intro__suitability-title {
    margin: 0 0 22px;

    font-family: var(--avana-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--avana-text);
}


/* =========================================================
   SUITABILITY LIST
   ========================================================= */

.independent-living-intro__suitability-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px 40px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.independent-living-intro__suitability-list li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 0;

    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;

    color: var(--avana-text);
}


/* =========================================================
   PURPLE BULLET
   ========================================================= */

.independent-living-intro__bullet {
    flex: 0 0 7px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--avana-purple);
}


/* =========================================================
   SECTION END LINE
   ========================================================= */

.independent-living-care__end-line {
    width: 100%;
    height: 3px;

    background: var(--avana-border-section);
}


/* =========================================================
   DESKTOP LAYOUT
   ========================================================= */

@media (min-width: 992px) {

    .independent-living-intro__container {
        display: grid;

        /*
         * LEFT  = IMAGE
         * RIGHT = TEXT
         */
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        column-gap: 56px;
        row-gap: 0;

        padding-top: 40px;
        padding-bottom: 40px;

        align-items: center;
    }


    /* -----------------------------------------
       IMAGE — LEFT
       ----------------------------------------- */

    .independent-living-intro__image {
        grid-column: 1;
        grid-row: 1;

        width: 100%;
        margin-bottom: 0;

        overflow: hidden;
    }


    .independent-living-intro__image img {
        display: block;

        width: 100%;
        height: auto;

        object-fit: cover;

        /* Keep original image direction */
        transform: none;
    }


    /* -----------------------------------------
       CONTENT — RIGHT
       ----------------------------------------- */

    .independent-living-intro__content {
        grid-column: 2;
        grid-row: 1;

        width: 100%;
    }


    .independent-living-intro__eyebrow {
        font-size: 18px;
    }


    .independent-living-intro__title {
        font-size: clamp(42px, 4vw, 58px);
        line-height: 1.1;

        margin-bottom: 28px;
    }


    /* -----------------------------------------
       CONTENT → FULL WIDTH BELOW
       ----------------------------------------- */

    .independent-living-intro__continuation {
        grid-column: 1 / -1;
        grid-row: 2;

        width: 100%;

        margin-top: 40px;
    }


    /* -----------------------------------------
       SUITABILITY → BELOW CONTINUATION
       ----------------------------------------- */

    .independent-living-intro__suitability {
        grid-column: 1 / -1;
        grid-row: 3;

        width: 100%;

        margin-top: 46px;
    }


    /* -----------------------------------------
       END LINE
       ----------------------------------------- */

    .independent-living-care__end-line {
        grid-column: 1 / -1;
        grid-row: 4;

        margin-top: 40px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .independent-living-intro__container {
        padding: 40px 24px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .independent-living-intro__container {
        padding: 40px 15px;
    }


    .independent-living-intro__eyebrow {
        font-size: 18px;
    }


    .independent-living-intro__title {
        font-size: 36px;
        line-height: 1.1;

        margin-bottom: 24px;
    }


    .independent-living-intro__image {
        margin-bottom: 28px;
    }


    .independent-living-intro__content p,
    .independent-living-intro__continuation p {
        font-size: 20px;
        line-height: 1.7;
    }


    .independent-living-intro__continuation {
        margin-top: 0;
    }


    .independent-living-intro__suitability {
        margin-top: 38px;
        padding: 24px 20px;
    }


    .independent-living-intro__suitability-title {
        font-size: 22px;
        line-height: 1.4;
    }


    .independent-living-intro__suitability-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .independent-living-intro__suitability-list li {
        font-size: 20px;
    }

}

/* =========================================================
   COMPANY, NOT ISOLATION  START
   ========================================================= */

.independent-living-community {
    width: 100%;
    background: var(--avana-white);
}

.independent-living-community__container {
    padding: 40px 15px 40px;
}



.independent-living-community__eyebrow {
    margin: 0 0 8px;

    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--avana-purple-dark);
}



.independent-living-community__title {
   

    margin: 0 0 28px;

    font-family: var(--avana-font);
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.15;

    color: var(--avana-text);
}




.independent-living-community__content {


    margin-bottom: 28px;
}

.independent-living-community__content p {
    margin: 0;

    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;

    color: var(--avana-text-secondary);
}


.independent-living-community__image {
    width: 100%;

    margin: 0 0 28px;

    overflow: hidden;
}

.independent-living-community__image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* CLOSING STATEMENT */



.independent-living-community__closing p {
    margin: 0;

    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;

    color: var(--avana-text);
}

/* =========================================================
   WHAT IS TAKEN CARE OF
   ========================================================= */

.independent-living-care {
    width: 100%;
    background: var(--avana-light-bg);
}

.independent-living-care__container {
    padding: 40px 15px 0;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.independent-living-care__eyebrow {
    margin: 0 0 8px;

    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--avana-purple-dark);
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.independent-living-care__title {
    margin: 0 0 25px;

    font-family: var(--avana-font);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;

    color: var(--avana-text);
}


/* =========================================================
   CARE LIST
   ========================================================= */

.independent-living-care__list {
    width: 100%;

    border-top: 1px solid var(--avana-border-dark);
}


/* =========================================================
   CARE ITEM
   ========================================================= */

.independent-living-care__item {
    display: grid;
    grid-template-columns: 22px 1fr;
    column-gap: 10px;

    padding: 18px 0;

    border-bottom: 1px solid var(--avana-border-dark);
}


/* =========================================================
   CHECK
   ========================================================= */

.independent-living-care__check {
    display: block;

    padding-top: 2px;

    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;

    color: var(--avana-purple);
}


/* =========================================================
   ITEM TEXT
   ========================================================= */

.independent-living-care__text {
    margin: 0;

    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;

    text-align: left;

    color: var(--avana-text);
}

.independent-living-care__text strong {
    font-weight: 700;
    color: var(--avana-text);
}


/* =========================================================
   SECTION END LINE
   ========================================================= */

.independent-living-care__end-line {
    width: 100%;
    height: 3px;

    background: var(--avana-border-section);
}


/* BLOG START  */
.blog-intro-section {
    padding: 40px 0;
    background: var(--avana-white);
}

.blog-intro-section__container {
    width: 100%;
}

.blog-intro-section__content {
    width: 100%;
}

.blog-intro-section__eyebrow {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--avana-purple);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.blog-intro-section__title {
    margin: 0 0 24px;
    font-family: var(--avana-font);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--avana-text);
}

.blog-intro-section__sub-title {
    margin: 28px 0 14px;
    font-family: var(--avana-font);
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--avana-text);
}

.blog-intro-section__text {
    margin: 0 0 18px;
    font-family: var(--avana-font);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    color: var(--avana-text-secondary);
    text-align: left;
}

.blog-intro-section__image-wrap {
    width: 100%;
    overflow: hidden;
}

.blog-intro-section__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 900 / 650;
    object-fit: cover;
}

/* AVANA CARES SECTION start  */

/* =========================================================
   BLOG CONTENT SECTION
   ========================================================= */

.blog-content-section {
    padding: 40px 15px;
    background: var(--avana-white);
}

.blog-content-section + .blog-content-section {
    border-top: 1px solid var(--avana-border-light);
}

.blog-content-section__title {
    margin: 0 0 25px;
    font-family: var(--avana-font);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
    color: var(--avana-text);
}

.blog-content-section__text {
    margin: 0 0 20px;
    font-family: var(--avana-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--avana-text-secondary);
    text-align: left;
}

.blog-content-section__text:last-child {
    margin-bottom: 0;
}



/* =========================================================
   CONTACT INFORMATION SECTION
   ========================================================= */

.contact-information-section {
    padding: 40px 15px;
    background: var(--avana-white);
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.contact-information-section__heading {
    margin-bottom: 32px;
    text-align: left;
}

.contact-information-section__title {
    margin: 0 0 14px;
    font-family: var(--avana-font);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--avana-text);
}

.contact-information-section__intro {
    margin: 0 auto;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--avana-text-secondary);
    text-align: left;
}


/* ---------------------------------------------------------
   CONTACT ITEMS
   --------------------------------------------------------- */

.contact-information-section__items {
    row-gap: 20px;
}


/* ---------------------------------------------------------
   CONTACT CARD
   --------------------------------------------------------- */

.contact-information-card {
    height: 100%;
    padding: 24px 20px;
    background: var(--avana-card-bg);
    border: 1px solid var(--avana-border-light);
}

.contact-information-card__title {
    margin: 0 0 12px;
    font-family: var(--avana-font);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--avana-text);
}

.contact-information-card__text {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--avana-text-secondary);
    text-align: left;
    overflow-wrap: anywhere;
}

.contact-information-card__text a {
    color: var(--avana-text);
    text-decoration: none;
}

.contact-information-card__text a:hover {
    color: var(--avana-purple);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) {

    .contact-information-section {
        padding: 40px 15px;
    }

    .contact-information-section__heading {
        margin-bottom: 40px;
    }

    .contact-information-section__title {
        font-size: 32px;
    }

    .contact-information-section__intro {
        font-size: 15px;
        line-height: 1.65;
    }

    .contact-information-section__items {
        row-gap: 24px;
    }

    .contact-information-card {
        padding: 28px 24px;
    }

    .contact-information-card__title {
        font-size: 21px;
    }
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .contact-information-section {
        padding: 40px 15px;
    }

    .contact-information-section__heading {
        margin-bottom: 48px;
    }

    .contact-information-section__title {
        font-size: 34px;
    }

    .contact-information-section__intro {
        font-size: 16px;
        line-height: 1.65;
    }

    .contact-information-card {
        padding: 30px 26px;
        transition:
            transform 0.25s ease,
            box-shadow 0.25s ease;
    }

    .contact-information-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px var(--avana-shadow);
    }

    .contact-information-card__title {
        font-size: 22px;
    }

    .contact-information-card__text {
        font-size: 15px;
        line-height: 1.65;
    }
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .contact-information-section {
        padding: 40px 15px;
    }

    .contact-information-card {
        padding: 32px 28px;
    }
}


/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */

.contact-form-section {
    padding: 40px 15px;
    background: var(--avana-light-bg);
}


/* ---------------------------------------------------------
   FORM WRAPPER
   --------------------------------------------------------- */

.contact-form-section__wrapper {
    padding: 32px 20px;
    background: var(--avana-white);
    border: 1px solid var(--avana-border-light);
}


/* ---------------------------------------------------------
   CONTENT / HEADING
   --------------------------------------------------------- */

.contact-form-section__content {
    margin-bottom: 32px;
}

.contact-form-section__eyebrow {
    margin: 0 0 10px;
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.4px;
    color: var(--avana-purple);
    text-transform: uppercase;
}

.contact-form-section__title {
    margin: 0 0 14px;
    font-family: var(--avana-font);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--avana-text);
}

.contact-form-section__text {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--avana-text-secondary);
    text-align: left;
}


/* ---------------------------------------------------------
   FORM
   --------------------------------------------------------- */

.contact-form {
    margin: 0;
}

.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__label {
    display: block;
    margin: 0 0 8px;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--avana-text);
}

.contact-form__input {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 13px 14px;
    font-family: var(--avana-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--avana-text);
    background: var(--avana-white);
    border: 1px solid var(--avana-border);
    border-radius: 0;
    outline: none;
    box-shadow: none;
    appearance: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form__input::placeholder {
    color: var(--avana-text-muted);
    opacity: 1;
}

.contact-form__input:focus {
    border-color: var(--avana-purple);
    box-shadow: 0 0 0 3px var(--avana-purple-light);
}


/* ---------------------------------------------------------
   SELECT
   --------------------------------------------------------- */

.contact-form__select {
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--avana-text) 50%),
        linear-gradient(135deg, var(--avana-text) 50%, transparent 50%);
    background-position:
        calc(100% - 17px) 21px,
        calc(100% - 12px) 21px;
    background-size:
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
    padding-right: 40px;
}


/* ---------------------------------------------------------
   TEXTAREA
   --------------------------------------------------------- */

.contact-form__textarea {
    min-height: 150px;
    resize: vertical;
}


/* ---------------------------------------------------------
   SUBMIT BUTTON
   --------------------------------------------------------- */

.contact-form__action {
    margin-top: 4px;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 14px 24px;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--avana-white);
    background: var(--avana-purple);
    border: 1px solid var(--avana-purple);
    border-radius: 0;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.contact-form__submit:hover {
    background: var(--avana-purple-dark);
    border-color: var(--avana-purple-dark);
}

.contact-form__submit:focus-visible {
    outline: 2px solid var(--avana-purple);
    outline-offset: 3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) {

    .contact-form-section {
        padding: 40px 15px;
    }

    .contact-form-section__wrapper {
        padding: 44px 36px;
    }

    .contact-form-section__content {
        margin-bottom: 40px;
    }

    .contact-form-section__title {
        font-size: 32px;
    }

    .contact-form-section__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .contact-form__field {
        margin-bottom: 24px;
    }

    .contact-form__submit {
        width: auto;
        min-width: 150px;
    }
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .contact-form-section {
        padding: 40px 15px;
    }

    .contact-form-section__wrapper {
        padding: 40px 40px;
    }

    .contact-form-section__content {
        margin-bottom: 44px;
    }

    .contact-form-section__eyebrow {
        font-size: 13px;
        letter-spacing: 1.6px;
    }

    .contact-form-section__title {
        font-size: 34px;
    }

    .contact-form-section__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .contact-form__label {
        font-size: 15px;
    }

    .contact-form__input {
        min-height: 52px;
        padding: 14px 16px;
    }

    .contact-form__textarea {
        min-height: 170px;
    }

    .contact-form__submit {
        min-height: 54px;
        padding: 15px 32px;
    }

    .contact-form__submit:hover {
        transform: translateY(-2px);
    }
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .contact-form-section {
        padding: 40px 15px;
    }

    .contact-form-section__wrapper {
        padding: 40px 40px;
    }
}

/* =========================================================
   CONTACT LOCATION / MAP SECTION
   ========================================================= */

.contact-location-section {
    padding: 40px 15px;
    background: var(--avana-white);
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.contact-location-section__heading {
    margin-bottom: 32px;
}

.contact-location-section__eyebrow {
    margin: 0 0 10px;
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.5px;
    color: var(--avana-purple);
    text-transform: uppercase;
}

.contact-location-section__title {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--avana-text);
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.contact-location-section__content {
    row-gap: 24px;
}


/* ---------------------------------------------------------
   LOCATION DETAILS
   --------------------------------------------------------- */

.contact-location-section__details {
    height: 100%;
    padding: 28px 22px;
    background: var(--avana-light-bg);
    border-left: 4px solid var(--avana-purple);
}

.contact-location-section__details-title {
    margin: 0 0 16px;
    font-family: var(--avana-font);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--avana-text);
}

.contact-location-section__address {
    margin: 0 0 24px;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--avana-text-secondary);
    text-align: left;
}


/* ---------------------------------------------------------
   GET DIRECTIONS
   --------------------------------------------------------- */

.contact-location-section__map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--avana-white);
    background: var(--avana-purple);
    border: 1px solid var(--avana-purple);
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.contact-location-section__map-link:hover {
    color: var(--avana-white);
    background: var(--avana-purple-dark);
    border-color: var(--avana-purple-dark);
}


/* ---------------------------------------------------------
   MAP
   --------------------------------------------------------- */

.contact-location-section__map {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--avana-card-bg);
    border: 1px solid var(--avana-border-light);
}

.contact-location-section__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) {

    .contact-location-section {
        padding: 40px 15px;
    }

    .contact-location-section__heading {
        margin-bottom: 40px;
    }

    .contact-location-section__title {
        font-size: 32px;
    }

    .contact-location-section__details {
        padding: 32px 26px;
    }

    .contact-location-section__details-title {
        font-size: 22px;
    }

    .contact-location-section__map {
        height: 380px;
    }
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .contact-location-section {
        padding: 40px 15px;
    }

    .contact-location-section__heading {
        margin-bottom: 48px;
    }

    .contact-location-section__eyebrow {
        letter-spacing: 1.7px;
    }

    .contact-location-section__title {
        font-size: 34px;
    }

    .contact-location-section__details {
        padding: 40px 32px;
        border-left-width: 5px;
    }

    .contact-location-section__address {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-location-section__map {
        height: 100%;
        min-height: 420px;
    }

    .contact-location-section__map-link:hover {
        transform: translateY(-2px);
    }
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .contact-location-section {
        padding: 40px 15px;
    }

    .contact-location-section__details {
        padding: 40px 36px;
    }

    .contact-location-section__map {
        min-height: 440px;
    }
}


/* =========================================================
   FINAL CONTACT CTA SECTION
   ========================================================= */

.contact-final-cta-section {
    padding: 40px 15px;
    background: var(--avana-purple);
}


/* ---------------------------------------------------------
   CTA WRAPPER
   --------------------------------------------------------- */

.contact-final-cta-section__wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}


/* ---------------------------------------------------------
   CTA CONTENT
   --------------------------------------------------------- */

.contact-final-cta-section__content {
    margin: 0;
}

.contact-final-cta-section__title {
    margin: 0 0 12px;
    font-family: var(--avana-font);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--avana-white);
}

.contact-final-cta-section__text {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
}


/* ---------------------------------------------------------
   CTA ACTIONS
   --------------------------------------------------------- */

.contact-final-cta-section__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* ---------------------------------------------------------
   CTA BUTTON
   --------------------------------------------------------- */

.contact-final-cta-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 13px 22px;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--avana-purple);
    background: var(--avana-white);
    border: 1px solid var(--avana-white);
    border-radius: 0;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.contact-final-cta-section__button:hover {
    color: var(--avana-purple-dark);
    background: var(--avana-purple-light);
    border-color: var(--avana-purple-light);
}


/* ---------------------------------------------------------
   SECONDARY BUTTON
   --------------------------------------------------------- */

.contact-final-cta-section__button--secondary {
    color: var(--avana-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.75);
}

.contact-final-cta-section__button--secondary:hover {
    color: var(--avana-purple);
    background: var(--avana-white);
    border-color: var(--avana-white);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) {

    .contact-final-cta-section {
        padding: 40px 15px;
    }

    .contact-final-cta-section__wrapper {
        gap: 36px;
    }

    .contact-final-cta-section__title {
        font-size: 32px;
    }

    .contact-final-cta-section__text {
        font-size: 15px;
        line-height: 1.65;
    }

    .contact-final-cta-section__actions {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .contact-final-cta-section__button {
        width: auto;
        min-width: 150px;
    }
}


/* DESKTOP */

@media (min-width: 992px) {

    .contact-final-cta-section {
        padding: 40px 15px;
    }

    .contact-final-cta-section__wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
    }

    .contact-final-cta-section__content {
        flex: 1 1 auto;
    }

    .contact-final-cta-section__title {
        font-size: 34px;
    }

    .contact-final-cta-section__text {
        font-size: 16px;
        line-height: 1.65;
    }

    .contact-final-cta-section__actions {
        flex: 0 0 auto;
        flex-direction: row;
    }

    .contact-final-cta-section__button {
        min-height: 52px;
        padding: 14px 26px;
    }

    .contact-final-cta-section__button:hover {
        transform: translateY(-2px);
    }
}


/*LARGE DESKTOP*/

@media (min-width: 1200px) {

    .contact-final-cta-section {
        padding: 40px 15px;
    }

    .contact-final-cta-section__title {
        font-size: 36px;
    }
}


/* =========================================================
   ABOUT INTRODUCTION SECTION
   ========================================================= */

.about-introduction-section {
    padding: 40px 15px;
    background: var(--avana-white);
    border-bottom: 1px solid var(--avana-border-section);
}


/* ---------------------------------------------------------
   MAIN IMAGE + CONTENT
   --------------------------------------------------------- */

.about-introduction-section__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}


/* ---------------------------------------------------------
   IMAGE
   --------------------------------------------------------- */

.about-introduction-section__image-wrap {
    position: relative;
    overflow: hidden;
    background: var(--avana-card-bg);
}

.about-introduction-section__image {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}


/* ---------------------------------------------------------
   CONTENT
   --------------------------------------------------------- */

.about-introduction-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-introduction-section__eyebrow {
    margin: 0 0 12px;
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.5px;
    color: var(--avana-purple);
    text-transform: uppercase;
}

.about-introduction-section__title {
    margin: 0 0 18px;
    font-family: var(--avana-font);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--avana-text);
}

.about-introduction-section__text {
    margin: 0 0 14px;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--avana-text-secondary);
    text-align: left;
}

.about-introduction-section__text:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   FACTS STRIP
   --------------------------------------------------------- */

.about-introduction-section__facts {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 36px;
    border-top: 1px solid var(--avana-border);
    border-bottom: 1px solid var(--avana-border);
}

.about-introduction-section__fact {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--avana-border);
}

.about-introduction-section__fact:last-child {
    border-bottom: 0;
}

.about-introduction-section__fact-number {
    flex: 0 0 auto;
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--avana-purple);
}

.about-introduction-section__fact-title {
    margin: 0 0 4px;
    font-family: var(--avana-font);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    color: var(--avana-text);
}

.about-introduction-section__fact-text {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--avana-text-secondary);
}

/* =========================================================
   ABOUT FOUNDER STORY SECTION
   ========================================================= */

.about-founder-section {
    padding: 40px 15px;
    background: var(--avana-light-bg);
}

.about-founder-section__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* IMAGE */

.about-founder-section__image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--avana-card-bg);
}

.about-founder-section__image {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.about-founder-section__image-label {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 9px 13px;
    background: var(--avana-purple);
    color: var(--avana-white);
}

.about-founder-section__image-label span {
    display: block;
    font-family: var(--avana-font);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 1.5px;
}


/* CONTENT */

.about-founder-section__content {
    padding: 32px 22px;
    background: var(--avana-white);
}

.about-founder-section__eyebrow {
    margin: 0 0 12px;
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.5px;
    color: var(--avana-purple);
    text-transform: uppercase;
}

.about-founder-section__title {
    margin: 0 0 26px;
    font-family: var(--avana-font);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.18;
    color: var(--avana-text);
}


/* FOUNDER IDENTITY */

.about-founder-section__person {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--avana-border-section);
}

.about-founder-section__initials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: var(--avana-purple);
    color: var(--avana-white);
    font-family: var(--avana-font);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
}

.about-founder-section__name {
    margin: 0 0 4px;
    font-family: var(--avana-font);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--avana-text);
}

.about-founder-section__role {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--avana-text-muted);
}


/* STORY TEXT */

.about-founder-section__text {
    margin: 0 0 16px;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--avana-text-secondary);
    text-align: left;
}

.about-founder-section__text:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ABOUT PURPOSE / MISSION & VISION SECTION START
   ========================================================= */

.about-purpose-section {
    padding: 56px 0;
    background: var(--avana-white);
    border-bottom: 1px solid var(--avana-border-section);
}



.about-purpose-section__header {
    margin-bottom: 32px;
}

.about-purpose-section__eyebrow {
    margin: 0 0 10px;
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.5px;
    color: var(--avana-purple);
    text-transform: uppercase;
}

.about-purpose-section__title {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--avana-text);
}



.about-purpose-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}




.about-purpose-card {
    position: relative;
    padding: 28px 22px 30px;
    border: 1px solid var(--avana-border);
    background: var(--avana-white);
    overflow: hidden;
}

.about-purpose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--avana-purple);
}



.about-purpose-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 30px;
}

.about-purpose-card__number {
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--avana-purple);
}

.about-purpose-card__label {
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.4px;
    color: var(--avana-text-muted);
}



.about-purpose-card__title {
    margin: 0 0 16px;
    font-family: var(--avana-font);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--avana-text);
}

.about-purpose-card__text {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--avana-text-secondary);
    text-align: left;
}




.about-purpose-card--vision {
    background: var(--avana-purple-light);
}

.about-purpose-card--vision::before {
    background: var(--avana-purple-dark);
}



.about-purpose-card:focus-within {
    border-color: var(--avana-purple);
}


/* =========================================================
   GALLERY SHOWCASE SECTION
   ========================================================= */

.gallery-showcase-section {
    padding: 40px 15px;
    background: var(--avana-white);
}


/* =========================================================
   GALLERY INTRO
   ========================================================= */

.gallery-showcase-section__intro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.gallery-showcase-section__intro-heading {
    min-width: 0;
}

.gallery-showcase-section__eyebrow {
    margin: 0 0 10px;
    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.5px;
    color: var(--avana-purple);
    text-transform: uppercase;
}

.gallery-showcase-section__title {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--avana-text);
}

.gallery-showcase-section__intro-text {
    min-width: 0;
}

.gallery-showcase-section__intro-text p {
    margin: 0;
    font-family: var(--avana-font);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--avana-text-secondary);
    text-align: left;
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.gallery-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.gallery-showcase__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: var(--avana-card-bg);
}

.gallery-showcase__link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.gallery-showcase__image {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-showcase__item:hover .gallery-showcase__image {
    transform: scale(1.035);
}

.gallery-showcase__link:focus-visible {
    outline: 2px solid var(--avana-purple);
    outline-offset: -2px;
}


/* =========================================================
   GALLERY LIGHTBOX
   ========================================================= */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.gallery-lightbox.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}


/* =========================================================
   DARK BACKGROUND
   ========================================================= */

.gallery-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.90);
}


/* =========================================================
   CONTENT
   ========================================================= */

.gallery-lightbox__content {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}


/* =========================================================
   LIGHTBOX IMAGE
   ========================================================= */

.gallery-lightbox__image {
    display: block;

    width: auto;
    max-width: calc(100vw - 80px);

    height: auto;
    max-height: calc(100vh - 80px);

    object-fit: contain;
}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.gallery-lightbox__close {
    position: absolute;
    top: 0;
    right: 0;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.55);

    cursor: pointer;
}

.gallery-lightbox__close span {
    position: absolute;

    width: 22px;
    height: 2px;

    background: var(--avana-white);
}

.gallery-lightbox__close span:first-child {
    transform: rotate(45deg);
}

.gallery-lightbox__close span:last-child {
    transform: rotate(-45deg);
}

.gallery-lightbox__close:hover {
    background: var(--avana-purple);
}

.gallery-lightbox__close:focus-visible {
    outline: 2px solid var(--avana-white);
    outline-offset: 2px;
}


/* =========================================================
   PREVIOUS / NEXT BUTTONS
   ========================================================= */

.gallery-lightbox__nav {
    position: absolute;

    top: 50%;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.55);

    transform: translateY(-50%);

    cursor: pointer;
}

.gallery-lightbox__nav--prev {
    left: 0;
}

.gallery-lightbox__nav--next {
    right: 0;
}

.gallery-lightbox__nav span {
    display: block;

    width: 12px;
    height: 12px;

    border-top: 2px solid var(--avana-white);
    border-right: 2px solid var(--avana-white);
}

.gallery-lightbox__nav--prev span {
    transform: rotate(-135deg);
    margin-left: 5px;
}

.gallery-lightbox__nav--next span {
    transform: rotate(45deg);
    margin-right: 5px;
}

.gallery-lightbox__nav:hover {
    background: var(--avana-purple);
}

.gallery-lightbox__nav:focus-visible {
    outline: 2px solid var(--avana-white);
    outline-offset: 2px;
}


/* =========================================================
   IMAGE COUNTER
   ========================================================= */

.gallery-lightbox__counter {
    position: absolute;

    left: 50%;
    bottom: 12px;

    z-index: 5;

    padding: 7px 12px;

    font-family: var(--avana-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    color: var(--avana-white);
    background: rgba(0, 0, 0, 0.55);

    transform: translateX(-50%);
}


/* =========================================================
   PREVENT BODY SCROLL
   ========================================================= */

body.gallery-lightbox-open {
    overflow: hidden;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) {

    .gallery-showcase-section {
        padding: 40px 15px;
    }

    .gallery-showcase-section__intro {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;

        gap: 48px;
        margin-bottom: 44px;
    }

    .gallery-showcase-section__intro-heading {
        flex: 1 1 55%;
    }

    .gallery-showcase-section__intro-text {
        flex: 1 1 45%;
    }

    .gallery-showcase-section__title {
        font-size: 36px;
    }


    /* Gallery */

    .gallery-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 240px;
        gap: 12px;
    }

    .gallery-showcase__image {
        height: 100%;
    }

    .gallery-showcase__item--large {
        grid-row: span 2;
    }

    .gallery-showcase__item--tall {
        grid-row: span 2;
    }

    .gallery-showcase__item--wide {
        grid-column: span 2;
    }


    /* Lightbox */

    .gallery-lightbox {
        padding: 30px;
    }

    .gallery-lightbox__image {
        max-width: calc(100vw - 120px);
        max-height: calc(100vh - 60px);
    }

    .gallery-lightbox__close {
        top: 5px;
        right: 5px;

        width: 50px;
        height: 50px;
    }

    .gallery-lightbox__nav {
        width: 52px;
        height: 52px;
    }

    .gallery-lightbox__nav--prev {
        left: 5px;
    }

    .gallery-lightbox__nav--next {
        right: 5px;
    }
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 992px) {

    .gallery-showcase-section {
        padding: 40px 15px;
    }

    .gallery-showcase-section__intro {
        margin-bottom: 52px;
    }

    .gallery-showcase-section__title {
        font-size: 42px;
        line-height: 1.1;
    }

    .gallery-showcase-section__intro-text p {
        font-size: 16px;
        line-height: 1.75;
    }


    /* Magazine-style gallery */

    .gallery-showcase {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: 230px 230px 230px;

        gap: 12px;
    }

    .gallery-showcase__item--large {
        grid-column: span 5;
        grid-row: span 2;
    }

    .gallery-showcase__item--tall {
        grid-column: span 3;
        grid-row: span 2;
    }

    .gallery-showcase__item:nth-child(3) {
        grid-column: span 4;
    }

    .gallery-showcase__item:nth-child(4) {
        grid-column: span 4;
    }

    .gallery-showcase__item--wide {
        grid-column: span 7;
        grid-row: span 1;
    }

    .gallery-showcase__item:nth-child(6) {
        grid-column: span 5;
    }


    /* Lightbox */

    .gallery-lightbox {
        padding: 40px;
    }

    .gallery-lightbox__image {
        max-width: calc(100vw - 160px);
        max-height: calc(100vh - 80px);
    }

    .gallery-lightbox__close {
        top: 8px;
        right: 8px;
    }

    .gallery-lightbox__nav {
        width: 56px;
        height: 56px;
    }

    .gallery-lightbox__nav--prev {
        left: 8px;
    }

    .gallery-lightbox__nav--next {
        right: 8px;
    }
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .gallery-showcase-section {
        padding: 40px 15px;
    }

    .gallery-showcase-section__title {
        font-size: 46px;
    }

    .gallery-showcase {
        grid-template-rows: 250px 250px 250px;
        gap: 14px;
    }
}


/* =========================================================
   NIHHarikaa'S NOTEBOOK PAGE START
   ========================================================= */

/* ---------------------------------------------------------
   NOTEBOOK HERO
   --------------------------------------------------------- */

.founder-notebook-page__hero {
    background: linear-gradient(
        135deg,
        #17121b 0%,
        #24142d 100%
    );
}

.founder-notebook-page__hero-container {
    min-height: auto;

    padding-top: 42px;
    padding-bottom: 38px;
}

.founder-notebook-page__hero-title {
    margin: 0;

    font-family: var(--avana-font);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.15;

    color: var(--avana-white);
}

.founder-notebook-page__hero .service-page-hero__breadcrumb {
    margin-top: 16px;
}

.founder-notebook-page__hero
.service-page-hero__breadcrumb-list {
    font-size: 14px;
}

.founder-notebook-page__hero
.service-page-hero__breadcrumb-item--current {
    color: #ddd0e6;
}


/* ---------------------------------------------------------
   NOTEBOOK MAIN SECTION
   --------------------------------------------------------- */

.founder-notebook {
    width: 100%;

    padding: 40px 0 40px;

    background: var(--avana-white);
}

.founder-notebook__container {
    max-width: 1240px;
}


/* ---------------------------------------------------------
   FOUNDER IMAGE
   --------------------------------------------------------- */

.founder-notebook__image-wrap {
    width: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: var(--avana-purple-light);

    box-shadow:
        0 18px 45px rgba(32, 30, 29, 0.12);
}

.founder-notebook__image {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* ---------------------------------------------------------
   NOTEBOOK CONTENT
   --------------------------------------------------------- */

.founder-notebook__content {
    padding-left: 8px;
}


/* ---------------------------------------------------------
   NOTEBOOK MAIN TITLE
   --------------------------------------------------------- */

.founder-notebook__heading {
    margin-bottom: 26px;
}

.founder-notebook__title {
    position: relative;

    margin: 0;

    padding-bottom: 16px;

    font-family: var(--avana-font);
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;

    color: var(--avana-purple-dark);
}

.founder-notebook__title::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 72px;
    height: 4px;

    border-radius: 999px;

    background: var(--avana-purple);
}


/* ---------------------------------------------------------
   QUOTE
   --------------------------------------------------------- */

.founder-notebook__quote {
    margin: 0 0 42px;

    padding: 22px 24px;

    background: var(--avana-purple-light);

    border-left: 4px solid var(--avana-purple);

    border-radius: 0 12px 12px 0;
}

.founder-notebook__quote p {
    margin: 0 0 12px;

    font-family: var(--avana-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;

    color: var(--avana-text);
}

.founder-notebook__quote cite {
    display: block;

    font-family: var(--avana-font);
    font-size: 15px;
    font-weight: 700;
    font-style: italic;

    color: var(--avana-purple-dark);
}


/* ---------------------------------------------------------
   NOTEBOOK SECTIONS
   --------------------------------------------------------- */

.founder-notebook__section {
    margin: 0 0 42px;
}

.founder-notebook__section:last-of-type {
    margin-bottom: 0;
}

.founder-notebook__section h2 {
    margin: 0 0 18px;

    font-family: var(--avana-font);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.25;

    color: var(--avana-purple-dark);
}

.founder-notebook__section p {
    margin: 0 0 20px;

    font-family: var(--avana-font);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;

    color: var(--avana-text-secondary);
}

.founder-notebook__section p:last-child {
    margin-bottom: 0;
}


/* ---------------------------------------------------------
   SIGNATURE
   --------------------------------------------------------- */

.founder-notebook__signature {
    margin-top: 48px;

    padding-top: 26px;

    border-top: 1px solid var(--avana-border-light);
}

.founder-notebook__regards {
    margin: 0 0 8px;

    font-family: var(--avana-font);
    font-size: 16px;
    line-height: 1.5;

    color: var(--avana-text-muted);
}

.founder-notebook__name {
    margin: 0 0 4px;

    font-family: var(--avana-font);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;

    color: var(--avana-purple-dark);
}

.founder-notebook__designation {
    margin: 0;

    font-family: var(--avana-font);
    font-size: 15px;
    line-height: 1.5;

    color: var(--avana-text-muted);
}


/* ---------------------------------------------------------
   TABLET / MOBILE
   --------------------------------------------------------- */

@media (max-width: 991.98px) {

    .founder-notebook {
        padding: 40px 0 40px;
    }

    .founder-notebook__content {
        padding-left: 0;
    }

    .founder-notebook__image-wrap {
        max-width: 560px;
        margin: 0 auto;
    }

}


@media (max-width: 767.98px) {

    .founder-notebook-page__hero-container {
        padding-top: 34px;
        padding-bottom: 30px;
    }

    .founder-notebook-page__hero-title {
        font-size: 30px;
    }

    .founder-notebook-page__hero
    .service-page-hero__breadcrumb {
        margin-top: 12px;
    }

    .founder-notebook {
        padding: 40px 0 40px;
    }

    .founder-notebook__heading {
        margin-bottom: 22px;
    }

    .founder-notebook__title {
        font-size: 34px;
    }

    .founder-notebook__quote {
        margin-bottom: 34px;

        padding: 18px 20px;
    }

    .founder-notebook__quote p {
        font-size: 16px;
        line-height: 1.6;
    }

    .founder-notebook__section {
        margin-bottom: 34px;
    }

    .founder-notebook__section h2 {
        font-size: 25px;
    }

    .founder-notebook__section p {
        font-size: 16px;
        line-height: 1.75;
    }

    .founder-notebook__signature {
        margin-top: 38px;
    }

}


/* =========================================================
   NIHHarikaa'S NOTEBOOK PAGE END
   ========================================================= */

   /* about page NIHHarikaa'S photo start */
.about-founder-section__initials {
    overflow: hidden;
}

.about-founder-section__initials img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 20px;
}

   /* about page NIHHarikaa'S photo end  */

   /* ============================================================
   ASSISTED LIVING INTRO START
   ============================================================ */

.assisted-living-intro {
    width: 100%;
    padding: 50px 0;
    background: var(--avana-light-bg);
}

.assisted-living-intro__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.assisted-living-intro__content {
    width: 100%;
}

.assisted-living-intro__eyebrow {
    margin: 0 0 12px;
    color: var(--avana-purple-dark);
    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.assisted-living-intro__title {
    margin: 0 0 35px;
    color: var(--avana-text);
    font-family: var(--avana-font);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
}

.assisted-living-intro__text {
    margin: 0 0 10px;
    color: var(--avana-text-secondary);
    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
}

.assisted-living-intro__image {
    width: 100%;
    aspect-ratio: 3 / 3;
    overflow: hidden;
}

.assisted-living-intro__image img {
    display: block;
    width: 100%;
    height: auto;

}

.assisted-living-intro__continuation {
    grid-column: 1 / -1;
    width: 100%;
}

.assisted-living-intro__continuation p {
    margin: 0 0 22px;
    color: var(--avana-text-secondary);
    font-family: var(--avana-font);
    font-size: 20px;
    line-height: 1.7;
    font-weight: 400;
}

.assisted-living-intro__continuation p:last-child {
    margin-bottom: 0;
}

.assisted-living-intro__end-line {
    grid-column: 1 / -1;
    width: 100%;
    height: 1px;
    margin-top: 40px;
    background: var(--avana-border-dark);
}


/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 991.98px) {

    .assisted-living-intro {
        padding: 40px 0;
    }

    .assisted-living-intro__container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .assisted-living-intro__eyebrow {
        font-size: 17px;
    }

    .assisted-living-intro__title {
        margin-bottom: 20px;
        font-size: 34px;
        line-height: 1.15;
    }

    .assisted-living-intro__text {
        font-size: 18px;
        line-height: 1.6;
    }

    .assisted-living-intro__continuation {
        grid-column: 1;
    }

    .assisted-living-intro__continuation p {
        font-size: 17px;
        line-height: 1.65;
    }

    .assisted-living-intro__end-line {
        grid-column: 1;
    }

}



/* =========================================================
   AUTOMATIC ENQUIRY POPUP
   ========================================================= */

.avana-enquiry-modal {
    padding: 20px;
}

.avana-enquiry-modal__content {
    position: relative;

    width: 100%;
    max-width: 560px;

    margin: 0 auto;
    padding: 22px 24px 24px;

    background: var(--avana-white);
    border: 0;
    border-radius: 10px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.avana-enquiry-modal__header {
    margin: 0 0 14px;
    padding: 0;
    text-align: center;
}

.avana-enquiry-modal__header h2 {
    margin: 0;

    color: var(--avana-text);
    font-family: var(--avana-font);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
}

.avana-enquiry-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;
    background: transparent;

    color: var(--avana-text);
    font-size: 34px;
    line-height: 1;
    font-weight: 700;

    cursor: pointer;
}

.avana-enquiry-modal__form {
    width: 100%;
}

.avana-enquiry-modal__group {
    margin: 0 0 16px;
}

.avana-enquiry-modal__label {
    display: block;

    margin: 0 0 7px;

    color: var(--avana-text);
    font-family: var(--avana-font);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.avana-enquiry-modal__input,
.avana-enquiry-modal__textarea {
    display: block;

    width: 100%;

    padding: 12px 14px;

    color: var(--avana-text);
    background: var(--avana-white);

    border: 1px solid var(--avana-border);
    border-radius: 7px;

    font-family: var(--avana-font);
    font-size: 17px;
    line-height: 1.4;

    outline: none;
}

.avana-enquiry-modal__input {
    height: 52px;
}

.avana-enquiry-modal__textarea {
    min-height: 105px;
    resize: vertical;
}

.avana-enquiry-modal__input:focus,
.avana-enquiry-modal__textarea:focus {
    border-color: var(--avana-purple);
    box-shadow: 0 0 0 2px rgba(147, 51, 204, 0.08);
}

.avana-enquiry-modal__submit {
    display: block;

    width: 100%;
    height: 52px;

    margin: 4px 0 0;
    padding: 0 18px;

    border: 0;
    border-radius: 6px;

    background: var(--avana-purple);

    color: var(--avana-white);

    font-family: var(--avana-font);
    font-size: 18px;
    line-height: 1;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.avana-enquiry-modal__submit:hover {
    background: var(--avana-purple-dark);
}

.avana-enquiry-modal__submit:focus-visible {
    outline: 2px solid var(--avana-purple-dark);
    outline-offset: 3px;
}


/* =========================================================
   AUTOMATIC ENQUIRY POPUP — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .avana-enquiry-modal {
        padding: 12px;
    }

    .avana-enquiry-modal__content {
        max-width: 100%;
        padding: 24px 16px 18px;
    }

    .avana-enquiry-modal__header {
        margin-bottom: 16px;
    }

    .avana-enquiry-modal__header h2 {
        font-size: 27px;
    }

    .avana-enquiry-modal__close {
        top: 10px;
        right: 11px;

        width: 28px;
        height: 28px;

        font-size: 30px;
    }

    .avana-enquiry-modal__group {
        margin-bottom: 13px;
    }

    .avana-enquiry-modal__label {
        margin-bottom: 5px;
        font-size: 16px;
    }

    .avana-enquiry-modal__input,
    .avana-enquiry-modal__textarea {
        font-size: 16px;
    }

    .avana-enquiry-modal__input {
        height: 40px;
    }

    .avana-enquiry-modal__textarea {
        min-height: 90px;
    }

    .avana-enquiry-modal__submit {
        height: 48px;
        font-size: 17px;
    }

}


/* =========================================================
   NEW BLOGS SIDEBAR
   ========================================================= */

.new-blogs-sidebar {
    position: sticky;
    top: 100px;
}


/* =========================================================
   NEW BLOG THUMBNAILS
   ========================================================= */

.new-blog-thumb {
    width: 112px !important;
    height: 84px !important;
    min-width: 112px;
    max-width: 112px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}


/* =========================================================
   NEW BLOG IMAGE LINK
   ========================================================= */

.new-blog-thumb-link {
    width: 112px;
    min-width: 112px;
    flex-shrink: 0;
}


/* =========================================================
   NEW BLOG CONTENT
   ========================================================= */

.new-blog-content {
    min-width: 0;
    flex: 1;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 991.98px) {

    .new-blogs-sidebar {
        position: static;
    }

}
