/* ============================================================
   NORTHPOINT THERAPIES - Main Stylesheet
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────── */
@font-face{font-display:swap;font-family:'Delmon';font-style:normal;font-weight:300;src:url(../fonts/delmon.woff2) format('woff2')}

@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:300;src:url(../fonts/montserrat-v31-latin-300.woff2) format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:400;src:url(../fonts/montserrat-v31-latin-regular.woff2) format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:500;src:url(../fonts/montserrat-v31-latin-500.woff2) format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:600;src:url(../fonts/montserrat-v31-latin-600.woff2) format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:700;src:url(../fonts/montserrat-v31-latin-700.woff2) format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:800;src:url(../fonts/montserrat-v31-latin-800.woff2) format('woff2')}@font-face{font-display:swap;font-family:'Montserrat';font-style:normal;font-weight:900;src:url(../fonts/montserrat-v31-latin-900.woff2) format('woff2')}


@view-transition {
  navigation: auto;
}

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
    /* Colours */
    --color-primary:        #3C8CA0;
    --color-primary-dark:   #28788C;
    --color-primary-light:  #8CC8C8;
    --color-accent:         #50A0B4;
    --color-text-dark:      #1C2B2D;
    --color-text-body:      #3D4F52;
    --color-text-muted:     #6B8A8E;
    --color-bg:             #FFFFFF;
    --color-bg-soft:        #F4F9FA;
    --color-border:         #D6EBEC;

    /* Typography */
    --font-heading:         'Delmon', serif;
    --font-body:            'Montserrat', sans-serif;
    --fw-regular:           400;
    --fw-medium:            500;
    --fw-semibold:          600;
    --fw-bold:              700;

    /* Type Scale */
    --text-xs:              0.75rem;
    --text-sm:              0.875rem;
    --text-base:            1rem;
    --text-md:              1.125rem;
    --text-lg:              1.25rem;
    --text-xl:              1.5rem;
    --text-2xl:             2rem;
    --text-3xl:             2.5rem;
    --text-4xl:             3rem;

    /* Spacing */
    --space-xs:             0.5rem;
    --space-sm:             1rem;
    --space-md:             1.5rem;
    --space-lg:             2rem;
    --space-xl:             3rem;
    --space-2xl:            5rem;
    --space-3xl:            8rem;

    /* Layout */
    --container-max:        1100px;
    --container-pad:        1.5rem;

    /* Radii */
    --radius-sm:            4px;
    --radius-md:            8px;
    --radius-lg:            16px;
    --radius-pill:          999px;

    /* Shadows */
    --shadow-sm:            0 1px 4px rgba(28, 43, 45, 0.08);
    --shadow-md:            0 4px 16px rgba(28, 43, 45, 0.12);
    --shadow-lg:            0 8px 32px rgba(28, 43, 45, 0.16);

    /* Transitions */
    --transition:           0.25s ease;

    /* Nav */
    --nav-height:           80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--fw-regular);
    color: var(--color-text-body);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

ul, ol {
    list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-regular);
    color: var(--color-text-dark);
    line-height: 1.25;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-md); }

p {
    margin-bottom: var(--space-sm);
}

p:last-child {
    margin-bottom: 0;
}

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

.section {
    padding-block: var(--space-2xl);
}

.section--soft {
    background-color: var(--color-bg-soft);
}

.section--primary {
    background-color: var(--color-primary);
    background-image: linear-gradient(210deg, #63b9ce 0%, #2b5f67 100%);
    color: #fff;
}

.section--dark {
    background-color: var(--color-text-dark);
    color: #fff;
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);
}

.section__label {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.section--primary .section__label,
.section--dark .section__label {
    color: var(--color-primary-light);
}

.section__header h2 {
    margin-bottom: var(--space-sm);
}

.section--primary h2,
.section--dark h2 {
    color: #fff;
}

.section__header p {
    color: var(--color-text-muted);
    font-size: var(--text-md);
}

.section--primary .section__header p,
.section--dark .section__header p {
    color: rgba(255, 255, 255, 0.8);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.04em;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline--white {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline--white:hover {
    background-color: #fff;
    color: var(--color-primary-dark);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    background-color: #fff;
    color: var(--color-primary-dark);
    border-color: #fff;
}

.btn-white:hover {
    background-color: var(--color-bg-soft);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ── Navigation ───────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
    border-bottom-left-radius: 1rem;;
    border-bottom-right-radius: 1rem;;
    transition: box-shadow 0.3s;
}

.site-nav.scrolled {
    box-shadow: var(--shadow-md);
}

.site-nav .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: var(--text-base);
    font-weight: var(--fw-medium);
    color: var(--color-text-body);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    border-radius: var(--radius-pill);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-dark);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    background-color: #011e26;
    color: rgba(255, 255, 255, 0.75);
    padding-block: var(--space-2xl) var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: var(--text-sm);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    color: #fff;
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-col ul a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--color-primary-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
    background-color: rgba(140, 200, 200, 0.1);
}

/* ── Page offset for fixed nav ────────────────────────────── */
.page-content {
    padding-top: var(--nav-height);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    :root {
        --text-4xl: 2.25rem;
        --text-3xl: 1.875rem;
        --text-2xl: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    :root {
        --text-4xl: 1.875rem;
        --text-3xl: 2rem;
        --space-2xl: 3.5rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile menu open state */
    .site-nav.nav-open {
        height: auto;
        background-color: #fff;
    }

    .site-nav.nav-open .container {
        flex-wrap: wrap;
        padding-block: var(--space-sm);
    }

    .site-nav.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: var(--space-sm);
        padding-block: var(--space-sm);
        border-top: 1px solid var(--color-border);
    }

    .site-nav.nav-open .nav-cta {
        display: block;
        width: 100%;
        padding-bottom: var(--space-sm);
    }

    .site-nav.nav-open .nav-cta .btn {
        width: 100%;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

/* ============================================================
   HOMEPAGE
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    background: url('../images/hero-bg.webp');
    background-position: center;
    background-size: cover;
    padding-block: 5rem var(--space-2xl);
    overflow: hidden;
    margin-top: -1rem;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-content .section__label {
    margin-bottom: var(--space-sm);
}

.hero-content h1 {
    margin-bottom: var(--space-md);
    font-size: var(--text-4xl);
}

.hero-content p {
    font-size: var(--text-md);
    color: var(--color-text-body);
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
    background-color: var(--color-border);
}

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

/* ── CBT Pillars ──────────────────────────────────────────── */
.cbt-intro {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: var(--space-xl);
    font-size: var(--text-md);
}

.cbt-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.cbt-pillars li {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.cbt-pillars li:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: rgba(60, 140, 160, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.cbt-pillars h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
}

.cbt-pillars p {
    font-size: var(--text-base);
    color: var(--color-text-muted);
}

/* ── Who is CBT for ───────────────────────────────────────── */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.who-content h2 {
    margin-bottom: var(--space-md);
}

.who-content p {
    margin-bottom: var(--space-lg);
    font-size: var(--text-md);
}

.who-conditions ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs) var(--space-sm);
}

.who-conditions li {
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-body);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-bg-soft);
    border-left: 3px solid var(--color-primary-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── What to Expect ───────────────────────────────────────── */
.expect-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    counter-reset: expect;
}

.expect-list li {
    counter-increment: expect;
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--color-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.expect-list li::before {
    content: counter(expect, decimal-leading-zero);
    flex-shrink: 0;
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary-light);
    line-height: 1;
}

.expect-list span {
    font-size: var(--text-base);
    color: var(--color-text-body);
    padding-top: 2px;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

blockquote {
    background: var(--color-bg-soft);
    /* border-top: 3px solid var(--color-primary); */
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: var(--space-lg);
    position: relative;
}

blockquote::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--color-primary-light);
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: var(--space-md);
    font-family: Georgia, serif;
    opacity: 0.5;
}

blockquote p {
    font-size: var(--text-md);
    color: var(--color-text-body);
    font-style: italic;
    padding-top: var(--space-md);
    margin: 0;
}

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cta-banner__content h2 {
    color: #fff;
    margin-bottom: var(--space-xs);
}

.cta-banner__content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-md);
    max-width: 560px;
    margin: 0;
}

.cta-banner__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ── Homepage Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .hero {
        padding-top: 3rem;;
    }

    .hero .container {
        grid-template-columns: 1fr;

    }

    .hero-image {
        max-width: 500px;
        /* order: -1; */
    }

    .cbt-pillars {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-grid {
        grid-template-columns: 1fr;
    }

    .expect-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__content p {
        margin-inline: auto;
    }
}

@media (max-width: 680px) {
    .cbt-pillars {
        grid-template-columns: 1fr;
    }

    .who-conditions ul {
        grid-template-columns: 1fr;
    }

    .expect-list {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .cta-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner__actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, var(--color-bg-soft) 0%, #e8f5f6 100%);
    background-image: url('../images/hero-bg.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-block: var(--space-2xl) var(--space-xl);
    text-align: center;
    margin-top: -1rem;
}

.page-header .section__label {
    margin-bottom: var(--space-xs);
}

.page-header h1 {
    margin-bottom: var(--space-xs);
}

.page-header p {
    font-size: var(--text-md);
    color: var(--color-text-muted);
    margin: 0;
}

/* ── About Grid ───────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3 / 4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-content .section__label {
    margin-bottom: var(--space-xs);
}

.about-content h2 {
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--color-text-body);
    margin-bottom: var(--space-md);
}

.about-content .btn {
    margin-top: var(--space-xs);
}

/* ── Approach List ────────────────────────────────────────── */
.approach-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.approach-list li:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.approach-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background-color: rgba(60, 140, 160, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-list h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.approach-list p {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin: 0;
}

/* ── Recent Work ──────────────────────────────────────────── */
.recent-work {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.recent-work__content .section__label {
    margin-bottom: var(--space-xs);
}

.recent-work__content h2 {
    margin-bottom: var(--space-md);
}

.recent-work__content p {
    margin-bottom: var(--space-md);
}

.recent-work__content .btn {
    margin-top: var(--space-xs);
}

.recent-work__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.recent-work__tags span {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-primary-dark);
    background-color: rgba(60, 140, 160, 0.08);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 0.4rem 1rem;
}

/* ── About Quote ──────────────────────────────────────────── */
.about-quote {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
}

.about-quote blockquote {
    background: var(--color-bg);
    border-top: none;
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.about-quote blockquote::before {
    position: static;
    display: block;
    font-size: 4rem;
    margin-bottom: calc(var(--space-xs) * -1);
    opacity: 0.4;
}

.about-quote blockquote p {
    font-size: var(--text-lg);
    padding-top: 0;
    margin-bottom: var(--space-sm);
}

.about-quote cite {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    font-style: normal;
    font-weight: var(--fw-medium);
}

/* ── About Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 400px;
        margin-inline: auto;
        aspect-ratio: 1 / 1;
    }

    .approach-list {
        grid-template-columns: 1fr;
    }

    .recent-work {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .page-header {
        padding-block: var(--space-xl) var(--space-lg);
    }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* ── Service Cards ────────────────────────────────────────── */
.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.service-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-lg);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.service-card--featured {
    border-color: var(--color-primary);
    border-width: 2px;
    box-shadow: var(--shadow-md);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background-color: rgba(60, 140, 160, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card--featured .service-card__icon {
    background-color: var(--color-primary);
    color: #fff;
}

.service-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.service-card__tag {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(60, 140, 160, 0.08);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 0.2rem 0.75rem;
    margin-bottom: var(--space-xs);
    display: block;
}

.service-card h2 {
    font-size: var(--text-2xl);
}

.service-card__price {
    text-align: right;
    flex-shrink: 0;
}

.price {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--fw-bold);
    color: var(--color-primary-dark);
    line-height: 1;
}

.price-note {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: var(--fw-medium);
}

.service-card__body p {
    color: var(--color-text-body);
    margin-bottom: var(--space-sm);
}

.service-card__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs) var(--space-md);
    margin-block: var(--space-md);
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-text-body);
}

.service-card__features svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ── Included Grid ────────────────────────────────────────── */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.included-grid li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    font-size: var(--text-base);
    color: var(--color-text-body);
    box-shadow: var(--shadow-sm);
}

.included-grid svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Consult Callout ──────────────────────────────────────── */
.consult-callout {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.consult-callout__text .section__label {
    margin-bottom: var(--space-xs);
}

.consult-callout__text h2 {
    margin-bottom: var(--space-sm);
    font-size: var(--text-2xl);
}

.consult-callout__text p {
    color: var(--color-text-body);
    max-width: 580px;
    margin: 0;
}

.consult-callout .btn {
    flex-shrink: 0;
}

/* ── Services Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card__icon {
        width: 52px;
        height: 52px;
    }

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

    .consult-callout {
        flex-direction: column;
    }

    .consult-callout .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 680px) {
    .service-card {
        padding: var(--space-lg);
    }

    .service-card__features {
        grid-template-columns: 1fr;
    }

    .service-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card__price {
        text-align: left;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-2xl);
    align-items: flex-start;
}

.contact-form-wrap h2 {
    margin-bottom: var(--space-sm);
}

.contact-form-wrap > p {
    color: var(--color-text-body);
    margin-bottom: var(--space-lg);
    font-size: var(--text-md);
}

/* ── Form ─────────────────────────────────────────────────── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

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

.form-group label {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-text-dark);
}

.form-group label span[aria-hidden] {
    color: var(--color-primary);
}

.label-optional {
    font-weight: var(--fw-regular);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-dark);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B8A8E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(60, 140, 160, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-group--checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary);
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm);
}

.form-group--checkbox label {
    font-weight: var(--fw-regular);
    font-size: var(--text-sm);
    color: var(--color-text-body);
    cursor: pointer;
}

.form-group--checkbox label a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form .btn {
    align-self: flex-start;
    min-width: 180px;
}

/* ── Contact Details Sidebar ──────────────────────────────── */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: sticky;
    top: calc(var(--nav-height) + var(--space-lg));
}

.contact-details__block {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.contact-details__block h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.contact-details__block ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-details__block li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-details__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: rgba(60, 140, 160, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details__label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-details__block li a,
.contact-details__block li span {
    font-size: var(--text-sm);
    color: var(--color-text-body);
}

.contact-details__block li a:hover {
    color: var(--color-primary);
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-body);
    transition: color var(--transition);
}

.contact-social a:hover {
    color: var(--color-primary);
}

.contact-social svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-details__callout {
    border-left: 3px solid var(--color-primary);
}

.contact-details__callout h3 {
    color: var(--color-primary-dark);
    border-bottom: none;
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-xs);
    font-size: 1.4rem;
}

.contact-details__callout p {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    margin: 0;
    line-height: 1.6;
}

/* ── Contact Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details__callout {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-details__callout {
        grid-column: auto;
    }

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

/* ============================================================
   SUCCESS / FAILURE PAGES
   ============================================================ */

.feedback-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.feedback-card {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.feedback-card--success {
    border-top: 4px solid var(--color-primary);
}

.feedback-card--failure {
    border-top: 4px solid #C0392B;
}

.feedback-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-inline: auto;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-card--success .feedback-card__icon {
    background: rgba(60, 140, 160, 0.1);
    color: var(--color-primary);
}

.feedback-card--failure .feedback-card__icon {
    background: rgba(192, 57, 43, 0.08);
    color: #C0392B;
}

.feedback-card h1 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.feedback-card p {
    color: var(--color-text-body);
    margin-bottom: var(--space-sm);
}

.feedback-card__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-block: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.feedback-card__contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-body);
}

.feedback-card__contact a:hover {
    color: var(--color-primary);
}

.feedback-card__contact svg {
    color: var(--color-primary);
}

.feedback-card__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .feedback-card {
        padding: var(--space-lg);
    }

    .feedback-card__actions {
        flex-direction: column;
    }

    .feedback-card__actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.policy-wrap {
    max-width: 760px;
    margin-inline: auto;
}

.policy-block {
    padding-block: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.policy-block:last-child {
    border-bottom: none;
}

.policy-block h2 {
    font-size: var(--text-xl);
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.policy-block p {
    color: var(--color-text-body);
    margin-bottom: var(--space-sm);
}

.policy-block p:last-child {
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    margin-block: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-base);
    color: var(--color-text-body);
    padding-left: var(--space-sm);
    position: relative;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    flex-shrink: 0;
}

.policy-contact {
    list-style: none;
    margin-top: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
}

.policy-contact li {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    display: flex;
    gap: var(--space-xs);
}

.policy-contact strong {
    color: var(--color-text-dark);
    min-width: 60px;
}

.policy-contact a {
    color: var(--color-primary);
}

.policy-contact a:hover {
    color: var(--color-primary-dark);
}


/*=============== SCROLL ANIMATIONS ===============*/
@media (prefers-reduced-motion: no-preference) {
    /* FADE IN ------------------------------- */
    .fade-in {
        opacity: 0;
    }

    .is-cms .fade-in {
        opacity: 1;
    }

    .fade-in-animation {
        animation: fade-in 1s ease forwards;
    }

    .is-cms .fade-in-animation {
        animation: none;
    }
    
    @keyframes fade-in {
        from {opacity: 0;}
        to {opacity: 1;}
    }

    /* SLIDE LEFT ----------------------------*/
    .slide-left {
        opacity: 0;
    }

    .is-cms .slide-left {
        opacity: 1;
    }

    .slide-left-animation {
        animation: slide-left 1s ease forwards;
    }

    .is-cms .slide-left-animation {
        animation: none;
    }
    
    @keyframes slide-left {
        from {
            transform: translateX(-50%);
            opacity: 0;
        } to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* SLIDE RIGHT ----------------------------*/
    .slide-right {
        opacity: 0;
    }    

    .is-cms .slide-right {
        opacity: 1;
    }

    .slide-right-animation {
        animation: slide-right 1s ease forwards;
    }

    .is-cms .slide-right-animation {
        animation: none;
    }
    
    @keyframes slide-right {
        from {
            transform: translateX(50%);
            opacity: 0;
        } to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* SLIDE DOWN ----------------------------*/   
    .slide-down {
        opacity: 0;
    } 

    .is-cms .slide-down {
        opacity: 1;
    }

    .slide-down-animation {
        animation: slide-down 1s ease forwards;
    }

    .is-cms .slide-down-animation {
        animation: none;
    }
    
    @keyframes slide-down {
        from {
            transform: translateY(-50%);
            opacity: 0;
        } to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* SLIDE UP ----------------------------*/ 
    .slide-up {
        opacity: 0;
    }       

    .is-cms .slide-up {
        opacity: 1;
    }

    .slide-up-animation {
        animation: slide-up 1s ease forwards;
    }

    .is-cms .slide-up-animation {
        animation: none;
    }
    
    @keyframes slide-up {
        from {
            transform: translateY(50%);
            opacity: 0;
        } to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* PULSE ----------------------------*/ 
    .pulse-animation {
        animation: pulse 0.7s ease forwards;
    }

    .is-cms .pulse-animation {
        animation: none;
    }

    @keyframes pulse {
        0% {scale: 1}
        50% {scale: 1.1}
        100% {scale: 1}
    }

    /* ANIMATION DELAYS  ----------------------------*/  
    .delay-200ms{
        animation-delay: 200ms;
    }
    
    .delay-300ms{
        animation-delay: 300ms;
    }
    
    .delay-400ms{
        animation-delay: 400ms;
    }
    
    .delay-500ms{
        animation-delay: 500ms;
    }
    
    .delay-600ms{
        animation-delay: 600ms;
    }
    
    .delay-700ms{
        animation-delay: 700ms;
    }
    
    .delay-800ms{
        animation-delay: 800ms;
    }
    
    .delay-900ms{
        animation-delay: 900ms;
    }
    
    .delay-1000ms{
        animation-delay: 1000ms;
    }
}



.shapedividers_com-7953{
overflow:hidden;
position:relative;
}
.shapedividers_com-7953::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 63px;
background-position: 50% 0%; 
transform: rotateY(180deg); background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.278 3.62" preserveAspectRatio="none"><path d="M35.278.092S8.238.267 0 3.62V.092z" opacity=".2" fill="%23408696"/><path d="M35.278.092S8.238.246 0 3.194V.092z" opacity=".2" fill="%23408696"/><path d="M35.278.092S8.238.223 0 2.738V.092zM35.278.092H0V0h35.278z" fill="%23408696"/></svg>'); 
}

@media (min-width:2100px){
.shapedividers_com-7953::before{
background-size: 100% calc(2vw + 63px);
}
}

/* ============================================================
   ACCREDITATIONS
   ============================================================ */

.accreditations-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.accreditations-list li {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: var(--space-xl);
    align-items: center;
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.accreditation-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
}

.accreditation-logo img {
    max-width: 180px;
    max-height: 180px;
    width: 100%;
    object-fit: contain;
}

.accreditation-info h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-xs);
}

.accreditation-info p {
    font-size: var(--text-sm);
    color: var(--color-text-body);
    margin: 0;
}

/* Footer accreditation logos */
.footer-accreditations {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: 1.5rem;
}

.footer-accreditations img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity var(--transition);
    filter: brightness(0) invert(0.9);
}






/* Accreditations responsive */
@media (max-width: 680px) {
    .accreditations-list li {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .footer-accreditations {
        order: -1;
    }
}

/* Service venues */
.service-venues {
    margin-block: var(--space-md);
    padding: var(--space-md);
    background: var(--color-bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}

.service-venues h4 {
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.service-venues ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-venues li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: var(--text-sm);
}

.service-venues svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-venues strong {
    display: block;
    color: var(--color-text-dark);
    font-weight: var(--fw-semibold);
}

.service-venues span {
    color: var(--color-text-muted);
}
 
