:root {
    /* Color Palette */
    --bg-dark: #0a0a0c;
    --bg-surface: #121216;
    --primary: #d4a373;
    /* Muted Gold/Amber */
    --primary-hover: #faedcd;
    --text-main: #f8f9fa;
    --text-muted: #adb5bd;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;

    /* Spacing */
    --section-padding: 100px 20px;
    --container-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

section {
    padding: var(--section-padding);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-dark) 40%, rgba(10, 10, 12, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

.hero-tagline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-img-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
}

/* Grid Layouts */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offering-card {
    padding: 40px;
    transition: all 0.4s ease;
}

.offering-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.offering-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.offering-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.offering-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Positioning Statement Section */
.statement {
    background-color: var(--bg-surface);
    text-align: center;
}

.statement-box {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.statement-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--text-main);
    line-height: 1.4;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, var(--bg-dark) 100%);
    }

    .hero {
        align-items: flex-end;
        padding-bottom: 80px;
    }

    .hero-img-container {
        width: 100%;
    }

    .hero-content {
        text-align: center;
        padding: 0 15px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        width: 100%;
        margin-top: 30px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Schedule Section */
.schedule {
    background-color: var(--bg-dark);
}

.schedule-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px;
    align-items: center;
}

.calendar-mockup {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header .month {
    font-weight: 600;
    font-size: 1.1rem;
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
    padding: 5px;
}

.nav-btn:hover {
    color: var(--primary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}

.day-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.day {
    padding: 12px 0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.day.muted {
    opacity: 0.2;
}

.day.disabled {
    opacity: 0.15;
    cursor: not-allowed;
    pointer-events: none;
}

.day.today {
    border: 1px solid var(--primary);
    color: var(--primary);
}

.day.available {
    background: rgba(212, 163, 115, 0.1);
    color: var(--primary);
    cursor: pointer;
}

.day.available:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.day.available.active {
    background: var(--primary);
    color: var(--bg-dark);
}

.schedule-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.schedule-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.schedule-details {
    margin-bottom: 40px;
}

.schedule-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
}

.schedule-details i {
    color: var(--primary);
    width: 20px;
}

@media (max-width: 992px) {
    .schedule-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 40px;
    }

    .calendar-mockup {
        padding: 20px;
    }

    .calendar-header {
        margin-bottom: 20px;
    }

    .calendar-grid {
        gap: 5px;
    }

    .day {
        padding: 8px 0;
        font-size: 0.8rem;
    }

    .time-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .time-slot {
        padding: 12px;
        font-size: 0.8rem;
    }

    .schedule-info {
        text-align: center;
    }

    .schedule-info h3 {
        font-size: 1.75rem;
    }

    .schedule-details {
        display: inline-block;
        text-align: left;
        margin: 0 auto 30px;
    }
}

.time-selection-wrapper {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.selection-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: var(--font-main);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.time-slot:hover {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.05);
}

.time-slot.active {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

/* Program Details Section */
.program-details {
    background-color: var(--bg-surface);
}

.program-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.program-subtitle {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 10px 0 30px;
    font-weight: 600;
}

.program-hook {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 30px;
}

.program-hook span {
    color: var(--primary);
}

.program-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.program-structure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.structure-card {
    padding: 40px;
}

.structure-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.structure-card ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.structure-card ul li i {
    color: var(--primary);
    margin-right: 15px;
}

.subsection-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

/* Journey Roadmap (Timeline) */
.journey-roadmap {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding-left: 50px;
}

.journey-roadmap::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.journey-step {
    position: relative;
    margin-bottom: 60px;
}

.step-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.step-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.05);
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-hook {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.step-list {
    margin: 15px 0;
}

.step-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.step-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.step-note {
    font-style: italic;
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 15px;
    border-top: 1px solid var(--glass-border);
    padding-top: 10px;
}

/* Program Outcomes & For Whom */
.outcomes-grid,
.for-whom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
    /* Ensure cards match height */
}

.outcomes-list,
.optional-support,
.for-whom-card {
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.outcomes-list h4,
.optional-support h4,
.for-whom-card h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.outcomes-list ul li,
.optional-support ul li,
.for-whom-card ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    /* Align icons with top of text */
    gap: 15px;
    line-height: 1.5;
}

.outcomes-list i,
.optional-support i,
.for-whom-card i {
    flex-shrink: 0;
    width: 20px;
    /* Fixed width for icon column */
    text-align: center;
    margin-top: 4px;
    /* Manual offset for perfect vertical centering with first line */
}

.outcomes-list i,
.for-whom-card.green i {
    color: #4caf50;
}

.for-whom-card.red i {
    color: #f44336;
}

.optional-support {
    /* Ensure glass look is consistent if not already */
    background: rgba(255, 255, 255, 0.03);
}

.optional-support ul li {
    color: var(--text-muted);
}

.for-whom-card.green {
    background: rgba(76, 175, 80, 0.03);
}

.for-whom-card.red {
    background: rgba(244, 67, 54, 0.03);
}

/* Program CTA */
.program-cta {
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
}

.program-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.program-cta p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

@media (max-width: 768px) {

    .program-structure-grid,
    .outcomes-grid,
    .for-whom-grid {
        grid-template-columns: 1fr;
    }

    .journey-roadmap {
        padding-left: 40px;
    }
}

/* About Section */
.about-section {
    background-color: var(--bg-dark);
}

.narr-container {
    max-width: 900px;
}

.narrative {
    margin-top: 50px;
}

.narr-lead {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.narr-highlight {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary);
    margin: 40px 0;
    line-height: 1.2;
}

.narrative p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.narr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.narr-block h4 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.narr-note {
    font-style: italic;
    color: var(--primary) !important;
    font-size: 0.95rem !important;
    margin-top: 15px;
}

.philosophy-box {
    padding: 40px;
    margin: 60px 0;
    border-left: 4px solid var(--primary);
    border-radius: 0 20px 20px 0;
}

.philosophy-box p {
    color: var(--text-main);
    font-size: 1.2rem;
}

.narr-closing {
    font-size: 1.2rem !important;
    color: var(--text-main) !important;
    font-weight: 600;
    margin-top: 40px;
}

/* Approach Pillars */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 100px 0 80px;
}

.approach-item {
    text-align: center;
    padding: 30px;
}

.approach-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.approach-item h5 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.approach-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Why Box */
.why-it-exists {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.why-it-exists h3 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.why-box {
    padding: 60px;
}

.why-box p {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-muted);
}

.why-box span {
    color: var(--primary);
    display: block;
    margin-top: 10px;
}

.why-box hr {
    border: none;
    height: 1px;
    background: var(--glass-border);
    margin: 40px auto;
    width: 60px;
}

@media (max-width: 768px) {

    .narr-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

/* Expanded Offerings Styles */
.offering-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.offering-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offering-details {
    margin: 20px 0;
    text-align: left;
}

.offering-details li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.offering-details i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 4px;
}

.offering-card.coming-soon {
    opacity: 0.8;
}

.offering-card .badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.offering-card .btn,
.offering-card .btn-text {
    margin-top: 30px;
    align-self: flex-start;
}

.btn-text:hover {
    color: var(--primary-hover);
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.newsletter-box {
    padding: 80px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 50px;
    color: var(--text-main);
    font-family: var(--font-main);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }
}