*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

section,
article {
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}



@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Noto-Serif';
    src: url('fonts/NotoSerif-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Noto-Serif';
    src: url('fonts/NotoSerif-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Noto-Serif';
    src: url('fonts/NotoSerif-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Noto-Serif';
    src: url('fonts/NotoSerif-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Noto-Serif';
    src: url('fonts/NotoSerif-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Noto-Serif';
    src: url('fonts/NotoSerif-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Noto-Serif';
    src: url('fonts/NotoSerif-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Noto-Serif-italic';
    src: url('fonts/NotoSerif-ExtraLightItalic.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}


@font-face {
    font-family: 'Noto-Serif-italic';
    src: url('fonts/NotoSerif-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}


@font-face {
    font-family: 'Noto-Serif-italic';
    src: url('fonts/NotoSerif-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NotoSerifDisplay-Regular';
    src: url('fonts/NotoSerifDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}



:root {
    --font-manrope: 'Manrope', sans-serif;
    --font-noto-serif: 'Noto-Serif', serif;
    --font-noto-serif-display: 'NotoSerifDisplay-Regular', serif;
    --font-noto-serif-italic: 'Noto-Serif-italic';
    --primary-color: #2A2827;
    --accent-color: #E6C068;
    --white: #ffffff;
    --white-accent: #E9E6FF;
    --dark-cyan: #0E5D64;
    --maroon: #610941;
    --card-w: 420px;
    --card-h: 560px;
    --gap: 1rem;
    --radius: 20px;
    --panel: #E9E6FF;
    --pg-gap: 14px;
}

body {
    margin: 0;
    font-family: var(--font-manrope);
    font-size: 1rem;
    font-weight: 500;
    background-color: #fff;
    color: var(--primary-color);
    overflow-x: clip;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.gold-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-family: var(--font-manrope);
    font-weight: 700;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.gold-button:hover {
    background-color: var(--white-accent);
    color: var(--primary-color);
    border-color: var(--white-accent);
    transform: translateY(-3px);
}


.white-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-family: var(--font-manrope);
    font-weight: 700;
    background-color: var(--white-accent);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    border: 1px solid var(--white-accent)
}

.white-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.transparent-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-family: var(--font-manrope);
    font-weight: 700;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.transparent-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.section-heading {
    font-size: 2.625rem;
    font-weight: 400;
    line-height: 120%;
    color: var(--primary-color);
    font-family: var(--font-noto-serif);
}


.site-header .marketing-topbar-btn {
    padding: 8px 24px;
    background-color: #FCF8EE;
    font-size: 16px;
    font-weight: 700;
}

.marketing-topbar-btn:hover {
    background-color: var(--white-accent);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5rem 0rem;
    z-index: 10;
    font-family: var(--font-manrope);
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding-top: calc(5rem + 40px);
}

.site-header.is-fixed {
    padding: 20px;
    transition: all 0.3s ease-in-out;
    background-color: var(--maroon);
    position: fixed;
}

.site-header.is-fixed .marketing-topbar {
    display: none;
}

.site-header.is-fixed.is-visible {
    transform: translateY(0);
}

.site-header .logo-wrapper {
    width: 159px;
    height: 139px;
    transition: all 0.3s ease-in-out;
}

.site-header .logo-wrapper svg {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.site-header.is-fixed .logo-wrapper {
    width: 95px;
    height: 85px;
}

.site-header.is-fixed .site-header__nav .nav-items a {
    font-size: 14px;
}

.site-header.is-fixed .site-header__nav ul {
    gap: 1.5rem;
}

.site-header.is-fixed .gold-button {
    font-size: 14px;
}

.site-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}


/* Logo */
.site-header__logo-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-header__nav {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
}

/* Desktop Navigation */
.site-header__nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.site-header__nav .nav-items a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.site-header__nav a:hover {
    opacity: 0.8;
}

/* Hamburger */
.site-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 28px;
    height: 22px;
    cursor: pointer;
    gap: 6px;
    z-index: 11;
}

.site-header__hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

/* Hamburger Active Animation */
.site-header__hamburger.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.site-header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.site-header__hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Fullscreen Menu */
.site-header__menu {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--maroon);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 0.8s ease;
    z-index: 9;
}

.site-header__menu.active {
    top: 0;
}

.site-header__menu-content {
    text-align: center;
    color: #fff;
}

.site-header__menu-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.site-header__menu-links li {
    margin: 1.2rem 0;
}

.site-header__menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.site-header__menu-links a:hover,
.site-header__menu-links a:active {
    color: var(--accent-color);
}

.site-header__socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 42px;
}

.site-header__socials a {
    color: #fff;
    transition: color 0.3s ease;
    height: 36px;
    width: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    align-content: center;
}

.site-header__socials a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.site-header__menu .site-header__menu-links li {
    overflow: hidden;
}

.site-header__menu .site-header__menu-links li a {
    opacity: 0;
    transition: top 0.2s ease 0.35s, opacity 0.25s ease;
    transition-delay: 0.5s;
    top: 15px;
    position: relative;

}

.site-header__menu.active .site-header__menu-links li a {
    transition: top 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.5s;
    top: 0;
    opacity: 1;
}

/* marketing banner */
.marketing-topbar {
    max-width: 95%;
    min-width: 30%;
    font-size: 16px;
    font-family: var(--font-manrope);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    padding: 0px;
    position: absolute;
    top: 0;
    width: auto;
    justify-self: center;
    margin-top: 8px;
    border-radius: 40px;
}

.marketing-topbar-inner {
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.marketing-topbar-text {
    max-width: 85%;
}

.marketing-topbar-cta {
    width: auto;
}

/* .marketing-topbar-btn {
    padding: 6px 14px;
    margin: 8px 20px;
    border: 1px solid currentColor;
    text-decoration: none;
    font-size: 17px;
    border-radius: 3px;
} */
/* marketing banner */

.scroll-button {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    right: -12rem;
    bottom: -5rem;
}

.scroll-button__svg {
    position: absolute;
    width: 150px;
    height: 150px;
    animation: rotateText 25s linear infinite;
}

/* Golden circle in the middle */
.scroll-button__icon {
    position: relative;
    background: radial-gradient(circle at top left, #d8b85b, #b8912f);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: #000;
}

/* Rotation Animation */
@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.sticky-home-section .image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 350ms ease, transform 450ms ease;
    border-radius: var(--radius, 0);
    animation-fill-mode: none !important;
}

.sticky-home-section[data-sticky-ready="1"] .image {
    transform: scale(1.02);
}

.sticky-home-section[data-sticky-ready="1"] .image.active {
    opacity: 1;
    transform: scale(1);
}

/* 
.home-hero,
.second-section {
    min-height: 100vh;
    display: grid;
    place-items: center;
} */

.sticky-home-section {
    position: fixed;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.sticky-home-section.locked {
    position: absolute;
    left: 0;
    right: 0;
}

.sticky-home-section .image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 350ms ease, transform 450ms ease;
    will-change: opacity, transform;
    border-radius: var(--radius, 0);
}

.home-hero,
.second-section {
    position: relative;
    z-index: 1;
    height: 80vh;
}



.home-hero {
    position: relative;
    width: auto;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 2.5rem;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleX(0);
    transform-origin: center;
    animation: heroReveal 1.2s ease-out forwards;
}

section.home-hero::before {
    content: '';
    width: 100%;
    height: 12.775rem;
    position: absolute;
    bottom: 0px;
    left: 0;
    background-image: url(images/Mountain-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

section.home-hero::after {
    content: '';
    width: 80%;
    height: 17.738rem;
    position: absolute;
    bottom: 0;
    right: 0;
    background-image: url(images/Mountain-2.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.home-hero.animate::before,
.home-hero.animate::after {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroReveal {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.home-hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    pointer-events: none;
}


.home-hero__content {
    flex: 1;
    padding-right: 2rem;
    transform: translateX(-50px);
    opacity: 0;
    max-width: 585px;
}

.home-hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right-image-wrapper {
    /* width: 42.125rem;
    height: 46.375rem;
    margin-top: 10vh; */
    z-index: 1;
}

.second-section__image {
    width: 655px;
    height: 736px;
    z-index: 1;
}

.home-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(50px);
    opacity: 0;
}

.second-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================
   Text & Button
======================== */
.home-hero__title {
    font-family: "Noto-Serif", serif;
    margin-bottom: 1.25rem;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: var(--white);
}

.home-hero__title span {
    font-family: var(--font-noto-serif-italic);
    font-weight: 300;
}


.home-hero__text {
    margin-bottom: 28px;
    font-family: var(--font-manrope);
    font-style: normal;
    line-height: 28px;
    color: var(--white);
}

.buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
}

/* ========================
   Fade-in Animations
======================== */
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/*Second section*/
.scroll-wrapper {
    position: relative;
    margin: 2.5rem;
}

.home-hero {
    height: 100%;
    width: 95%;
    margin: 40px auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}

/* .home-hero {
    position: sticky;
    top: 0;
    z-index: 2;
    background: transparent;
} */

.second-section {
    background: url(images/second-section-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 2;
    border-radius: 40px;
    margin-top: 54px;
    height: 90vh;
    position: relative;
    align-content: center;
    width: 95%;
    margin: 0 auto;
}

.second-section::before {
    content: '';
    position: absolute;
    width: 144px;
    height: 18.71px;
    background-image: url(images/second-section-before.svg);
    background-repeat: no-repeat;
    background-size: contain;
    left: 5%;
    bottom: 10rem;
    z-index: 2;
}

.second-section::after {
    content: '';
    position: absolute;
    width: 172px;
    height: 22.65px;
    background-image: url(images/second-section-after.svg);
    background-repeat: no-repeat;
    background-size: contain;
    right: 5%;
    top: 8rem;
    z-index: 2;
}


.second-section__inner {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.second-section .home-hero__content {
    opacity: 1;
    color: var(--primary-color);
    transform: unset;
    max-width: 512px;
}

.second-section .home-hero__content p {
    color: var(--primary-color);
}

.second-section .home-hero__content h2 {
    color: var(--primary-color);
    font-size: 42px;
    padding-right: 6rem;
}

.shared-image {
    position: relative;
    right: 0px;
    bottom: -5rem;
    width: 33.6875rem;
    height: 37.125rem;
    overflow: hidden;
    float: right;
}

.shared-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.8s ease-in-out;
}


.hero-img {
    opacity: 1;
    z-index: 2;
}

.second-img {
    opacity: 0;
    z-index: 1;
}

/* Arrow stays in place */
.rotating-arrow {
    position: absolute;
    bottom: 15rem;
    right: 10%;
    transform: translateX(-50%);
    transition: transform 1s ease;
    width: 188px;
    height: 188px;
    z-index: 5;
}

.rotating-arrow.active {
    transform: translateX(-50%) translateY(30px);
}



.upcoming-retreats {
    padding: 64px 40px;
    background: linear-gradient(0deg, #FCF8EE 0%, #FDF2FB 27.4%, #FDF2FB 92.31%, #FFFFFF 100%);
    text-align: center;
}

.upcoming-retreats__title {
    margin-bottom: 30px;
}

.upcoming-retreats__image-wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 40px;
    width: 100%;
    height: 75vh;
}

.upcoming-retreats__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    object-position: right 0em bottom 13rem;
}

.upcoming-retreats__content-box {
    position: absolute;
    bottom: 10%;
    right: 10%;
    background-color: var(--white);
    padding: 24px 28px;
    max-width: 585px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.upcoming-retreats__content-box h3 {
    font-family: var(--font-noto-serif);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.upcoming-retreats__content-box p {
    font-family: var(--font-manrope);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.about-corrina {
    position: relative;
    padding: 100px 20px;
    background-color: var(--white);
    overflow: hidden;
}

.about-corrina__inner {
    position: relative;
    max-width: 79.688rem;
    margin: 0 auto;
    min-height: 915px;
}

/* --- Heading top-left --- */
.about-corrina__heading {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 420px;
}

/* .about-corrina__heading h2 {
    font-family: var(--font-noto-serif);
    font-weight: 500;
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--primary-color);
} */

.about-corrina__heading h2 em {
    font-family: var(--font-noto-serif-italic);
    font-style: italic;
}

.about-images-row {
    padding-top: 150px;
}

.about-corrina__images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.about-corrina__image {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-corrina__image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* --- Individual Image Styles --- */
.about-corrina__image--left {
    width: 400px;
    height: 600px;
    transform: rotate(-6deg);
    left: 6rem;
    top: 11rem;
    z-index: 1;
    filter: grayscale(100%);
}

.about-corrina__image--center {
    width: 400px;
    height: 600px;
    z-index: 2;
    transform: rotate(0deg);
    top: 0;
}

.about-corrina__image--right {
    width: 400px;
    height: 300px;
    transform: rotate(5deg);
    right: 8rem;
    top: 2rem;
    z-index: 1;
    filter: grayscale(100%);
}

.about-corrina__content {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 360px;
    text-align: left;
    z-index: 1;
}

.about-corrina__content p {
    font-family: var(--font-manrope);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.about-corrina__content .gold-button {
    margin-top: 10px;
}

.about-corrina__svg {
    width: 114px;
    height: 114px;
    position: absolute;
    right: 20%;
    top: 60%;
}

.about-corrina__svg>svg:first-child {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.about-corrina__rotating-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 189px;
    height: 189px;
    transform: translate(-50%, -50%);
    animation: rotateText 10s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes rotateText {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.stay-connected {
    position: relative;
    background-image: url(images/stay-connected-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: var(--white);
    border-radius: 14px;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 28.563rem;
}

.stay-connected__inner {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}


.stay-connected .section-heading {
    color: var(--white);
}

.stay-connected__text {
    font-family: var(--font-manrope);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: normal;
    color: var(--white);
}


.photo-gallery {
    padding: 130px 20px;
}

/* 4 fixed columns on desktop */
.pg-grid.pg-grid-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pg-gap);
    align-content: start;
}

/* Each column is its own grid so items start at the top */
.pg-col {
    display: grid;
    grid-auto-rows: 150px;
    gap: var(--pg-gap);
}

/* Place columns */
.col1 {
    grid-column: 1;
}

.col2 {
    grid-column: 2;
}

.col3 {
    grid-column: 3;
}

.col4 {
    grid-column: 4;
}

/* Height spans */
.span2 {
    grid-row: span 2;
}

.span4 {
    grid-row: span 4;
}

/* Items */
.pg-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: zoom-in;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .28s ease;
}

.pg-item:hover img {
    transform: scale(1.03);
}


/* Lightbox */
.pg-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 12, 14, .86);
    display: grid;
    align-items: center;
    justify-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 9999;
    padding: 20px;
}

.pg-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.pg-view {
    max-width: min(92vw, 1400px);
    max-height: 86vh;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.pg-close,
.pg-nav {
    position: absolute;
    border: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: background .2s ease;
}

.pg-close:hover,
.pg-nav:hover {
    background: rgba(255, 255, 255, .26);
}

.pg-close {
    top: 14px;
    right: 16px;
    line-height: 44px;
}

.pg-prev {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.pg-next {
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}


/* ---------------- BASE ---------------- */
.our-offerings {
    --radius: 20px;
    --sticky-top: 100px;
    --gap: 40px;
    padding: 140px 90px;
    overflow: visible;
    background: linear-gradient(180deg, #FCF8EE 0%, #FDF2FB 27.4%, #FDF2FB 92.31%, #FFFFFF 100%);
}

/* container */
.our-offerings .oo-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* layout */
.our-offerings .oo-layout {
    display: flex;
    align-items: flex-start;
    margin-top: 32px;
}

.our-offerings .our-offering-cta {
    margin-top: auto;
}

/* make sticky column always visible */
.our-offerings .oo-visual {
    flex: 1;
    position: sticky;
    top: var(--sticky-top);
    /* height: calc(65vh - var(--sticky-top)); */
    border-radius: var(--radius);
    overflow: hidden;
    margin-right: 35px;
}

/* image stack */
.our-offerings .oo-stack {
    position: relative;
    width: 100%;
    height: 660px;
    border-radius: inherit;
    margin-top: 50px;
}

.our-offerings .oo-stack img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    opacity: 1;
    clip-path: inset(100% 0 0 0 round var(--radius));
    /* bottom-to-top */
    transition: opacity 1s ease, clip-path 1s ease;
    z-index: 1;
}

.our-offerings .oo-stack img.is-active {
    opacity: 1;
    clip-path: inset(0 0 0 0 round var(--radius));
    z-index: 2;
}

/* cards column */
.our-offerings .oo-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-top: 0;
    padding-bottom: 30vh;
}

.our-offerings .oo-card {
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(230, 192, 104, 0.25);
    border-radius: var(--radius);
    padding: 32px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.our-offerings .oo-card h3 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-noto-serif);
    line-height: 120%;
    letter-spacing: -0.02em;
}

.our-offerings .oo-card p {
    margin-bottom: 20px;
    font-family: var(--font-manrope);
    font-size: 18px;
    font-weight: 500;

}

.our-offerings .gold-button {
    margin-top: auto;
}

/* mobile layout */


.cards-slider-center.csc-desktop {
    width: 106%;
    height: 115vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cards-slider-center .section-heading {
    margin-bottom: 4.188rem;
}

.cards-slider-center.csc-desktop .viewport {
    width: 111%;
}

.cards-slider-center.csc-desktop .track {
    display: flex;
    align-items: center;
    gap: var(--gap);
    will-change: transform;
}

.cards-slider-center .card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(97, 9, 65, 0) 0%, #610941 85.1%);
    pointer-events: none;
}

.cards-slider-center .card {
    position: relative;
    flex: 0 0 var(--card-w);
    height: var(--card-h);
    border-radius: var(--radius);
    overflow: hidden;
    transform-origin: 60% 60%;
    transform: rotate(var(--tilt));
    transition: transform .35s ease, box-shadow .25s ease, filter .25s ease;
    margin: 0;
}

/* title snippet that is always visible */
.cards-slider-center .caption {
    position: absolute;
    left: 48px;
    right: 48px;
    bottom: 48px;
    color: #E6C068;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.02em;
    font-family: "Noto-Serif", serif;
    line-height: normal;
    z-index: 1;
}

/* hover reveal panel */
.cards-slider-center .reveal {
    position: absolute;
    inset: 0px;
    border-radius: 20px;
    background: var(--panel);
    color: #2A2827;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
    z-index: 1;
    pointer-events: none;
}

.cards-slider-center .reveal h3 {
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-noto-serif);
    line-height: normal;
    letter-spacing: 0.02em;
    color: var(--primary-color);
}

.cards-slider-center .reveal p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 500;
    font-family: var(--font-manrope);
    line-height: normal;
    color: var(--primary-color);
}

.cards-slider-center .cta {
    margin-top: auto;
    align-self: flex-start;
}

.cards-slider-center .cta.gold-button:hover {
    border-color: var(--maroon);
}

/* reveal on hover */
.cards-slider-center .card:hover .reveal {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cards-slider-center .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cards-slider-center .nav {
    margin-top: 4.813rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateX(-3rem);
}

.cards-slider-center .btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #f6f1df;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    display: grid;
    place-items: center;
    transition: transform .15s ease;
    padding: 0px;
}

.cards-slider-center .btn.next {
    transform: scaleX(-1);
}

.cards-slider-center .btn:hover svg {
    fill: var(--maroon);
}

.cards-slider-center .btn svg {
    width: 100%;
    height: 100%;
    stroke-width: 0;
}

.cards-slider-center.csc-desktop .card.card-prev-2 {
    transform: translateY(19vh) translateX(-2.6rem) rotate(-20deg);
    transition: all 1s ease-in-out;
}

.cards-slider-center.csc-desktop .card.card-prev-1 {
    transform: translateY(5vh) translateX(-2.4rem) rotate(-12deg);
    transition: all 0.7s ease-in-out;
}

.cards-slider-center.csc-desktop .card.card-next-2 {
    transform: translateY(17vh) translateX(3.5rem) rotate(17deg);
    transition: all 1s ease-in-out;
}

.cards-slider-center.csc-desktop .card.card-next-1 {
    transform: translateY(5vh) translateX(2.4rem) rotate(10deg);
    transition: all 0.7s ease-in-out;
}

.cards-slider-center .card.card-active {
    transition: all 0.3s ease-in-out;
    transform: none;
}

.csc-mobile {
    display: none;
}


#footer {
    background-color: var(--maroon);
    color: #fff;
    padding: 75px 0px;
    position: relative;
    margin-top: 141px;
}

#footer .newsletter {
    width: 100%;
    max-width: 483px;
}

#footer .footer-top-image {
    width: 100%;
    height: 214px;
    position: absolute;
    top: -12rem;
    z-index: -1;
}

#footer .footer-top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 56px;
}

#footer .footer-left {
    flex: 1 1 45%;
}

#footer .footer-logo {
    width: 196px;
    height: 174px;
    margin-bottom: 20px;
}

#footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#footer .footer-left {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-manrope);
    line-height: normal;
    color: #ffffff;
}

#footer .footer-right {
    flex: 1 1 45%;
    justify-items: self-end;
}

#footer .newsletter h3 {
    font-family: var(--font-noto-serif-display);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #fff;
}

#footer .newsletter form {
    position: relative;
    border-bottom: 0.5px solid #ffffff;
    width: 100%;
    margin: 10px 0px 44px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#footer .footer-links #menu-footer-menu {
    display: flex;
    gap: 48px;
}


#footer .newsletter input {
    width: 100%;
    padding: 10px 40px 10px 0;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Manrope';
    opacity: 1;
    box-shadow: unset;
    border: 0px;
}

#footer .newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#footer .newsletter button {
    position: relative;
    background-color: transparent;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 0;
}

#footer .newsletter button:hover {
    transform: translateY(-3px);
}

#footer .newsletter button[type=submit]::before {
    content: '';
    background-image: url(images/Arrow-right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0px;
}

#footer .footer-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 30px 0;
    padding: 0;
}

#footer .footer-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

#footer .footer-links a:hover {
    color: #d6b35f;
}

#footer .social-icons {
    display: flex;
    gap: 9px;
}

#footer .social-icons a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

#footer .social-icons a:hover {
    background-color: #d6b35f;
    color: #5c1041;
    border-color: #d6b35f;
}


.footer-rights-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-rights-wrapper .copyright {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-manrope);
}


/* contact modal */
.custom-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 20;
}

.custom-modal.active {
    display: block;
}

.custom-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.custom-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    margin: 10vh auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}

.custom-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: 0;
    font-size: 24px;
    cursor: pointer;
}

#wpforms-submit-233 {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-family: var(--font-manrope);
    font-weight: 700;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#wpforms-submit-233:hover {
    background-color: var(--white-accent);
    color: var(--primary-color);
    border-color: var(--white-accent);
    transform: translateY(-3px);
}

#wpform-modal h3 {
    margin-bottom: 20px;
    line-height: 1.3;
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-noto-serif);
    line-height: 120%;
    letter-spacing: -0.02em;
}

/* contact modal */


/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {

    .pg-item img,
    .pg-lightbox {
        transition: none;
    }
}

@media (min-width: 1601px) and (max-width: 1910px) {
    .home-hero {
        margin: 35px auto;
    }

    .site-header {
        padding: 4rem 0rem;
    }

    .site-header .logo-wrapper {
        width: 100px;
        height: 100px;
    }

    .site-header__nav ul {
        font-size: 14px;
    }

    .home-hero__title {
        font-size: 45px;
    }

    .transparent-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .white-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    section.home-hero::before {
        bottom: -1.25rem;
    }

    section.home-hero::after {
        bottom: -1.25rem;
    }

    .site-header.is-fixed .logo-wrapper {
        width: 80px;
        height: 70px;
    }

    .site-header.is-fixed {
        padding: 15px;
    }

    .rotating-arrow {
        bottom: 14rem;
        right: 7%;
        width: 150px;
        height: 150px;
    }

    .about-corrina__svg {
        width: 100px;
        height: 100px;
    }

    .about-corrina__rotating-text {
        width: 160px;
        height: 160px;
    }

    .our-offerings {
        padding: 30px 20px;
    }

    .our-offerings .oo-card {
        min-height: 250px;
    }

    .our-offerings .oo-card h3 {
        font-size: 20px;
    }

    .our-offerings .oo-card p {
        font-size: 16px;
    }

    .our-offerings .oo-stack {
        height: 550px;
    }

    .cards-slider-center.csc-desktop .viewport {
        width: 122%;
    }

    .cards-slider-center .caption {
        font-size: 20px;
    }

    .cards-slider-center .reveal h3 {
        font-size: 20px;
    }

    .cards-slider-center .reveal p {
        font-size: 16px;
    }

    .cards-slider-center .card {
        height: 500px;
    }

    .cards-slider-center .nav {
        margin-top: 3.813rem;
    }

    .cards-slider-center .reveal {
        border: 8px solid #E9E6FF;
    }

    .about-corrina__image--left {
        height: 500px;
    }

    .about-corrina__image.about-corrina__image--center {
        height: 500px;
        width: 350px;
    }

    .pg-close,
    .pg-nav {
        font-size: 18px;
        line-height: 0px;
        padding: 0px;
    }

    #footer .footer-top-image {
        top: -11rem;
    }

    #footer .footer-logo {
        width: 160px;
        height: 140px;
    }

    #footer .newsletter h3 {
        font-size: 25px;
    }

    #footer .newsletter form {
        margin: 0px 0px 30px;
    }

    #footer .footer-links #menu-footer-menu {
        font-size: 14px;
    }

    .upcoming-retreats__image-wrapper img {
        object-position: right 0em bottom 0rem;
    }

    .upcoming-retreats__image-wrapper {
        height: auto;
    }

}

@media (min-width: 1401px) and (max-width: 1600px) {
    .home-hero {
        margin: 35px auto;
    }

    .site-header {
        padding: 4rem 0rem;
    }

    .site-header .logo-wrapper {
        width: 100px;
        height: 100px;
    }

    .site-header__nav ul {
        font-size: 14px;
    }

    .home-hero__title {
        font-size: 45px;
    }

    .transparent-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .white-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    section.home-hero::before {
        bottom: -2.9rem;
    }

    section.home-hero::after {
        bottom: -3.25rem;
    }

    .shared-image {
        width: 28.6875rem;
        height: 32.125rem;
        right: 4rem;
    }

    .site-header.is-fixed .logo-wrapper {
        width: 80px;
        height: 70px;
    }

    .site-header.is-fixed {
        padding: 15px;
    }

    .rotating-arrow {
        bottom: 14rem;
        right: 7%;
        width: 150px;
        height: 150px;
    }

    .about-corrina__svg {
        width: 100px;
        height: 100px;
    }

    .about-corrina__rotating-text {
        width: 160px;
        height: 160px;
    }

    .our-offerings {
        padding: 30px 20px;
    }

    .our-offerings .oo-card {
        min-height: 250px;
    }

    .our-offerings .oo-card h3 {
        font-size: 20px;
    }

    .our-offerings .oo-card p {
        font-size: 16px;
    }

    .our-offerings .oo-stack {
        height: 550px;
    }

    .cards-slider-center.csc-desktop .viewport {
        width: 138%;
    }

    .cards-slider-center .caption {
        font-size: 20px;
    }

    .cards-slider-center .reveal h3 {
        font-size: 20px;
    }

    .cards-slider-center .reveal p {
        font-size: 16px;
    }

    .cards-slider-center .card {
        height: 500px;
    }

    .cards-slider-center .nav {
        margin-top: 3.813rem;
    }

    .cards-slider-center .reveal {
        border: 8px solid #E9E6FF;
    }

    .about-corrina__image--left {
        height: 500px;
    }

    .about-corrina__image.about-corrina__image--center {
        height: 500px;
        width: 350px;
    }

    .pg-close,
    .pg-nav {
        font-size: 18px;
        line-height: 0px;
        padding: 0px;
    }

    #footer .footer-top-image {
        top: -11rem;
    }

    #footer .footer-logo {
        width: 135px;
        height: 120px;
    }

    .upcoming-retreats__image-wrapper img {
        object-position: right 0em bottom 0rem;
    }

    .upcoming-retreats__image-wrapper {
        height: auto;
    }
}

@media (min-width: 1025px) and (max-width: 1400px) {

    .gold-button {
        font-size: 12px;
        padding: 10px 18px;
    }

    .home-hero {
        margin: 35px auto;
    }

    .site-header {
        padding: 4rem 0rem;
    }

    .site-header__inner {
        max-width: 89%;
    }

    .home-hero__inner {
        max-width: 93%;
    }

    .site-header .logo-wrapper {
        width: 100px;
        height: 100px;
    }

    .site-header__nav ul {
        font-size: 12px;
    }

    .home-hero__title {
        font-size: 42px;
    }

    body {
        font-size: 14px;
    }

    .transparent-button {
        padding: 10px 18px;
        font-size: 12px;
    }

    .white-button {
        padding: 10px 18px;
        font-size: 12px;
    }

    section.home-hero::before {
        bottom: -4.3rem;
    }

    section.home-hero::after {
        bottom: -5.25rem;
        width: 85%;
    }

    .shared-image {
        bottom: -4rem;
        width: 24.6875rem;
        height: 27.125rem;
        right: 9rem;
    }

    .site-header.is-fixed .logo-wrapper {
        width: 80px;
        height: 70px;
    }

    .site-header.is-fixed {
        padding: 15px;
    }

    .rotating-arrow {
        bottom: 14rem;
        right: 7%;
        width: 150px;
        height: 150px;
    }

    .about-corrina__svg {
        width: 75px;
        height: 75px;
        top: 100%;
    }

    .about-corrina__rotating-text {
        width: 130px;
        height: 130px;
    }

    #second-section {
        height: 100%;
    }

    .second-section__image {
        width: 480px;
        height: 500px;
    }

    .second-section__inner {
        padding: 0px 20px;
    }

    .upcoming-retreats__content-box {
        bottom: 5%;
        right: 3%;
    }

    .upcoming-retreats__content-box p {
        font-size: 14px;
    }

    .upcoming-retreats__image-wrapper img {
        object-position: right 0em bottom 8rem;
    }

    .our-offerings {
        padding: 30px 20px;
    }

    .our-offerings .oo-card {
        min-height: 250px;
    }

    .our-offerings .oo-card h3 {
        font-size: 20px;
    }

    .our-offerings .oo-card p {
        font-size: 16px;
    }

    .our-offerings .oo-visual {
        top: 75px;
    }

    .our-offerings .oo-stack {
        height: 450px;
    }

    .cards-slider-center.csc-desktop .viewport {
        width: 166%;
    }

    .cards-slider-center .caption {
        font-size: 20px;
    }

    .cards-slider-center .reveal h3 {
        font-size: 20px;
    }

    .cards-slider-center .reveal p {
        font-size: 16px;
    }

    .cards-slider-center .card {
        height: 390px;
    }

    .cards-slider-center .nav {
        margin-top: 3.813rem;
    }

    .cards-slider-center .reveal {
        border: 8px solid #E9E6FF;
    }

    .about-corrina__inner {
        max-width: 93%;
    }

    .about-corrina__image--left {
        height: 500px;
    }

    .about-corrina__image.about-corrina__image--center {
        height: 500px;
        width: 350px;
    }

    .pg-close,
    .pg-nav {
        font-size: 18px;
        line-height: 0px;
        padding: 0px;
    }

    #footer .footer-top-image {
        top: -11rem;
    }

    #footer .footer-logo {
        width: 135px;
        height: 120px;
    }

    #footer .newsletter button {
        width: 35px;
        height: 35px;
    }

    .upcoming-retreats__image-wrapper img {
        object-position: right 0em bottom 0rem;
    }

    .upcoming-retreats__image-wrapper {
        height: auto;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {


    .home-hero__inner {
        flex-direction: column;
        padding-top: 14rem;
    }

    .rotating-arrow {
        position: absolute;
        bottom: 10rem;
        right: 0%;
    }

    .second-section__inner {
        flex-direction: column;
        padding-top: 5rem;
    }

    .shared-image {
        width: 350px;
        height: 400px;
        align-self: flex-start;
        bottom: auto;
    }

    .second-section__image {
        width: 355px;
        height: 400px;
        z-index: 1;
    }

    #second-section {
        width: 95%;
        margin: 0 auto;
    }

    .home-hero__title {
        font-size: 42px;
    }

    .second-section .home-hero__content h2,
    .upcoming-retreats__title {
        font-size: 32px;
        margin-bottom: 32px;
    }


    .home-hero::before {
        height: 5.4rem !important;
    }

    .upcoming-retreats {
        padding: 40px 0px;
    }

    .upcoming-retreats__image-wrapper img,
    .upcoming-retreats__image-wrapper {
        border-radius: 0px;
        height: auto;
        object-position: unset;
    }


    .upcoming-retreats__content-box {
        position: static;
        margin: -20px auto 20px;
        max-width: 90%;
        z-index: 1;
        position: relative;
        left: 0;
    }

    .upcoming-retreats__content-box h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .upcoming-retreats__content-box p {
        font-size: 1rem;
    }

    .our-offerings {
        padding: 40px 30px;
    }

    .cards-slider-center .viewport {
        width: 156%;
    }

    .our-offerings .oo-list {
        padding-bottom: 15vh;
    }

    .cards-slider-center {
        height: 88vh;
    }

    .about-corrina__images {
        position: relative;
    }

    .about-images-row {
        padding-top: 1rem;
        height: 550px;
    }

    .about-corrina__images {
        margin-top: 0;
    }

    .about-corrina__image--center {
        height: 500px;
    }

    .about-corrina__image--right {
        right: -23rem;
        top: 2rem;
        width: 200px;
        height: 250px;
    }

    .about-corrina__image--left {
        left: -22rem;
        top: 12rem;
        width: 300px;
        height: 307px;
    }

    .span4 {
        grid-row: span 4;
    }

    .stay-connected {
        width: 90%;
    }

    #footer .footer-top-image {
        top: -10.8rem;
    }

    #footer .footer-container {
        max-width: 95%;
    }

    #footer .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    #footer .footer-logo {
        width: 112px;
        height: 100px;
    }

    #footer .newsletter button {
        width: 40px;
        height: 40px;
    }

    /* .our-offerings .oo-layout {
        flex-direction: column;
        align-items: normal;
        margin-top: 0;
        gap: 20px;
    }

    .our-offerings .oo-visual {
        margin-right: 0px !important;
    }

    .our-offerings .oo-list {
        bottom: 12px;
        height: 50vh;
        overflow-y: auto;
        width: 110%;
        margin-left: -5%;
    }

    .our-offerings .oo-card {
        width: 90%;
        margin: auto;
    } */

    section.home-hero::after {
        height: 7.9rem !important;
    }

    .site-header .logo-wrapper {
        width: 112px;
        height: 100px;
    }

    .site-header__logo-wrapper {
        z-index: 10;
    }

    .site-header {
        padding-bottom: 16px;
    }

    .site-header__inner {
        max-width: 85%;
    }

    .scroll-wrapper {
        margin: 0;
    }

    .sticky-home-section {
        display: none;
    }

    .site-header__menu-links a {
        font-size: 28px;
        font-weight: 700;
    }

    .site-header__menu-links {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .site-header__menu-links li {
        margin: 0px;
    }

    .home-hero,
    .second-section {
        border-radius: 40px;
        padding: 0px 20px;
    }

    .pg-grid.pg-grid-wrap {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .col1,
    .col2,
    .col3,
    .col4 {
        grid-column: 1;
    }

    .pg-col {
        grid-auto-rows: 180px;
        gap: 8px;
    }

    .pg-grid.pg-grid-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .col1 {
        grid-column: 1;
    }

    .col2 {
        grid-column: 2;
    }

    .col3 {
        grid-column: 1;
    }

    .col4 {
        grid-column: 2;
    }

    .pg-col {
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .site-header__nav,
    .site-header__cta {
        display: none;
    }

    .site-header__hamburger {
        display: flex;
        height: 24px;
        width: 28px;
        justify-content: space-between;
    }


    #footer .newsletter form {
        margin: 0 auto;
    }


    #footer .social-icons {
        justify-content: center;
    }


    .about-corrina__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-corrina__heading,
    .about-corrina__content {
        position: static;
        text-align: center;
        max-width: 90%;
    }

}

@media (max-width: 767px) and (min-width: 320px) {

    :root {
        --card-w: 300px;
        --card-h: 400px;
    }

    .section-heading {
        font-size: 32px;
    }

    .site-header .logo-wrapper {
        width: 112px;
        height: 100px;
    }

    .sticky-home-section {
        display: none;
    }

    .site-header__logo-wrapper {
        z-index: 10;
    }

    .site-header {
        padding-top: 65px;
        padding-bottom: 16px;
    }

    .site-header__inner {
        max-width: 100%;
        padding: 0px 30px;
    }

    .site-header__menu-links a {
        font-size: 28px;
        font-weight: 700;
    }

    .site-header__menu-links {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .site-header__menu-links li {
        margin: 0px;
    }

    .scroll-wrapper {
        margin: 0;
    }

    .home-hero,
    .second-section {
        margin: 20px auto;
        border-radius: 0;
        padding: 0px 20px;
        margin: 0 !important;
        width: 100%;
        height: 100%;
    }

    .second-section__image {
        width: 100%;
        height: 483px;
    }

    .home-hero__text {
        margin-bottom: 32px;
    }

    /* .home-hero {
        margin: 20px auto;
        border-radius: 0;
        padding: 0px 20px;
        margin-top: 0 !important;
    } */

    .home-hero__inner {
        flex-direction: column;
        padding-top: 11.125rem;
    }

    .shared-image {
        width: 100%;
        height: 453px;
        right: auto;
        left: -4rem;
        bottom: auto;
    }

    .csc-desktop {
        display: none !important;
    }

    .cards-slider-center.csc-mobile {
        padding: 40px 0px 40px 30px;
        display: block;
    }

    .csc-mobile .viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        touch-action: pan-x;
    }

    /* IMPORTANT: no flex here */
    .csc-mobile .track {
        white-space: nowrap;
        font-size: 0;
        min-height: 400px;
    }

    .csc-mobile .track::-webkit-scrollbar,
    .csc-mobile .viewport::-webkit-scrollbar {
        display: none;
    }

    .csc-mobile figure.card {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        /* allow text wrap inside card */
        scroll-snap-align: center;
        font-size: initial;
        width: 280px;
        height: 360px;
        margin-right: 24px;
        /* restore text */
    }

    .csc-mobile .card.card-next-1 {
        transform: rotate(2deg) translateY(10px);
    }

    .csc-mobile .card.card-next-2 {
        transform: rotate(3deg) translateY(15px);
    }

    .csc-mobile .reveal h3 {
        font-size: 24px;
    }

    .csc-mobile .reveal p,
    .csc-mobile .reveal .cta {
        font-size: 14px;
    }

    .csc-mobile .reveal {
        padding: 1rem 1rem 7px;
    }

    .csc-mobile .caption {
        left: 23px;
        right: 23px;
        bottom: 23px;
        font-size: 14px;
    }

    .pg-close,
    .pg-nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .our-offerings .oo-layout {
        flex-direction: column;
    }

    .our-offerings .oo-visual {
        width: 100%;
        height: auto;
        top: 0;
        margin-bottom: var(--gap);
    }

    .our-offerings .oo-stack {
        margin-top: 0;
        height: 320px;
    }

    #footer .footer-links #menu-footer-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .site-header__nav,
    .site-header__cta {
        display: none;
    }

    .site-header__hamburger {
        display: flex;
        height: 24px;
        width: 28px;
        justify-content: space-between;
    }

    #footer .newsletter form {
        margin: 0 auto;
        padding: 10px 0px;
    }

    #footer .social-icons {
        justify-content: center;
    }

    /* 
    .upcoming-retreats__content-box {
        position: static;
        margin: 20px auto 0;
        max-width: 90%;
    } */


    .about-corrina__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-corrina__heading,
    .about-corrina__content {
        position: static;
        max-width: 100%;
        text-align: left;
    }

    .about-corrina__image--center {
        position: relative;
        width: 80%;
        transform: none;
    }

    /*copy*/

    .home-hero__title {
        font-size: 42px;
    }

    .second-section .home-hero__content h2,
    .upcoming-retreats__title {
        font-size: 32px;
        margin-bottom: 32px;
        padding: 0px;
    }

    .about-corrina__svg {
        width: 75px;
        height: 75px;
        right: -25%;
        top: auto;
        bottom: -8rem;
    }

    #home-hero .transparent-button {
        display: none;
    }

    .home-hero::before {
        height: 4.1rem !important;
        width: 165% !important;
    }

    .second-section__inner {
        flex-direction: column;
        padding: 64px 0px;
    }

    .second-section::before {
        width: 67.5px;
        height: 8.9px;
        bottom: 13rem;
        left: 15%;
    }

    .second-section::after {
        width: 67.5px;
        height: 8.9px;
        top: auto;
        bottom: 30rem;
    }

    .about-corrina__rotating-text {
        top: 50%;
        left: 50%;
        width: 125px;
        height: auto;
    }

    section.home-hero::after {
        height: 4.6rem;
    }

    .upcoming-retreats {
        padding: 40px 0px;
    }

    .upcoming-retreats__image-wrapper img,
    .upcoming-retreats__image-wrapper {
        border-radius: 0px;
        height: auto;
        object-position: unset;
    }


    .upcoming-retreats__content-box {
        position: static;
        margin: -20px auto 30px;
        max-width: 90%;
        z-index: 1;
        position: relative;
        left: 0;
    }

    .upcoming-retreats__content-box h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .upcoming-retreats__content-box p {
        font-size: 1rem;
    }

    .our-offerings {
        padding: 40px 30px;
    }

    .cards-slider-center .section-heading {
        margin-bottom: 32px;
        width: 100%;
    }

    .cards-slider-center div:has(h2) {
        width: 85%;
    }

    .about-corrina {
        padding: 80px 30px;
    }

    .our-offerings .oo-list {
        padding-bottom: 0vh;
    }


    .about-corrina__images {
        position: relative;
        margin-top: 0;
        height: auto;
        margin-bottom: 27px;
    }

    .about-images-row {
        padding-top: 1rem;
        height: auto;
    }


    .about-corrina__image--center {
        height: 316px;
        width: 250px;
    }

    .about-corrina__image--right {
        right: -3rem;
        top: 1rem;
        width: 163px;
        height: 122px;
    }

    .about-corrina__image--left {
        left: -2rem;
        top: 4.5rem;
        width: 163px;
        height: 245px;
    }

    .span4 {
        grid-row: span 4;
    }

    .stay-connected {
        width: 85%;
        padding: 40px 28px;
        min-height: 400px;
    }

    .stay-connected__text {
        font-size: 1rem;
    }

    .photo-gallery {
        padding: 75px 0px;
    }

    .photo-gallery .pg-grid.pg-grid-wrap {
        display: flex;
        overflow-x: auto;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .photo-gallery .pg-col {
        display: flex;
        gap: 11px;
    }

    .photo-gallery .pg-item {
        width: 250px;
        height: 323px;
        border-radius: 10px;
    }

    #footer {
        padding: 40px 0px;
        margin-top: 80px;
    }

    #footer .footer-top-image {
        top: -6.8rem;
        height: 144px;
    }

    #footer .footer-container {
        max-width: 100%;
        padding: 0px 30px;
        flex-direction: column;
        text-align: left;
        gap: 20px;
    }

    #footer .footer-right {
        justify-items: start;
        flex: auto;
    }

    #footer .newsletter {
        width: 100%;
    }

    #footer .newsletter h3 {
        font-size: 23px;
    }

    #footer .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        flex-direction: column;
        margin: 20px 0px 10px;
    }

    #footer .footer-links a {
        font-weight: 700;
        font-size: 1rem;
    }

    .footer-rights-wrapper {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: flex-start;
    }

    #footer .footer-logo {
        width: 112px;
        height: 100px;
    }

    #footer .newsletter button {
        width: 40px;
        height: 40px;
    }

    /* for quotes card */
    /* .card {
    position: relative;
    cursor: pointer;
    }

    .card .reveal {
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    }

    .card:hover .reveal {
    opacity: 1;
    }
    
    .card.active .reveal {
    opacity: 1 !important;
    pointer-events: auto;
    } */

    .site-header .marketing-topbar-btn {
        font-size: 14px;
        padding: 5px 16px;

    }
}