/* ========================================
   Base Styles & Variables
   ======================================== */

:root {
    --color-bg: #f9faf8;
    --color-bg-alt: #eef3f2;
    --color-text: #2b3a3d;
    --color-text-light: #5a6d70;
    --color-accent: #3d7a8a;
    --color-accent-hover: #2d5f6d;
    --color-highlight: #d4a85c;
    --color-white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s ease;
    --container-width: 900px;
    --spacing-section: 35px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    background-color: #d4e4ea;
    min-height: 100vh;
}

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

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition), text-decoration var(--transition);
}

a:hover {
    color: var(--color-accent-hover);
}

p a {
    text-decoration: underline;
}

p a:hover {
    text-decoration: none;
}

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

section > .container {
    background-color: var(--color-bg);
    padding: 40px 48px;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 3rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
}

/* ========================================
   Header & Navigation
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 4px solid var(--color-accent);
}

.site-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-title-header {
    display: none;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.5px;
}

.site-title-header:hover {
    color: var(--color-accent);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 1px;
}

.logo:hover {
    color: var(--color-accent);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    padding: calc(var(--spacing-section) + 80px) 0 var(--spacing-section);
}

.site-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding-bottom: 48px;
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========================================
   Intro Band
   ======================================== */

.intro-band {
    background-color: var(--color-accent);
    padding: 60px 0;
}

.lead-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-white);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   About Section
   ======================================== */

.about {
    padding: var(--spacing-section) 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.about-image-float {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text p {
    color: var(--color-text-light);
}

.about h3 {
    margin-top: 2rem;
    color: var(--color-accent);
}

.about ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.about ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.about ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
}

.highlight-1 {
    background-color: rgba(74, 124, 124, 0.12);
    padding: 2px 6px;
    border-radius: 3px;
}

.highlight-2 {
    background-color: rgba(201, 169, 110, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
}

.highlight-3 {
    background-color: rgba(100, 140, 160, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-bg-alt);
}

.credentials span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-accent);
}

.verification-badge {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* ========================================
   Services Section
   ======================================== */

.services {
    padding: var(--spacing-section) 0;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--color-text-light);
    font-size: 1.05rem;
}

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

.service-card {
    background-color: var(--color-white);
    padding: 40px 32px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 15px;
    margin-bottom: 0;
}

/* ========================================
   Approach Section
   ======================================== */

.approach {
    padding: var(--spacing-section) 0;
}

.approach .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-content p {
    color: var(--color-text-light);
}

blockquote {
    margin: 2.5rem 0;
    padding-left: 24px;
    border-left: 3px solid var(--color-highlight);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-text);
}

blockquote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-text-light);
}

.approach-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ========================================
   What to Expect Section
   ======================================== */

.what-to-expect {
    padding: var(--spacing-section) 0;
}

.subsection {
    margin-bottom: 3rem;
}

.subsection:last-child {
    margin-bottom: 0;
}

.subsection-image {
    float: right;
    margin: 0 0 1.5rem 2rem;
    max-width: 400px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.subsection h3 {
    color: var(--color-accent);
}

.subsection p {
    color: var(--color-text-light);
}

.subsection-divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 3rem auto;
    clear: both;
    width: 60%;
}

/* ========================================
   Session Info Section
   ======================================== */

.session-info {
    padding: var(--spacing-section) 0;
}

.session-info > .container > p {
    text-align: center;
    margin-top: 2rem;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    text-align: center;
    padding: 48px 32px;
    background-color: var(--color-white);
}

.info-card h3 {
    margin-bottom: 0.5rem;
}

.info-card .price {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.info-card p:last-child {
    color: var(--color-text-light);
    font-size: 15px;
    margin-bottom: 0;
}

.session-detail {
    max-width: 720px;
    margin: 3rem auto 0;
}

.session-detail h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}


.session-detail p {
    margin-bottom: 1rem;
}

.session-detail p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: var(--spacing-section) 0;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mobile-divider {
    display: none;
}

.contact-content p {
    color: var(--color-text-light);
}

.contact-form-wrapper p {
    color: var(--color-text-light);
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact-form {
    background-color: var(--color-bg-alt);
    padding: 48px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 16px;
    border: 1px solid #ddd;
    background-color: var(--color-white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
}

.ohnohoney {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}

/* ========================================
   Simple Pages (thanks, 404)
   ======================================== */

.simple-page {
    padding: calc(var(--spacing-section) + 100px) 0 var(--spacing-section);
}

.simple-page h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.simple-page p {
    text-align: center;
}

/* ========================================
   Privacy Policy
   ======================================== */

.privacy-policy {
    padding: calc(var(--spacing-section) + 100px) 0 var(--spacing-section);
}

.privacy-policy h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-policy h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-policy h3 {
    color: var(--color-accent);
    margin-top: 1.5rem;
}

.privacy-policy p {
    color: var(--color-text-light);
}

.privacy-policy ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
}

.privacy-policy ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.privacy-policy ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--color-highlight);
}

.privacy-date {
    margin-top: 2rem;
    font-size: 14px;
    font-style: italic;
}

/* ========================================
   Reflections
   ======================================== */

.reflections-index {
    padding: calc(var(--spacing-section) + 100px) 0 var(--spacing-section);
}

.reflections-index h1 {
    text-align: center;
    margin-bottom: 1rem;
}

.reflections-index h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.reflections-intro {
    text-align: center;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.reflection-card {
    background-color: var(--color-white);
    padding: 32px;
    margin-bottom: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.reflection-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.reflection-card h3 {
    margin-bottom: 0.5rem;
}

.reflection-card h3 a {
    color: var(--color-accent);
}

.reflection-card h3 a:hover {
    color: var(--color-accent-hover);
}

.reflection-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

.reflections-cta {
    text-align: center;
    color: var(--color-text-light);
    margin-top: 2rem;
    font-style: italic;
}

/* Individual reflection page */
.reflection-page {
    padding: calc(var(--spacing-section) + 100px) 0 var(--spacing-section);
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 14px;
    color: var(--color-text-light);
}

.breadcrumb a {
    color: var(--color-accent);
}

.breadcrumb span {
    margin: 0 0.5rem;
}

.breadcrumb span:last-child {
    margin-left: 0;
    color: var(--color-text);
}

.reflection-page h1 {
    margin-bottom: 0.5rem;
}

.reflection-subtitle {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.reflection-content p {
    color: var(--color-text-light);
}

.reflection-prompt {
    font-style: italic;
    color: var(--color-text);
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    font-size: 14px;
    color: var(--color-accent);
}

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

/* ========================================
   Footer
   ======================================== */

.site-footer {
    position: relative;
    padding: 40px 0;
    text-align: center;
}

.site-footer .container {
    background: transparent;
    padding: 20px 48px;
}

.footer-nav {
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: var(--color-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    text-decoration: underline;
}

.footer-nav a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.footer-nav span.separator {
    margin: 0 0.75rem;
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-background-image-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}

.page-background-image-top img {
    width: 100%;
    height: auto;
    display: block;
}

.page-background-image-top::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, #d4e4ea 0%, transparent 100%);
    z-index: 1;
}

.page-background-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    pointer-events: none;
}

.page-background-image img {
    width: 100%;
    height: auto;
    display: block;
}

.page-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, #d4e4ea 0%, transparent 100%);
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer p {
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-note a {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-note a:hover {
    opacity: 0.8;
}

.footer-note {
    opacity: 0.9;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 992px) {
    :root {
        --spacing-section: 70px;
    }

    .site-header .container {
        justify-content: space-between;
    }

    .site-title-header {
        display: block;
    }

    .hero .site-title {
        display: none;
    }

    .hero {
        padding-top: 80px;
    }

    .page-background-image-top {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero .container,
    .approach .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .services-grid,
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 50px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg);
        padding: 100px 40px 40px;
        transition: right var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 24px;
    }

    .main-nav a {
        font-size: 16px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .services-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .hero-image img,
    .approach-image img {
        height: 350px;
    }

    .subsection-image {
        float: none;
        margin: 0 0 1.5rem 0;
        max-width: 100%;
        height: 300px;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-float {
        height: 350px;
    }

    .contact-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        order: 0;
    }

    .mobile-divider {
        display: block;
        order: 1;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        margin: 1rem 0;
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-form-wrapper {
        order: 2;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .credentials {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .service-card,
    .info-card {
        padding: 32px 24px;
    }

    blockquote {
        font-size: 1.1rem;
    }
}
