:root {

    /* =====================================================
       COLOURS
       ===================================================== */

    --teal: #16a6a0;
    --teal-dark: #087f7c;
    --teal-soft: #e9f8f7;

    --navy: #263f63;

    --text: #607286;
    --muted: #7b8a99;
    --light-text: #8996a1;

    --white: #ffffff;
    --border: #e6eeee;

    /* =====================================================
       LAYOUT
       ===================================================== */

    --container: 1140px;

    /* =====================================================
       SHADOWS
       ===================================================== */

    --shadow: 0 8px 25px rgba(35, 70, 80, .08);
    --shadow-soft: 0 4px 15px rgba(35, 70, 80, .06);

    /* =====================================================
       TYPOGRAPHY
       
       Change these values to control the whole website.
       ===================================================== */

    --font-family:
        "Outfit",
        "Segoe UI",
        Arial,
        sans-serif;

    /* Base */
    --fs-body: 19px;
    --lh-body: 1.7;

    /* Small labels */
    --fs-kicker: 12px;
    --fs-eyebrow: 12px;

    /* Navigation */
    --fs-nav: 14px;
    --fs-nav-button: 14px;

    /* Buttons */
    --fs-button: 16px;

    /* Hero */
    --fs-hero-title: 42px;
    --fs-hero-text: 14px;

    /* Main headings */
    --fs-section-title: 38px;
    --fs-section-text: 18px;
    --fs-section-subtle: 14px;

    /* About */
    --fs-about-title: 38px;
    --fs-about-text: 16px;
    --fs-feature: 14px;

    /* Services */
    --fs-service-title: 18px;
    --fs-service-text: 16px;

    /* Offer */
    --fs-offer-title: 38px;
    --fs-offer-text: 16px;
    --fs-offer-list: 16px;
    --fs-offer-subtitle: 18px;

    /* Why choose us */
    --fs-why-title: 18px;
    --fs-why-text: 16px;
    --fs-why-link: 14px;

    /* Testimonials */
    --fs-testimonial: 16px;
    --fs-testimonial-name: 14px;
    --fs-testimonial-small: 12px;
    --fs-testimonial-link: 12px;

    /* CTA */
    --fs-cta-title: 30px;
    --fs-cta-text: 16px;

    /* Footer */
    --fs-footer-heading: 18px;
    --fs-footer-text: 16px;
    --fs-copyright: 14px;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--text);

    font-family: var(--font-family);
    font-size: var(--fs-body);
    line-height: var(--lh-body);

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin-inline: auto;
}


/* =========================================================
   COMMON SECTIONS
   ========================================================= */

.section {
    padding: 76px 0;
}

.section-kicker,
.eyebrow {
    display: block;

    margin-bottom: 7px;

    color: var(--teal-dark);

    font-size: var(--fs-kicker);
    line-height: 1.2;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.section-heading {
    max-width: 920px;

    margin: 0 auto 40px;

    text-align: center;
}

.section-heading h2,
.about-copy h2,
.offer-copy h2 {

    margin: 0 0 10px;

    color: var(--navy);

    font-size: var(--fs-section-title);
    line-height: 1.12;
    font-family: var(--font-family);
    font-weight: 800;

    letter-spacing: -.4px;
}

.section-heading p {

    max-width: 920px;

    margin: 0 auto;

    color: var(--muted);

    font-size: var(--fs-section-text);
    line-height: 1.7;
}

.section-heading .subtle {

    display: block;

    margin-top: 6px;

    color: var(--light-text);

    font-size: var(--fs-section-subtle);
    line-height: 1.6;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 20px;

    border-radius: 999px;

    background: var(--teal);

    color: #fff;

    font-size: var(--fs-button);
    font-weight: 700;

    letter-spacing: .2px;

    text-transform: uppercase;

    box-shadow:
        0 7px 17px rgba(22,166,160,.22);

    transition:
        transform .2s ease,
        background .2s ease;
}

.button:hover {

    background: var(--teal-dark);

    transform: translateY(-2px);
}

.button-small {

    min-height: 37px;

    padding-inline: 17px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255,255,255,.98);

    border-bottom:
        1px solid rgba(20,80,85,.06);
}

.header-inner {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {

    width: 155px;

    height: auto;
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-check {

    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    padding: 7px;

    border-radius: 9px;

    background: var(--teal-soft);

    cursor: pointer;
}

.menu-toggle span {

    display: block;

    width: 20px;
    height: 2px;

    margin: 4px auto;

    background: var(--teal-dark);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 23px;
}

.main-nav > a:not(.nav-button),
.nav-dropdown-toggle {

    color: #526775;

    font: inherit;
    font-size: var(--fs-nav);

    font-weight: 600;

    letter-spacing: .45px;

    white-space: nowrap;
}

.main-nav > a:not(.nav-button),
.nav-dropdown-toggle {
    position: relative;
}

.main-nav > a:not(.nav-button):hover,
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle {
    color: var(--teal);
}

.nav-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Invisible hover bridge prevents the dropdown closing across its visual gap. */
.nav-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -18px;
    width: calc(100% + 36px);
    height: 14px;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-chevron {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    width: 310px;
    padding: 10px;
    transform: translate(-50%, -8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 17px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 18px 45px rgba(35,70,80,.14);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 1100;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translateX(-50%) rotate(45deg);
    border-left: 1px solid rgba(255,255,255,.72);
    border-top: 1px solid rgba(255,255,255,.72);
    background: rgba(255,255,255,.78);
}

.nav-dropdown-menu a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 13px 12px;
    border-radius: 10px;
    color: #6a938e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1.45;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(22,166,160,.09);
    color: var(--teal-dark);
    transform: translateX(2px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron,
.nav-dropdown.is-open .nav-chevron {
    transform: rotate(225deg);
    margin-top: 3px;
}

.nav-button {

    min-height: 35px;

    display: inline-flex;

    align-items: center;

    padding: 0 17px;

    border-radius: 999px;

    background: var(--teal);

    color: #fff;

    font-size: var(--fs-nav-button);

    font-weight: 700;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    min-height: 390px;

    overflow: hidden;

    background: #edf9f8;
}

.hero-image {

    position: absolute;

    inset: 0;
}

.hero-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(239,250,249,.78) 0%,
            rgba(239,250,249,.58) 24%,
            rgba(239,250,249,.20) 50%,
            rgba(239,250,249,.02) 76%
        );
}

.hero-image img {

    width: 100%;

    height: 390px;

    object-fit: cover;

    object-position: center center;
}

.hero-content {

    position: relative;

    z-index: 2;

    min-height: 390px;

    display: flex;

    align-items: center;
}

.hero-card {

    width: 420px;

    padding: 30px 32px;

    border-radius: 13px;

    background: rgba(255,255,255,.66);
    border: 1px solid rgba(255,255,255,.78);
    box-shadow:
        0 18px 42px rgba(45,80,90,.15),
        inset 0 1px 0 rgba(255,255,255,.75);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.hero-card h1 {

    margin: 4px 0 13px;

    color: var(--navy);

    font-size: var(--fs-hero-title);

    line-height: 1.03;

    font-weight: 800;

    letter-spacing: -.5px;
}

.hero-card p {

    max-width: 340px;

    margin: 0 0 19px;

    color: #6f7f90;

    font-size: var(--fs-hero-text);

    line-height: 1.65;
}


/* =========================================================
   HERO FADE SLIDER
   ========================================================= */

.hero-slider {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;
    filter: brightness(1.08) saturate(1.04) contrast(1.02);

    opacity: 0;

    transition: opacity 1.2s ease-in-out;

    pointer-events: none;
}

.hero-slide-active {
    opacity: 1;
}


/* Keep the hero overlay above the images */
.hero-image::after {
    z-index: 3;
}


/* Images stay behind the overlay */
.hero-slide {
    z-index: 1;
}


/* Hero content stays above everything */
.hero-content {
    position: relative;
    z-index: 5;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hero-slide {
        object-position: center center;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-slide {
        transition: none;
    }
}

@supports not ((backdrop-filter: blur(1px))) {
    .hero-card,
    .nav-dropdown-menu {
        background: rgba(255,255,255,.92);
    }
}

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

.about {

    padding-top: 82px;

    padding-bottom: 88px;
}

.about-grid {

    display: grid;

    grid-template-columns: 40% 60%;

    align-items: center;

    gap: 60px;
}

.about-photo {
    position: relative;
    width: 335px;
    margin: 0 auto;
    padding: 7px;
    border: 3px solid var(--teal);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.about-photo::before {
    display: none;
}

.about-photo img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 660 / 840;
    object-fit: contain;
    object-position: center;
    border-radius: 5px;
    background: #f6faf9;
    box-shadow: none;
}

.experience-badge {
    position: absolute;
    right: -22px;
    bottom: -2px;
    z-index: 3;
    width: 108px;
    padding: 12px 8px;
    border-radius: 10px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 9px 22px rgba(30, 70, 75, .14);
}

.experience-badge strong {
    display: block;
    color: var(--teal);
    font-size: 23px;
    line-height: 1;
}

.experience-badge span {
    display: block;
    margin-top: 4px;
    color: #667789;
    font-size: 10px;
    line-height: 1.3;
}

.about-copy h2 {

    margin-bottom: 13px;

    font-size: var(--fs-about-title);
}

.about-columns {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 28px;
}

.about-columns p {

    margin: 0;

    color: #718191;

    font-size: var(--fs-about-text);

    line-height: 1.75;
}


/* =========================================================
   ABOUT FEATURES
   ========================================================= */

.feature-list {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px;

    margin: 21px 0;
}

.feature-list div {

    min-height: 40px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 10px;

    border: 1px solid var(--border);

    border-radius: 8px;

    box-shadow: var(--shadow-soft);

    color: #657687;

    font-size: var(--fs-feature);

    line-height: 1.35;
}

.feature-list span {

    width: 19px;
    height: 19px;

    flex: 0 0 19px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--teal-soft);

    color: var(--teal);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */

.services {
    padding: 80px 0;
    background: #f4faf9;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.services .section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.services .section-kicker {
    display: inline-flex;
    align-items: center;

    width: max-content;

    padding: 7px 13px;

    margin-bottom: 12px;

    border-radius: 999px;

    background: #e7f8f7;

    color: #078b87;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.services .section-heading h2 {
    margin: 0 0 13px;

    color: var(--navy);

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;

    font-weight: 800;
}

.services .section-heading p {
    margin: 0 auto;

    max-width: 650px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   SERVICES GRID
   2 CARDS PER ROW
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    min-width: 0;

    background: #fff;

    border: 1px solid #e4eeee;

    border-radius: 22px;

    box-shadow: var(--shadow-soft);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 38px rgba(32,70,76,.12);
}


/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.service-image {
    width: 100%;

    aspect-ratio: 600 / 360;

    overflow: hidden;

    background: #eaf6f5;
}

.service-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.03);
}


/* =========================================================
   SERVICE BODY
   ========================================================= */

.service-body {
    position: relative;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    flex: 1;

    padding: 25px 27px 28px;
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.service-icon {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 13px;

    border-radius: 50%;

    background: #e7f8f7;

    color: #087f7c;

    font-size: 11px;
}


/* =========================================================
   SERVICE TITLE
   ========================================================= */

.service-body h3 {
    margin: 0 0 10px;

    padding-right: 35px;

    color: var(--navy);

    font-size: 21px;

    line-height: 1.3;

    font-weight: 800;
}


/* =========================================================
   SERVICE DESCRIPTION
   ========================================================= */

.service-body p {
    margin: 0;

    padding-right: 35px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   ARROW
   ========================================================= */

.service-body > a {
    position: absolute;

    right: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: var(--teal);

    color: #fff;

    font-size: 20px;

    line-height: 1;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.service-body > a:hover {
    transform: translateX(3px);

    box-shadow:
        0 8px 18px rgba(8,127,124,.2);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 700px) {

    .services {
        padding: 65px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .service-body {
        padding: 23px 24px 26px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .services {
        padding: 55px 0;
    }

    .services .section-heading {
        margin-bottom: 30px;
    }

    .services .section-heading h2 {
        font-size: 30px;
    }

    .services .section-heading p {
        font-size: 15px;
    }

    .service-body h3 {
        font-size: 20px;
    }

    .service-body p {
        font-size: 15px;
    }

}


/* =========================================================
   WHAT WE OFFER
   ========================================================= */

.offer {

    padding-top: 70px;

    padding-bottom: 75px;
}

.offer-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 75px;
}

.offer-copy h2 {

    margin-bottom: 9px;

    font-size: var(--fs-offer-title);
}

.offer-copy > p {

    max-width: 640px;

    margin: 0 0 15px;

    color: #718191;

    font-size: var(--fs-offer-text);

    line-height: 1.7;
}

.check-list {

    list-style: none;

    padding: 0;

    margin: 0 0 15px;
}

.check-list li {

    position: relative;

    padding: 3px 0 3px 19px;

    color: #687a89;

    font-size: var(--fs-offer-list);

    line-height: 1.6;
}

.check-list li::before {

    content: "✓";

    position: absolute;

    left: 0;

    color: var(--teal);

    font-weight: 800;
}

.offer-copy h4 {

    margin: 17px 0 5px;

    color: var(--navy);

    font-size: var(--fs-offer-subtitle);
}

.offer-photo {

    display: flex;

    justify-content: flex-end;
}

.offer-photo img {

    width: 100%;

    max-width: 460px;

    height: auto;

    /*aspect-ratio: 460 / 740;*/

    object-fit: contain;

    border-radius: 12px;

    box-shadow: var(--shadow);

    background: #f6faf9;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-us {

    padding-top: 58px;

    padding-bottom: 80px;
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 14px;
}

.why-card {

    min-height: 185px;

    padding: 20px 18px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: #fff;

    box-shadow: var(--shadow-soft);

    text-align: center;
}

.number {

    width: 38px;
    height: 38px;

    margin: 0 auto 11px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--teal-soft);

    color: var(--teal);

    font-size: 10px;

    font-weight: 700;
}

.why-card h3 {

    margin: 0 0 8px;

    color: var(--navy);

    font-size: var(--fs-why-title);

    line-height: 1.3;
}

.why-card p {

    margin: 0 0 10px;

    color: #788796;

    font-size: var(--fs-why-text);

    line-height: 1.65;
}

.why-card a {

    color: var(--teal-dark);

    font-size: var(--fs-why-link);

    font-weight: 600;
}


/* =========================================================
   TESTIMONIALS - HORIZONTAL SCROLLING ROW
   ========================================================= */

.testimonials {
    padding: 65px 0 75px;
    overflow: hidden;
}

.testimonials .section-heading {
    margin-bottom: 38px;
}


/* The actual scrolling area */
.testimonial-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;

    width: 100%;
    max-width: 100%;

    overflow-x: hidden;
    overflow-y: hidden;

    padding: 5px 4px 20px;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-grid::-webkit-scrollbar {
    display: none;
}

.testimonial {
    flex: 0 0 300px;
    width: 300px;

    min-height: 235px;

    padding: 18px;

    border: 1px solid var(--border);
    border: 2px solid var(--teal);

    border-radius: 10px;

    background: #fff;

    box-shadow: var(--shadow-soft);
}


/* Quote */
.quote {
    display: block;

    color: #d5eeee;

    font-family: Georgia, serif;

    font-size: 28px;

    line-height: .7;
}


/* Stars */
.stars {
    margin: 8px 0 11px;

    color: #dcb946;

    font-size: 9px;

    line-height: 1;

    letter-spacing: 1px;
}


/* Review */
.testimonial p {
    min-height: 95px;

    margin: 0 0 11px;

    color: #607286;

    font-size: var(--fs-testimonial);

    line-height: 1.7;
}


/* Name */
.testimonial strong {
    display: block;

    color: var(--navy);

    font-size: var(--fs-testimonial-name);

    line-height: 1.4;
}


/* Role */
.testimonial small {
    display: block;

    margin-top: 2px;

    color: #8996a1;

    font-size: var(--fs-testimonial-small);

    line-height: 1.5;
}


/* Read more */
.testimonial a {
    display: inline-block;

    margin-top: 8px;

    color: var(--teal-dark);

    font-size: var(--fs-testimonial-link);

    font-weight: 600;
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 801px) {

    .testimonial-grid {
        cursor: grab;
    }

    .testimonial-grid:active {
        cursor: grabbing;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {


    .testimonial-grid {
        gap: 15px;

        padding-left: 2px;
        padding-right: 20px;
    }

    .testimonial {
        flex: 0 0 285px;

        width: 285px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .testimonials {
        padding: 55px 0 65px;
    }

    .testimonial-grid {
        gap: 14px;

        padding-left: 2px;
        padding-right: 25px;

        margin-right: -14px;
    }

    .testimonial {
        flex: 0 0 285px;

        width: 285px;

        min-height: 245px;

        padding: 17px 18px;
    }

    .testimonial p {
        min-height: 100px;

        font-size: var(--fs-testimonial);

        line-height: 1.7;
    }
}


/* =========================================================
   CTA
   ========================================================= */

.cta {

    padding: 55px 0;

    background: #effafa;
}

.cta-inner {

    display: grid;

    grid-template-columns: 190px 1fr;

    align-items: center;

    gap: 50px;
}

.cta-photo {

    width: 155px;
    height: 155px;

    padding: 5px;

    margin-left: 20px;

    border: 3px solid #fff;

    border-radius: 50%;

    background: #fff;

    box-shadow:
        0 12px 28px rgba(30,70,75,.14);
}

.cta-photo img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center top;

    border-radius: 50%;
}

.cta-copy {

    text-align: center;
}

.cta-copy h2 {

    margin: 0 0 8px;

    color: var(--navy);

    font-size: var(--fs-cta-title);

    line-height: 1.2;
}

.cta-copy p {

    max-width: 720px;

    margin: 0 auto 17px;

    color: #788896;

    font-size: var(--fs-cta-text);

    line-height: 1.7;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    background: #078f8c;

    color: rgba(255,255,255,.88);
}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.2fr 1fr 1fr;

    gap: 55px;

    padding: 38px 0 30px;
}

.footer-brand img {

    width: 130px;

    height: auto;

    margin-bottom: 17px;
}

.site-footer h4 {

    margin: 0 0 9px;

    color: #fff;

    font-size: var(--fs-footer-heading);
}

.site-footer p,
.site-footer a {

    display: block;

    margin: 3px 0;

    color: rgba(255,255,255,.86);

    font-size: var(--fs-footer-text);

    line-height: 1.65;
}

.accreditations {

    display: flex;

    gap: 8px;
}

.accreditations img {

    width: 46px;
    height: 46px;

    padding: 5px;

    object-fit: contain;

    border-radius: 5px;

    background: #fff;
}

.copyright {

    padding: 12px 20px;

    border-top:
        1px solid rgba(255,255,255,.12);

    color: rgba(255,255,255,.74);

    font-size: var(--fs-copyright);

    text-align: center;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .container {

        width:
            min(
                930px,
                calc(100% - 40px)
            );
    }

    .main-nav {
        gap: 15px;
    }

    .about-grid {
        gap: 40px;
    }

    .offer-grid {
        gap: 45px;
    }

    .testimonial-grid {
        grid-template-columns:
            repeat(3,1fr);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .container {

        width:
            min(
                720px,
                calc(100% - 32px)
            );
    }

    .section {
        padding: 62px 0;
    }

    /* Menu */

    .menu-toggle {
        display: block;
    }

    .main-nav {

        position: absolute;

        top: 76px;

        left: 15px;
        right: 15px;

        display: none;

        height: auto;

        padding: 12px;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;
        align-content: flex-start;

        gap: 3px;

        border: 1px solid var(--border);

        border-radius: 11px;

        background: #fff;

        box-shadow: var(--shadow);
    }

    .menu-check:checked ~ .main-nav {
        display: flex;
    }

    .main-nav > a:not(.nav-button),
    .nav-dropdown-toggle {

        width: 100%;
        min-height: 42px;
        padding: 10px 12px;

        font-size: var(--fs-nav);
        text-align: left;
    }

    .nav-dropdown {
        display: block;
        height: auto;
        flex: none;
    }

    .nav-dropdown::after {
        display: none;
    }

    .nav-dropdown-toggle {
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        padding: 4px 0 6px 10px;
        transform: none;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        padding: 9px 12px;
        font-size: 11px;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
    }

    .nav-dropdown.is-open .nav-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-button {

        justify-content: center;

        margin-top: 4px;
    }

    /* Hero */

    .hero,
    .hero-content {
        min-height: 450px;
    }

    .hero-image img {
        height: 450px;
    }

    .hero-card {
        width: 380px;
    }

    .hero-card h1 {
        font-size: 36px;
    }

    /* About / Offer */

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

    .about-grid {
        gap: 55px;
    }

    .about-photo {
        width: 315px;
    }

    .about-copy {
        text-align: center;
    }

    .about-columns {
        text-align: left;
    }

    .offer-photo {
        justify-content: center;
    }

    /* Why */

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

    /* Testimonials */

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

    /* CTA */

    .cta-inner {

        grid-template-columns:
            170px 1fr;

        gap: 30px;
    }

    /* Footer */

    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 35px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    /*
       Mobile typography is controlled here.
       Change these values if you want the mobile
       text larger or smaller.
    */

    :root {

        --fs-body: 15px;

        --fs-kicker: 10px;

        --fs-nav: 11px;
        --fs-nav-button: 11px;

        --fs-button: 10px;

        --fs-hero-title: 32px;
        --fs-hero-text: 13px;

        --fs-section-title: 31px;
        --fs-section-text: 14px;
        --fs-section-subtle: 12px;

        --fs-about-title: 31px;
        --fs-about-text: 13px;
        --fs-feature: 12px;

        --fs-service-title: 18px;
        --fs-service-text: 12px;

        --fs-offer-title: 31px;
        --fs-offer-text: 13px;
        --fs-offer-list: 12px;
        --fs-offer-subtitle: 13px;

        --fs-why-title: 16px;
        --fs-why-text: 12px;
        --fs-why-link: 11px;

        --fs-testimonial: 12px;
        --fs-testimonial-name: 12px;
        --fs-testimonial-small: 10px;
        --fs-testimonial-link: 10px;

        --fs-cta-title: 27px;
        --fs-cta-text: 12px;

        --fs-footer-heading: 12px;
        --fs-footer-text: 10px;
        --fs-copyright: 9px;
    }

    .container {

        width:
            calc(100% - 28px);
    }

    .section {
        padding: 54px 0;
    }

    .section-heading {
        margin-bottom: 31px;
    }

    /* Hero */

    .hero,
    .hero-content {
        min-height: 515px;
    }

    .hero-image img {

        height: 515px;

        object-position:
            center top;
    }

    .hero-image::after {

        background:
            linear-gradient(
                180deg,
                rgba(239,250,249,.05) 0%,
                rgba(239,250,249,.15) 28%,
                rgba(239,250,249,.92) 64%,
                rgba(239,250,249,1) 100%
            );
    }

    .hero-content {

        align-items: flex-end;

        padding-bottom: 24px;
    }

    .hero-card {

        width: 100%;

        padding: 24px 22px;
    }

    /* About */

    .about {
        padding-top: 58px;
    }

    .about-photo {

        width: 285px;

        max-width: 85%;
    }

    .about-photo img {
        aspect-ratio: 660 / 840;
    }

    .experience-badge {

        right: -10px;

        width: 96px;
    }

    .about-columns {

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .feature-list {

        grid-template-columns: 1fr;
    }

    /* Services */

    .services-grid {

        grid-template-columns: 1fr;

        gap: 17px;
    }

    .service-card-wide {
        grid-column: auto;
    }

    .service-image {

        height: auto;

        min-height: 190px;
    }

    .service-image img {

        height: auto;

        max-height: 225px;

        object-fit: contain;
    }

    .service-body {
        min-height: 165px;
    }

    /* Offer */

    .offer-grid {
        gap: 36px;
    }

    /* Why */

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

    .why-card {
        min-height: 155px;
    }

    /* Testimonials */

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

    .testimonial {
        min-height: auto;
    }

    .testimonial p {
        min-height: auto;
    }

    /* CTA */

    .cta {
        padding: 48px 0;
    }

    .cta-inner {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .cta-photo {

        width: 140px;
        height: 140px;

        margin: 0 auto;
    }

    /* Footer */

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 28px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .container {

        width:
            calc(100% - 24px);
    }

    .brand img {
        width: 116px;
    }

    .hero,
    .hero-content,
    .hero-image img {

        min-height: 490px;

        height: 490px;
    }

    .about-photo {
        width: 255px;
    }

    .service-image {
        min-height: 175px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

a:focus-visible,
button:focus-visible,
label:focus-visible {

    outline:
        2px solid var(--teal);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        transition-duration:
            .01ms !important;

        animation-duration:
            .01ms !important;
    }
}
