/*==================================================
MOUNTAIN STRONG
STYLE.CSS
----------------------------------------------------
1. Reset
2. Variables
3. Base
4. Typography
5. Layout
6. Buttons
7. Scrollbar
8. Utilities
==================================================*/

/*==================================================
TYPOGRAPHY
==================================================*/

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/static/Manrope-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/static/Manrope-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/static/Manrope-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/static/Manrope-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope/static/Manrope-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/*==================================================
RESET
==================================================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

picture {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

input,
textarea,
select {
    font: inherit;
}

ul {
    list-style: none;
}

/*==================================================
ROOT
==================================================*/

:root {
    /* Colors */

    --primary: #c97a40;
    --primary-dark: #b06834;
    --primary-mid: #e8a85a;
    --primary-lite: #ffd166;

    --white: #ffffff;
    --warm: #faf8f4;
    --sand: #f2eee7;

    --charcoal: #222222;
    --charcoal-rgb: 20, 24, 28;
    --stone: #8e8a84;
    --forest: #415142;

    --border: #e7e2da;

    /* Typography */

    --font: "Manrope", sans-serif;

    --h1: clamp(3rem, 7vw, 6rem);
    --h2: clamp(2.2rem, 5vw, 4rem);
    --h3: clamp(1.3rem, 2vw, 1.8rem);

    --body: 1.05rem;
    --small: 0.95rem;

    /* Widths */

    --container: 1280px;
    --content: 760px;

    /* Radius */

    --radius: 18px;
    --radius-large: 34px;

    /* Shadows */

    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

    --shadow-large: 0 40px 90px rgba(0, 0, 0, 0.12);

    /* Animation */

    --transition: 0.35s ease;
}

/*==================================================
BASE
==================================================*/

body {
    font-family: var(--font);

    background: var(--charcoal);

    color: var(--charcoal);

    line-height: 1.75;

    font-size: var(--body);

    font-weight: 400;

    text-rendering: optimizeLegibility;

    -webkit-font-smoothing: antialiased;
}

main {
    overflow: hidden;
}

section {
    position: relative;
}

::selection {
    background: var(--primary);

    color: white;
}

/*==================================================
TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -0.03em;

    color: var(--charcoal);
}

h1 {
    font-size: var(--h1);

    max-width: 13ch;
}

h2 {
    font-size: var(--h2);

    max-width: 16ch;
}

h3 {
    font-size: var(--h3);
}

p {
    color: var(--charcoal);

    max-width: 65ch;
}

.section-label {
    display: inline-block;

    margin-bottom: 1rem;

    text-transform: uppercase;

    letter-spacing: 0.18em;

    font-size: 0.78rem;

    font-weight: 700;

    color: var(--primary);
}

.section-heading {
    margin-bottom: 5rem;
}

.section-heading h2 {
    margin-bottom: 1.5rem;
}

/*==================================================
LAYOUT
==================================================*/

.container {
    width: min(92%, var(--container));

    margin-inline: auto;
}

.section {
    padding: 8rem 0;
}

.narrow {
    max-width: var(--content);
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

/*==================================================
BUTTONS
==================================================*/

.btn-primary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 0.75rem;

    padding: 1rem 2rem;

    background: var(--primary);

    color: white;

    border-radius: 999px;

    font-weight: 700;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 1rem 2rem;

    border-radius: 999px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    color: white;

    backdrop-filter: blur(12px);

    transition: var(--transition);
}

.btn-secondary:hover {
    background: white;

    color: var(--charcoal);
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    margin-bottom: 2rem;

    color: var(--forest);

    font-weight: 700;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary);

    transform: translateX(6px);
}

/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--sand);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);

    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/*==================================================
SCROLL PROGRESS
==================================================*/

.scroll-progress {
    position: fixed;

    top: 0;

    left: 0;

    width: 0%;

    height: 3px;

    background: var(--primary);

    z-index: 9999;
}

/*==================================================
UTILITIES
==================================================*/

.reveal {
    opacity: 0;

    transform: translateY(60px);

    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}

.shadow {
    box-shadow: var(--shadow);
}

.rounded {
    border-radius: var(--radius-large);
}

.hidden {
    display: none;
}

/*==================================================
HEADER
==================================================*/

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    transition: all 0.35s ease;
}

.site-header.scrolled {
    background: rgba(var(--charcoal-rgb), 0.85);

    backdrop-filter: blur(16px);

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);

    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 90px;
}

/*==================================================
LOGO
==================================================*/

.logo {
    display: flex;

    /* flex-direction: column;

    line-height: 1; */
}

.logo img {
    height: 95px;
    width: auto;
    padding-top: 5px;
    border: none;
}

/* .logo-top {
    font-size: 1.15rem;

    font-weight: 800;

    letter-spacing: -0.04em;

    color: var(--primary-mid);
}

.logo-bottom {
    margin-top: 0.2rem;

    font-size: 0.72rem;

    letter-spacing: 0.35em;

    color: var(--primary-mid);

    text-transform: uppercase;
} */

/*==================================================
DESKTOP NAVIGATION
==================================================*/

.desktop-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 3rem);
    flex: 1;
}

.desktop-nav a {
    position: relative;

    font-weight: 600;

    color: var(--white);

    transition: var(--transition);
}

.desktop-nav a:not(.nav-book)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--primary-lite);

    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--primary-lite);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.brand-phone {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 0.05rem;
    padding-bottom: 0.5rem;
    letter-spacing: 1.2px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-mid);
}

.nav-book {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0.95rem 1.8rem;

    border-radius: 999px;

    background: var(--primary-dark);

    color: var(--white);

    font-weight: 700;

    transition: var(--transition);
}

.nav-book:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);
}

/*==================================================
MOBILE TOGGLE
==================================================*/

.mobile-toggle {
    display: none;

    width: 46px;

    height: 46px;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 6px;
}

.mobile-toggle span {
    width: 28px;

    height: 2px;

    background: var(--white);

    transition: 0.3s;
}

/*==================================================
MOBILE MENU
==================================================*/

.mobile-nav {
    position: fixed;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 1.4rem;

    background: rgba(250, 248, 244, 0.98);

    backdrop-filter: blur(20px);

    transform: translateX(100%);

    transition: 0.45s ease;

    z-index: 2000;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    font-size: 1.4rem;

    font-weight: 700;

    transition: 0.3s;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.close-menu {
    position: absolute;

    top: 30px;

    right: 30px;

    font-size: 2.5rem;

    color: var(--charcoal);
}

.mobile-book {
    display: none;

    padding: 0.65rem 1.15rem;

    background: var(--primary);

    color: #fff;

    border-radius: 999px;

    font-size: 0.9rem;

    font-weight: 700;

    white-space: nowrap;

    transition: 0.3s;
}

/*==================================================
HERO
==================================================*/

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.hero-image {
    position: absolute;

    inset: 0;

    z-index: -2;
}

.hero-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.62) 10%,
            rgba(0, 0, 0, 0.28) 55%,
            rgba(0, 0, 0, 0.1) 100%);

    z-index: -1;
}

.hero-content {
    padding-top: 8rem;
}

.hero-text {
    max-width: 720px;

    color: #fff;
}

.hero-text h1 {
    margin: 1rem 0;

    color: #fff;
}

.hero-description {
    margin-bottom: 2.5rem;

    font-size: 1.2rem;

    color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
    text-transform: uppercase;

    letter-spacing: 0.22em;

    font-size: 0.8rem;

    color: rgba(255, 255, 255, 0.75);

    margin-top: 20px;
}

.hero-buttons {
    display: flex;

    gap: 1rem;

    margin-bottom: 2.5rem;

    flex-wrap: wrap;
}

.hero-location {
    display: flex;

    align-items: center;

    gap: 0.75rem;

    color: rgba(255, 255, 255, 0.85);

    font-size: 0.95rem;

    padding-bottom: 20px;
}

.hero-location svg {
    flex-shrink: 0;
}

/*==================================================
TRUST BAR
==================================================*/

.trust-bar {
    background: #fff;

    border-bottom: 1px solid var(--border);
}

.trust-bar .container {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 3rem;

    padding: 2.75rem 0;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 1rem;
}

.trust-icon {
    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: var(--sand);

    display: grid;

    place-items: center;

    font-size: 1.4rem;

    color: var(--primary);
}

.trust-item h3 {
    font-size: 1.05rem;

    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.92rem;

    color: var(--stone);
}

/*==================================================
ABOUT
==================================================*/

.about {
    background: var(--warm);
}

.about-grid {
    display: grid;

    grid-template-columns: 1.1fr 1fr;

    gap: 6rem;

    align-items: center;
}

.about-image {
    border-radius: 32px;

    overflow: hidden;

    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
}

.about-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content {
    max-width: 620px;
}

.about-content h2 {
    margin-bottom: 2rem;
}

.about-content p {
    margin-bottom: 1.6rem;
}

.about-content .btn-primary {
    margin-top: 1rem;
}

/*==================================================
SECTION HEADINGS
==================================================*/

.section-heading {
    text-align: center;

    max-width: 760px;

    margin: 0 auto 5rem;
}

.section-heading h2 {
    margin: 0 auto;
}

.section-heading p {
    margin: 1.5rem auto 0;
}

/*=====================================
Credentials
=====================================*/

.credentials {
    background: var(--sand);
}

.credentials-grid {
    display: grid;

    grid-template-columns: 1.6fr 0.9fr;

    gap: 6rem;

    align-items: start;

    margin-top: 4rem;
}

.credentials-content {
    max-width: 700px;
}

.credentials-content h3 {
    margin-bottom: 1.5rem;
}

.credentials-content p {
    margin-bottom: 1.5rem;

    color: var(--text-muted);

    line-height: 1.9;
}

.credentials-sidebar {
    border-left: 1px solid var(--border);

    padding-left: 2.5rem;
}

.credential-group+.credential-group {
    margin-top: 3rem;
}

.credential-group h4 {
    font-size: 0.85rem;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    color: var(--primary);

    margin-bottom: 1.25rem;
}

.credential-group ul {
    list-style: none;

    padding: 0;

    margin: 0;
}

.credential-group li {
    position: relative;

    padding-left: 1.5rem;

    margin-bottom: 1rem;

    line-height: 1.6;
}

.credential-group li::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0.55rem;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--primary);
}

.credential-group p {
    color: var(--text-muted);

    line-height: 1.8;

    margin: 0;
}

/*==================================================
Testimonials + Responsive
==================================================*/

.testimonials {
    background: var(--warm);
}

.testimonials::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;
}

.testimonials .container {
    max-width: 1200px;
}

.testimonial-aside {
    padding-right: 2rem;
    border-right: 1px solid var(--border);
}

.testimonial-content h3 {
    margin: 0 0 0.35rem;
    font-size: 1.6rem;
}

.testimonial-role {
    margin-bottom: 2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

/*==================================================
Featured Story
==================================================*/

.testimonial-feature {
    display: grid;

    grid-template-columns: 360px 1fr;

    gap: 5rem;

    margin: 5rem 0 7rem;

    padding-bottom: 5rem;

    border-bottom: 1px solid var(--border);
}

.testimonial-meta {
    position: sticky;

    top: 120px;
}

.featured-label {
    display: inline-block;

    margin-bottom: 1rem;

    letter-spacing: 0.2em;

    text-transform: uppercase;

    font-size: 0.75rem;

    color: var(--primary);
}

.testimonial-meta h3 {
    font-size: 2rem;

    margin-bottom: 0.75rem;
}

.testimonial-meta p {
    color: var(--text-muted);

    line-height: 1.7;

    margin-bottom: 3rem;
}

.pull-quote {
    font-size: clamp(2.2rem, 3vw, 3rem);

    line-height: 1.05;

    margin-top: 3rem;
}

.feature-body {
    font-size: 1.05rem;

    line-height: 2;

    color: var(--text-muted);
}

.feature-body p {
    margin-bottom: 2rem;
}

.feature-body strong {
    color: var(--charcoal);
}

.feature-body::first-letter {
    float: left;

    font-size: 4.5rem;

    line-height: 0.8;

    padding-right: 0.6rem;

    color: var(--primary);

    font-weight: 600;
}

/*=========================
Large Review
==========================*/

.testimonial-large {
    max-width: 900px;

    margin: 0 auto 6rem;

    padding-bottom: 4rem;

    border-bottom: 1px solid var(--border);
}

.testimonial-large blockquote {
    font-size: 2rem;

    margin-bottom: 2rem;
}

.testimonial-large p {
    line-height: 2;
}

/*=========================
Two Column
==========================*/

.testimonial-row {
    display: grid;

    grid-template-columns: 1fr 1.35fr;

    gap: 4rem;

    margin-bottom: 6rem;
}

.testimonial {
    border-top: 1px solid var(--border);

    padding-top: 2rem;
}

.testimonial blockquote {
    font-size: 1.35rem;

    margin-bottom: 1.5rem;

    line-height: 1.45;
}

.testimonial p {
    line-height: 1.9;

    color: var(--text-muted);
}

/*=========================
Center Quote
==========================*/

.testimonial-center {
    max-width: 700px;

    margin: 0 auto;

    text-align: center;

    border-top: 1px solid var(--border);

    padding-top: 3rem;
}

.testimonial-center blockquote {
    font-size: 2rem;

    margin-bottom: 1rem;
}

/*==================================================
Responsive
==================================================*/

@media (max-width: 992px) {
    .testimonial-feature {
        grid-template-columns: 1fr;
    }

    .testimonial-meta {
        position: static;
    }

    .testimonial-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonial-feature {
        margin: 3rem 0 4rem;

        padding-bottom: 3rem;
    }

    .pull-quote {
        font-size: 2rem;
    }

    .feature-body {
        line-height: 1.8;
    }

    .feature-body::first-letter {
        font-size: 3rem;
    }

    .testimonial blockquote {
        font-size: 1.25rem;
    }
}

/*==================================================
PHILOSOPHY
==================================================*/

.philosophy {
    background: #fff;
}

.philosophy-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 4rem;
}

.philosophy-item {
    position: relative;

    padding-right: 2rem;
}

.philosophy-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 1px;

    height: 100%;

    background: var(--border);
}

.philosophy-item .number {
    display: block;

    margin-bottom: 1.25rem;

    font-size: 4rem;

    font-weight: 800;

    color: rgba(201, 122, 64, 0.12);

    line-height: 1;
}

.philosophy-item h3 {
    margin-bottom: 1rem;

    font-size: 2rem;
}

.philosophy-item p {
    max-width: 32ch;
}

/*==================================================
PROGRAMS
==================================================*/

.programs {
    background: var(--warm);
}

.program {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 700px;

    align-items: center;
}

.program.reverse .program-image {
    order: 2;
}

.program.reverse .program-content {
    order: 1;
}

.program-image {
    overflow: hidden;

    height: 100%;
}

.program-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.9s ease;
}

.program:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 5vw;

    max-width: 620px;

    margin: auto;
}

.program-content h2 {
    margin-bottom: 1.5rem;
}

.program-content p {
    margin-bottom: 2rem;
}

.program-content .text-link {
    margin-bottom: 2rem;
}

.program-content .btn-primary {
    margin-top: 0.5rem;
}

/*==================================================
PROGRAM IMAGE OVERLAY
==================================================*/

.program-image {
    position: relative;
}

.program-image::before {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));

    opacity: 0;

    transition: 0.5s;
}

.program:hover .program-image::before {
    opacity: 1;
}

/*==================================================
SECTION SPACING
==================================================*/

.program+.program {
    border-top: 1px solid var(--border);
}

/*==================================================
TEXT EMPHASIS
==================================================*/

.program-content strong {
    color: var(--charcoal);

    font-weight: 700;
}

.program-content em {
    font-style: normal;

    color: var(--primary);
}

/*==================================================
SUBTLE IMAGE REVEAL
==================================================*/

.about-image,
.program-image {
    display: block;
    width: 100%;
    border-radius: inherit;
}

.program-image::after {
    content: "";
    position: absolute;
    inset: 5px;

    border: 1px solid var(--primary-mid);

    border-radius: calc(20px - 5px);

    pointer-events: none;
}

/*==================================================
TRAINING SPACE
==================================================*/

.training-space {
    background: var(--warm);
}

.space-hero {
    width: 100%;

    height: 70vh;

    overflow: hidden;
}

.space-hero img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}

.space-hero:hover img {
    transform: scale(1.05);
}

.space-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 5rem;

    align-items: start;

    padding-top: 6rem;
}

.space-content h2 {
    margin-bottom: 2rem;
}

.space-content p {
    margin-bottom: 1.5rem;
}

.space-features {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1rem 2rem;

    margin: 2.5rem 0;
}

.space-features li {
    position: relative;

    padding-left: 1.5rem;

    color: var(--charcoal);

    font-weight: 600;
}

.space-features li::before {
    content: "";

    position: absolute;

    left: 0;

    top: 0.55rem;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--primary);
}

.space-map {
    overflow: hidden;

    border-radius: var(--radius-large);

    box-shadow: var(--shadow);
}

.space-map iframe {
    width: 100%;

    height: 600px;

    border: 0;
}

/*==================================================
LIFESTYLE GALLERY
==================================================*/

.gallery {
    background: var(--sand);
}

.gallery-grid {
    width: min(95%, 1500px);

    margin: auto;

    columns: 3 320px;

    column-gap: 1.5rem;
}

.gallery-item {
    position: relative;

    margin-bottom: 1.5rem;

    overflow: hidden;

    border-radius: var(--radius);

    break-inside: avoid;

    cursor: pointer;
}

.gallery-item img {
    width: 100%;

    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);

    opacity: 0;

    transition: 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/*==================================================
COMMUNITY
==================================================*/

.community {
    background: #fff;

    overflow: hidden;
}

.community::before {
    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(circle at top right,
            rgba(201, 122, 64, 0.06),
            transparent 45%);

    pointer-events: none;
}

.community-grid {
    display: grid;

    grid-template-columns: 1.3fr 0.8fr;

    gap: 6rem;

    align-items: center;
}

.community-content h2 {
    margin-bottom: 1.75rem;
}

.community-locations {
    background: var(--warm);

    border-radius: var(--radius-large);

    padding: 3rem;

    box-shadow: var(--shadow-sm);
}

.community-locations ul {
    display: grid;

    gap: 1.25rem;
}

.community-locations li {
    font-size: 1.2rem;

    font-weight: 700;

    color: var(--charcoal);

    padding-bottom: 1rem;

    border-bottom: 1px solid var(--border);
}

.community-locations li:last-child {
    border: none;

    padding-bottom: 0;
}

/*==================================================
FAQ
==================================================*/

.faq {
    background: var(--warm);
}

.faq-list {
    max-width: 900px;

    margin: auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    text-align: left;

    padding: 1.75rem 0;

    font-size: 1.15rem;

    font-weight: 700;

    color: var(--charcoal);
}

.faq-question span {
    font-size: 2rem;

    color: var(--primary);

    transition: 0.35s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.45s ease;
}

.faq-answer p {
    padding: 0 0 2rem;
}

/*==================================================
CALL TO ACTION
==================================================*/

.cta {
    position: relative;

    min-height: 75vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.cta-background {
    position: absolute;

    inset: 0;

    z-index: -2;
}

.cta-background img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.cta-overlay {
    position: absolute;

    inset: 0;

    background: rgba(20, 20, 20, 0.55);

    z-index: -1;
}

.cta-content {
    max-width: 760px;

    text-align: center;

    color: #fff;
}

.cta-content h2 {
    color: #fff;

    margin: 1.5rem auto;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.88);

    margin: 0 auto 2.5rem;
}

/*==================================
Contact
==================================*/

.contact {
    background: var(--warm);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 520px;

    gap: 7rem;

    align-items: start;
}

/*==================================
Left
==================================*/

.contact-copy {
    max-width: 640px;
}

.contact-copy .intro {
    margin: 2rem 0 4rem;

    line-height: 1.9;

    color: var(--text-muted);
}

/*==================================
Services
==================================*/

.contact-services {
    display: grid;

    gap: 2rem;

    margin-bottom: 4rem;
}

.contact-services div {
    padding-bottom: 2rem;

    border-bottom: 1px solid var(--border);
}

.contact-services span {
    display: block;

    margin-bottom: 0.75rem;

    font-size: 1rem;

    font-weight: 600;
}

.contact-services p {
    color: var(--text-muted);

    line-height: 1.8;
}

/*==================================
Info
==================================*/

.contact-info {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;
}

.contact-info small {
    display: block;

    margin-bottom: 0.75rem;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    color: var(--primary);
}

.contact-info a {
    color: var(--charcoal);

    text-decoration: none;

    font-weight: 600;
}

.contact-info p {
    margin: 0;
}

/*==================================
Form
==================================*/

.contact-form {
    background: #fff;

    padding: 3rem;

    border: 1px solid var(--border);
}

.contact-form h3 {
    margin-bottom: 0.75rem;
}

.contact-form>p {
    margin-bottom: 2rem;

    color: var(--text-muted);

    line-height: 1.8;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 1rem 0;

    margin-bottom: 2rem;

    border: none;

    border-bottom: 1px solid var(--border);

    background: none;

    font: inherit;

    transition: 0.3s;
}

.contact-form textarea {
    resize: vertical;

    min-height: 180px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;

    border-color: var(--primary);
}

.contact-form button {
    margin-top: 1rem;
}

.hp {
    display: none;
}

.thank-you {
    padding: 3rem 0;
}

.thank-you h3 {
    margin-bottom: 1rem;
}

.thank-you p {
    max-width: 450px;

    line-height: 1.8;

    color: var(--text-muted);
}

/*==================================
Responsive
==================================*/

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 4rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    .contact-grid {
        display: flex;
        flex-direction: column-reverse;
    }
}

/*==================================
Thank You Modal
==================================*/

#thankYouModal {
    z-index: 99999;
}

#thankYouModal .modal-content {
    position: relative;
    z-index: 100000;
}

.thankyou-modal {
    position: fixed;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(16, 20, 24, 0.55);

    backdrop-filter: blur(6px);

    opacity: 0;

    visibility: hidden;

    transition: 0.35s;

    z-index: 9999;
}

.thankyou-modal.active {
    opacity: 1;

    visibility: visible;
}

.thankyou-modal .modal-content {
    width: min(92%, 520px);

    background: #fff;

    padding: 4rem 3rem;

    text-align: left;

    border-radius: 12px;

    position: relative;

    border: 1px solid var(--border);

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.thankyou-icon {
    width: 82px;

    height: 82px;

    margin: 0 auto 2rem;

    border-radius: 50%;

    background: var(--sand);

    display: grid;

    place-items: center;

    color: var(--primary);

    font-size: 2rem;

    font-weight: 700;
}

.thankyou-modal h2 {
    margin-bottom: 1rem;
}

.thankyou-modal p {
    max-width: 420px;

    margin: 0 auto;

    line-height: 1.8;

    color: var(--text-muted);
}

.modal-close {
    position: absolute;

    top: 18px;

    right: 18px;

    width: 42px;

    height: 42px;

    border: none;

    background: none;

    font-size: 1.8rem;

    cursor: pointer;

    color: var(--text-muted);

    transition: 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.thankyou-modal .btn-primary {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
}

/*==================================================
FOOTER
==================================================*/

.site-footer {
    background: #1f1f1f;

    color: #d6d6d6;

    padding: 6rem 0.5rem 2rem;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 4rem;

    margin-bottom: 4rem;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;

    margin-bottom: 1.5rem;
}

.site-footer p {
    color: #bdbdbd;

    margin-bottom: 0.75rem;
}

.site-footer ul {
    display: grid;

    gap: 1rem;
}

.site-footer a {
    color: #bdbdbd;

    transition: 0.3s;
}

.site-footer a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-top: 2rem;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    display: flex;

    gap: 2rem;
}

/*==================================================
PRIVACY POLICY MODAL
==================================================*/

.modal {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 2rem;

    background: rgba(15, 18, 20, 0.65);

    backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;

    z-index: 1000;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 700px;
    max-height: 85vh;

    overflow-y: auto;

    background: #f8f6f2;

    border-radius: 18px;

    padding: 3.5rem;

    position: relative;

    border: 1px solid rgba(0, 0, 0, 0.08);

    transform: translateY(20px);

    transition: 0.3s;
}

.modal-content h2 {
    font-size: 3rem;
}

.modal-content h3 {
    font-size: 1.2rem;
}

.modal-content p {
    font-size: 0.9rem;
    padding: 0.8rem 0;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;

    top: 1.25rem;
    right: 1.5rem;

    border: none;
    background: none;

    font-size: 2rem;

    cursor: pointer;

    color: #555;
}

.modal-close:hover {
    color: var(--primary);
}

/*==================================================
STICKY BOOK BUTTON
==================================================*/

.sticky-book {
    position: fixed;

    left: 50%;

    bottom: 1.5rem;

    transform: translateX(-50%);

    background: var(--primary);

    color: #fff;

    font-weight: 700;

    padding: 1rem 2.25rem;

    border-radius: 999px;

    box-shadow: var(--shadow-large);

    z-index: 900;

    transition: 0.35s;

    display: none;
}

.sticky-book:hover {
    transform: translateX(-50%) translateY(-4px);

    background: var(--primary-dark);
}

/*==================================================
RESPONSIVE DESIGN
==================================================*/

@media (max-width: 1200px) {

    .about-grid,
    .space-grid,
    .community-grid {
        grid-template-columns: 1fr;

        gap: 4rem;
    }

    .program,
    .program.reverse {
        grid-template-columns: 1fr;
    }

    .program.reverse .program-image,
    .program.reverse .program-content {
        order: initial;
    }

    .program-image {
        height: 550px;
    }

    .program-content {
        padding: 4rem 7%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-book {
        display: inline-flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .section {
        padding: 6rem 0;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding-top: 8rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);

        gap: 2rem;
    }

    .credentials-grid {
        grid-template-columns: 1fr;

        gap: 3rem;
    }

    .credentials-sidebar {
        border-left: none;

        border-top: 1px solid var(--border);

        padding-left: 0;

        padding-top: 2rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;

        gap: 3rem;
    }

    .philosophy-item {
        padding: 0 0 2rem;
    }

    .philosophy-item::after {
        display: none;
    }

    .space-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 2 280px;
    }
}

@media (max-width: 992px) and (min-width: 576px) {
    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .trust-item {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(92%, 99%);
    }

    .hero {
        min-height: 85vh;
    }

    .hero-text {
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;

        justify-content: center;
    }

    .hero-location {
        flex-wrap: wrap;
        width: 80%;
        margin: 0 auto;
    }

    .about-image img {
        height: 500px;
    }

    .credentials {
        text-align: left;
    }

    .credentials-grid {
        gap: 2.5rem;
    }

    .credentials-content p {
        line-height: 1.75;
    }

    .credential-group h4 {
        margin-bottom: 1rem;
    }

    .program-image {
        height: 400px;
    }

    .space-hero {
        height: 45vh;
    }

    .space-map iframe {
        height: 400px;
    }

    .gallery-grid {
        columns: 1;
    }

    .community-locations {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 1.5rem;

        text-align: center;
    }

    .sticky-book {
        display: inline-flex;

        align-items: center;

        justify-content: center;
    }
}

@media (max-width: 576px) {
    :root {
        --h1: 3rem;

        --h2: 2.2rem;

        --h3: 1.4rem;
    }

    .site-header .container {
        min-height: 75px;
    }

    /* .logo-top {
        font-size: 1rem;
    }

    .logo-bottom {
        font-size: 0.65rem;

        letter-spacing: 0.28em;
    } */

    .logo img {
        height: 80px;
    }

    .brand-phone {
        letter-spacing: 1;
        font-size: 0.8rem;
    }

    .hero-content {
        padding-top: 7rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .eyebrow span {
        display: block;
        margin-top: 0.2rem;
    }

    .trust-item {
        justify-content: center;

        text-align: center;

        flex-direction: column;
    }

    .section-heading {
        margin-bottom: 3.5rem;
    }

    .section-heading h2 {
        max-width: 100%;
    }

    .about-grid {
        gap: 3rem;
    }

    .about-image img {
        height: 420px;
    }

    .program {
        min-height: auto;
    }

    .program-content {
        padding: 3rem 1.5rem 4rem;
    }

    .space-grid {
        gap: 3rem;
    }

    .space-map iframe {
        height: 320px;
    }

    .faq-question {
        font-size: 1rem;

        padding: 1.4rem 0;
    }

    .cta {
        min-height: 60vh;
    }

    .cta-content {
        padding: 1rem;
    }

    .footer-links {
        flex-direction: column;

        gap: 0.75rem;
    }

    .sticky-book {
        width: calc(100% - 2rem);

        left: 1rem;

        transform: none;

        bottom: 1rem;
    }

    .sticky-book:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 280px) {
    .trust-bar .container {
        grid-template-columns: 1fr;

        gap: 1.5rem;
    }

    .brand-phone {
        padding-bottom: 0.8rem;
        font-size: 0.7rem;
    }
}

/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;

        transition: none !important;

        scroll-behavior: auto !important;
    }
}

/*==================================================
PRINT
==================================================*/

@media print {

    .site-header,
    .mobile-nav,
    .sticky-book,
    .scroll-progress {
        display: none !important;
    }

    body {
        background: #fff;

        color: #000;
    }

    a {
        text-decoration: none;

        color: #000;
    }
}