@import url('https://fonts.googleapis.com/css2?family=Allura&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #faf8f5;
    color: #4a3f38;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Pixel-faithful home page based on the provided mainpage.png mockup. */
.mockup-page {
    background: #2c1747;
    min-height: 100vh;
}

.mainpage-shell {
    position: relative;
    width: min(100%, 1024px);
    margin: 0 auto;
    line-height: 0;
    box-shadow: 0 0 48px rgba(29, 11, 45, 0.35);
}

.mainpage-art {
    display: block;
    width: 100%;
    height: auto;
}

.hotspot {
    position: absolute;
    display: block;
    line-height: 1;
    border-radius: 6px;
    outline-offset: 2px;
}

.hotspot:focus-visible {
    outline: 3px solid #d79b3d;
    background: rgba(255, 255, 255, 0.12);
}

.home-link { left: 30.1%; top: 2.22%; width: 3.1%; height: 1.05%; }
.about-link { left: 36.0%; top: 2.22%; width: 3.9%; height: 1.05%; }
.experiences-link { left: 42.0%; top: 2.22%; width: 7.2%; height: 1.05%; }
.retreats-link { left: 51.3%; top: 2.22%; width: 5.3%; height: 1.05%; }
.gallery-link { left: 58.8%; top: 2.22%; width: 5.4%; height: 1.05%; }
.join-nav-link { left: 65.8%; top: 2.22%; width: 3.5%; height: 1.05%; }
.contact-link { left: 70.8%; top: 2.22%; width: 5.0%; height: 1.05%; }
.sisterhood-link { left: 79.9%; top: 1.82%; width: 13.7%; height: 1.9%; border-radius: 10px; }

.explore-link { left: 40.9%; top: 23.18%; width: 18.3%; height: 2.28%; border-radius: 4px; }
.mission-link { left: 44.1%; top: 43.55%; width: 11.2%; height: 2.02%; }
.yoga-link { left: 16.4%; top: 70.42%; width: 10.8%; height: 1.35%; }
.sound-link { left: 47.4%; top: 70.42%; width: 10.8%; height: 1.35%; }
.retreat-card-link { left: 78.4%; top: 70.42%; width: 10.8%; height: 1.35%; }
.reserve-link { left: 48.2%; top: 82.0%; width: 14.4%; height: 2.0%; }
.join-now-link { left: 70.6%; top: 88.02%; width: 8.1%; height: 1.82%; }

.footer-about-link { left: 33.6%; top: 94.08%; width: 4.1%; height: 0.9%; }
.footer-experiences-link { left: 33.6%; top: 95.23%; width: 6.2%; height: 0.9%; }
.footer-retreats-link { left: 33.6%; top: 96.35%; width: 4.8%; height: 0.9%; }
.footer-gallery-link { left: 41.8%; top: 94.08%; width: 4.5%; height: 0.9%; }
.footer-join-link { left: 41.8%; top: 95.23%; width: 3.5%; height: 0.9%; }
.footer-contact-link { left: 41.8%; top: 96.35%; width: 5.2%; height: 0.9%; }

.instagram-link { left: 51.3%; top: 94.62%; width: 2.0%; height: 1.65%; }
.facebook-link { left: 54.5%; top: 94.62%; width: 2.0%; height: 1.65%; }
.tiktok-link { left: 57.6%; top: 94.62%; width: 2.0%; height: 1.65%; }
.email-link { left: 60.6%; top: 94.62%; width: 2.2%; height: 1.65%; }
.stay-connected-link { left: 82.9%; top: 95.4%; width: 2.6%; height: 1.85%; }

.home-page {
    background: #fbf8fb;
    color: #352349;
}

.home-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    color: #fff;
}

.home-nav {
    width: min(1140px, calc(100% - 56px));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(232, 181, 87, 0.55);
    border-radius: 50%;
    color: #e8b557;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0;
}

.brand-mark::before {
    content: "";
    width: 22px;
    height: 22px;
    border: 1.5px solid currentColor;
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
    transform: rotate(45deg);
}

.brand-lockup strong,
.brand-lockup small {
    display: block;
    line-height: 1.05;
}

.brand-lockup strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: 500;
}

.brand-lockup small {
    font-size: 0.62rem;
    margin-top: 4px;
}

.home-nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.home-nav a {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-nav a:hover,
.home-nav a[aria-current="page"] {
    color: #e8b557;
}

.nav-cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    background: #d39b45;
    color: #fff;
    padding: 0 22px;
}

.home-hero {
    min-height: 548px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 126px 24px 82px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(53, 34, 70, 0.34), rgba(53, 34, 70, 0.42)),
        url("assets/hero-women-mountains.png") center 43% / cover;
}

.home-hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -42px;
    height: 88px;
    background: #fbf8fb;
    transform: rotate(-3.1deg);
}

.home-hero-copy {
    max-width: 790px;
    position: relative;
    z-index: 1;
}

.hero-kicker {
    margin-bottom: 4px;
    color: #fff;
    font-family: 'Cormorant Garamond', Didot, 'Bodoni 72', 'Bodoni MT', Georgia, 'Times New Roman', serif;
    font-size: clamp(1.45rem, 2.8vw, 2.05rem);
    font-weight: 500;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.home-hero h1 {
    font-family: 'Cormorant Garamond', Didot, 'Bodoni 72', 'Bodoni MT', Georgia, 'Times New Roman', serif;
    max-width: 760px;
    margin: 0 auto 12px;
    font-size: clamp(2.35rem, 5.2vw, 4.35rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.38);
}

.home-hero h1 span {
    display: block;
    color: #e3b45a;
    font-family: 'Allura', 'Monotype Corsiva', 'Segoe Script', 'Brush Script MT', cursive;
    margin-top: -10px;
    font-size: clamp(2.85rem, 5.7vw, 5rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.82;
    text-transform: none;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: min(270px, 52vw);
    margin: 3px auto 10px;
    opacity: 0.92;
}

.hero-ornament span {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, #d9a64f 18%, #d9a64f 82%, transparent);
}

.hero-lotus {
    position: relative;
    width: 28px;
    height: 18px;
    display: block;
    color: #d9a64f;
}

.hero-lotus::before,
.hero-lotus::after {
    content: "";
    position: absolute;
    bottom: 1px;
    width: 14px;
    height: 17px;
    border: 1.4px solid currentColor;
    border-bottom: 0;
    border-radius: 50% 50% 0 0;
}

.hero-lotus::before {
    left: 4px;
    transform: rotate(-34deg);
}

.hero-lotus::after {
    right: 4px;
    transform: rotate(34deg);
}

.hero-lotus {
    background:
        radial-gradient(ellipse at 50% 100%, transparent 0 45%, currentColor 46% 50%, transparent 51%) 50% 0 / 12px 18px no-repeat;
}

.home-hero p:not(.eyebrow):not(.hero-kicker) {
    max-width: 680px;
    margin: 0 auto 18px;
    color: #f8edf8;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.ghost-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    color: #fff;
    padding: 0 24px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-about {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 0;
    align-items: stretch;
    background: #fbf8fb;
}

.home-about-media {
    min-height: 360px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.home-about-media img,
.home-experience-card img,
.featured-home-retreat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-about h2,
.home-experiences h2,
.featured-home-retreat h2,
.home-join-band h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #3f245d;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 500;
    line-height: 1.08;
}

.home-about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 520px;
    padding: 70px 52px;
}

.home-about p:not(.eyebrow) {
    color: #5a4d64;
    margin: 20px 0 26px;
}

.inline-button {
    width: auto;
    padding: 0 24px;
}

.home-experiences {
    padding: 54px 20px 72px;
    background: linear-gradient(180deg, #f0e2fb, #f8efff);
}

.home-card-grid {
    width: min(1080px, 100%);
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.home-experience-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(53, 35, 73, 0.16);
}

.home-experience-card img {
    height: 162px;
}

.home-experience-card div {
    padding: 22px 24px 24px;
    text-align: center;
}

.home-experience-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #3f245d;
    font-size: 1.55rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.home-experience-card p {
    color: #5a4d64;
}

.featured-home-retreat {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: center;
    min-height: 212px;
    background: linear-gradient(90deg, #f7f0f3, #fff9f5);
}

.featured-home-retreat img {
    min-height: 212px;
}

.featured-home-retreat div {
    padding: 38px max(32px, calc((100vw - 1120px) / 2)) 38px 54px;
}

.featured-home-retreat p:not(.eyebrow) {
    color: #5a4d64;
    margin: 14px 0 26px;
}

.home-join-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 34px max(32px, calc((100vw - 1120px) / 2));
    color: #fff;
    background:
        radial-gradient(circle at 10% 0%, rgba(211, 155, 69, 0.42), transparent 30%),
        #40245f;
}

.home-join-band p {
    color: #f8edf8;
}

.home-join-band h2 {
    color: #f0c66f;
}

.home-join-form {
    display: flex;
    min-width: min(100%, 460px);
    gap: 0;
}

.home-join-form label {
    flex: 1;
}

.home-join-form span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.home-join-form input {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 6px 0 0 6px;
    padding: 0 16px;
    font: inherit;
}

.home-join-form button {
    min-height: 46px;
    border: 0;
    border-radius: 0 6px 6px 0;
    background: #d39b45;
    color: #fff;
    padding: 0 24px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.home-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 34px;
    align-items: center;
    padding: 38px max(32px, calc((100vw - 1120px) / 2));
    background: #fbf8fb;
    color: #3f245d;
}

.home-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-footer a {
    color: #5a4d64;
    font-weight: 700;
}

/* Homepage reference-match pass: keep the original 1024px mockup proportions. */
.home-page {
    background: #281542;
}

.home-header,
.home-page main,
.home-footer {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

.home-header {
    left: 50%;
    right: auto;
    width: min(100%, 1024px);
    transform: translateX(-50%);
}

.home-nav {
    width: calc(100% - 76px);
    min-height: 94px;
    gap: 22px;
}

.brand-lockup {
    flex: 0 0 88px;
}

.brand-lockup img {
    display: block;
    width: 78px;
    height: auto;
}

.home-nav ul {
    flex: 1;
    justify-content: center;
    gap: 27px;
}

.home-nav a {
    font-size: 0.62rem;
    letter-spacing: 0.09em;
}

.nav-cta {
    min-height: 28px;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 0.62rem;
}

.home-hero {
    min-height: 430px;
    padding: 132px 24px 46px;
    background:
        linear-gradient(rgba(54, 34, 72, 0.25), rgba(54, 34, 72, 0.32)),
        url("assets/hero-women-mountains.png") center 46% / cover;
}

.home-hero::after {
    bottom: -33px;
    height: 66px;
    background: #fbf8fb;
    transform: rotate(-3.2deg);
}

.home-hero-copy {
    transform: translateY(8px);
}

.hero-kicker {
    font-size: 1.58rem;
}

.home-hero h1 {
    max-width: 680px;
    margin-bottom: 7px;
    font-size: 2.95rem;
    letter-spacing: 0.035em;
}

.home-hero h1 span {
    margin-top: -11px;
    font-size: 3.9rem;
}

.hero-ornament {
    width: 255px;
    margin-top: 1px;
    margin-bottom: 10px;
    gap: 6px;
}

.hero-lotus {
    width: 30px;
    height: 19px;
}

.home-hero p:not(.eyebrow):not(.hero-kicker) {
    margin-bottom: 16px;
    font-size: 0.82rem;
}

.home-hero .primary-button {
    min-height: 34px;
    padding: 0 24px;
    border-radius: 4px;
    font-size: 0.68rem;
}

.home-about {
    grid-template-columns: 42% 58%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.home-about-media {
    min-height: 300px;
}

.home-about-copy {
    max-width: 430px;
    padding: 66px 48px 48px;
    position: relative;
    z-index: 1;
}

.home-about h2 {
    max-width: 360px;
    font-size: 2.2rem;
    line-height: 1.14;
    text-transform: none;
}

.home-about h2 span {
    display: block;
    color: #9a6ec0;
    font-style: italic;
}

.home-about p:not(.eyebrow) {
    max-width: 390px;
    margin: 16px 0 22px;
    font-size: 0.84rem;
}

.inline-button {
    min-height: 32px;
    padding: 0 22px;
    font-size: 0.68rem;
}

.lotus-divider {
    display: block;
    width: 39px;
    height: auto;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.goddess-art {
    position: absolute;
    right: 38px;
    top: 46px;
    width: 225px;
    height: auto;
    pointer-events: none;
}

.home-experiences {
    padding: 34px 78px 54px;
}

.home-experiences .section-title {
    margin-bottom: 0;
}

.home-experiences h2 {
    font-size: 2rem;
}

.home-card-grid {
    width: 100%;
    margin-top: 28px;
    gap: 30px;
}

.home-experience-card img {
    height: 160px;
}

.home-experience-card div {
    min-height: 126px;
    padding: 18px 22px 20px;
}

.home-experience-card h3 {
    font-size: 1.28rem;
}

.home-experience-card p {
    font-size: 0.78rem;
    line-height: 1.45;
}

.home-experience-card .text-link {
    font-size: 0.68rem;
}

.featured-home-retreat {
    grid-template-columns: 47% 53%;
    min-height: 160px;
}

.featured-home-retreat img {
    min-height: 160px;
}

.featured-home-retreat div {
    padding: 22px 44px;
}

.featured-home-retreat h2 {
    max-width: 420px;
    font-size: 1.8rem;
}

.featured-home-retreat p:not(.eyebrow) {
    margin: 8px 0 16px;
    font-size: 0.75rem;
}

.featured-home-retreat .primary-button {
    min-height: 32px;
    padding: 0 18px;
    font-size: 0.65rem;
}

.home-join-band {
    padding: 25px 188px;
}

.home-join-band p {
    font-size: 1rem;
}

.home-join-band h2 {
    font-size: 2rem;
}

.home-join-form {
    min-width: 360px;
}

.home-join-form input,
.home-join-form button {
    min-height: 34px;
    font-size: 0.7rem;
}

.home-footer {
    grid-template-columns: 230px 1fr 1fr;
    gap: 28px;
    padding: 32px 154px 28px;
    background: #fbf8fb;
}

.home-footer .brand-lockup {
    flex-basis: auto;
}

.home-footer nav {
    gap: 10px 18px;
}

.home-footer a {
    font-size: 0.7rem;
}

.site-header {
    background: #40245f;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 8px 24px rgba(38, 20, 56, 0.18);
}

.site-nav {
    width: min(1120px, calc(100% - 40px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: #d8a24b;
}

.signup-page {
    background: #fbf7fb;
    color: #352349;
}

.signup-page main {
    max-width: none;
}

.retreat-hero {
    min-height: 430px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 32px;
    padding: 120px max(32px, calc((100vw - 1120px) / 2)) 64px;
    color: #352349;
    background:
        linear-gradient(90deg, rgba(251, 248, 251, 0.96) 0%, rgba(251, 248, 251, 0.88) 46%, rgba(64, 36, 95, 0.32) 100%),
        url("assets/hero-women-mountains.png") center 44% / cover;
}

.retreat-hero-copy {
    max-width: 760px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(128, 82, 143, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(53, 35, 73, 0.1);
    padding: 32px;
}

.eyebrow {
    color: #c88f36;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.retreat-hero .eyebrow {
    color: #c88f36;
}

.retreat-hero h1,
.signup-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.08;
}

.retreat-hero h1 {
    max-width: 720px;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    margin-bottom: 20px;
}

.retreat-hero p:not(.eyebrow) {
    max-width: 600px;
    color: #5a4d64;
    font-size: 1.12rem;
    margin-bottom: 28px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.primary-button {
    background: #d39b45;
    color: #fff;
    padding: 0 24px;
    box-shadow: 0 12px 24px rgba(65, 35, 17, 0.2);
}

.secondary-button {
    border: 1px solid #b47b30;
    color: #6b411a;
    padding: 0 18px;
    width: 100%;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(65, 35, 17, 0.18);
}

.retreat-summary,
.checkout-card,
.registration-panel,
.package-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(128, 82, 143, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(53, 35, 73, 0.12);
}

.retreat-summary {
    color: #352349;
    padding: 24px;
}

.retreat-summary div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(83, 49, 106, 0.14);
}

.retreat-summary div:last-child {
    border-bottom: 0;
}

.retreat-summary span,
.checkout-card dt {
    color: #6d5a7d;
    font-size: 0.82rem;
}

.signup-section {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0;
}

.two-column,
.registration-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    gap: 48px;
    align-items: start;
}

.signup-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #3f245d;
    margin-bottom: 18px;
}

.signup-section p {
    color: #5a4d64;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c88f36;
    box-shadow: 0 0 0 5px rgba(200, 143, 54, 0.16);
}

.section-title {
    max-width: 720px;
    text-align: center;
    margin: 0 auto 32px;
}

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

.package-card {
    display: grid;
    gap: 12px;
    min-height: 240px;
    padding: 24px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.package-card input {
    width: 20px;
    height: 20px;
    accent-color: #8b5aaa;
}

.package-card.selected {
    border-color: #9e68bd;
    box-shadow: 0 18px 45px rgba(93, 54, 121, 0.22);
    transform: translateY(-2px);
}

.package-name {
    font-weight: 800;
    color: #3f245d;
}

.package-card strong {
    color: #b47b30;
    font-size: 2rem;
    line-height: 1;
}

.registration-layout {
    align-items: stretch;
}

.registration-panel,
.checkout-card {
    padding: 32px;
}

.registration-form {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.registration-form label {
    display: grid;
    gap: 8px;
    color: #433250;
    font-weight: 700;
    font-size: 0.9rem;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    border: 1px solid rgba(83, 49, 106, 0.24);
    border-radius: 6px;
    background: #fff;
    color: #352349;
    font: inherit;
    padding: 13px 14px;
}

.registration-form textarea {
    resize: vertical;
}

.consent-line {
    grid-template-columns: 20px 1fr;
    align-items: start;
    font-weight: 500;
}

.consent-line input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #8b5aaa;
}

.form-note {
    font-size: 0.88rem;
}

.checkout-card {
    position: sticky;
    top: 96px;
    align-self: start;
}

.checkout-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #3f245d;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.checkout-card dl {
    display: grid;
    gap: 0;
    margin-bottom: 24px;
}

.checkout-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid rgba(83, 49, 106, 0.14);
}

.checkout-card dd {
    margin: 0;
    font-weight: 800;
    color: #3f245d;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    background: #40245f;
    color: #fff;
    padding: 36px max(32px, calc((100vw - 1120px) / 2));
}

.site-footer p {
    color: #d8c6e4;
    margin-top: 4px;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer a {
    color: #f0c66f;
    font-weight: 700;
}

.content-page {
    background: #fbf7fb;
    color: #352349;
}

.page-hero {
    min-height: 390px;
    display: flex;
    align-items: center;
    padding: 120px max(32px, calc((100vw - 1120px) / 2)) 64px;
    color: #352349;
    background:
        linear-gradient(90deg, rgba(251, 248, 251, 0.96) 0%, rgba(251, 248, 251, 0.88) 48%, rgba(64, 36, 95, 0.3) 100%),
        url("assets/hero-women-mountains.png") center 44% / cover;
}

.page-hero > div {
    max-width: 780px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(128, 82, 143, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(53, 35, 73, 0.1);
    padding: 32px;
}

.page-hero .eyebrow {
    color: #c88f36;
}

.page-hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.35rem, 5.5vw, 5rem);
    font-weight: 500;
    line-height: 1.08;
    margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
    max-width: 640px;
    color: #5a4d64;
    font-size: 1.08rem;
}

.content-section {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0;
}

.content-section h2,
.experience-feature h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #3f245d;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 16px;
}

.prose {
    display: grid;
    gap: 18px;
    color: #5a4d64;
}

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

.value-grid article,
.profile-card,
.experience-feature,
.join-card {
    background: #fff;
    border: 1px solid rgba(128, 82, 143, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(53, 35, 73, 0.1);
}

.value-grid article {
    padding: 24px;
}

.value-grid h3,
.profile-card h3,
.join-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #3f245d;
    font-size: 1.55rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.founder-section {
    padding-top: 36px;
}

.profile-card {
    padding: 28px;
}

.profile-photo {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4d2b6e, #c88f36);
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.profile-role {
    color: #9a6a29;
    font-weight: 800;
    margin-bottom: 14px;
}

.text-link {
    display: inline-flex;
    color: #7b4d99;
    font-weight: 800;
    margin-top: 18px;
}

.contact-band,
.event-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: #fff;
    border: 1px solid rgba(128, 82, 143, 0.18);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 72px;
    box-shadow: 0 18px 45px rgba(53, 35, 73, 0.1);
}

.experience-list {
    display: grid;
    gap: 24px;
}

.experience-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: center;
    gap: 28px;
    padding: 32px;
}

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

.gallery-grid figure {
    min-height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(53, 35, 73, 0.1);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.gallery-grid figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.gallery-placeholder {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(64, 36, 95, 0.95), rgba(211, 155, 69, 0.78)),
        url("mainpage.png") center / cover;
}

.gallery-placeholder span {
    color: rgba(255, 255, 255, 0.42);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 5rem;
}

.join-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    align-items: start;
}

.join-card {
    padding: 28px;
    position: sticky;
    top: 96px;
}

.join-card p {
    color: #5a4d64;
    margin-bottom: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 0;
}

.detail-card {
    scroll-margin-top: 110px;
    background: #fff;
    border: 1px solid rgba(128, 82, 143, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(53, 35, 73, 0.1);
    padding: 32px;
}

.detail-card h2 {
    font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.detail-card > p:not(.eyebrow) {
    color: #5a4d64;
    margin-bottom: 22px;
}

.compact-list {
    grid-template-columns: 1fr;
    margin-bottom: 26px;
}

.top-header {
    background: #8b6f4a;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-bar ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
    height: 60px;
}

.nav-bar a {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.nav-bar a:hover {
    color: #e8d5b7;
}

main {
    margin: 0 auto;
    max-width: 100%;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

.hero-left {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right {
    background: #e8d5b7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.hero-sidebar {
    text-align: center;
    max-width: 400px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #3c2f2b;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #5b4a42;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #6b5850;
}

.cta-button {
    display: inline-block;
    background: #8b6f4a;
    color: white;
    padding: 0.95rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #6b5437;
}

/* Experiences Section */
.experiences-section {
    background: #c9b5d8;
    padding: 3rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3c2f2b;
    line-height: 1.3;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.exp-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.exp-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.8;
}

.exp-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Philosophy Section */
.philosophy-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #8b6f4a;
}

.philosophy-section > p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #5b4a42;
    line-height: 1.8;
}

.shake-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.shake-item {
    background: #f5ede2;
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3c2f2b;
}

.shake-item strong {
    color: #8b6f4a;
}

/* Mission Section */
.mission-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #8b6f4a;
}

.mission-section h2:nth-of-type(2) {
    margin-top: 2rem;
}

.mission-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #5b4a42;
    margin-bottom: 1.5rem;
}

/* Values Section */
.values-section {
    padding: 3rem 2rem;
    background: #f9f6f2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.values-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #8b6f4a;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.value-item {
    background: white;
    padding: 1.2rem 1rem;
    text-align: center;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #3c2f2b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Footer */
footer {
    background: #8b6f4a;
    color: white;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #e8d5b7;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1000px) {
    .site-nav {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
    }

    .site-nav ul {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .home-header {
        position: relative;
        background: #40245f;
    }

    .home-nav {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    .home-nav ul {
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .nav-cta {
        display: none;
    }

    .home-hero {
        min-height: 620px;
        padding-top: 78px;
    }

    .home-about,
    .featured-home-retreat {
        grid-template-columns: 1fr;
    }

    .goddess-art {
        opacity: 0.18;
        right: 22px;
        top: 58px;
    }

    .home-card-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .featured-home-retreat div {
        padding: 32px 24px 46px;
    }

    .home-join-band,
    .home-footer {
        align-items: flex-start;
        flex-direction: column;
        display: flex;
    }

    .retreat-hero,
    .two-column,
    .registration-layout {
        grid-template-columns: 1fr;
    }

    .retreat-hero {
        min-height: auto;
        padding-top: 96px;
    }

    .retreat-summary,
    .checkout-card {
        max-width: 520px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .value-grid,
    .founder-grid,
    .gallery-grid,
    .join-layout,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .experience-feature,
    .contact-band,
    .event-callout {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .contact-band,
    .event-callout {
        flex-direction: column;
    }

    .join-card {
        position: static;
    }

    .package-card {
        min-height: auto;
    }

    .checkout-card {
        position: static;
    }

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-left {
        min-height: 400px;
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .site-nav {
        width: min(100% - 28px, 1120px);
    }

    .home-nav {
        width: min(100% - 28px, 1180px);
    }

    .site-nav ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .home-nav ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .site-nav a {
        font-size: 0.72rem;
    }

    .home-hero {
        min-height: 560px;
        padding: 64px 18px;
    }

    .home-hero h1 {
        font-size: 2.65rem;
    }

    .hero-actions,
    .home-join-form {
        flex-direction: column;
        width: 100%;
    }

    .ghost-button,
    .home-join-form button,
    .home-join-form input {
        width: 100%;
        border-radius: 6px;
    }

    .home-about {
        width: min(100% - 28px, 1120px);
        padding: 52px 0;
        gap: 30px;
    }

    .home-about-media {
        min-height: 260px;
        border-radius: 8px;
    }

    .goddess-art {
        display: none;
    }

    .home-experiences {
        padding: 52px 14px;
    }

    .home-join-band,
    .home-footer {
        padding: 32px 20px;
    }

    .retreat-hero {
        padding: 72px 20px 40px;
    }

    .page-hero {
        min-height: 390px;
        padding: 72px 20px 40px;
    }

    .retreat-hero h1 {
        font-size: 2.45rem;
    }

    .page-hero h1 {
        font-size: 2.35rem;
    }

    .signup-section {
        width: min(100% - 28px, 1120px);
        padding: 48px 0;
    }

    .content-section {
        width: min(100% - 28px, 1120px);
        padding: 48px 0;
    }

    .check-list,
    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-panel,
    .checkout-card,
    .retreat-summary,
    .package-card,
    .experience-feature,
    .detail-card,
    .contact-band,
    .event-callout {
        padding: 22px;
    }

    .gallery-grid figure,
    .gallery-grid img {
        min-height: 230px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 32px 20px;
    }

    .nav-bar ul {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
