@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Dancing+Script:wght@500;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #0f3154;
    --navy-dark: #0b2a49;
    --gold: #9b6d2f;
    --gold-soft: #c7a56d;
    --cream: #fbf2e6;
    --cream-2: #f6ead7;
    --cream-3: #fffaf3;
    --line: rgba(155, 109, 47, 0.18);
    --text: #182033;
    --muted: #4d4b46;
    --shadow: 0 18px 45px rgba(15, 49, 84, 0.11);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background: var(--cream-3);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.section-inner {
    width: 90%;
    margin: 0 auto;
}

.site-hero {
    min-height: clamp(420px, 40.8vw, 650px);
    position: relative;
    background: url('/images/Top-BG.jpg') center top / cover no-repeat;
    isolation: isolate;
}

.site-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(251, 242, 230, 0.24), rgba(251, 242, 230, 0) 52%);
}

.topbar {
    width: 90%;
    margin: 0 auto;
    /* padding: 22px 0 0; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.brand img {
    width: clamp(165px, 18vw, 240px);
    height: auto;
}

.navbar {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 26px);
    font-size: 13px;
    font-weight: 700;
}

.navbar a {
    text-decoration: none;
    color: #071d34;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--gold);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 23px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff !important;
    box-shadow: 0 14px 28px rgba(15, 49, 84, 0.22);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--navy-dark);
}

.hero-copy {
    width: 90%;
    margin: 0 auto;
    padding-top: clamp(54px, 8vw, 110px);
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3rem, 6.2vw, 5.75rem);
    line-height: 0.9;
    letter-spacing: 0;
    color: var(--navy);
    max-width: 48%;
}

.script-line,
.eyebrow,
.quote-band p {
    font-family: "Dancing Script", cursive;
    color: var(--gold);
}

.script-line {
    margin-top: 18px;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.hero-text {
    width: 48%;
    margin-top: 15px;
    color: #192538;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 25px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
    background: var(--navy);
    color: #fff;
    box-shadow: 0 14px 30px rgba(15, 49, 84, 0.22);
}

.button-primary:hover,
.footer-button:hover {
    transform: translateY(-2px);
}

/* .button-link {
    padding: 0;
    min-height: auto;
    color: var(--navy);
    border-radius: 0;
} */


.story-section {
    position: relative;
    background: rgba(255, 250, 243, 0.92);
    /* padding: clamp(30px, 4vw, 52px) 0; */
    padding: 20px 0;

    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0px;
}

.story-section img {
    width: 250px;
    max-width: 30%;
    object-fit: cover;
    /* margin-left: 5%; */
    border-radius: 12px;
}

.leaf-mark {
    position: absolute;
    left: 5%;
    top: 8px;
    width: 125px;
    height: 210px;
    opacity: 0.45;
    background:
        radial-gradient(ellipse at 35% 30%, #89a083 0 18%, transparent 19%),
        radial-gradient(ellipse at 70% 42%, #89a083 0 16%, transparent 17%),
        radial-gradient(ellipse at 42% 62%, #89a083 0 16%, transparent 17%);
    transform: rotate(-18deg);
}

.story-inner {
    width: 90%;
    text-align: left;
    flex: 1;
}

.eyebrow {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 4px;
}

.story-inner h2,
.benefits-section h2,
.approach-copy h2,
.transform-section h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--navy);
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1;
    letter-spacing: 0;
}

.story-inner p:last-child {
    width: min(900px, 100%);
    margin-top: 14px;
    color: #222832;
    line-height: 1.75;
    font-size: 15px;
    font-weight: 500;
}

.benefits-section {
    background: var(--cream);
    padding: 24px 0 32px;
    text-align: left;
}

.benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: clamp(28px, 4vw, 58px);
    align-items: center;
}

.benefits-copy h2 {
    text-align: left;
}

.benefit-intro {
    margin-top: 12px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
}

.benefit-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.benefit-card {
    padding: 8px 20px 6px;
    border-right: 1px solid var(--line);
}

.benefit-card:last-child {
    border-right: 0;
}

.benefit-card span {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.65);
    color: var(--gold);
    font-size: 28px;
    box-shadow: 0 12px 26px rgba(155, 109, 47, 0.08);
}

.benefit-card h3 {
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 7px;
}

.benefit-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.help-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
}

.help-grid p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #263246;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.5;
    box-shadow: none;
}

.help-grid i {
    margin-top: 4px;
    color: var(--gold);
    flex: 0 0 auto;
}

.benefits-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(10px, 1.4vw, 16px);
    align-items: center;
}

.benefits-images img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
    /* box-shadow: var(--shadow); */
    
}

/* CENTER / SMALL IMAGE */
.benefit-image-small {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    width: 80%;
    max-width: 250px;
    margin: 0 auto;
}

/* LAST / LARGE IMAGE */
.benefit-image-large {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
     /* max-height: 450px; */
}


.approach-section {
    background: #f2e5d1;
    padding: 24px 0;
}

.approach-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 58px;
    align-items: center;
}

.approach-copy ul {
    list-style: none;
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.approach-copy li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #16263b;
    font-size: 16px;
    line-height: 1.45;
}

.approach-copy li i {
    color: var(--gold);
    margin-top: 3px;
}

.approach-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}



.transform-section {
    background: var(--cream-3);
    padding: 20px 0 24px;
    text-align: center;
}

.transform-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: minmax(140px, 0.75fr) minmax(175px, 0.85fr) 72px minmax(175px, 0.85fr) minmax(140px, 0.75fr);
    gap: 22px;
    align-items: center;
}

.transform-photo {
    width: 100%;
    aspect-ratio: 1.12 / 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.transform-list {
    height: 100%;
    padding: 24px 24px;
    text-align: left;
    border-radius: 12px;
    background: rgba(251, 242, 230, 0.72);
}

.transform-list h3 {
    color: var(--navy);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.65rem;
    margin-bottom: 12px;
}

.transform-list ul {
    list-style: none;
    display: grid;
    gap: 10px;
    color: #32312e;
    font-size: 14px;
}

.transform-list li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.before-list li::before {
    content: "\2715";
    color: #9b6d2f;
}

.after-list li::before {
    content: "\2713";
    color: #234f36;
    font-weight: 800;
}

.transform-arrow {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #eadcc8;
    color: var(--navy);
    font-size: 24px;
}

/* testimonials-section */
.testimonials-section {
    background: var(--cream);
    padding: 40px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--navy);
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 30px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    /* box-shadow: var(--shadow); */
    display: flex;
    flex-direction: column;
}

.testimonial-card p {
    font-style: italic;
    line-height: 1.7;
    color: var(--muted);
}

.testimonial-card h4 {
    margin-top: auto;
    text-align: right;
    color: var(--gold);
    padding-top: 20px;
}

@media (max-width:760px) {

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

}

.quote-band {
    padding: 26px 24px;
    text-align: center;
    background: #ecdcc5;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    /* NEW */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.quote-band p {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.1;
    margin: 0;
}

.quote-band i {
    color: var(--gold);
    font-size: 0.55em;
    vertical-align: middle;
}

/* LEAF IMAGES */
.quote-leaf {
    width: 70px;
    height: auto;
    opacity: 0.8;
}

.left-leaf {
    transform: rotate(0deg);
}

.right-leaf {
    transform: scaleX(-1);
}

.site-footer {
    background: var(--navy-dark);
    color: #fff;
    padding: 40px 0 48px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(250px, 0.5fr);
    gap: 54px;
    align-items: center;
}

.footer-main h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: 0;
}

.footer-main p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-button {
    margin-top: 22px;
    background: #fff8ed;
    color: var(--navy);
}

.footer-divider {
    width: 1px;
    height: 160px;
    background: rgba(255, 255, 255, 0.24);
}

.footer-points {
    display: grid;
    gap: 13px;
}

.footer-points p {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-points i {
    color: #d8c49e;
    width: 20px;
}

@media (max-width: 1050px) {
    .topbar {
        align-items: flex-start;
    }

    .navbar {
        justify-content: flex-end;
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .site-hero {
        min-height: clamp(430px, 48vw, 560px);
        background-position: 55% top;
    }

    .hero-copy {
        padding-top: 64px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .benefits-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-card:nth-child(2) {
        border-right: 0;
    }

    .approach-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .approach-image img {
        height: 230px;
    }

    .transform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .transform-arrow {
        grid-column: 1 / -1;
        transform: rotate(90deg);
    }
}

@media (max-width: 760px) {

    .section-inner,
    .topbar,
    .hero-copy {
        width: 90%;
    }

    .story-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .transform-list {
        text-align: center;
    }

    .transform-list ul {
        justify-items: center;
    }

    .transform-list li {
        justify-content: center;
    }

    .footer-points {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        justify-items: center;
    }


    .site-hero {
        min-height: auto;
        padding-bottom: 54px;
        background-image:
            linear-gradient(rgba(251, 242, 230, 0.88), rgba(251, 242, 230, 0.84)),
            url('/images/Top-BG-resized-small.jpg');
        background-position: center top;
    }

    .topbar {
        display: block;
        padding-top: 14px;
    }

    .brand img {
        width: 175px;
        margin: 0 auto 10px;
    }

    .navbar {
        justify-content: center;
        padding: 10px;
        border-radius: 18px;
        background: rgba(255, 250, 243, 0.78);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
    }

    .navbar a {
        flex: 1 1 calc(33.333% - 12px);
        text-align: center;
        font-size: 12px;
    }

    .nav-cta {
        flex-basis: 100%;
        padding: 12px 16px;
    }

    .hero-copy {
        padding-top: 50px;
        text-align: center;
    }

    .hero-copy h1,
    .hero-text {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
        gap: 16px;
    }

    .button-primary {
        width: 100%;
    }

    .story-inner {
        width: 90%;
        text-align: center;
    }

    .leaf-mark {
        opacity: 0.18;
        left: -20px;
    }

    .benefit-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .benefits-copy h2,
    .benefit-intro {
        text-align: center;
    }

    .benefits-images {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        border-right: 0;
        padding: 18px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.5);
    }

    .approach-copy {
        text-align: left;
    }

    .approach-image img {
        height: 220px;
    }

    .transform-grid {
        grid-template-columns: 1fr;
    }

    .transform-photo {
        aspect-ratio: 1.55 / 1;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
    }

    .footer-points {
        width: min(310px, 100%);
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 430px) {
    .navbar a {
        flex-basis: calc(50% - 10px);
    }

    .hero-copy h1 {
        font-size: 2.9rem;
    }

    .script-line {
        font-size: 1.5rem;
    }

    .quote-band p {
        font-size: 2rem;
    }
}


.nav-login {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 23px;
    border-radius: 999px;
    border: 1px solid var(--navy);
    color: var(--navy) !important;
    background: transparent;
    transition: 0.2s ease;
}

.nav-login:hover {
    background: var(--navy);
    color: #fff !important;
    transform: translateY(-2px);
}


.services-btn,
.coaching-btn {
    margin-top: 24px;
}

.footer-contact {
    margin-top: 22px;
    display: grid;
    gap: 12px;

}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #d8c49e;
}

.footer-contact i {
    color: #d8c49e;
    width: 18px;
}


@media (max-width: 760px) {

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
    }

    .footer-points {
        width: min(310px, 100%);
        margin: 0 auto;
        text-align: left;
    }

    .footer-contact {
        justify-items: center;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

.footer-button {
    width: fit-content;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    padding: 12px 22px;
    line-height: 1.4;
}

.footer-btn-left,
.footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width:760px) {

    .footer-main,
    .footer-btn-left {
        align-items: center;
    }

    .footer-button {
        width: 100%;
        max-width: 320px;
    }

    .approach-copy {
        text-align: center;
    }

    .approach-copy ul {
        justify-items: center;
    }

    .approach-copy li {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

}