:root {
    /*--blue: #0098ff;*/
    --dark: #08162f;
    
    --blue: #ff8e00;
    /*--dark: #1e0e03;*/
    --light: #f6f7fa;
    --text: #333;
    --max-width: 1200px;
}

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

a { 
    text-decoration: none;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
}

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

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

h1,
h2,
h3,
.logo {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

h2 span,
h1 span {
    color: var(--blue);
}

.site-header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,.9);
    backdrop-filter: blur(10px) saturate(2) brightness(2);
    -webkit-backdrop-filter: blur(10px) saturate(2) brightness(2);
}

.header-inner {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
}

.logo-white {
    color: white;
}

.logo-blue {
    color: var(--blue);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.mobile-menu-button {
    background: none;
	color: white;
	border: none;
	font: inherit;
	cursor: pointer;
	outline: inherit;
    display: none;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 2rem;
    padding: 10px;
    position: relative;
    bottom: 3px;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-compact { 
    min-height: 75vh;
}

.hero-image,
.hero-overlay,
.hero-overlay-half
{
    position: absolute;
    inset: 0;
}

.hero-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-overlay {
    background: rgba(0,0,0,.5);
    background: linear-gradient(rgba(0,0,0, 0.2), rgba(0,0,0,0.9))
}

.hero-overlay-half {
    background: rgba(0,0,0,.25);
    background: linear-gradient(rgba(0,0,0, 0.0), rgba(0,0,0,0.5))
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    color: white;
    padding-bottom: 50px;
}

.hero p {
    max-width: 600px;
    margin: 1rem 0;
    margin-bottom: 0rem;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    max-width: 250px;
    align-self: start;
}

.btn-primary {
    background: var(--blue);
    color: white;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-dark {
    background: var(--dark);
    color: white;
}

.stats {
    background: var(--dark);
    color: rgba(255,255,255,.85);
    padding: 3rem 0;
    font-weight: 800;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.about,
.services,
.results {
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about p {
    margin: 1.5rem 0;
}

.about-image-wrapper {
    position: relative;
}

.about-image { 
    border-radius: 20px;
    position: relative;
    right: 20px;
}

.qualifications-card {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(47, 128, 237, 0.9);
    backdrop-filter: blur(10px) saturate(2) brightness(2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card,
.testimonial {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.service-card h3,
.testimonial h3,
.service-card p,
.testimonial p {
    padding: 1rem 1.25rem;
}

.results {
    background: var(--dark);
    color: white;
}

.results-page-section {
    padding: 6rem 0;
    background: var(--dark);
    color: white;
}

.results-heading {
    max-width: 860px;
}

.results-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.result-card {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.result-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: top;
}

.result-card div {
    display: grid;
    gap: .75rem;
    align-content: start;
    padding: 1.5rem;
}

.result-card h3 {
    color: var(--dark);
    font-size: 2rem;
    line-height: 1;
}

.result-card blockquote {
    position: relative;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
}

.result-card blockquote::before {
    content: "“";
    color: var(--blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 0;
    vertical-align: -.35em;
}

.body-insights-section {
    padding: 6rem 0;
    background: var(--light);
    color: var(--text);
}

.body-insights-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
}

.body-insights-copy p {
    margin-top: 1.25rem;
    max-width: 650px;
    color: var(--text);
}

.insight-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.insight-list div {
    padding: 1.25rem;
    border-left: 6px solid var(--blue);
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.insight-list strong,
.insight-list span {
    display: block;
}

.insight-list strong {
    color: var(--dark);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.45rem;
    line-height: 1;
    text-transform: uppercase;
}

.insight-list span {
    margin-top: .45rem;
    color: var(--text);
}

.insight-media-grid {
    display: block;
}

.insight-media-card {
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 18px 35px rgba(0,0,0,.28);
    width: 100%;
}

.insight-media-card-large {
}

.insight-media-card img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-media-card figcaption {
    padding: 1rem;
    color: var(--text);
    font-size: .95rem;
    font-weight: 700;
}

.packages-section {
    padding: 6rem 0;
}

.packages-section-dark {
    background: var(--dark);
    color: white;
}

.packages-heading {
    max-width: 900px;
}

.packages-heading .section-intro,
.section-intro {
    max-width: 720px;
    margin-top: 1rem;
    font-size: 1.15rem;
}

.package-feature-grid,
.pt-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
    margin-top: 3rem;
}

.pt-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.package-card,
.pricing-table-wrap,
.package-note {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.package-card,
.package-note {
    background: white;
    padding: 2rem;
}

.package-card-featured {
    border-top: 8px solid var(--blue);
}

.package-card h3 {
    color: var(--dark);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    margin-top: .25rem;
}

.package-card p {
    margin-top: 1.25rem;
}

.package-eyebrow {
    color: var(--blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.package-list {
    display: grid;
    gap: .85rem;
    margin-top: 1.5rem;
    padding-left: 1.2rem;
}

.package-list li::marker {
    color: var(--blue);
}

.pricing-table-wrap {
    background: white;
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text);
}

.pricing-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.pricing-table th,
.pricing-table td {
    padding: 1.15rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(8,22,47,.12);
}

.pricing-table th {
    background: var(--blue);
    color: white;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-table tr:last-child td {
    border-bottom: 0;
}

.pricing-table td:last-child,
.pricing-table th:last-child {
    text-align: right;
}

.pricing-table td {
    font-size: 1.05rem;
    font-weight: 700;
}

.pricing-table td:first-child {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.45rem;
    text-transform: uppercase;
}

.popular-row {
    background: rgba(47, 128, 237, .1);
}

.popular-row span {
    display: inline-block;
    margin-left: .5rem;
    padding: .2rem .55rem;
    border-radius: 999px;
    background: var(--blue);
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: .75rem;
    font-weight: 800;
    line-height: 1.2;
    vertical-align: middle;
}

.package-note {
    margin-top: 2rem;
    border-left: 8px solid var(--blue);
    font-size: 1.1rem;
}

.pt-summary-card {
    color: var(--text);
}

.packages-section-dark .pricing-table-wrap,
.packages-section-dark .package-card {
    box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

.booking-section {
    padding: 4rem 0;
    background: var(--light);
}

.booking-grid {
    display: block;
    max-width: 500px;
}

.booking-copy p {
    margin: 1.25rem 0;
    max-width: 560px;
}

.booking-highlight {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-left: 8px solid var(--blue);
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.booking-form {
    display: grid;
    gap: 1.25rem;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

.form-field {
    display: grid;
    gap: .5rem;
    border: 0;
}

.form-field label,
.form-field legend {
    color: var(--dark);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.form-field label span,
.form-field legend span {
    display: inline-block;
    color: var(--blue);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: normal;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 2px solid rgba(8,22,47,.15);
    border-radius: 12px;
    padding: .95rem 1rem;
    color: var(--text);
    font: inherit;
    line-height: 1.4;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 3px solid rgba(47,128,237,.25);
    border-color: var(--blue);
}

.form-field textarea {
    resize: vertical;
}

.checkbox-group {
    gap: .85rem;
}

.checkbox-group legend {
    padding-bottom: 1rem;
}

.checkbox-option {
    display: flex;
    gap: .75rem;
    align-items: center;
    padding: .9rem 1rem;
    border: 2px solid rgba(8,22,47,.12);
    border-radius: 12px;
    cursor: pointer;
}

.checkbox-option input {
    width: 1.15rem;
    height: 1.15rem;
}

.checkbox-option span {
    color: var(--text) !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.booking-form .btn {
    border: 0;
    cursor: pointer;
}

.booking-form .btn:disabled {
    background: #b7bfca;
    color: rgba(255,255,255,.8);
    cursor: not-allowed;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
    background: var(--dark);
}

.form-status-card {
    width: min(100%, 640px);
    padding: 2.5rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

.form-status-card h1 {
    color: var(--dark);
    font-size: clamp(3rem, 7vw, 5rem);
}

.form-status-card p {
    margin: 1rem 0 2rem;
    font-size: 1.15rem;
}

.form-status-success {
    border-top: 8px solid var(--blue);
}

.form-status-error {
    border-top: 8px solid #d64545;
}

.cta {
    padding: 3rem 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-content p {
    padding-top: 1rem;
}

.site-footer {
    background: #050b16;
    color: white;
    padding: 4rem 0;
}

.site-footer a {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.mobile-nav {
    display: none;
}

.stat-icon {
    height: 50px;
    width: 50px;
}

.stat-title {
    font-size: 3em;
    line-height: 1.4;
    color: var(--blue);
}

.stat-text { 
    text-align: left;
}

/* ── HOME FEATURE SECTIONS ─────────────────────────── */

.home-feature {
    padding: 6rem 0;
}

.home-feature-light {
    background: var(--light);
    color: var(--text);
}

.home-feature-dark {
    background: var(--dark);
    color: white;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
}

.home-feature-grid-reverse {
    grid-template-columns: 380px 1fr;
}

.home-feature-copy {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.home-feature-copy h2 {
    margin-bottom: .25rem;
}

.home-feature-dark .home-feature-copy p {
    color: rgba(255,255,255,.85);
}

.home-feature-media {
    display: flex;
    justify-content: center;
}

.home-feature-media-hidden {
    display: none;
}

.home-feature-image-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    width: 100%;
}

.home-feature-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.home-feature-image-card-tall img {
    max-height: 560px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.btn-outline-dark {
    border: 2px solid var(--dark);
    color: var(--dark);
}

/* ─────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .hero p {
        margin: 0.5rem 0;
        font-size: 1rem;
        line-height: 1.4rem;
    }
    
    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }
    
    .hero-content {
        padding-bottom: 20px;
    }
    
    .hero-compact { 
        min-height: 60vh !important;
    }

    .about-grid,
    .service-grid,
    .testimonial-grid,
    .package-feature-grid,
    .pt-layout,
    .booking-grid,
    .body-insights-grid,
    .insight-media-grid,
    .home-feature-grid,
    .stats-grid,
    .footer-grid,
    .cta-content {
        grid-template-columns: 1fr;
        display: grid;
    }

    .home-feature {
        padding: 3rem 0;
    }

    .home-feature-media {
        order: -1;
    }

    .home-feature-image-card-tall img {
        max-height: 380px;
    }

    .results-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .result-card h3 {
        font-size: 1.5rem;
    }

    .result-card blockquote {
        font-size: .9rem;
    }

    .result-card blockquote::before {
        font-size: 2.25rem;
    }

    .qualifications-card {
        right: 0px;
    }

    .about-image-wrapper {
        position: relative;
        left: 20px;
    }
    .mobile-nav.active {
        display: flex;
        flex-direction: column;
    }

    .mobile-nav a {
        color: white;
        text-decoration: none;
        padding: 1rem 2rem;
        font-family: "Barlow Condensed", sans-serif;
        text-transform: uppercase;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .hero {
        min-height: 86vh;
    }

    .packages-section {
        padding: 2rem 0;
    }

    .results-page-section,
    .body-insights-section {
        padding: 2rem 0;
    }

    .result-card div {
        padding: 1.25rem;
    }

    .insight-media-card img {
        height: auto;
        max-height: none;
    }

    .insight-media-card {
        width: min(100%, 340px);
        margin: 0 auto;
    }

    .booking-section {
        padding: 2rem 0;
    }

    .booking-grid {
        gap: 2rem;
    }

    .booking-form {
        padding: 1.25rem;
    }

    .form-field label span,
    .form-field legend span {
        display: table;
        margin-top: .25rem;
    }
    
    .package-card p {
        margin-top: 0.25rem;
    }

    .package-card,
    .package-note {
        padding: 1rem;
    }
    
    .pricing-table-wrap {
        background: white;
        overflow: hidden;
    }

    .pricing-table {
        table-layout: fixed;
    }

    .pricing-table th,
    .pricing-table td {
        padding: .85rem .65rem;
        font-size: 1.05rem;
        line-height: 1.25;
    }

    .pricing-table th {
        font-size: .98rem;
    }

    .pricing-table td:first-child {
        font-size: 1.15rem;
        line-height: 1.05;
    }

    .pricing-table th:first-child,
    .pricing-table td:first-child {
        width: 32%;
    }

    .pricing-table th:not(:first-child),
    .pricing-table td:not(:first-child) {
        width: 34%;
        text-align: right;
    }

    .popular-row span {
        display: block;
        text-align: center;
        width: fit-content;
        margin: .35rem 0 0;
        padding: 10px;
        font-size: .52rem;
    }
    
    .hero-image-contact { 
        object-position: bottom 0px right -60px;
    }
    
    .hero-image-packages { 
        object-position: top 20px left 20%;
    }
}


@media (min-width: 650px) {
    .hero-image-contact { 
        object-position: top 10% left 0% !important;
    }
}

@media (min-width: 1400px) {
    .hero-image-contact { 
        object-position: bottom 0% left 0% !important;
    }
}