@font-face { font-family: 'Avigea';    src: url('fonts/Avigea.ttf') format('truetype'); }
@font-face { font-family: 'Avenir';    src: url('fonts/Avenir.ttc') format('truetype'); }
@font-face { font-family: 'Futura'; src: url('fonts/Futura-Light.ttf') format('truetype'); font-weight: 300; }
@font-face { font-family: 'Futura'; src: url('fonts/Futura-Medium.ttf') format('truetype'); font-weight: 400; }
@font-face { font-family: 'Futura'; src: url('fonts/Futura-Bold.ttf') format('truetype'); font-weight: 700; }
@font-face { font-family: 'Standbyte'; src: url('fonts/Standbyte.otf') format('opentype'); }

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

:root {
    --cream:      #FAF0E4;
    --rose:       #C4789B;
    --teal:       #2BA8A0;
    --gold-brown: #9B8050;
    --purple:     #7B5EA7;
    --gold:       #C4934A;
    --text:       #2C2C2C;
    --muted:      #999;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Avenir', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

.script {
    font-family: 'Avigea', cursive;
}

.serif {
    font-family: 'Standbyte', serif;
}

/* ── NAV ─────────────────────────────────────────── */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;
    transition: background 0.35s, box-shadow 0.35s;
}

.nav.scrolled {
    background: rgba(250, 240, 228, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
    color: #fff;
    transition: color 0.35s;
}

.nav.scrolled .nav-logo {
    color: #2C1810;
}

.nav-logo .script {
    font-size: 1.9rem;
}

.nav-tagline-arc {
    display: block;
    margin-top: -8px;
    overflow: visible;
}

.nav-tagline-arc text {
    fill: #fff;
    transition: fill 0.35s;
}

.nav.scrolled .nav-tagline-arc text {
    fill: #2C1810;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Avenir', sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.88);
    transition: color 0.25s;
}

.nav.scrolled .nav-links a {
    color: #5C5C5C;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 0.45rem 1.2rem;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #C4A06A;
    border-color: #C4A06A;
    color: white;
}

.nav.scrolled .nav-cta {
    color: var(--text);
    border-color: rgba(0,0,0,0.3);
}

.nav.scrolled .nav-cta:hover {
    background: #C4A06A;
    border-color: #C4A06A;
    color: white;
}

.lang-toggle {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.45);
    color: white;
    padding: 0.3rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.nav.scrolled .lang-toggle {
    background: transparent;
    border-color: rgba(0,0,0,0.25);
    color: var(--text);
}

.lang-toggle:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: white;
    transition: background 0.3s;
}

.nav.scrolled .hamburger span {
    background: var(--text);
}

/* ── HERO ────────────────────────────────────────── */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides { height: 100%; position: relative; }

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.slide.active { opacity: 1; }

.slide-1 {
    background:
        linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.42)),
        url('Images/sanya-portrait.jpeg') center 15% / cover no-repeat;
}
.slide-2 {
    background:
        linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.48)),
        url('Images/sanya-headshot.jpeg') center 20% / cover no-repeat;
}
.slide-3 {
    background:
        linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.52)),
        url('Images/podcast.jpg') center 25% / cover no-repeat;
}
.slide-4 {
    background:
        linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.48)),
        url('Images/yoga-class.jpg') center 30% / cover no-repeat;
}

.slide-content {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.slide-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #C4A06A;
    margin-bottom: 1.2rem;
}

.slide-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.2rem;
}

.slide-content h1 .script {
    font-family: 'Avigea', cursive;
    font-size: 72px;
    color: white;
    display: block;
    line-height: 1.15;
}

.script.large {
    font-family: 'Avigea', cursive;
    font-size: 72px;
    color: white;
}

.slide-sub {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.65);
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 2.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    line-height: 1;
}

.slide-arrow:hover { background: rgba(255,255,255,0.22); }
.prev { left: 1.8rem; }
.next { right: 1.8rem; }

.slide-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.38);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.25);
}

/* ── SITE STRIP ──────────────────────────────────── */

.site-strip {
    background: var(--cream);
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    padding: 1.4rem 2rem;
}

.strip-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
    transition: color 0.25s;
}

.strip-item:hover { color: var(--gold); }

.strip-num {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.7;
}

.strip-name {
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
}

.strip-divider {
    color: var(--gold);
    opacity: 0.35;
    font-size: 1.1rem;
    pointer-events: none;
}

/* ── ABOUT ───────────────────────────────────────── */

.about-section {
    background: var(--cream);
    padding: 6rem 2rem;
}

.about-split {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-photo {
    flex: 0 0 380px;
}

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

.about-inner {
    flex: 1;
    text-align: center;
}

.section-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #C4A06A;
    margin-bottom: 2rem;
}

.section-label::before,
.section-label::after {
    content: '—';
    margin: 0 0.75rem;
    opacity: 0.45;
}

.about-text {
    font-family: 'Avenir', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.85;
    color: #2A2A2A;
    text-align: center;
}

/* ── GRID ────────────────────────────────────────── */

.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, clamp(150px, 22vw, 270px));
    gap: 1px;
    background: white;
}

.grid-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}

.grid-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
}

.grid-block:hover::after {
    background: rgba(0,0,0,0.12);
}

.block-lifestyle {
    background:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
        url('Images/yoga-class.jpg') center / cover no-repeat;
}
.block-podcast {
    background:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
        url('Images/podcast.jpg') center / cover no-repeat;
}
.block-unbecoming {
    background:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
        url('Images/sanya-portrait.jpeg') center 15% / cover no-repeat;
}
.block-events {
    background:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
        url('Images/sanya-confidence.jpg') center / cover no-repeat;
}
.block-shop {
    background:
        linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.52)),
        url('Images/sanya-headshot.jpeg') center 20% / cover no-repeat;
}
.block-contact {
    background:
        linear-gradient(rgba(0,0,0,0.30), rgba(0,0,0,0.55)),
        url('Images/sanya-portrait.jpeg') 60% 10% / cover no-repeat;
}

.block-inner {
    position: relative;
    z-index: 1;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
}

.block-label {
    display: none;
}

.block-inner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    color: white;
    line-height: 1.3;
}

.grid-block .block-label,
.grid-block span,
.grid-block h2 {
    font-family: 'Outfit', sans-serif !important;
}

.block-arrow {
    display: none;
}

/* ── COMMUNITY ───────────────────────────────────── */

.community-section {
    background: #2C2020;
    padding: 7rem 2rem;
    text-align: center;
}

.community-inner {
    max-width: 680px;
    margin: 0 auto;
}

.community-section .section-label {
    color: #C4A06A;
}

.community-section .section-label::before,
.community-section .section-label::after {
    color: #C4A06A;
}

.community-heading {
    font-family: 'Avigea', cursive;
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.community-sub {
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3rem;
}

.community-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.community-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    width: 100%;
}

.community-field--full {
    grid-column: 1 / -1;
}

.community-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.community-field label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.45);
}

.community-field input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 0.6rem 0;
    font-family: 'Avenir', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: white;
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}

.community-field input::placeholder {
    color: rgba(255,255,255,0.3);
}

.community-field input:focus {
    border-color: #C4A06A;
}

.community-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 0.9rem 3rem;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.community-btn:hover {
    background: #C4A06A;
    border-color: #C4A06A;
}

.community-success {
    display: none;
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: #C4A06A;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .community-section { padding: 4rem 1.5rem; }
    .community-heading { font-size: 2.5rem; }
    .community-fields { grid-template-columns: 1fr; }
    .community-field--full { grid-column: 1; }
}

/* ── FOOTER ──────────────────────────────────────── */

.footer {
    background: var(--cream);
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    margin-bottom: 2.2rem;
}

.footer-logo .script {
    font-size: 48px;
    color: #C4A06A;
}

.gold { color: var(--gold); }

.footer-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 6px;
    color: #C4A06A;
    font-weight: 400;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: #555;
    font-weight: 500;
    transition: color 0.25s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.05em;
}

/* ── ABOUT ROLES ─────────────────────────────────── */

.about-roles {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #4A4A4A;
    white-space: nowrap;
    margin-bottom: 1.8rem;
}

/* ── INNER PAGES ─────────────────────────────────── */

.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding: 4rem 2.5rem;
}

.page-hero-inner {
    max-width: 800px;
    color: white;
}

.page-hero-inner .slide-label {
    margin-bottom: 1rem;
}

.page-hero-inner h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    font-weight: 400;
    letter-spacing: 4px;
    color: white;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.page-hero-inner .hero-sub {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.12em;
    opacity: 0.75;
    max-width: 500px;
    line-height: 1.6;
}

.page-content {
    background: var(--cream);
    padding: 5rem 2rem;
}

.page-content-inner {
    max-width: 720px;
    margin: 0 auto;
}

.page-content-inner h2 {
    font-family: 'Avenir', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 1.5rem;
    margin-top: 3.5rem;
}

.page-content-inner h2:first-child {
    margin-top: 0;
}

.page-content-inner p {
    font-family: 'Avenir', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: #8B7355;
    text-align: left;
    margin-bottom: 1.4rem;
}

.page-content-inner ul {
    list-style: none;
    margin: 1.2rem 0 1.8rem 0;
}

.page-content-inner ul li {
    font-family: 'Avenir', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #555;
    padding: 0.4rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.page-content-inner ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.7;
}

.page-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin: 3rem 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 3rem;
    transition: color 0.25s;
}

.back-link:hover { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 768px) {

    /* ── NAV ── */
    .nav { padding: 1rem 1.5rem; }
    .nav-cta { display: none; }
    .nav-tagline-arc {
        width: 150px;
        height: auto;
        margin-top: -5px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(250, 240, 228, 0.98);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.09);
        z-index: 99;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        color: var(--text);
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .hamburger { display: flex; }

    /* ── HERO ── */
    .slide-arrow { display: none; }

    .slide-content { padding: 1.5rem; }

    .slide-content h1 {
        font-size: clamp(1.8rem, 9vw, 3.5rem);
        letter-spacing: 2px;
    }

    .slide-content h1 .script {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .script.large {
        font-size: clamp(2.8rem, 13vw, 5rem);
    }

    .slide-1 {
        background:
            linear-gradient(rgba(0,0,0,0.28), rgba(0,0,0,0.42)),
            url('Images/sanya-portrait.jpeg') center 15% / cover no-repeat;
    }
    .slide-2 {
        background:
            linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.48)),
            url('Images/sanya-headshot.jpeg') center 20% / cover no-repeat;
    }
    .slide-3 {
        background:
            linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.52)),
            url('Images/podcast.jpg') center 25% / cover no-repeat;
    }
    .slide-4 {
        background:
            linear-gradient(rgba(0,0,0,0.32), rgba(0,0,0,0.48)),
            url('Images/yoga-class.jpg') center 30% / cover no-repeat;
    }

    /* ── ABOUT SECTION ── */
    .about-section { padding: 3.5rem 1.5rem; }

    .about-split {
        flex-direction: column;
        gap: 2rem;
    }

    .about-photo { flex: none; width: 100%; }

    .about-photo img {
        height: 320px;
        object-position: center 15%;
    }

    .about-inner { text-align: center; }

    .section-label { font-size: 13px; letter-spacing: 3px; }

    .about-roles {
        white-space: normal;
        font-size: 13px;
        letter-spacing: 0.08em;
    }

    .about-text { font-size: 17px; }

    /* ── GRID TILES ── */
    .grid-section {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 40vw);
    }

    .block-inner h2 {
        font-size: clamp(14px, 4.5vw, 28px);
        letter-spacing: 3px;
    }

    /* ── INNER PAGES ── */
    .page-hero {
        min-height: 45vh;
        padding: 1.5rem 1.5rem 2.5rem;
    }

    .page-hero-inner h1 {
        font-size: clamp(2rem, 10vw, 3.5rem);
        letter-spacing: 2px;
    }

    .page-hero-inner .hero-sub { font-size: 0.78rem; }

    .page-content { padding: 2.5rem 1.2rem; }

    .page-content-inner { max-width: 100%; }

    .page-content-inner h2 { font-size: 1.5rem; }

    .page-content-inner p { font-size: 17px; }

    /* ── FOOTER ── */
    .footer { padding: 3rem 1.5rem 2rem; }

    .footer-logo .script { font-size: 36px; }

    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* ── SITE STRIP ── */
    .site-strip {
        gap: 0.5rem 0.8rem;
        padding: 1.2rem 1.5rem;
    }

    .strip-name { font-size: 1rem; }
}

/* ── SMALL PHONES (< 480px) ──────────────────────── */
@media (max-width: 480px) {

    /* Grid: 1 column so tiles aren't too narrow */
    .grid-section {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 56vw);
    }

    /* Nav logo slightly smaller */
    .nav-logo .script { font-size: 1.55rem; }
    .nav-tagline-arc { width: 120px; margin-top: -4px; }

    /* Hero text tighter */
    .slide-content { padding: 1rem; }

    /* About photo shorter */
    .about-photo img { height: 260px; }

    /* Inner page hero */
    .page-hero { min-height: 38vh; }

    /* Content padding */
    .page-content { padding: 2rem 1rem; }
    .page-content-inner p { font-size: 16px; }
    .page-content-inner h2 { font-size: 1.3rem; }

    /* Community form */
    .community-section { padding: 3rem 1rem; }
    .community-heading { font-size: 2rem; }

    /* Footer links single column feel */
    .footer-links { gap: 0.75rem; }
    .footer-links a { font-size: 11px; letter-spacing: 0.15em; }
}
