/* ==================== Fonts ==================== */
@font-face {
    font-family: 'WixMadeforText';
    src: url('fonts/wix-madefor-text/WixMadeforTextRegular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ==================== Variables & Reset ==================== */
:root {
    --primary-color: #528A93;
    --secondary-color: #c4a07a;
    --accent-color: #fff;
    --text-dark: #4a3728;
    --text-light: #fff;
    --cream: #fffaf2;
    --teal-dark: #3a6e6e;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== Site Header ==================== */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--cream);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 80px;
    padding: 0 24px;
    z-index: 200;
}

.site-header .hamburger {
    position: static;
    z-index: auto;
    justify-self: start;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
}

.site-header .hamburger span {
    display: block;
    width: 22px;
    height: 3px;
    background-color: #528A93;
    border-radius: 2px;
    transition: var(--transition);
}

.site-header .logo {
    justify-self: center;
}

.site-header .logo a {
    text-decoration: none;
}

.site-header .logo h1 {
    font-family: 'WixMadeforText', 'Segoe UI', sans-serif;
    color: #528A93;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.site-header .social-icons {
    justify-self: end;
    display: flex;
    gap: 10px;
    align-items: center;
}

.site-header .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #528A93;
    font-size: 22px;
    text-decoration: none;
    transition: opacity var(--transition);
}

.site-header .social-icons a:hover {
    opacity: 0.65;
}

/* ==================== Navigation Side Panel ==================== */
.nav-menu {
    position: fixed;
    left: -340px;
    top: 0;
    width: 320px;
    height: 100vh;
    background-color: var(--cream);
    z-index: 999;
    padding: 44px 36px 50px;
    transition: left 0.35s ease;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.06);
}

.nav-menu.active {
    left: 0;
}

.nav-close {
    position: absolute;
    top: 22px;
    right: 22px;
    background: none;
    border: none;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
    padding: 4px 6px;
    transition: opacity var(--transition);
}

.nav-close:hover {
    opacity: 0.55;
}

.nav-brand {
    font-family: 'WixMadeforText', 'Segoe UI', sans-serif;
    display: block;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--primary-color);
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 20px;
}

.nav-separator {
    border: none;
    border-top: 1px solid #ddd8d0;
    margin: 0;
}

/* Extend separator and hover highlight to panel edges */
.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 8px -36px;
    padding: 8px 0;
}

.nav-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    display: block;
    padding: 12px 36px;
    border-radius: 0;
    transition: background-color 0.2s ease, padding-left 0.15s ease;
}

.nav-list a:hover {
    background-color: rgba(82, 138, 147, 0.1);
    padding-left: 48px;
}

.nav-social {
    display: flex;
    gap: 18px;
    align-items: center;
    padding-top: 22px;
}

.nav-social a {
    color: var(--primary-color);
    font-size: 22px;
    text-decoration: none;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-social a:hover {
    opacity: 0.6;
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 78, 0.15);
    z-index: 2;
}

/* ==================== Welcome Section ==================== */
.welcome {
    position: relative;
    background-color: #DDB598;
    padding: 40px 40px;
    text-align: center;
    overflow: hidden;
}

.welcome::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Photos/Clay.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.welcome-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.welcome-ornament {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.welcome-ornament img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.welcome-text {
    font-family: 'Questrial', sans-serif;
    font-size: 17px;
    color: #FFFAF2;
    margin-bottom: 28px;
    line-height: 1.85;
}

.welcome-signature {
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    color: #FFFAF2;
    margin-bottom: 20px;
    line-height: 1.6;
}

.welcome-signature span {
    display: block;
    font-size: 17px;
    font-weight: 400;
    margin-top: 4px;
}

/* ==================== CTA Button ==================== */
.cta-button {
    font-family: 'Questrial', sans-serif;
    display: inline-block;
    padding: 12px 36px;
    background-color: transparent;
    color: #FFFAF2;
    text-decoration: none;
    border: 1.5px solid #FFFAF2;
    border-radius: 30px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background-color var(--transition), color var(--transition);
    cursor: pointer;
}

.cta-button:hover {
    background-color: #FFFAF2;
    color: #528A93;
}

/* ==================== Offerings / Cards Section ==================== */
.offerings {
    position: relative;
    background-color: var(--teal-dark);
    padding: 64px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offerings::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Photos/water.png');
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    z-index: 0;
}

.offerings .cards-row {
    position: relative;
    z-index: 1;
}

.cards-row {
    display: flex;
    gap: 28px;
    justify-content: center;
    align-items: flex-start;
    max-width: 960px;
    width: 100%;
}

.offering-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex: 1;
    max-width: 210px;
    transition: transform var(--transition);
    position: relative;
    overflow: hidden;
}

.offering-card:hover {
    transform: translateY(-4px);
}

.card-arch {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 999px 999px 10px 10px;
    overflow: hidden;
    border: 3px solid #E5D7CD;
}

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

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #E5D7CD;
    color: #528A93;
    padding: 14px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.6;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.offering-card:hover .card-label {
    transform: translateY(0);
}

/* ==================== Footer ==================== */
.footer {
    background-color: var(--cream);
    padding: 32px 40px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.subscribe-btn {
    padding: 10px 30px;
    background-color: #E4B584;
    color: #FFFAF2;
    border: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: opacity var(--transition);
    font-weight: 400;
    cursor: pointer;
    font-family: 'Questrial', sans-serif;
}

.subscribe-btn:hover {
    opacity: 0.82;
}

.footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-social a {
    color: #528A93;
    font-size: 22px;
    text-decoration: none;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    opacity: 0.6;
}

/* ==================== Subscribe Modal ==================== */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
}

.modal-box {
    background-color: var(--cream);
    max-width: 800px;
    width: 100%;
    padding: 60px 70px;
    position: relative;
    border-radius: 6px;
}

/* About modal — backdrop scrolls, video fills via CSS grid */
#aboutModal {
    overflow-y: auto;
    align-items: flex-start;
    padding: 40px 20px;
}

.about-modal-box {
    display: grid;
    max-width: 780px;
    width: 100%;
    padding: 0;
    background-color: #1a1a1a;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto;
}

.about-modal-box > * {
    grid-column: 1;
    grid-row: 1;
}

.about-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.about-modal-overlay {
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.about-modal-box .modal-close {
    z-index: 3;
    align-self: start;
    justify-self: end;
    color: #fdf4e3;
    top: 10px;
    right: 10px;
}

.about-modal-box .about-card {
    position: relative;
    z-index: 2;
    background-color: transparent;
    border: none;
    padding: 48px 40px 48px;
    margin: 0;
}

.about-modal-box .about-bio p {
    color: #f5f0e8;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: 300;
    cursor: pointer;
    color: var(--text-dark);
    line-height: 1;
    transition: opacity var(--transition);
}

.modal-close:hover {
    opacity: 0.5;
}

.modal-title {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #528A93;
    text-shadow: 4px 4px 0 #DDB598;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
}

.modal-subtitle {
    font-family: 'Questrial', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.subscribe-form .form-row .modal-field {
    margin-bottom: 0;
}

.modal-field label {
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    color: #528A93;
    letter-spacing: 0.3px;
}

.modal-field input {
    background-color: #E2C4A8;
    border: none;
    border-bottom: 1.5px solid #528A93;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Questrial', sans-serif;
    outline: none;
    width: 100%;
    transition: border-color var(--transition);
}

.modal-field input:focus {
    border-bottom-color: #3a6e78;
}

.modal-field input::placeholder {
    color: rgba(74, 55, 40, 0.45);
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.signup-btn {
    background-color: #528A93;
    color: #FFFAF2;
    border: none;
    padding: 16px 90px;
    font-size: 15px;
    font-family: 'Questrial', sans-serif;
    cursor: pointer;
    border-radius: 6px;
    letter-spacing: 1px;
    transition: opacity var(--transition);
}

.signup-btn:hover {
    opacity: 0.85;
}

/* ==================== About Page ==================== */
/* Shared background zone: welcome + about expand */
.welcome-zone {
    position: relative;
    background-color: #DDB598;
    overflow: hidden;
}

.welcome-zone::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Photos/Clay.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
}

/* About expandable dropdown on homepage */
.about-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.about-expand.open {
    max-height: 1200px;
    padding: 0 20px 80px;
}

.about-bg {
    position: relative;
    min-height: calc(100vh - 80px);
    background-color: var(--teal-dark);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 20px 80px;
}

.about-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Photos/water.png');
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    z-index: 0;
}

.about-card {
    position: relative;
    z-index: 1;
    background-color: #C49070;
    max-width: 860px;
    width: 100%;
    border-radius: 0;
    padding: 28px;
}

.about-photo-frame {
    border: 3px solid #f5f0e8;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 28px;
}

.about-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.about-card-content {
    padding: 0 16px 16px;
}

.about-bio p {
    font-family: 'Questrial', 'Segoe UI', sans-serif;
    font-size: 17px;
    color: #f5f0e8;
    line-height: 1.85;
    margin-bottom: 18px;
    font-weight: 400;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

/* ==================== Sub-page: Standalone Hamburger ==================== */
/* Used on pages that don't have .site-header */
.hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== Page Header (sub-pages) ==================== */
.page-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-header .logo a {
    text-decoration: none;
}

.page-header .logo h1 {
    color: var(--text-light);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-header .social-icons {
    display: flex;
    gap: 20px;
}

/* ==================== Page Sections (sub-pages) ==================== */
.page-section {
    padding: 80px 40px;
    background-color: #f5f1ed;
    min-height: calc(100vh - 120px);
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-section h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
}

.page-section h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-section h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.section-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.section-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.section-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ==================== Lists (sub-pages) ==================== */
.offerings-list,
.streaming-links,
.community-features {
    list-style: none;
    margin: 20px 0;
}

.offerings-list li,
.streaming-links li,
.community-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.offerings-list li:before,
.streaming-links li:before,
.community-features li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.streaming-links a,
.community-features a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.streaming-links a:hover,
.community-features a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ==================== Music Grid (sub-pages) ==================== */
.music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.music-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.music-item h3 {
    margin-top: 0;
}

.music-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.music-item iframe {
    border-radius: 12px;
}

/* ==================== Art Gallery (sub-pages) ==================== */
.art-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.gallery-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item h3 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    text-align: center;
}

/* ==================== Community Form (sub-pages) ==================== */
.community-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.community-form h4 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 155, 140, 0.1);
}

.community-form button {
    margin-top: 10px;
}

/* ==================== Transformational Support Page ==================== */
body.support-page {
    background-image: url('Photos/support background.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-color: #c8b09a;
}

.support-main {
    min-height: calc(100vh - 80px);
    padding: 60px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.support-card {
    background-color: var(--cream);
    max-width: 780px;
    width: 100%;
    padding: 48px 52px 0;
}

.support-intro-text {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #528A93;
    text-align: center;
}

.support-divider {
    border: none;
    border-top: 1px solid rgba(82, 138, 147, 0.25);
    margin: 40px 0;
}

.support-offerings {
    background-color: var(--cream);
    max-width: 780px;
    width: 100%;
    padding: 40px 52px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.support-offering {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.offering-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.75;
}

.offering-title {
    font-family: 'Monoton', cursive;
    font-size: 18px;
    font-weight: 400;
    color: #528A93;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

.offering-desc {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 13px;
    color: #528A93;
    opacity: 0.75;
    margin: 0;
}

.book-btn {
    display: inline-block;
    margin-top: 6px;
    padding: 10px 28px;
    background-color: #528A93;
    color: #fff;
    font-family: 'WixMadeforText', sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.book-btn:hover {
    background-color: #3a6e6e;
}

/* Testimonial Slider */
.testimonial-slider-section {
    background: transparent;
    padding: 80px 80px 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 420px;
    justify-content: center;
}

.testimonial-card-wrap {
    width: 100%;
    max-width: 720px;
}

.testimonial-slide {
    display: none;
    background-color: var(--cream);
    padding: 48px 52px;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: #528A93;
    margin: 0 0 12px;
}

.testimonial-attr {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 13px;
    color: #528A93;
    opacity: 0.65;
    margin-top: 20px;
}

.slide-cont-btn {
    background: none;
    border: none;
    font-family: 'WixMadeforText', sans-serif;
    font-size: 13px;
    color: #528A93;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    text-decoration: underline;
    display: block;
    margin-top: 4px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #3a6e6e;
    font-size: 52px;
    font-weight: 300;
    cursor: pointer;
    padding: 0 24px;
    opacity: 0.6;
    transition: opacity 0.2s;
    line-height: 1;
}

.slider-arrow:hover {
    opacity: 1;
}

.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(58, 110, 110, 0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border 0.2s;
}

.slider-dot.active {
    background: transparent;
    border: 1.5px solid rgba(58, 110, 110, 0.85);
    width: 9px;
    height: 9px;
}

.support-footer {
    background-color: rgba(255, 250, 242, 0.9);
}

/* ==================== Booking Modal ==================== */
.booking-box {
    max-width: 560px;
    padding: 52px 56px;
    overflow-y: auto;
    max-height: 90vh;
}

.booking-step.hidden,
.hidden { display: none; }

.booking-type-tag {
    font-family: 'Questrial', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #528A93;
    opacity: 0.6;
    text-align: center;
    margin: 0 0 6px;
}

.booking-step-title {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4a3728;
    text-align: center;
    letter-spacing: 0.5px;
    margin: 0 0 24px;
}

/* Calendar */
.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cal-month-label {
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    color: #4a3728;
    letter-spacing: 0.5px;
}

.cal-nav {
    background: none;
    border: none;
    font-size: 26px;
    color: #528A93;
    cursor: pointer;
    padding: 0 6px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.15s;
}
.cal-nav:hover { opacity: 1; }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 20px;
}

.cal-dow {
    font-family: 'Questrial', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #528A93;
    opacity: 0.45;
    text-align: center;
    padding: 2px 0 8px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    border-radius: 50%;
    color: #4a3728;
    opacity: 0.2;
    cursor: default;
}

.cal-day.empty { opacity: 0; pointer-events: none; }

.cal-day.available {
    opacity: 1;
    color: #528A93;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.cal-day.available:hover { background: rgba(82, 138, 147, 0.12); }

.cal-day.selected {
    background: #528A93 !important;
    color: #fff !important;
    opacity: 1 !important;
}

/* Time slots */
.slots-label {
    font-family: 'Questrial', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #528A93;
    opacity: 0.55;
    margin: 0 0 10px;
}

.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.slot-btn {
    padding: 8px 20px;
    border: 1.5px solid rgba(82, 138, 147, 0.35);
    background: transparent;
    color: #528A93;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.15s;
}
.slot-btn:hover { border-color: #528A93; background: rgba(82, 138, 147, 0.08); }
.slot-btn.selected { background: #528A93; color: #fff; border-color: #528A93; }

/* Step footer nav */
.booking-step-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
    border-top: 1px solid rgba(82, 138, 147, 0.15);
    padding-top: 24px;
}

.booking-continue-btn {
    padding: 12px 36px;
    background: #528A93;
    color: #fff;
    border: none;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: opacity 0.2s;
}
.booking-continue-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.booking-continue-btn:not(:disabled):hover { opacity: 0.85; }

.booking-back-btn {
    background: none;
    border: none;
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    color: #528A93;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.15s;
    padding: 0;
}
.booking-back-btn:hover { opacity: 1; }

.booking-submit-btn {
    padding: 12px 36px !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
}

/* Step 2 summary bar */
.booking-summary-bar {
    font-family: 'Questrial', sans-serif;
    font-size: 13px;
    color: #528A93;
    background: rgba(82, 138, 147, 0.08);
    border-left: 3px solid #528A93;
    padding: 10px 16px;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Textarea & select (extend existing modal-field input styles) */
.modal-field textarea {
    background-color: #E2C4A8;
    border: none;
    border-bottom: 1.5px solid #528A93;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Questrial', sans-serif;
    outline: none;
    width: 100%;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color var(--transition);
}
.modal-field textarea:focus { border-bottom-color: #3a6e78; }
.modal-field textarea::placeholder { color: rgba(74, 55, 40, 0.45); }

.modal-field select {
    background-color: #E2C4A8;
    border: none;
    border-bottom: 1.5px solid #528A93;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Questrial', sans-serif;
    outline: none;
    width: 100%;
    appearance: none;
    cursor: pointer;
    transition: border-color var(--transition);
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 16px 0 8px;
}

.confirm-check {
    font-size: 46px;
    color: #528A93;
    margin-bottom: 16px;
    line-height: 1;
}

.confirm-text {
    font-family: 'Questrial', sans-serif;
    font-size: 15px;
    color: #4a3728;
    line-height: 1.7;
    margin-bottom: 6px;
}

.confirm-datetime {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #528A93;
    margin: 16px 0 20px;
}

.booking-contact-nudge {
    text-align: center;
    margin-top: 20px;
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    color: #4a3728;
    opacity: 0.55;
}

.booking-contact-link {
    background: none;
    border: none;
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    color: #528A93;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    opacity: 0.85;
    transition: opacity 0.15s;
}
.booking-contact-link:hover { opacity: 1; }

.contact-box {
    max-width: 620px;
}

/* ==================== Art Page ==================== */
body.art-page {
    background-color: #1a1a1a;
}

.art-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: opacity 1.5s ease;
}

#artBgB {
    opacity: 0;
}

.art-main {
    padding: 48px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.art-section {
    width: 100%;
    max-width: 900px;
}

.art-section-title {
    font-family: 'Questrial', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.6;
    margin-bottom: 14px;
    text-align: left;
}

.art-grid {
    display: grid;
    gap: 6px;
}

.art-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.art-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.art-grid-spacer {
    /* empty cell to push Amazonia into center column */
}

.art-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    position: relative;
}

.art-item.framed,
.art-media-item.framed {
    border: 4px solid #fdf8f1;
}

.art-media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.art-media-item:hover .art-media-cover {
    transform: scale(1.03);
}

.art-media-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.22);
    transition: background 0.25s ease;
    cursor: pointer;
}

.art-media-item:hover .art-media-play {
    background: rgba(0, 0, 0, 0.10);
}

.art-media-play i {
    font-size: 52px;
    color: #fdf8f1;
    opacity: 0.92;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.7));
    transition: transform 0.2s ease;
}

.art-media-item:hover .art-media-play i {
    transform: scale(1.12);
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.art-item:hover img {
    transform: scale(1.04);
}

.art-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(82, 138, 147, 0.52);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.art-item:hover .art-item-overlay {
    opacity: 1;
}

.art-item-name {
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.art-item-heart {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    align-self: flex-start;
}

.art-item-portrait {
    aspect-ratio: unset;
}

.art-item-portrait img {
    height: auto;
    object-fit: contain;
}

/* Lightbox */
.art-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: #fdf8f1;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.art-lightbox.active {
    display: flex;
}

.art-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    cursor: default;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.art-lightbox.active img {
    opacity: 1;
}

.art-lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: #4a3728;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.2s;
    z-index: 1;
}

.art-lightbox-close:hover { opacity: 1; }

.art-lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #4a3728;
    font-size: 64px;
    font-weight: 300;
    cursor: pointer;
    padding: 0 24px;
    line-height: 1;
    opacity: 0.35;
    transition: opacity 0.2s;
    z-index: 1;
}

.art-lightbox-arrow:hover { opacity: 0.8; }
.art-lightbox-prev { left: 0; }
.art-lightbox-next { right: 0; }

/* Media */
.art-media-grid {
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.art-media-item {
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

.art-media-item iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.art-media-short {
    flex: 0 0 214px;
    height: 380px;
}

.art-media-video {
    flex: 1;
    height: 380px;
}

.art-footer {
    background-color: rgba(245, 240, 232, 0.88);
}

/* ==================== Resonance Community Page ==================== */
body.rc-page {
    background-color: var(--cream);
}

/* Hero — Section 1 */
.rc-hero {
    background-color: #3a6e6e;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

/* One wide card: two equal panels flush together */
.rc-stage {
    display: flex;
    width: 1100px;
    max-width: calc(100vw - 120px);
    height: 460px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.45);
}

/* Left panel — sandy text */
.rc-text-card {
    flex: 0 0 50%;
    position: relative;
    background-color: #c4a07a;
    padding: 44px 44px 44px 48px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Right panel — video */
.rc-video-card {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.rc-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rc-icon {
    position: absolute;
    top: 44px;
    right: 44px;
    width: 60px;
    height: 60px;
    object-fit: contain;
    opacity: 0.9;
}

.rc-title {
    font-family: 'Monoton', cursive;
    font-size: 34px;
    font-weight: 400;
    color: #3a6e6e;
    line-height: 1.15;
    margin: 0;
}

.rc-body {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rc-body p {
    font-family: 'Questrial', sans-serif;
    font-size: 13.5px;
    line-height: 1.85;
    color: #3a6e6e;
    margin: 0;
}

.rc-ripple {
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1.5px solid rgba(58, 110, 110, 0.18);
    box-shadow:
        0 0 0 50px rgba(58, 110, 110, 0.07),
        0 0 0 100px rgba(58, 110, 110, 0.05),
        0 0 0 150px rgba(58, 110, 110, 0.03);
    pointer-events: none;
}

/* ==================== RC Section 2: Join ==================== */
.rc-join {
    background-color: #e5c2a6;
    padding: 36px 40px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rc-join-title {
    font-family: 'Monoton', cursive;
    font-size: 52px;
    font-weight: 400;
    color: #3a6e6e;
    letter-spacing: 0.04em;
    margin: 0;
    text-align: center;
}

/* Wrapper: holds circular image + card together */
.rc-join-wrap {
    position: relative;
    margin-top: 90px;
}

/* Circular image hanging above the card */
.rc-join-img-wrap {
    position: absolute;
    top: -40px;
    left: 48px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
}

.rc-join-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Landscape teal card */
.rc-join-card {
    background-color: #3a6e6e;
    width: 760px;
    max-width: calc(100vw - 80px);
    padding: 44px 48px 44px 220px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.rc-join-text {
    font-family: 'Questrial', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #f5f0e8;
    flex: 1;
    margin: 0;
}

.rc-join-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.rc-join-btn {
    display: block;
    background-color: #fdf4e3;
    color: #3a6e6e;
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    font-weight: 700;
    -webkit-text-stroke: 0.4px #3a6e6e;
    padding: 12px 22px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.rc-join-btn:hover {
    opacity: 0.85;
}

.rc-join-sub {
    font-family: 'Questrial', sans-serif;
    font-size: 12px;
    color: rgba(245, 240, 232, 0.65);
    letter-spacing: 0.03em;
}

.rc-footer {
    background-color: var(--cream);
}

/* ==================== Music Page ==================== */
body.music-page {
    background-color: #a8c4d4;
}

.music-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    transition: opacity 1.5s ease;
}

.music-bg-a { opacity: 1; }
.music-bg-b { opacity: 0; }

.music-main {
    position: relative;
    z-index: 1;
    padding: 40px 40px 60px;
    min-height: calc(100vh - 80px);
}

.music-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Album row */
.album-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.album-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.album-title {
    color: #fff;
    font-family: 'WixMadeforText', sans-serif;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
}


/* Video rows */
.music-video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}

.music-video-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.music-video-card video {
    width: 100%;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.music-video-wide {
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}

.music-video-wide video {
    width: 100%;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-title {
    color: #fff;
    font-family: 'WixMadeforText', sans-serif;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Music page header/footer */
body.music-page .site-header {
    background-color: var(--cream);
}

body.music-page .footer {
    background-color: rgba(255, 250, 242, 0.85);
    backdrop-filter: blur(6px);
}

/* Album art */
.album-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Mini audio player */
.mini-player {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: var(--cream);
    padding: 8px 12px;
}

.mp-title {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 12px;
    color: #528A93;
    letter-spacing: 0.3px;
}

.mp-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-play-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #528A93;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    padding-left: 2px;
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.15s;
}

.mp-play-btn:hover {
    background-color: #3a6e6e;
    transform: scale(1.08);
}

.mp-play-btn.playing {
    padding-left: 0;
}

.mp-progress-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.mp-progress-bar {
    height: 3px;
    background-color: rgba(82, 138, 147, 0.25);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.mp-progress-fill {
    height: 100%;
    background-color: #528A93;
    border-radius: 2px;
    width: 0%;
    pointer-events: none;
}

.mp-time {
    font-family: 'WixMadeforText', sans-serif;
    font-size: 10px;
    color: #528A93;
    opacity: 0.65;
    letter-spacing: 0.3px;
}

/* YouTube embed (wide video slot) */
.youtube-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.youtube-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Video play button overlay */
.video-wrap {
    position: relative;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.88);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #528A93;
    font-size: 20px;
    padding-left: 4px;
    transition: background-color 0.2s, transform 0.2s;
    z-index: 2;
}

.video-play-btn:hover {
    background-color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ==================== Responsive ==================== */
@media screen and (max-width: 768px) {
    .site-header {
        height: 68px;
        padding: 0 16px;
    }

    .site-header .logo h1 {
        font-size: 30px;
        letter-spacing: 4px;
    }

    .site-header .social-icons a {
        font-size: 18px;
    }

    .site-header .social-icons {
        gap: 10px;
    }

    .hero {
        height: calc(100vh - 68px);
    }

    .welcome {
        padding: 60px 24px;
    }

    .welcome-text {
        font-size: 16px;
    }

    .nav-list a {
        font-size: 24px;
    }

    .offerings {
        padding: 48px 24px;
    }

    .cards-row {
        gap: 16px;
    }

    .card-arch {
        height: 200px;
    }

    .card-label {
        font-size: 9px;
        padding: 6px 12px;
    }

    .footer-content {
        gap: 20px;
    }

    .page-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .page-section {
        padding: 60px 20px;
    }

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

    .album-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .music-video-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .music-main {
        padding: 24px 20px 48px;
    }
}

@media screen and (max-width: 540px) {
    .site-header .logo h1 {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .site-header .social-icons {
        display: none;
    }

    .cards-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        max-width: 400px;
    }

    .offering-card {
        max-width: none;
    }

    .card-arch {
        height: 180px;
    }

    .nav-list a {
        font-size: 22px;
    }

    .nav-menu {
        padding: 50px 32px;
    }

    .nav-close {
        right: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
    }

    .album-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==================== Mobile — phones (≤480px) ==================== */
@media screen and (max-width: 480px) {

    /* --- Subscribe modal --- */
    #subscribeModal {
        align-items: flex-start;
        overflow-y: auto;
        padding: 16px;
    }

    .modal-box {
        padding: 36px 20px 28px;
    }

    .modal-title {
        font-size: 20px;
        letter-spacing: 2px;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .modal-subtitle {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .subscribe-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .subscribe-form .form-row .modal-field {
        margin-bottom: 16px;
    }

    .modal-field {
        margin-bottom: 16px;
    }

    .form-submit {
        margin-top: 20px;
    }

    .signup-btn {
        padding: 14px 48px;
        width: 100%;
    }

    /* --- RC Hero --- */
    .rc-hero {
        min-height: auto;
        padding: 60px 20px 48px;
    }

    .rc-stage {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .rc-text-card {
        flex: none;
        padding: 32px 28px 36px;
    }

    .rc-title {
        font-size: 26px;
    }

    .rc-icon {
        width: 40px;
        height: 40px;
        top: 24px;
        right: 24px;
    }

    .rc-body {
        margin-top: 12px;
        gap: 12px;
    }

    .rc-body p {
        font-size: 13px;
    }

    .rc-video-card {
        flex: none;
        height: 230px;
    }

    /* --- RC Join section --- */
    .rc-join {
        padding: 32px 20px 56px;
    }

    .rc-join-title {
        font-size: 30px;
    }

    .rc-join-wrap {
        margin-top: 100px;
        width: 100%;
    }

    .rc-join-img-wrap {
        left: 50%;
        transform: translateX(-50%);
    }

    .rc-join-card {
        width: 100%;
        max-width: 100%;
        padding: 120px 24px 32px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .rc-join-text {
        text-align: center;
    }

    .rc-join-cta {
        align-items: center;
    }

    /* --- Homepage offerings cards --- */
    .offerings {
        padding: 48px 20px;
    }

    .cards-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        max-width: 100%;
    }

    .offering-card {
        width: 100%;
        max-width: 220px;
        overflow: visible;
    }

    .card-arch {
        height: 300px;
        border: none;
        width: 100%;
        box-shadow: 0 0 0 2px #fdf8f1;
    }

    .card-label {
        position: static;
        transform: none;
        border-radius: 0 0 10px 10px;
        width: calc(100% + 4px);
        padding: 10px 12px;
        background-color: #fdf8f1;
        align-self: center;
    }

    /* --- Testimonial slider --- */
    .testimonial-slider-section {
        padding: 40px 20px 44px;
    }

    .testimonial-slide {
        padding: 28px 20px;
    }

    .slider-arrow {
        font-size: 36px;
        padding: 0 6px;
    }

    /* --- Transformational Support --- */
    .support-main {
        padding: 40px 20px 60px;
        gap: 20px;
    }

    .support-card {
        padding: 28px 20px 24px;
    }

    .support-intro-text {
        font-size: 13.5px;
    }

    .support-offerings {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: transparent;
        max-width: 100%;
        padding: 0;
        gap: 16px;
    }

    .support-offering {
        background-color: var(--cream);
        padding: 32px 28px;
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
        width: 100%;
        max-width: 300px;
    }

    /* --- Nav menu --- */
    .nav-list a {
        font-size: 18px;
    }

    /* --- Header logo --- */
    .site-header .logo h1 {
        font-size: 19px;
        letter-spacing: 5px;
    }

    /* --- Music page --- */
    .mp-title-extra {
        display: none;
    }

    /* --- Art page photo grid --- */
    .art-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- Art page media --- */
    .art-media-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .art-media-short {
        flex: none;
        width: 214px;
        height: 380px;
    }

    .art-media-video {
        flex: none;
        width: 100%;
        height: 200px;
    }

    /* --- About modal --- */
    #aboutModal {
        padding: 0;
        align-items: stretch;
    }

    .about-modal-box {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        min-height: 100%;
        overflow-y: auto;
        background-color: #3a6e6e;
    }

    .about-modal-video,
    .about-modal-overlay {
        display: none;
    }

    .about-modal-box .modal-close {
        top: 5px;
        right: 5px;
    }

    .about-modal-box .about-card {
        padding: 48px 16px 40px;
    }

    .about-modal-box .about-photo-frame {
        margin-left: -12px;
        margin-right: -12px;
    }

    .about-modal-box .about-bio p {
        font-size: 14.5px;
        line-height: 1.75;
    }

    .about-photo {
        height: 190px;
    }
}
