/* ── Reset ────────────────────────────── */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--text);
}

/* ── Tokens ───────────────────────────── */
:root {
    --gold:       #D4AF37;
    --gold-light: #FDFBD4;
    --white:      #FFFFFF;
    --green:      #BDB76B;
    --dark:       #1D1D1D;
    --text:       #1D1D1D;
    --text-muted: #6B6B6B;
    --grey:       #F7F7F7; 

    --space-xs: 1rem;
    --space-sm: 2rem;
    --space-md: 6.25rem;
    --space-lg: 8rem;

    --max-width: 1440px;
    --radius:    4px;
}

/* ── Typography ───────────────────────── */
h1, h3, h4, h5, h6 {
    font-family: 'Zodiak Variable', serif;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.2;
}

h1 { font-size: 3rem; }

h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.688rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0;
    margin-bottom: 1rem;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

p {
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 1rem;
}

a { color: inherit; }

/* ── Background variants ──────────────── */
.bg-gold  { background-color: var(--gold); }
.bg-cream { background-color: var(--gold-light); }
.bg-green { background-color: var(--green);   
            position: relative;
            overflow: hidden; }
.bg-dark  { background-color: var(--dark); color: var(--white); }


/* ── Section base ─────────────────────── */
.section {
    padding: var(--space-md) var(--space-sm);
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Full-bleed: colour runs edge to edge, content still constrained */
.section-full {
    padding: var(--space-md) var(--space-sm);
    max-width: 100%;
}

/* ── Nav ──────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s, transform 0.3s;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.site-header.scrolled {
    background: white;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 1rem var(--space-sm);
    gap: var(--space-sm);
}

.nav-logo {
    margin-right: auto;
}

.nav-list a {
    text-decoration: none;
    font-size: 0.813rem;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
}

.nav-list a:hover { text-decoration: underline; }

.nav-cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid currentColor;
    border-radius: 2rem;
}

.logo {
    height: 70px;
    width: auto;
    display: block;
}

/* ── Mobile menu ──────────────────────── */
.mob-menu {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--space-sm);
    position: relative;
}

.toggle { display: none; }

.menu-button {
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--dark);
}

.mob-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gold);
}

.mob-dropdown ul {
    list-style: none;
    margin: 0;
    padding: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.mob-dropdown a {
    text-decoration: none;
    font-size: 1rem;
}

.toggle:checked ~ .mob-dropdown {  max-height: 300px; }

.icon-close { display: none; }

.toggle:checked ~ * .icon-open  { display: none; }
.toggle:checked ~ * .icon-close { display: block; }

.menu-button svg {
    stroke-width: 1.2;
}

/* ── Hero ─────────────────────────────── */
.section-hero {
    min-height: 90vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 20vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 0.25rem;
}

.field-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 50%;
    pointer-events: none;
    object-fit: cover;
    padding-top: 50vh;
}

.tagline {
    font-family: 'Zodiak Variable', serif;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.75;
}

.hero-sub {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

/* ── Split layout ─────────────────────── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-items: start;
}

.split--card {
    grid-template-columns: 200px 1fr;
    align-items: start;
    background-color: var(--gold-light);
    border-radius: 16px;
    margin: var(--space-md) auto;
    max-width: var(--max-width);
    padding: var(--space-sm);
    padding-bottom: var(--space-xs);
}

.split--text-heavy {
    grid-template-columns: 6fr 5fr;
}

/* ── Image + caption ─────────────────── */
.img-caption img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

.img-caption p {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* ── Video ────────────────────────────── */
.video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Therapist ────────────────────────── */
.section-therapist {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 3fr 8fr;
    gap: calc(var(--max-width) / 12); 
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-md) var(--space-sm);
}

.field-lines-corner {
    position: absolute;
    bottom: -300px;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.therapist-photo {
    width: 100%;
    border-radius: var(--radius);
}

.therapist-intro {
    font-family: 'Zodiak Variable', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.therapist-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.therapist-images img {
    width: 100%;
    border-radius: var(--radius);
}

.disclaimer {
    font-style: italic;
    padding-bottom: var(--space-xs);
}

/* ── Testimonials ─────────────────────── */

.testimonials-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    margin-bottom: var(--space-md);
}

.testimonials-header h3 {
    margin-bottom: 0;
    max-width: 100%;
}

.testimonials-header .carousel-controls {
    justify-content: flex-end;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.4s ease;
}

.testimonial-card {
    align-self: flex-start;
    min-width: calc(100% / 3);
    padding: var(--space-xs);
    box-sizing: border-box;
}

.carousel-controls {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.carousel-prev,
.carousel-next {
    background: none;
    border: 1px solid var(--dark);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
    color: var(--dark);
    -webkit-appearance: none;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--dark);
    color: var(--white);
}

.carousel-prev svg,
.carousel-next svg {
    stroke-width: 1.2;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--space-xs);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.carousel-dot.active {
    background: var(--dark);
}

/* ── Pricing ──────────────────────────── */
.booknow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-items: start;
    margin-top: var(--space-sm);
}

dl { margin: 0 0 var(--space-sm); }

.pricing-item {
    padding: var(--space-xs) 0;
}

dt {
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

dd {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.pricing-note {
    font-size: 0.813rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.contact-details {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.contact-details a {
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

/* ── Form ─────────────────────────────── */

.contact-form {
background: var(--grey);
padding: var(--space-xs);
border-radius: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: var(--space-xs);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
}

label {
    font-size: 0.813rem;
    color: var(--text-muted);
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.form-privacy {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: var(--space-xs);
    padding-top: var(--space-xs);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hidden { display: none; }


/* ── Buttons ──────────────────────────── */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.btn:hover { opacity: 0.85; }

button[type="submit"] {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: opacity 0.2s;
}

button[type="submit"]:hover { opacity: 0.8; }

/* ── Footer ───────────────────────────── */
.site-footer {
    background: var(--dark);
    color: var(--white);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-sm) var(--space-sm) var(--space-sm);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: var(--space-lg);
    align-items: start;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: invert(1);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    text-decoration: none;
    font-size: 0.9375rem;
    color: var(--white);
    transition: opacity 0.2s;
}

.footer-nav a:hover { text-decoration: underline; }

.footer-legal a {
    text-decoration: none;
    font-size: 0.9375rem;
    color: var(--white);
    transition: opacity 0.2s;
}

.footer-legal a:hover { text-decoration: underline; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    color: var(--white);
    transition: opacity 0.2s;
}

.footer-social a:hover { opacity: 0.6; }

.footer-social svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.2;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.85);
}


/* ── Policy page ──────────────────────── */
.policy-hero {
    padding-top: calc(var(--space-md) + 80px);
}

.policy-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.policy-hero p {
    opacity: 0.7;
    font-size: 0.875rem;
}

.policy-content {
    max-width: 740px;
}

.policy-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-sm);
    margin-bottom: 0.75rem;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.policy-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.policy-content ul li {
    margin-bottom: 0.375rem;
    line-height: 1.7;
}

.policy-content a {
    text-decoration: underline;
}

.policy-back {
    margin-top: var(--space-md);
    font-size: 0.875rem;
}

/* ── Mobile ───────────────────────────── */
@media (max-width: 768px) {
    :root {
        --space-md: 3rem;
        --space-lg: 4rem;
    }

    .nav  { display: none; }
    .mob-menu { display: flex; }

    h1 { font-size: 2.5rem; }
    h3 { font-size: 1.5rem; }

    .section-hero {
        min-height: 85svh;
    }

    .logo {
        height: 40px;
    }

    .hero-content h1 { font-size: 2.75rem; }

    .split,
    .section-therapist,
    .booknow-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .split--card {
        margin: var(--space-md) var(--space-xs);
    }

    .therapist-images {
        grid-template-columns: 1fr;
    }

    .field-lines-corner {
        display: none;
    }

    .testimonial-card {
        min-width: 100%;
        padding: 0;
    }

    .testimonials-header {
        grid-template-columns: 1fr;
    }
    
    .testimonials-header .carousel-controls {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}