:root {
    --purple: #a12274;
    --purple-light: #c4459a;
    --purple-dark: #7a1a57;
    --gray: #48484a;
    --off-white: #faf9f7;
    --warm-white: #f5f3ef;
    --text-dark: #2a2a2a;
    --text-mid: #5a5a5a;
    --teal: #71c7ad;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--off-white);
    overflow-x: hidden;
    font-size: 1.18rem;
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

    transition:
        background 0.4s,
        box-shadow 0.4s;
}
nav.scrolled {
    background: rgba(250, 249, 247, 0.97);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}
.nav-logo img {
    height: 100px;
    width: auto;
}
.nav-logo .logo-white {
    display: block;
}
.nav-logo .logo-color {
    display: none;
}
nav.scrolled .nav-logo .logo-white {
    display: none;
}
nav.scrolled .nav-logo .logo-color {
    display: block;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.3s;
}
nav.scrolled .nav-links a {
    color: grey;
}
.nav-links a:hover {
    color: grey !important;
}

nav.scrolled .nav-links .nav-cta {
    color: white;
}

.her {
    background: var(--purple) !important;
    color: white !important;
    padding: 0.5rem 1.4rem;
    border-radius: 2px;
}

.nav-cta {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    background: var(--purple);
    text-decoration: none;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: var(--purple-dark) !important;
}

/* ---- HERO ---- */
#hero {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
/*
   * HERO BACKGROUND:
   * Replace the CSS below with a real photo by adding:
   * background-image: url('YOUR_IMAGE_URL') to .hero-bg
   * Recommended free image: https://images.pexels.com/photos/14064414/pexels-photo-14064414.jpeg
   * (Rays of Sunlight on Misty Forest by Hugo Sykes, free on Pexels)
   */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(Images/field-4021971_1920.jpg);
    background-size: cover;
    background-position: center center;
}
.hero-bg-about {
    position: absolute;
    inset: 0;
    background-image: url(Images/MMM.png);
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    z-index: 0;
}
/* Dark overlay — keeps text readable over a real photo */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 16, 22, 0.82) 0%,
        rgba(10, 16, 22, 0.65) 45%,
        rgba(10, 16, 22, 0.25) 100%
    );
    pointer-events: none;
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 3rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: left;
    width: 100%;
}

.hero-content-about {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 7vw, 6rem) clamp(3rem, 6vw, 5rem);
    max-width: 1100px;
}

.hero-ctas-wrap {
    grid-column: 1 / -1;
}
.hero-title-row {
    grid-column: 1 / -1;
    text-align: left;
    margin-bottom: 1rem;
}
.hero-text {
    max-width: 540px;
    animation: fadeUp 1s ease both;
}
.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.8rem;
    display: block;
}
/* Hero right: typographic statement */
.hero-right {
    animation: fadeUp 1s 0.25s ease both;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hero-statement {
    border-left: 2px solid rgba(113, 199, 173, 0.4);
    padding-left: 1.5rem;
}
.hero-statement p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 598;
    font-style: italic;
    color: rgba(240, 236, 232, 0.6);
    line-height: 1.65;
}
.hero-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.hero-pillar {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pillar-line {
    width: 30px;
    height: 1px;
    background: var(--teal);
    flex-shrink: 0;
}
.pillar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}
.pillar-text {
    font-size: 0.98rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 236, 232, 0.5);
    font-weight: bold;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240, 236, 232, 0.3);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: bounce 2.5s infinite;
    z-index: 2;
}
.hero-scroll::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(240, 236, 232, 0.3), transparent);
}

/* CLIENT-FOCUSED headline */
.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: #f0ece8;
    margin-bottom: 2rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero-title em {
    font-style: italic;
    color: #d48ab8;
}
.hero-sub {
    font-size: 1.3rem;
    line-height: 1.85;
    color: rgba(240, 236, 232, 0.72);
    max-width: 620px;
    margin-bottom: 3rem;
    font-weight: 300;
}
.hero-sub strong {
    color: rgba(240, 236, 232, 0.92);
    font-weight: 400;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-block;
    background: var(--purple);
    color: white;
    text-decoration: none;
    padding: 1rem 2.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition:
        background 0.3s,
        transform 0.2s;
}
.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}
.btn-second {
    display: inline-block;
    background: transparent;
    color: rgba(161, 34, 116, 0.6);
    text-decoration: none;
    padding: 1rem 2.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(161, 34, 116, 0.6);
    transition:
        border-color 0.3s,
        box-shadow 0.3s,
        transform 0.2s;
}
.btn-second:hover {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(161, 34, 116, 0.3);
    transform: translateY(-1px);
}
.btn-ghost {
    display: inline-block;
    border: 1px solid rgba(240, 236, 232, 0.3);
    color: rgba(240, 236, 232, 0.75);
    text-decoration: none;
    padding: 1rem 2.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
}
.btn-ghost:hover {
    border-color: rgba(240, 236, 232, 0.75);
    color: #f0ece8;
}

/* Hero trust signals */
.hero-trust {
    margin-top: 4rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.4s ease both;
}
.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.trust-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #f0ece8;
    line-height: 1;
}
.trust-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(240, 236, 232, 0.4);
    text-transform: uppercase;
}
.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(240, 236, 232, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240, 236, 232, 0.3);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: bounce 2.5s infinite;
    z-index: 2;
}
.hero-scroll::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(240, 236, 232, 0.3), transparent);
}

/* ---- PROBLEM SECTION (client-focused) ---- */
#problem {
    background: var(--off-white);
    padding: 5rem 3rem;
}
.problem-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.problem-card {
    padding: 2.5rem 2rem;
    border-top: 2px solid rgba(161, 34, 116, 0.15);
}
.problem-card:first-child {
    border-top-color: var(--purple);
}
.problem-q {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.problem-a {
    font-size: 1.18rem;
    line-height: 1.8;
    color: var(--text-mid);
}

/* ---- VIDEO ---- */
#video {
    background: var(--warm-white);
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    transition: transform 0.2s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 960px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ---- QUOTE ---- */
.quote-section {
    background: var(--purple);
    padding: 5rem 3rem;
    text-align: center;
}
.quote-section blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    color: white;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.65;
}
.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-family: "Jost", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-style: normal;
}

/* ---- SHARED ---- */
section {
    padding: 6rem 3rem;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.98rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.section-title em {
    font-style: italic;
    color: var(--purple);
}
.section-body {
    font-size: 1.18rem;
    line-height: 1.9;
    color: var(--text-mid);
    max-width: 580px;
}
hr.divider {
    border: none;
    border-top: 1px solid rgba(161, 34, 116, 0.2);
    margin: 1.5rem 0;
    max-width: 60px;
}

/* ---- ABOUT ---- */
#about {
    background: var(--warm-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem;
    align-items: start;
}
.about-photo-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-photo-wrap::after {
    content: "";
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 55%;
    height: 55%;
    border: 1px solid rgba(161, 34, 116, 0.22);
    border-radius: 2px;
    z-index: 0;
}
.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 2px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.stat {
    border-left: 2px solid var(--purple);
    padding-left: 1rem;
}
.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--purple);
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    margin-top: 0.3rem;
    line-height: 1.4;
}
.about-right {
    padding-top: 0.5rem;
}
.credential {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.credential:last-child {
    border-bottom: none;
}
.credential-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
    margin-top: 0.5rem;
    flex-shrink: 0;
}
.credential-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-mid);
}
.credential-text strong {
    color: var(--text-dark);
    font-weight: 500;
}

/* ---- WORK / SERIES ---- */
#work {
    background: var(--off-white);
}
.work-intro {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.article-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 2px;
    border-top: 3px solid var(--purple);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    cursor: pointer;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.article-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(161, 34, 116, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
}
.article-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}
.article-sub {
    font-size: 0.78rem;
    color: var(--purple);
    letter-spacing: 0.06em;
    font-style: italic;
    margin-bottom: 1rem;
}
.article-body {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-mid);
}
.read-more {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple);
    text-decoration: none;
    border-bottom: 1px solid rgba(161, 34, 116, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

/* ---- SERVICES ---- */
#services {
    background: var(--gray);
}
#services .section-title {
    color: white;
}
#services .section-label {
    color: var(--teal);
}
.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3rem;
}
.services-intro p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.5);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 2.5rem;
    border-radius: 2px;
    transition:
        border-color 0.3s,
        background 0.3s;
}
.service-card:hover {
    border-color: rgba(161, 34, 116, 0.45);
    background: rgba(161, 34, 116, 0.04);
}
.service-icon {
    width: 36px;
    height: 2px;
    background: var(--purple);
    margin-bottom: 1.5rem;
}
.service-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.8rem;
}
.service-desc {
    font-size: 1.18rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- FAQ ---- */
#faq {
    background: var(--warm-white);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
    cursor: pointer;
}
.faq-item:first-child {
    padding-top: 0;
}
.faq-q {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-q::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--purple);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}
.faq-a {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-mid);
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding-top: 1rem;
}

/* ---- CONTACT ---- */
#contact {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

#contact::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 34, 116, 0.18) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
#contact .section-title {
    color: #f0ece8;
}
#contact .section-label {
    color: var(--teal);
}
.contact-sub {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(240, 236, 232, 0.55);
    max-width: 540px;
    margin: 0 auto 2.8rem;
}
.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.contact-item-label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(240, 236, 232, 0.3);
}
.contact-item-value {
    font-size: 0.88rem;
    color: rgba(240, 236, 232, 0.65);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-item-value:hover {
    color: #f0ece8;
}
/* Video background */
.contact__video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Dark overlay so text remains readable */
.contact__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(28, 15, 23, 0.82) 0%,
        rgba(61, 26, 46, 0.7) 50%,
        rgba(28, 15, 23, 0.6) 100%
    );
    z-index: 1;
}

/* ---- FOOTER ---- */
footer {
    background: #080006;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo img {
    height: 30px;
    width: auto;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.footer-logo img:hover {
    opacity: 0.65;
}
.footer-copy {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
}
.footer-social a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-social a:hover {
    color: var(--purple-light);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(7px);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safety fallback — if JS observer fails, still show content */
@media (max-width: 960px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ---- MODALS ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.modal {
    background: var(--off-white);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    border-radius: 2px;
    position: relative;
    transform: translateY(18px);
    transition: transform 0.3s;
}
.modal-overlay.open .modal {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-mid);
    line-height: 1;
}
.modal-label {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.8rem;
    display: block;
}
.modal-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.15rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.modal-sub {
    font-size: 1.15rem;
    color: var(--purple);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.modal-body {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-mid);
}
.modal-body p {
    margin-bottom: 1rem;
}
.modal-body h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
}

/* ---- MOBILE ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 22px;
    height: 1.5px;
    background: rgba(240, 236, 232, 0.8);
    display: block;
    transition: background 0.4s;
}
nav.scrolled .hamburger span {
    background: var(--gray);
}
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: teal;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: #f0ece8;
    text-decoration: none;
    font-weight: 300;
}
.mobile-menu a:hover {
    color: var(--purple-light);
}
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #f0ece8;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ---- TABLET ---- */
@media (max-width: 960px) {
    nav {
        padding: 1rem 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr; /* stack to single column */
        padding: 100px 1.5rem 4rem; /* reduce padding so content fits */
        gap: 1.5rem;
        align-items: start;
        height: 100%; /* fill the hero fully */
    }

    .hero-title-row {
        text-align: left;
    }
    .hero-trust {
        gap: 1.5rem;
    }
    .trust-divider {
        display: none;
    }
    section {
        padding: 4rem 1.5rem;
    }
    #problem {
        padding: 3rem 1.5rem;
    }
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-photo {
        max-width: 300px;
        aspect-ratio: 1/1;
    }
    .faq-grid,
    .work-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
    .contact-details {
        gap: 1.5rem;
    }
    .modal {
        padding: 2rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---- TESTIMONIAL SLIDER ---- */
.t-slider-outer {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
    user-select: none;
}
.t-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.t-card {
    background: white;
    border-radius: 2px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--purple);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    box-sizing: border-box;
    transition: box-shadow 0.3s;
}
.t-card:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.1);
}
.t-quote {
    font-size: 3.5rem;
    font-family: "Cormorant Garamond", serif;
    color: rgba(161, 34, 116, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}
.t-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.75;
    color: var(--text-dark);
    flex: 1;
    margin-bottom: 1.8rem;
}
.t-author {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.t-author strong {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
}
.t-author span {
    font-size: 0.78rem;
    color: var(--text-mid);
    letter-spacing: 0.05em;
}

/* Arrows */
.t-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition:
        background 0.25s,
        color 0.25s,
        border-color 0.25s;
    z-index: 10;
}
.t-arrow:hover {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
}
.t-prev {
    left: 0;
}
.t-next {
    right: 0;
}
.t-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}
.t-arrow:disabled:hover {
    background: white;
    color: var(--purple);
    border-color: rgba(0, 0, 0, 0.1);
}

/* Dots */
.t-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0 3rem;
}
.t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(161, 34, 116, 0.2);
    border: none;
    cursor: pointer;
    transition:
        background 0.3s,
        transform 0.3s;
    padding: 0;
}
.t-dot.active {
    background: var(--purple);
    transform: scale(1.3);
}

@media (max-width: 960px) {
    .t-slider-outer {
        padding: 0 3rem;
    }
    .t-card {
        flex: 0 0 calc(100% - 0rem);
        min-width: calc(100% - 0rem);
        padding: 2rem 1.75rem;
    }
    .t-prev {
        left: 0;
    }
    .t-next {
        right: 0;
    }
}

@media (max-width: 540px) {
    .t-slider-outer {
        padding: 0 2.75rem;
    }
    .t-card {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 1.75rem 1.25rem;
    }
    .t-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    .t-quote {
        font-size: 2.75rem;
        margin-bottom: 0.75rem;
    }
    .t-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .t-dots {
        padding: 0 2.75rem;
        margin-top: 1.5rem;
    }
    .nav-logo img {
        height: 65px;
    }
}

@media (min-width: 961px) and (max-width: 1200px) {
    .t-card {
        flex: 0 0 calc(50% - 0.75rem);
        min-width: calc(50% - 0.75rem);
    }
}

/* ============================================================
   RESILIENCE PROGRAM LANDING PAGE  (resilience-program.html)
   ============================================================ */

.hero-bg-program {
    position: absolute;
    inset: 0;
    background-image: url(Images/mountain.png);
    background-size: cover;
    background-position: center 30%;
}
.hero-overlay-program {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to right,
            rgba(14, 48, 62, 0.88) 0%,
            rgba(14, 48, 62, 0.68) 50%,
            rgba(14, 48, 62, 0.3) 100%
        ),
        linear-gradient(to bottom, rgba(14, 48, 62, 0.15) 0%, rgba(14, 48, 62, 0.6) 100%);
    pointer-events: none;
}

/* ---- NAV ---- */
.nav-logo .logo-white {
    display: block;
}
.nav-logo .logo-color {
    display: none;
}
nav.scrolled .nav-logo .logo-white {
    display: none;
}
nav.scrolled .nav-logo .logo-color {
    display: block;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        background 0.4s,
        box-shadow 0.4s,
        padding 0.4s;
}
nav.scrolled {
    background: rgba(250, 249, 247, 0.97);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
    padding: 1rem 3rem;
}
.nav-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(240, 236, 232, 0.9);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s;
}
nav.scrolled .nav-logo {
    color: var(--text-dark);
}
.hero-overlay-mountain {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to right,
            rgba(28, 48, 58, 0.8) 0%,
            rgba(28, 48, 58, 0.65) 50%,
            rgba(28, 48, 58, 0.35) 100%
        ),
        linear-gradient(to bottom, rgba(28, 48, 58, 0.2) 0%, rgba(28, 48, 58, 0.55) 100%);
    pointer-events: none;
}

/* ---- BUTTONS ---- */

/* ---- SHARED LAYOUT ---- */
.section-

    /* ---- REVEAL ---- */

    /* ---- INTRO / FRAMING ---- */
    #framing {
    background: var(--warm-white);
}
.framing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.framing-left {
    padding-top: 0.5rem;
}
.framing-right {
    padding-top: 3rem;
}
.framing-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.55rem, 2.4vw, 1.9rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    color: var(--text-dark);
    border-left: 2px solid var(--teal);
    padding-left: 1.8rem;
    margin-bottom: 2.5rem;
}

/* ---- WHAT IS IN THE WAY ---- */
#obstacles {
    background: white;
}
.obstacles-intro {
    max-width: 680px;
    margin-bottom: 4rem;
}
.obstacles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.obstacle-card {
    padding: 2.2rem 1.8rem;
    background: white;
    border-top: 3px solid var(--purple);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
}
.obstacle-card.teal {
    border-top-color: var(--teal);
}
.obstacle-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(161, 34, 116, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
}
.obstacle-card.teal .obstacle-num {
    color: rgba(113, 199, 173, 0.2);
}
.obstacle-card img {
    width: 160px;
}
.obstacle-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}
.obstacle-

    /* ---- PROGRAM OVERVIEW ---- */
    #program {
    background: #e8f5f1;
    position: relative;
    overflow: hidden;
}
#program .section-label {
    color: #2a637a;
}
#program .section-title {
    color: var(--text-dark);
}
#program .section-title em {
    color: var(--purple);
}
.phase-bg {
    background-color: purple;
    background: radial-gradient(circle, rgba(161, 34, 116, 0.08) 0%, transparent 70%);
}
.program-intro {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-mid);
    max-width: 580px;
    margin-bottom: 4rem;
}
.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: transparent;
    border: none;
}
.phase {
    background: #ffffff;
    padding: 2.8rem 2.2rem;
    position: relative;
    box-shadow: 0 2px 16px rgba(42, 99, 122, 0.08);
}
.phase-weeks {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #2a637a;
    margin-bottom: 0.8rem;
    display: block;
}
.phase-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.phase-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
}
.phase- .phase-topics {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.phase-topics li {
    font-size: 1rem;
    color: var(--text-mid);
    padding-left: 1.2rem;
    position: relative;
}
.phase-topics li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--purple);
    opacity: 0.7;
}
.phase-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}
.phase-accent.purple {
    background: var(--purple);
}
.phase-accent.teal {
    background: var(--teal);
}
.phase-accent.both {
    background: linear-gradient(to right, var(--purple), var(--teal));
}

/* ---- WHAT YOU WILL FIND ---- */
#outcomes {
    background: var(--warm-white);
}
.outcomes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.outcomes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 3rem;
}
.outcome-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 1rem;
    align-items: start;
}
.outcome-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    margin-left: 30px;
}
.outcome-icon img {
    width: 70px;
}
.outcome-text {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-mid);
}
.outcome-text strong {
    display: block;
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
    margin-left: 1.8em;
}
.outcomes-right {
    padding-top: 1rem;
}
.for-whom {
    background: white;
    padding: 2.5rem;
    border-radius: 2px;
    border-top: 3px solid var(--teal);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.for-whom h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}
.for-whom-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.for-whom-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-mid);
    padding-left: 1.4rem;
    position: relative;
}
.for-whom-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
}
.not-for {
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.not-for p {
    font-size: 1rem;
    color: var(--text-mid);
    font-style: italic;
    line-height: 1.7;
}

/* ---- QUOTE SECTION ---- */
.quote- .quote-section blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(240, 236, 232, 0.9);
    max-width: 760px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}
.quote-section cite {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(240, 236, 232, 0.38);
}

/* ---- FORMAT & INVESTMENT ---- */
#format {
    background: var(--off-white);
}
.format-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.format-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.format-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.format-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.format-item-icon {
    width: 36px;
    height: 36px;
    background: var(--warm-white);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.format-item-icon svg {
    width: 16px;
    height: 16px;
    color: var(--purple);
}
.format-item-text {
    align-content: normal;
}
.format-item-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
}
.format-item-body {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-mid);
}
.investment-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 2px;
    border-top: 3px solid var(--purple);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}
.investment-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.price-was-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.price-was-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.price-was {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 300;

    text-decoration: line-through;
    text-decoration-color: rgba(161, 34, 116, 0.5);
}

.price-amount {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1;
}
.price-period {
    font-size: 0.82rem;
    color: var(--text-mid);
    letter-spacing: 0.05em;
}
.price-note {
    font-size: 1rem;
    color: var(--text-mid);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.investment-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2.2rem;
}
.investment-includes li {
    font-size: 1.05rem;
    color: var(--text-mid);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.6;
}
.investment-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-size: 0.8rem;
}
.investment-note {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-style: italic;
    line-height: 1.65;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 1.2rem;
    margin-bottom: 2rem;
}

/* ---- ABOUT ---- */
#about {
    background: var(--warm-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: start;
}
.about-photo-wrap {
    position: relative;
}
.about-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, rgba(161, 34, 116, 0.08), rgba(113, 199, 173, 0.1));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-photo-placeholder span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.25);
}
.about-photo-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(161, 34, 116, 0.2);
    border-radius: 2px;
    z-index: -1;
}
.about-credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.credential-badge {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple);
    border: 1px solid rgba(161, 34, 116, 0.25);
    padding: 0.35rem 0.75rem;
    border-radius: 2px;
}
.about-text {
    padding-top: 0.5rem;
}
.about-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 1.4rem;
}
.about-text p:last-child {
    margin-bottom: 0;
}

/* ---- CTA ---- */
#cta {
    background: #080014;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 34, 116, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
#cta #cta #cta .cta- .cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-note {
    margin-top: 1.8rem;
    font-size: 0.8rem;
    color: rgba(240, 236, 232, 0.25);
    letter-spacing: 0.06em;
}

/* ---- FOOTER ---- */
footer {
    background: #040008;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.04em;
}
.footer-copy {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 0.05em;
}
.footer-link {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover {
    color: var(--purple-light);
}

/* ---- MOBILE ---- */
@media (max-width: 960px) {
    nav {
        padding: 1.2rem 1.5rem;
    }
    nav.scrolled {
        padding: 1rem 1.5rem;
    }
    .framing-grid,
    .outcomes-grid,
    .format-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .obstacles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .phases-grid {
        grid-template-columns: 1fr;
    }
    .about-photo-wrap {
        max-width: 300px;
    }
    footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }
    
}

@media (max-width: 540px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }
    .hero-detail {
        gap: 2rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .hero-content-about .hero-eyebrow {
        position: absolute;
        top: 60%;
    }
    .hero-content-about .hero-title {
        position: absolute;
        top: 75%;
    }
    
}

/* ---- ABOUT PAGE HERO — mobile only ---- */
@media (max-width: 960px) {
    .hero-about {
        min-height: unset !important;
        height: 56vw;
        overflow: hidden;
    }

    .hero-about .hero-bg-about {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        background-color: transparent;
    }

    /* Clip overlay to photo only — no grey bleed */
    .hero-about .hero-overlay {
        height: 56vw;
    }

    .hero-about .hero-content-about {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        /* Push text below the nav (~80px) */
        padding: 10rem 2.4rem 1rem;
        justify-content: flex-start;
    }

    .hero-about .hero-title {
        font-size: clamp(1.2rem, 4.5vw, 2rem);
        margin-top: 0.3rem;
    }

    .hero-about .hero-eyebrow {
        margin-bottom: 0.4rem;
    }

    .hero-about .hero-scroll {
        display: none;
    }
}
