/* =========================================================
   ONE FEARLESS LIFE — Ghost Theme
   ========================================================= */

@font-face {
    font-family: 'Turnpike';
    src: url('../fonts/Turnpike.ttf.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Variables ── */
:root {
    --primary:     #7c9995;
    --primary-dark:#616A65;
    --cream:       #f7f7f7;
    --white:       #ffffff;
    --mid-gray:    #777777;
    --light-gray:  #ececec;
    --num-color:   #dbdbdb;
    --black:       #000000;
    --max-width:   1200px;
    --section-pad: 80px 24px;

    /* Ghost custom font variables — Ghost Admin overrides these when a custom font is selected */
    --gh-font-heading: 'Montserrat';
    --gh-font-body:    'Roboto', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--gh-font-body, 'Roboto', sans-serif);
    font-weight: 300;
    color: var(--primary-dark);
    background: var(--cream);
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: var(--gh-font-heading, 'Montserrat');
    font-weight: 700;
    line-height: 1.2;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 10px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    width: fit-content;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    z-index: 999;
    position: relative;
}
.btn-primary:hover { background: var(--primary-dark); }

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    text-align: center;
    padding: 40px 0 0;
    position: relative;
    z-index: 100;
}
.header-logo { margin-bottom: 40px; }
.logo-img { max-height: 98px; margin: 0 auto; }
.logo-text {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    color: var(--primary-dark);
}
.logo-one {
    font-family: 'Cardo', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1;
}
.logo-main {
    font-family: 'Montserrat';
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}
.logo-sub {
    font-family: 'Cardo', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1;
}

/* Navigation */
.site-nav {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    padding: 0;
}
.nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.nav-item a {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-dark);
    padding: 0;
    transition: color 0.2s;
    line-height: 50px;
}
li.nav-item {
    height: 50px;
    flex: 1;
    box-sizing: border-box;
    border-right: 1px solid;
}
.nav-item a:hover,
.nav-item a.nav-current { color: var(--primary); }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
    display: none;
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 110;
}
.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
/* X animation when open */
.nav-hamburger.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown navigation */
li.nav-item--has-dropdown {
    position: relative;
    align-items: center;
    justify-content: center;
}
li.nav-item--has-dropdown > a {
    align-items: center;
    height: 100%;
}
.nav-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 10px;
    height: 50px;
    color: var(--primary-dark);
    font-size: 9px;
    line-height: 50px;
    vertical-align: top;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
}
.nav-dropdown-btn:hover { color: var(--primary); }
li.nav-item--has-dropdown.is-open .nav-dropdown-btn {
    transform: rotate(180deg);
}
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-top: 2px solid var(--primary-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 200;
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Desktop: hover to open */
@media (min-width: 641px) {
    li.nav-item--has-dropdown:hover .nav-dropdown { display: block; }
}
/* Click/touch: open via .is-open */
li.nav-item--has-dropdown.is-open .nav-dropdown { display: block; }
.nav-dropdown-item {
    border-bottom: 1px solid var(--light-gray);
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item a {
    display: block;
    padding: 13px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-dark);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
    transition: color 0.2s, background 0.2s;
}
.nav-dropdown-item a:hover {
    color: var(--primary);
    background: var(--cream);
}
/* =========================================================
   HERO
   ========================================================= */
.hero-section {
    position: relative;
    min-height: 560px;
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(55, 65, 60, 0.45);
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 24px;
}
.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
}
.hero-script {
    font-family: 'Cardo', Georgia, serif;
    font-style: italic;
    font-size: clamp(38px, 6.5vw, 74px);
    font-weight: 400;
    text-transform: none;
}
.parallax-hero {
    background-attachment: fixed;
    background-position: center;
}

/* =========================================================
   FEATURE BOXES
   ========================================================= */
.features-section { 
    border: 1px solid;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--light-gray);
}
.feature-box {
    padding: 100px 40px 60px;
    text-align: center;
    position: relative;
    position: relative;
    height: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.feature-box:last-child { border-right: none; }
.feature-box--mid { 
    /* background: var(--cream);  */
    border-left: 1px solid;
    border-right: 1px solid; 
}
.feature-num {
    display: block;
    font-family: Cardo, Georgia, serif;
    font-size: 200px;
    font-style: italic;
    font-weight: 400;
    color: var(--num-color);
    line-height: 1;
    margin-bottom: -20px;
    user-select: none;
    position: absolute;
    z-index: 0;
    left: 24%;
    top: 13%;
}
.feature-title {
    font-family: 'Montserrat';
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 999;
}
.feature-rule {
    width: 40px;
    height: 1.5px;
    background: var(--primary);
    margin: 0 auto 24px;
}

/* =========================================================
   QUOTE SECTIONS
   ========================================================= */
.quote-section { padding: var(--section-pad); }
/* .quote-section--light { background: var(--white); } */
/* .quote-section--dark  { background: var(--primary-dark); } */
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto; 
    text-align: center;
}
.section-quote {
    font-family: 'Montserrat';
    font-size: clamp(22px, 4vw, 50px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
}
/* .section-quote--white { color: var(--white); } */

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-section { border: 1px solid #000 }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border: 1px solid var(--light-gray);
}
.about-image-wrap { overflow: hidden; }
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 460px;
    background: var(--light-gray);
}
.about-content {
    padding: 60px 60px 60px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin-bottom: 8px;
}
.about-name {
    font-family: 'Montserrat';
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.about-credentials {
    font-family: 'Cardo', Georgia, serif;
    font-style: italic;
    font-size: 14px;
    color: var(--mid-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}
.about-bio {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-dark);
    line-height: 1.9;
}

/* Reverse variant — image on right, text on left */
.about-section--reverse .about-image-wrap { order: 2; }
.about-section--reverse .about-content    { order: 1; }

/* Full-width text content section */
.text-section { padding: var(--section-pad); border-top: 1px solid #000; }
.text-section-inner {
    max-width: 860px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.9;
    color: var(--primary-dark);
}
.text-section-inner p { margin-bottom: 1.4em; }
.text-section-inner p:last-child { margin-bottom: 0; }

/* =========================================================
   MODAL / POPUP
   ========================================================= */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.is-open { display: flex; }

.modal-box {
    background: var(--white);
    max-width: 860px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    max-height: 90vh;
    overflow: hidden;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 28px;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-dark);
    z-index: 1;
}
.modal-close:hover { color: var(--primary); }

.modal-image { overflow: hidden; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.modal-form-wrap {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.modal-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 10px;
}
.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 28px;
}
.modal-field { margin-bottom: 14px; }
.modal-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--light-gray);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--primary-dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}
.modal-field input:focus { border-color: var(--primary); }
.modal-field input::placeholder { color: var(--mid-gray); }
.modal-form .btn { width: 100%; text-align: center; margin-top: 8px; padding: 12px; }

@media (max-width: 640px) {
    .modal-box { grid-template-columns: 1fr; }
    .modal-image { display: none; }
    .modal-form-wrap { padding: 40px 24px; }
}

/* =========================================================
   BLOG SECTION
   ========================================================= */
.blog-section {
    border-top: 1px solid #000;
}
.blog-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 100px;

}
.blog-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 60px 100px;
    border: 1px solid #000;
}
article.blog-card {
    border: 1px solid #000;
}
.blog-card-img-link { display: block; overflow: hidden; }
.blog-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card-img-link:hover .blog-card-img { transform: scale(1.03); }
.blog-card-body { padding: 20px; background: #fff; }
.blog-card-title {
    font-family: 'Cardo', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.35;
}
.blog-card-title a { color: var(--primary-dark); }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--mid-gray);
    line-height: 1.8;
}

/* =========================================================
   FULL BLOG PAGE
   ========================================================= */
.blog-all-section {
    padding: 80px 0;
    background: var(--white);
}
.blog-all-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}
.blog-all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.blog-all-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: box-shadow 0.3s ease;
}
.blog-all-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.blog-all-img-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.blog-all-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-all-img-link:hover .blog-all-img { transform: scale(1.04); }
.blog-all-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream);
}
.blog-all-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
}
.blog-all-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
}
.blog-all-title {
    font-family: 'Cardo', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}
.blog-all-title a { color: var(--primary-dark); text-decoration: none; }
.blog-all-title a:hover { color: var(--primary); }
.blog-all-excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--mid-gray);
    line-height: 1.75;
    margin: 0;
    flex: 1;
}
.blog-all-read-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-dark);
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.blog-all-read-more:hover { color: var(--primary); border-color: var(--primary); }
.blog-all-empty {
    text-align: center;
    font-family: 'Cardo', Georgia, serif;
    font-size: 18px;
    color: var(--mid-gray);
    padding: 80px 0;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section { background: var(--cream); border-bottom: 1px solid #000; }
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* max-width: var(--max-width);
    margin: 0 auto;
    min-height: 480px; */
}
.cta-media { overflow: hidden; }
.cta-video-embed {
    width: 100%;
    height: 100%;
    min-height: 420px;
    position: relative;
}
.cta-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.cta-video-wrap {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2.5px solid var(--white);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s;
}
.play-btn:hover { background: rgba(255,255,255,0.3); }
.play-icon {
    color: var(--white);
    font-size: 22px;
    margin-left: 4px;
}
.cta-content {
    padding: 60px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.cta-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--mid-gray);
}
.cta-title {
    font-family: 'Montserrat';
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    line-height: 1.2;
}
.cta-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-dark);
    line-height: 1.9;
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testimonial-section {
    padding: var(--section-pad);
    text-align: center;
}
.testimonial-quote {
    max-width: 680px;
    margin: 0 auto;
    font-style: normal;
}
.testimonial-text {
    font-family: 'Montserrat';
    font-size: clamp(26px, 4.5vw, 50px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}
.testimonial_css{
    font-size: clamp(18px, 3vw, 30px) !important;
}
.testimonial-footer { display: flex; flex-direction: column; gap: 6px; }
.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-style: normal;
}
.testimonial-title {
    font-family: 'Cardo', Georgia, serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--mid-gray);
    line-height: 1.6;
}

/* =========================================================
   BOOKS SECTION
   ========================================================= */
.books-section {
    padding: var(--section-pad);
    background: var(--cream);
}
.books-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 24px;
}
.book-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.book-cover-wrap {
    width: 100%;
}
.book-cover {
    /* width: 100%; */
    /* max-width: 320px; */
    height: 300px;
    display: block;
    object-fit: contain;
}
.book-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
}
.book-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    line-height: 1.2;
    margin: 0;
}
.book-subtitle {
    font-family: 'Cardo', Georgia, serif;
    font-size: 15px;
    font-style: italic;
    color: var(--mid-gray);
    margin: 0;
    line-height: 1.5;
}
.book-bio {
    font-family: 'Cardo', Georgia, serif;
    font-size: 16px;
    color: var(--primary-dark);
    line-height: 1.7;
}
.book-bio p { margin: 0; }

@media (max-width: 768px) {
    .books-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* =========================================================
   RETREAT PAGE
   ========================================================= */

/* Hero tagline (subheading inside hero headline) */
.hero-tagline {
    display: block;
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: none;
    color: rgba(255,255,255,0.88);
    margin-top: 12px;
}

/* WHERE / WHEN */
.retreat-where-when {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.where-when-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: var(--max-w);
    margin: 0 auto;
}
.where-when-box {
    padding: 100px 80px;
    position: relative;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.where-when-box:first-child {
    border-right: 1px solid #000;
}
.where-when-label {
    font-family: Cardo, Georgia, serif;
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(0,0,0,0.07);
    line-height: 1;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    position: absolute;
    top: 30%;
    font-style: italic;
}
.where-when-name {
    font-family: 'Montserrat';
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0 0 6px;
    text-align: center;
}
.where-when-detail {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--mid-gray);
    margin: 0;
    text-align: center;
}

/* PHOTO GALLERY */
.retreat-gallery {
    padding: 0;
}
.retreat-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.gallery-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* FEATURED SESSIONS */
.retreat-sessions {
    padding: var(--section-pad);
    background: var(--white);
    border-top: 1px solid #000;
}
.sessions-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}
.sessions-heading {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(28px, 4vw, 48px);
    font-style: italic;
    font-weight: 400;
    color: var(--primary-dark);
    margin: 0 0 48px;
}
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid #000;
}
.session-item {
    padding: 32px 24px 32px 0;
    border-right: 1px solid #e0e0e0;
}
.session-item:last-child { border-right: none; }
.session-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--mid-gray);
    display: block;
    margin-bottom: 12px;
}
.session-title {
    font-family: 'Cardo', Georgia, serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary-dark);
    margin: 0;
}

/* INVITATION / PRICING */
.retreat-invitation {
    background: #6b8f7a;
    padding: var(--section-pad);
}
.invitation-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px;
    color: #fff;
    text-align: center;
}
.invitation-heading {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(28px, 4vw, 44px);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px;
}
.invitation-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    margin: 0 0 40px;
}
.invitation-pricing {
    text-align: left;
    display: inline-block;
    margin: 0 0 32px;
}
.price-main {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-style: italic;
    color: #fff;
    margin: 0 0 4px;
}
.price-amount {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 400;
    font-style: italic;
}
.price-note {
    font-size: clamp(14px, 1.8vw, 20px);
    opacity: 0.8;
}
.price-original {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-decoration: line-through;
    margin: 0 0 16px;
}
.price-deposit {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(22px, 3vw, 32px);
    font-style: italic;
    color: #fff;
    margin: 0;
}
.invitation-contact {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 8px;
}
.invitation-contact a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.invitation-note {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* INSTRUCTORS */
.retreat-instructors {
    padding: var(--section-pad);
    background: var(--cream);
}
.instructors-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
}
.instructors-heading {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(28px, 4vw, 48px);
    font-style: italic;
    font-weight: 400;
    color: var(--primary-dark);
    text-align: center;
    margin: 0 0 56px;
}
.instructors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.instructor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.instructor-role {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
}
.instructor-name {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-style: italic;
    font-weight: 400;
    color: var(--primary-dark);
    margin: 0;
}
.instructor-bio {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: var(--mid-gray);
    margin: 0 0 20px;
}
.instructor-photo-wrap {
    width: 100%;
    max-width: 280px;
}
.instructor-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    filter: grayscale(30%);
}

/* Retreat responsive */
@media (max-width: 960px) {
    .where-when-grid { grid-template-columns: 1fr; }
    .where-when-box:first-child { border-right: none; border-bottom: 1px solid #000; }
    .where-when-box { padding: 40px 40px; }
    .sessions-grid { grid-template-columns: repeat(2, 1fr); }
    .session-item { border-right: none; border-bottom: 1px solid #e0e0e0; padding: 24px 0; }
    .retreat-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .instructors-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
    .sessions-grid { grid-template-columns: 1fr; }
    .retreat-gallery-grid { grid-template-columns: 1fr 1fr; }
    .invitation-pricing { text-align: center; }
    .sessions-inner, .instructors-inner { padding: 0 20px; }
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination {
    /* padding: 40px 24px; */
    background: var(--white);
}
.pagination-inner {
    display: flex;
    justify-content: center;
    gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    color: var(--primary-dark);
    border: 1px solid #000;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
}
.footer-col.footer-center-col {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}
.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-dark);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-dark); }
.footer-links--hint span {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}
.footer-script {
    font-family: 'Cardo', Georgia, serif;
    font-style: italic;
    font-size: 30px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.footer-cta-title {
    font-family: 'Montserrat';
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 6px;
}
.footer-cta-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: var(--primary-dark);
}
.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
}
.footer-bottom a { color: #fff; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }
.footer-col {
    padding: 60px 40px;
}
/* =========================================================
   POST / PAGE TEMPLATES
   ========================================================= */
.post-template .post-header,
.page-template .page-header {
    text-align: center;
    padding: 80px 24px 48px;
    max-width: 800px;
    margin: 0 auto;
}
.post-template .post-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}
.post-template .post-title,
.page-template .page-title {
    font-family: 'Montserrat';
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.post-template .post-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--mid-gray);
}
.post-feature-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}
.post-template .post-content,
.page-template .page-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--primary-dark);
}
.post-template .post-content p,
.page-template .page-content p { margin-bottom: 1.5em; }

.post-template .post-content h2,
.page-template .page-content h2 { font-size: 30px; margin: 2em 0 0.6em; }

.post-template .post-content h3,
.page-template .page-content h3 { font-size: 24px; margin: 1.8em 0 0.5em; }

.post-template .post-content blockquote,
.page-template .page-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 24px;
    margin: 2em 0;
    font-style: italic;
    color: var(--mid-gray);
}

/* =========================================================
   GHOST KOENIG CARD STYLES (required by validator)
   ========================================================= */
.gh-content { overflow: hidden; margin-bottom: 20px }

.kg-width-wide {
    position: relative;
    width: 85vw;
    max-width: 1200px;
    margin-left: calc(50% - 42.5vw);
}

.kg-width-full {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.kg-image { max-width: 100%; margin: 0 auto; }
.kg-image-card { margin: 2em 0; }
.kg-image-card figcaption {
    text-align: center;
    font-size: 12px;
    color: var(--mid-gray);
    margin-top: 8px;
}

.kg-gallery-card { margin: 2em 0; }
.kg-gallery-container { display: flex; flex-wrap: wrap; gap: 4px; }
.kg-gallery-row { display: flex; gap: 4px; width: 100%; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }

.kg-bookmark-card { margin: 2em 0; }
.kg-bookmark-container {
    display: flex;
    border: 1px solid var(--light-gray);
    border-radius: 2px;
    overflow: hidden;
    min-height: 120px;
    color: var(--primary-dark);
    transition: border-color 0.2s;
}
.kg-bookmark-container:hover { border-color: var(--primary); }
.kg-bookmark-content {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}
.kg-bookmark-title {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-dark);
}
.kg-bookmark-description { font-size: 12px; color: var(--mid-gray); line-height: 1.6; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--mid-gray); }
.kg-bookmark-icon { width: 16px; height: 16px; }
.kg-bookmark-thumbnail { width: 200px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.kg-embed-card { margin: 2em 0; }
.kg-embed-card iframe { width: 100%; border: none; }

.kg-hr-card { margin: 2.5em 0; }
.kg-hr-card hr { border: none; border-top: 1px solid var(--light-gray); }

.kg-callout-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--cream);
    border-radius: 2px;
    margin: 2em 0;
    font-size: 14px;
    line-height: 1.7;
}
.kg-callout-emoji { font-size: 24px; flex-shrink: 0; }

.kg-toggle-card { border: 1px solid var(--light-gray); border-radius: 2px; padding: 16px 24px; margin: 2em 0; }
.kg-toggle-heading { cursor: pointer; font-weight: 600; }
.kg-toggle-content { padding-top: 12px; font-size: 14px; }

.kg-audio-card { margin: 2em 0; }
.kg-audio-card audio { width: 100%; }

.kg-video-card { margin: 2em 0; }
.kg-video-card video { width: 100%; }

.kg-file-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid var(--light-gray);
    border-radius: 2px;
    margin: 2em 0;
}
.kg-file-card-title { font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 400; }
.kg-file-card-caption { font-size: 12px; color: var(--mid-gray); }

.kg-product-card { border: 1px solid var(--light-gray); border-radius: 2px; overflow: hidden; margin: 2em 0; }
.kg-product-card-image { width: 100%; }
.kg-product-card-title-container { padding: 24px; }

.kg-nft-card,
.kg-header-card { margin: 2em 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-box { border-right: none; border-bottom: 1px solid var(--light-gray); }
    .feature-box:last-child { border-bottom: none; }

    .about-inner { grid-template-columns: 1fr; }
    .about-image-wrap { height: 360px; }
    .about-content { padding: 40px 32px; }

    .cta-inner { grid-template-columns: 1fr; }
    .cta-video-wrap { min-height: 300px; }
    .cta-content { padding: 40px 32px; }

    .blog-grid{ grid-template-columns: 1fr; padding: 60px 20px;}
    .blog-all-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-inner { grid-template-columns: 1fr; gap: 0px; }

    .kg-width-wide { width: 100%; margin-left: 0; }
    .kg-bookmark-thumbnail { display: none; }
    .footer-col {
        padding: 40px;
    }
    .footer-col.footer-center-col {
        border-left: none;
        border-right: none;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
    }
}

@media (max-width: 640px) {
    :root { --section-pad: 56px 20px; }
    .logo-main { font-size: 32px; }

    /* Hamburger: show button, hide nav by default */
    .nav-hamburger { display: flex; }
    .site-header { padding: 16px 0 0; }
    .header-logo { margin-bottom: 16px; }
    .site-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-top: none;
    }
    .site-nav.is-open {
        max-height: 800px;
        border-top: 1px solid var(--black);
    }
    .nav-list { flex-direction: column; gap: 0; }
    li.nav-item { height: auto; flex: none; border-right: none; border-bottom: 1px solid var(--light-gray); }
    .nav-item a { line-height: 48px; padding: 0 20px; }

    /* Dropdown items inside mobile menu */
    li.nav-item--has-dropdown.is-open .nav-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--light-gray);
        background: var(--cream);
        min-width: 0;
    }
    .nav-dropdown-item a { padding-left: 36px; }
    .nav-dropdown-btn { height: 48px; line-height: 48px; }

    .hero-section { min-height: 420px; }
    .blog-section-header { padding: 60px 20px; flex-direction: column; gap: 16px; align-items: flex-start; }
    .blog-all-grid { grid-template-columns: 1fr; }
    .blog-all-inner { padding: 0 20px; }
    .about-inner { border: none; }
    .kg-width-full { margin-left: -20px; margin-right: -20px; width: calc(100% + 40px); left: 0; right: 0; }
    .about-name { font-size: 30px; }
}

