*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



:root {

    --navy: #0a1628;

    --deep: #0d2240;

    --ocean: #0e3460;

    --teal: #1a5276;

    --gold: #c9a84c;

    --gold-lt: #e8c97a;

    --cream: #f5efe6;

    --white: #ffffff;

    --glass: rgba(255, 255, 255, 0.04);

}



html {
    scroll-behavior: smooth;
}

body {

    background: var(--navy);

    color: var(--cream);

    font-family: 'Jost', sans-serif;

    font-weight: 300;

    overflow-x: hidden;

}



/* ── NAV ── */

nav {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.4rem 4rem;

    background: linear-gradient(to bottom, rgba(10, 22, 40, 0.95), transparent);

    backdrop-filter: blur(4px);

}

.nav-logo {

    font-family: 'Cinzel', serif;

    font-size: 0.85rem;

    letter-spacing: 0.2em;

    color: var(--gold);

    text-transform: uppercase;

}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {

    font-family: 'Jost', sans-serif;

    font-size: 0.78rem;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: var(--cream);

    text-decoration: none;

    opacity: 0.8;

    transition: opacity 0.3s, color 0.3s;

}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold-lt);
}



/* ── HERO ── */

#hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    overflow: hidden;

    padding: 6rem 2rem 4rem;

}

.ocean-bg {

    position: absolute;
    inset: 0;
    z-index: 0;

    background:

        radial-gradient(ellipse 120% 80% at 50% 110%, #1a5276 0%, transparent 60%),

        radial-gradient(ellipse 80% 60% at 20% 80%, #0e3460 0%, transparent 55%),

        radial-gradient(ellipse 90% 70% at 80% 90%, #0d2240 0%, transparent 50%),

        linear-gradient(175deg, #0a1628 0%, #0d2240 40%, #0e3460 70%, #1a5276 100%);

}

.wave {

    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;

    border-radius: 50% 50% 0 0 / 30px;

    animation: waveFloat 8s ease-in-out infinite;

}

.wave-1 {
    height: 180px;
    background: rgba(26, 82, 118, 0.25);
    animation-delay: 0s;
}

.wave-2 {
    height: 140px;
    background: rgba(14, 52, 96, 0.3);
    animation-delay: -2s;
}

.wave-3 {
    height: 100px;
    background: rgba(201, 168, 76, 0.06);
    animation-delay: -4s;
}

@keyframes waveFloat {

    0%,
    100% {
        transform: translateY(0) scaleX(1);
    }

    50% {
        transform: translateY(-18px) scaleX(1.03);
    }

}

.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {

    position: absolute;
    width: 2px;
    height: 2px;

    border-radius: 50%;
    background: var(--gold);

    opacity: 0;
    animation: drift linear infinite;

}

@keyframes drift {

    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-10vh) translateX(40px);
        opacity: 0;
    }

}

.divider {

    width: 60px;
    height: 1px;

    background: linear-gradient(90deg, transparent, var(--gold), transparent);

    margin: 1.6rem auto;

}

.hero-eyebrow {

    position: relative;
    z-index: 2;

    font-family: 'Cinzel', serif;

    font-size: 0.72rem;
    letter-spacing: 0.35em;

    text-transform: uppercase;
    color: var(--gold);

    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;

}

.hero-title {

    position: relative;
    z-index: 2;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(3.5rem, 9vw, 7.5rem);

    font-weight: 300;
    line-height: 0.95;

    color: var(--white);

    opacity: 0;
    animation: fadeUp 1s 0.55s forwards;

}

.hero-title em {
    font-style: italic;
    color: var(--gold-lt);
    display: block;
}

.hero-sub {

    position: relative;
    z-index: 2;

    font-size: 0.85rem;
    letter-spacing: 0.22em;

    text-transform: uppercase;
    color: var(--cream);

    opacity: 0;
    animation: fadeUp 1s 0.8s forwards;

}

.hero-tagline {

    position: relative;
    z-index: 2;

    font-family: 'Cormorant Garamond', serif;

    font-size: 1.3rem;
    font-style: italic;

    color: rgba(245, 239, 230, 0.8);
    max-width: 600px;

    opacity: 0;
    animation: fadeUp 1s 1s forwards;

}

.hero-cta {

    position: relative;
    z-index: 2;

    margin-top: 2.5rem;
    display: inline-block;

    padding: 1rem 3rem;

    border: 1px solid var(--gold);
    color: var(--gold);

    font-family: 'Cinzel', serif;
    font-size: 0.75rem;

    letter-spacing: 0.25em;
    text-transform: uppercase;

    text-decoration: none;
    background: transparent;

    cursor: pointer;

    opacity: 0;
    animation: fadeUp 1s 1.2s forwards;

    transition: background 0.4s, color 0.4s;

}

.hero-cta:hover {
    background: var(--gold);
    color: var(--navy);
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.scroll-hint {

    position: absolute;
    bottom: 2.5rem;
    left: 50%;

    transform: translateX(-50%);
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;

    opacity: 0;
    animation: fadeUp 1s 1.8s forwards;

}

.scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.scroll-line {

    width: 1px;
    height: 40px;

    background: linear-gradient(to bottom, var(--gold), transparent);

    animation: scrollPulse 2s ease-in-out infinite;

}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }

}



/* ── SHARED SECTION STYLES ── */

section {
    position: relative;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 3rem;
}

.section-label {

    font-family: 'Cinzel', serif;
    font-size: 0.68rem;

    letter-spacing: 0.35em;
    text-transform: uppercase;

    color: var(--gold);
    margin-bottom: 1rem;

}

.section-title {

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(2.4rem, 5vw, 4rem);

    font-weight: 300;
    line-height: 1.1;

    color: var(--white);
    margin-bottom: 1.5rem;

}

.section-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.gold-rule {

    width: 100%;
    height: 1px;

    background: linear-gradient(90deg, transparent, var(--gold), transparent);

}

.section-sep {

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;

    background: linear-gradient(90deg, transparent, var(--gold), transparent);

}



/* ── ABOUT ── */

#about {
    background: var(--deep);
}

.about-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 5rem;
    align-items: center;

}

.about-text p {

    font-size: 1.05rem;
    line-height: 1.85;

    color: rgba(245, 239, 230, 0.82);
    margin-bottom: 1.4rem;

}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text .tagline-pull {

    font-family: 'Cormorant Garamond', serif;

    font-size: 1.5rem;
    font-style: italic;

    color: var(--gold-lt);
    line-height: 1.5;

    border-left: 2px solid var(--gold);

    padding-left: 1.5rem;
    margin: 2rem 0;

}



/* portrait */

.portrait-wrap {
    position: relative;
}

.portrait-frame {

    width: 100%;
    aspect-ratio: 3/4;

    overflow: hidden;

    border: 1px solid rgba(201, 168, 76, 0.3);

}

.portrait-frame img {

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center 15%;

}

.portrait-accent {

    position: absolute;
    bottom: -14px;
    right: -14px;

    width: 70px;
    height: 70px;

    border-right: 2px solid var(--gold);

    border-bottom: 2px solid var(--gold);

}

.portrait-accent-tl {

    position: absolute;
    top: -14px;
    left: -14px;

    width: 70px;
    height: 70px;

    border-left: 2px solid var(--gold);

    border-top: 2px solid var(--gold);

}



/* ── OFFERINGS ── */

#offerings {
    background: var(--navy);
}

.offerings-intro {

    max-width: 680px;

    font-size: 1.05rem;
    line-height: 1.85;

    color: rgba(245, 239, 230, 0.8);
    margin-bottom: 4rem;

}

.offerings-grid {

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;

}

.offering-card {

    padding: 2.5rem 2rem;

    border: 1px solid rgba(201, 168, 76, 0.2);

    background: var(--glass);

    transition: transform 0.3s, border-color 0.3s;

    position: relative;
    overflow: hidden;

}

.offering-card::before {

    content: '';

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;

    background: linear-gradient(90deg, transparent, var(--gold), transparent);

    opacity: 0;
    transition: opacity 0.3s;

}

.offering-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.5);
}

.offering-card:hover::before {
    opacity: 1;
}

.offering-card.featured {

    border-color: var(--gold);

    background: rgba(201, 168, 76, 0.05);

    grid-column: span 2;

}

.offering-card.featured::before {
    opacity: 1;
}

.offering-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.offering-name {

    font-family: 'Cinzel', serif;
    font-size: 0.75rem;

    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--gold);
    margin-bottom: 0.8rem;

}

.offering-title {

    font-family: 'Cormorant Garamond', serif;

    font-size: 1.8rem;
    font-weight: 300;

    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;

}

.offering-title em {
    font-style: italic;
    color: var(--gold-lt);
}

.offering-desc {

    font-size: 0.92rem;
    line-height: 1.8;

    color: rgba(245, 239, 230, 0.75);
    margin-bottom: 1.5rem;

}

.offering-cta {

    display: inline-block;
    padding: 0.7rem 1.8rem;

    border: 1px solid var(--gold);
    color: var(--gold);

    font-family: 'Cinzel', serif;
    font-size: 0.68rem;

    letter-spacing: 0.2em;
    text-transform: uppercase;

    text-decoration: none;
    background: transparent;

    transition: background 0.3s, color 0.3s;

}

.offering-cta:hover {
    background: var(--gold);
    color: var(--navy);
}



/* featured offering (retreat) horizontal layout */

.offering-card.featured .featured-inner {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;

}

.offering-card.featured .offering-title {
    font-size: 2.4rem;
}



/* ── LINEAGE ── */

#lineage {
    background: var(--deep);
}

.lineage-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 5rem;
    align-items: start;

}

.lineage-text p {

    font-size: 1.05rem;
    line-height: 1.85;

    color: rgba(245, 239, 230, 0.82);
    margin-bottom: 1.4rem;

}

.credentials {

    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;

}

.cred {

    padding: 0.5rem 1.1rem;

    border: 1px solid rgba(201, 168, 76, 0.3);

    font-size: 0.73rem;
    letter-spacing: 0.05em;

    color: var(--gold-lt);
    line-height: 1.5;

}

.lineage-pillars {

    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;

}

.l-pillar {

    padding: 1.5rem 1.8rem;

    border: 1px solid rgba(201, 168, 76, 0.15);

    background: var(--glass);

    transition: border-color 0.3s, transform 0.3s;

}

.l-pillar:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateX(6px);
}

.l-pillar-name {

    font-family: 'Cinzel', serif;
    font-size: 0.68rem;

    letter-spacing: 0.2em;
    text-transform: uppercase;

    color: var(--gold);
    margin-bottom: 0.5rem;

}

.l-pillar p {

    font-size: 0.9rem;
    line-height: 1.7;

    color: rgba(245, 239, 230, 0.7);

}



/* ── SPEAKING ── */

#speaking {
    background: var(--navy);
}

.speaking-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;

}

.speaking-text p {

    font-size: 1.05rem;
    line-height: 1.85;

    color: rgba(245, 239, 230, 0.82);
    margin-bottom: 1.4rem;

}

.speaking-topics {

    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;

}

.topic {

    display: flex;
    align-items: flex-start;
    gap: 0.8rem;

    padding: 1rem 1.2rem;

    border: 1px solid rgba(201, 168, 76, 0.15);

    background: var(--glass);

}

.topic-icon {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.topic p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(245, 239, 230, 0.75);
}



/* ── CONTACT ── */

#contact {
    background: var(--deep);
}

.contact-inner {

    max-width: 700px;
    margin: 0 auto;
    text-align: center;

}

.contact-inner p {

    font-size: 1.05rem;
    line-height: 1.85;

    color: rgba(245, 239, 230, 0.8);
    margin-bottom: 2rem;

}

.contact-btn {

    display: inline-block;
    padding: 1.1rem 3.5rem;

    background: var(--gold);
    color: var(--navy);

    font-family: 'Cinzel', serif;
    font-size: 0.78rem;

    letter-spacing: 0.25em;
    text-transform: uppercase;

    text-decoration: none;

    transition: background 0.3s;

}

.contact-btn:hover {
    background: var(--gold-lt);
}



/* ── FOOTER ── */

footer {

    background: #060f1c;
    text-align: center;

    padding: 3rem 2rem;

    border-top: 1px solid rgba(201, 168, 76, 0.15);

}

.footer-logo {

    font-family: 'Cormorant Garamond', serif;

    font-size: 2rem;
    font-weight: 300;
    font-style: italic;

    color: var(--gold-lt);
    margin-bottom: 0.5rem;

}

.footer-tagline {

    font-size: 0.75rem;
    letter-spacing: 0.2em;

    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.35);

    margin-bottom: 1.5rem;

}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {

    font-size: 0.75rem;
    letter-spacing: 0.15em;

    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.4);

    text-decoration: none;
    transition: color 0.3s;

}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.72rem;
    color: rgba(245, 239, 230, 0.2);
}



/* ── RESPONSIVE ── */

@media (max-width: 900px) {

    nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .about-grid,
    .lineage-grid,
    .speaking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .offering-card.featured {
        grid-column: span 1;
    }

    .offering-card.featured .featured-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-inner {
        padding: 5rem 1.5rem;
    }

}

@media (max-width: 600px) {

    .nav-links {
        display: none;
    }

}