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

:root {
    /* Palette drawn from Sara's headshot — sage sweater, warm cream room, blush skirt */
    --sage: #89a88c;
    --sage-light: #bccfbe;
    --sage-dark: #668a6b;
    --teal: #89a88c;
    --teal-light: #bccfbe;
    --slate: #6b6055;
    --charcoal: #3a3530;
    --cream: #f5f0e8;
    --warm-white: #faf6f1;
    --soft-grey: #e8e2d9;
    --accent: #c9a99a;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sage) 0%, var(--teal) 100%);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--charcoal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--warm-white);
    font-size: 15px;
    /* Subtle paper texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-blend-mode: overlay;
    background-size: 200px;
}

/* Custom cursor for links */
a, button {
    cursor: pointer;
}

/* Selection highlight - warm accent */
::selection {
    background-color: var(--accent);
    color: var(--charcoal);
}

::-moz-selection {
    background-color: var(--accent);
    color: var(--charcoal);
}

/* Scroll lock for hero page */
body.scroll-locked {
    overflow: hidden;
    height: 100vh;
}

/* Hidden sections */
.section-hidden {
    display: none !important;
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
                transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation styles for variety */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-slide-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
                transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }

/* Parallax-style elements */
.parallax-slow {
    will-change: transform;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(253, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled {
    background-color: rgba(253, 253, 251, 0.98);
    box-shadow: 0 1px 20px rgba(92, 107, 107, 0.06);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 22px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.nav-logo:hover {
    color: var(--sage-dark);
}

.nav-menu {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--slate);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--sage);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--charcoal);
}

.nav-link-cta {
    background-color: transparent;
    color: var(--charcoal);
    padding: 10px 22px;
    border: 1px solid var(--charcoal);
    border-radius: 0;
    transition: all 0.35s ease;
}

.nav-link-cta:hover {
    background-color: var(--charcoal);
    color: var(--warm-white);
}

.nav-link-cta::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.bar {
    width: 22px;
    height: 2px;
    background-color: var(--charcoal);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--warm-white);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Hero texture */
.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #e4ede6 100%);
}

.hero-glow,
.hero-glow-ring {
    display: none;
}


.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 60px;
    z-index: 1;
}

.hero-header {
    align-self: flex-start;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--slate);
}

.hero-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    animation: fadeUpNav 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 20px));
}

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

@keyframes fadeUpNav {
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-btn {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.hero-btn:hover {
    color: var(--warm-white);
}

.hero-btn:hover::before {
    left: 0;
}

.nav-separator {
    width: 1px;
    height: 14px;
    background-color: var(--slate);
    opacity: 0.4;
}

/* Organizations Section */
.organizations-section {
    min-height: 100vh;
    background: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    padding-top: 120px;
}

.organizations-container {
    text-align: center;
    max-width: 600px;
}

.organizations-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.organizations-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--slate);
}

.organizations-link {
    color: var(--sage-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--sage-light);
    transition: all 0.3s ease;
}

.organizations-link:hover {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

/* Page Header */
.page-header {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.page-label {
    color: #adb5bd;
}

.page-label-right {
    color: #adb5bd;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 200;
    letter-spacing: 0.01em;
    line-height: 1;
    text-align: right;
    padding: 3rem 3rem 2rem;
    color: #2c3e50;
}

.section-subtitle {
    display: block;
}

/* Home Section */
.home-section {
    background: var(--warm-white);
    padding: 120px 0 100px;
}

.content-container {
    max-width: 1300px;
    padding: 0 60px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
}

/* Sara headshot */
.headshot-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.headshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.content-text {
    padding-right: 30px;
}

.intro-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.4;
    color: var(--charcoal);
    text-align: left;
    letter-spacing: -0.02em;
}

.main-text {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.85;
    font-weight: 400;
    color: var(--slate);
}

.main-text strong {
    color: var(--charcoal);
    font-weight: 500;
}

/* Image Placeholders */
.image-placeholder-box {
    background: linear-gradient(145deg, var(--soft-grey) 0%, var(--sage-light) 100%);
    border: none;
    border-radius: 8px;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.image-placeholder-box:hover {
    transform: scale(1.01);
}

.placeholder-text {
    text-align: center;
    color: var(--slate);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.placeholder-subtext {
    display: block;
    font-size: 11px;
    color: var(--sage-dark);
    margin-top: 8px;
    text-transform: none;
    letter-spacing: 0.01em;
}

.content-image, .approach-image {
    transition: all 0.4s ease;
}

.approach-image {
    align-self: start;
}

.approach-img {
    width: 100%;
    max-height: 480px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

/* Approach Section */
.approach-section {
    background: var(--cream);
    padding: 100px 0;
}

.approach-section .content-container {
    padding: 0 60px;
}

.subsection-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 55px;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

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

.approach-content {
    padding-right: 30px;
}

.approach-block {
    margin-bottom: 40px;
    padding-left: 28px;
    border-left: 2px solid var(--sage-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.approach-block::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-block:hover {
    border-left-color: var(--sage);
    transform: translateX(8px);
}

.approach-block:hover::before {
    opacity: 1;
}

.block-title {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.block-text {
    font-size: 15px;
    line-height: 1.85;
    max-width: 100%;
    font-weight: 400;
    color: var(--slate);
}

/* Explore Section */
.explore-section {
    background: var(--warm-white);
    padding: 100px 0;
    position: relative;
}

.explore-section .content-container {
    padding: 0 60px;
}

.explore-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 45px;
    margin-bottom: 50px;
}

.explore-column {
    display: contents;
}

.explore-column:first-child .explore-category:nth-child(1) { order: 1; }
.explore-column:first-child .explore-category:nth-child(2) { order: 3; }
.explore-column:first-child .explore-category:nth-child(3) { order: 5; }
.explore-column:last-child .explore-category:nth-child(1) { order: 2; }
.explore-column:last-child .explore-category:nth-child(2) { order: 4; }
.explore-column:last-child .explore-category:nth-child(3) { order: 6; }

.explore-category {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--sage-light);
    display: inline-block;
}

.category-list {
    list-style: none;
    padding-left: 0;
}

.category-list li {
    font-size: 15px;
    line-height: 1.85;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
    font-weight: 400;
    color: var(--slate);
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-list li:hover {
    transform: translateX(5px);
    color: var(--charcoal);
}

.category-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sage);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.category-list li:hover::before {
    transform: translateX(3px);
}

/* CTA Button */
.cta-btn {
    background-color: transparent;
    color: var(--sage-dark);
    border: 1px solid var(--sage);
    padding: 18px 40px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 45px 0 0;
    text-transform: uppercase;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--sage);
    border-color: var(--sage);
    color: var(--warm-white);
}

/* Reading & Recommendations Section */
.reading-section {
    background: var(--cream);
    padding: 100px 0;
}

.rp-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin: 0 0 0.75rem;
    font-weight: 400;
}

.rp-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin: 0 0 1.75rem;
}

.rp-divider {
    width: 40px;
    height: 2px;
    background: var(--charcoal);
    margin-bottom: 1.75rem;
}

.rp-intro {
    font-size: 15px;
    line-height: 1.85;
    color: var(--slate);
    max-width: 600px;
    margin: 0 0 2.5rem;
    font-weight: 400;
}

.rp-intro em {
    color: var(--charcoal);
    font-style: italic;
}

.rp-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2.5rem;
}

.rp-fbtn {
    background: transparent;
    border: 1px solid var(--soft-grey);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    color: var(--slate);
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.rp-fbtn:hover {
    border-color: var(--sage-light);
    color: var(--charcoal);
}

.rp-fbtn.on {
    background: var(--charcoal);
    color: var(--warm-white);
    border-color: var(--charcoal);
}

.rp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.rp-card {
    background: var(--warm-white);
    border: 1px solid var(--soft-grey);
    border-radius: 8px;
    padding: 1.1rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color 0.2s ease;
}

.rp-card:hover {
    border-color: var(--sage-light);
}

.rp-card-cat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rp-cat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.rp-cat-label {
    font-size: 10px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--sage-dark);
    font-weight: 400;
}

.rp-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    margin: 2px 0 1px;
    letter-spacing: -0.01em;
}

.rp-card-author {
    font-size: 12.5px;
    color: var(--sage-dark);
    font-weight: 400;
}

.rp-card-note {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.6;
    font-style: italic;
    border-top: 1px solid var(--soft-grey);
    padding-top: 9px;
    margin-top: 4px;
}

.rp-section-note {
    font-size: 13px;
    color: var(--sage-dark);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--soft-grey);
}

.dot-book    { background: var(--sage); }
.dot-article { background: #1D9E75; }
.dot-screen  { background: #D85A30; }
.dot-podcast { background: #BA7517; }
.dot-watch   { background: var(--accent); }

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

.about-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
}

.about-text {
    background: transparent;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.back-to-home {
    font-size: 12px;
    color: var(--sage-dark);
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.3s ease;
    display: inline-block;
    width: fit-content;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.back-to-home:hover {
    color: var(--charcoal);
}

.about-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

.about-paragraph {
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--slate);
}

.about-qualifications {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--sage-light);
}

.qualifications-title {
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 16px;
}

.qualifications-list {
    list-style: none;
    padding: 0;
}

.qualifications-list li {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.85;
    padding: 8px 0;
    border-bottom: 1px solid var(--soft-grey);
    font-weight: 400;
}

.qualifications-list li:last-child {
    border-bottom: none;
}

.accreditation-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.accreditation-logo {
    height: 78px;
    width: auto;
    object-fit: contain;
}

.about-image {
    background: linear-gradient(145deg, var(--sage-light) 0%, var(--teal-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: white;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
    display: block;
}

/* FAQs Section */
.faqs-section {
    background: var(--warm-white);
    color: var(--charcoal);
    padding: 100px 0;
}

.faqs-container {
    padding: 0 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.faqs-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

/* Contact Section */
.contact-section {
    background: var(--warm-white);
    padding: 120px 0;
    display: flex;
    align-items: center;
}

.contact-section .content-container {
    padding: 0 60px;
    width: 100%;
}

.contact-content {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.contact-content .subsection-title {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sage-light);
    display: inline-block;
}

.contact-intro {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    margin-bottom: 30px;
}

.contact-content .main-text {
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--slate);
    line-height: 1.85;
}

.contact-link {
    color: var(--sage-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--sage-light);
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

/* Contact form */
.contact-form {
    margin-top: 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--sage-light);
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-input:focus {
    border-bottom-color: var(--charcoal);
}

.form-textarea {
    resize: none;
    height: 120px;
    padding-top: 10px;
}

/* Privacy Section */
.privacy-section {
    background: var(--warm-white);
    padding: 120px 0 100px;
}

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

.privacy-content {
    max-width: 700px;
}

.privacy-logo {
}

.privacy-bacp-logo {
    height: 130px;
    width: auto;
}

.privacy-link {
    color: var(--sage-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--sage-light);
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

.privacy-back {
    display: inline-block;
    font-size: 13px;
    color: var(--slate);
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.privacy-back:hover {
    color: var(--charcoal);
}

/* Footer */
body.scroll-locked .site-footer {
    display: none;
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px 60px;
    border-top: 1px solid var(--sage-light);
    z-index: 100;
}

body {
    padding-bottom: 80px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-link {
    font-size: 13px;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--charcoal);
}

.footer-logo {
    height: 50px;
    width: auto;
}


/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 66px;
        flex-direction: column;
        background-color: var(--warm-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 40px 0;
        gap: 24px;
        box-shadow: 0 10px 30px rgba(92, 107, 107, 0.08);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        font-size: 13px;
    }

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

    .content-text,
    .approach-content {
        padding-right: 0;
    }

    .approach-image {
        order: -1;
    }

    .headshot-frame {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    /* Mobile home section layout: intro → image → body → button */
    .home-section .content-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .home-section .content-text {
        display: contents;
    }

    .home-section .intro-text {
        order: 1;
        margin-bottom: 0;
        margin-top: 15px;
        text-align: center;
    }

    .home-section .content-image {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .approach-section .subsection-title {
        text-align: center;
    }

    .subsection-title {
        font-size: 1.4rem;
    }

    .about-title {
        font-size: 1.4rem;
    }

    .home-section .main-text {
        order: 3;
        margin-bottom: 16px;
    }

    .home-section .cta-btn {
        order: 4;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        font-weight: 500;
    }

    .hero-nav {
        gap: 20px;
    }

    .hero-btn {
        font-size: 11px;
    }

    .home-section {
        padding: 80px 0 60px;
    }

    .content-container {
        padding: 0 30px;
    }

    .content-grid {
        gap: 40px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 60px 30px;
    }

    .about-image {
        min-height: 300px;
        order: -1;
    }

    .accreditation-logos {
        flex-wrap: wrap;
        gap: 16px;
    }

    .accreditation-logo {
        height: 60px;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-bacp-logo {
        height: 100px;
    }

    .approach-section .content-container,
    .explore-section .content-container {
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 20px;
    }

    .hero-nav {
        gap: 15px;
        width: 90%;
    }

    .hero-btn {
        font-size: 10px;
        letter-spacing: 0.06em;
    }

    .home-section {
        padding: 70px 0 50px;
    }

    .content-container {
        padding: 0 20px;
    }

    .home-section .content-grid {
        gap: 20px;
    }

    .home-section .intro-text {
        font-size: 1.25rem;
        margin-bottom: 0;
    }

    .subsection-title {
        font-size: 1.25rem;
    }

    .about-title {
        font-size: 1.25rem;
    }

    .home-section .main-text {
        margin-bottom: 14px;
    }

    .headshot-frame {
        max-width: 260px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .approach-block {
        padding-left: 16px;
    }

    .about-text {
        padding: 40px 20px;
    }

    .about-image {
        min-height: 250px;
    }

    .accreditation-logos {
        gap: 12px;
        justify-content: center;
    }

    .accreditation-logo {
        height: 50px;
    }

    .faqs-container {
        padding: 0 20px;
    }

    .site-footer {
        padding: 15px 20px;
    }

    .footer-logo {
        height: 40px;
    }
}

/* Smooth Scrolling is defined at top of file */
