/* ============================================================
   PRIMA LIVING — Contact (contact.html)
   "Speak with a Prima Living consultant" page. Page-scoped
   styles only; shared chrome + .split-feature + form patterns
   live in styleguide.css.
   Mobile-first. Breakpoints:
     · ≥ 640px  small tablet
     · ≥ 768px  tablet
     · ≥ 1024px desktop
   ============================================================ */

/* ============================================================
   section.contact-hero
   Forest-green left panel, image bleeds to right edge on desktop.
   Mobile: image edge-to-edge on top, then forest-green content.
   The image has a subtle left-edge gradient to blend with the
   green panel — matches the Figma hero treatment.
   ============================================================ */
section.contact-hero {
    background: var(--pl-forest-green);
}

    section.contact-hero .split-feature__content {
        background: var(--pl-forest-green);
        color: var(--pl-white-base);
        gap: var(--space-4);
    }

    section.contact-hero .contact-hero__title {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: var(--fs-h1);
        line-height: 1.15;
        color: var(--pl-white-base);
    }

    section.contact-hero .contact-hero__rule {
        width: 80px;
        height: 4px;
        background: var(--pl-sage-green);
        border: none;
        margin: 0;
    }

    section.contact-hero .contact-hero__lede {
        font-family: var(--font-body);
        font-size: var(--fs-body-md);
        font-weight: 500;
        line-height: 1.5;
        color: var(--pl-white-base);
        max-width: 60ch;
    }

    /* Subtle gradient overlay on the desktop hero image — fades from
   the forest-green panel into the photo on the left edge. */
    section.contact-hero .split-feature__media {
        aspect-ratio: 16 / 10;
        position: relative;
    }

@media (min-width: 1024px) {
    section.contact-hero .split-feature__media {
        aspect-ratio: auto;
    }

        section.contact-hero .split-feature__media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, var(--pl-forest-green) 0%, rgba(9, 46, 29, 0) 26%);
            pointer-events: none;
        }
}

/* ============================================================
   section.contact-support
   Two-column section: support content (left) + form card (right).
   Mobile: stacked — support content first, form card below.
   ============================================================ */
section.contact-support {
    padding-block: var(--section-y);
    /*background: var(--pl-white-base);*/
}

    section.contact-support .contact-support__inner {
        display: grid;
        gap: var(--space-6);
        grid-template-columns: 1fr;
        align-items: start;
    }

    section.contact-support .contact-support__content {
        display: flex;
        flex-direction: column;
        gap: var(--space-4);
    }

    section.contact-support .contact-support__title {
        font-family: var(--font-display);
        font-weight: 500;
        font-size: var(--fs-h2);
        line-height: 1.2;
        color: var(--pl-dark);
    }

    section.contact-support .contact-support__rule {
        width: 80px;
        height: 4px;
        background: var(--pl-sage-green);
        border: none;
        margin: 0;
    }

    section.contact-support .contact-support__lede {
        font-family: var(--font-body);
        font-size: var(--fs-body-md);
        font-weight: 500;
        line-height: 1.6;
        color: var(--pl-dark);
        max-width: 60ch;
    }

    section.contact-support .contact-support__list-intro {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: var(--fs-body-md);
        color: var(--pl-dark);
        margin-top: var(--space-3);
    }

    section.contact-support .contact-support__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-2);
        margin-top: var(--space-2);
    }

        section.contact-support .contact-support__list li {
            position: relative;
            padding-left: 1.75rem;
            font-family: var(--font-body);
            font-size: var(--fs-body-md);
            line-height: 1.5;
            color: var(--pl-dark);
        }

            section.contact-support .contact-support__list li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0.45em;
                width: 14px;
                height: 8px;
                border-left: 2.5px solid var(--pl-forest-green);
                border-bottom: 2.5px solid var(--pl-forest-green);
                transform: rotate(-45deg);
            }

    /* Form column */
    section.contact-support .contact-support__form {
        min-width: 0;
    }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Small tablet */
@media (min-width: 640px) {
    section.contact-hero .split-feature__media {
        aspect-ratio: 21 / 9;
    }
}

/* Tablet */
@media (min-width: 768px) {
    section.contact-hero .split-feature__media {
        aspect-ratio: 21 / 9;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    section.contact-support .contact-support__inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
}


/* ============================================================

   PRIMA LIVING — Design System (styleguide.css)

   Tokens, reset, and shared chrome (nav, footer, buttons, hero,

   headings, sections, cards) used by every page.
 
   Mobile-first. Breakpoints:

     · ≥ 640px   small tablet / large phone

     · ≥ 768px   tablet (iPad portrait)

     · ≥ 1024px  desktop
 
   Folds in the formerly-separate global.css (Meyer reset

   duplicated; the new reset below covers the same ground while

   playing nicely with our tokens, so global.css can be deleted).

   ============================================================ */

/* ---------- TOKENS — pulled from Figma variables ---------- */

:root {
    /* Color */

    --pl-white-base: #EEF0EE;
    --pl-forest-green: #092E1D;
    --pl-forest-green-text: #043A23;
    --pl-dark: #141414;
    --pl-dark-grey: #6C757D;
    --pl-accent-orange: #DD6D26;
    --pl-sage-green: #9EA274;
    --pl-cool-grey: #C2CDC5;
    --pl-light-grey: #D9E2DB;
    --pl-fill: #EEF0EE;
    --pl-card-overlay: rgba(0, 0, 0, 0.05);
    --pl-border: rgba(0, 0, 0, 0.1);
    /* Typography — fonts */

    --font-display: "STIX Two Text", Georgia, serif;
    --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    /* Typography — fluid scale that interpolates mobile -> desktop tokens

     Lower bound = mobile size, upper bound = desktop size.       */

    --fs-display: clamp(2.5rem, 1.4rem + 5.5vw, 4.5rem); /* 40 -> 72 — hero h1   */

    --fs-h1: clamp(2rem, 1.25rem + 3.75vw, 3.5rem); /* 32 -> 56             */

    --fs-h2: clamp(1.75rem, 1.25rem + 2.5vw, 3rem); /* 28 -> 48             */

    --fs-h3: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem); /* 20 -> 24             */

    --fs-subtitle: 0.875rem; /* 14 — eyebrow         */

    --fs-body-md: clamp(1rem, 0.9rem + 0.4vw, 1.125rem); /* 16 -> 18             */

    --fs-body-sm: 1rem; /* 16                   */

    --fs-caption: 0.875rem; /* 14                   */

    --fs-button: 1rem; /* 16                   */
    /* Spacing scale */

    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 5rem;
    --space-12: 7.5rem;
    /* Layout */

    --wrapper-max: 1440px;
    --gutter: clamp(1.25rem, 0.75rem + 2.5vw, 5rem); /* 20 -> 80 */

    --section-y: clamp(2.5rem, 1.5rem + 4vw, 5rem); /* 40 -> 80 */

    --radius-sm: 2px;
    --radius: 4px;
    --radius-pill: 999px;
    /* Effects */

    --shadow-photo: 0 24px 48px rgba(153, 163, 157, 0.3);
    --shadow-card: 0 8px 20px rgba(153, 163, 157, 0.1);
    --shadow-nav: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-button: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* ---------- RESET ---------- */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body-md);
    font-weight: 500;
    line-height: 1.5;
    color: var(--pl-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    color: inherit;
    padding: 0;
}

h1, h2, h3, h4, p {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

figure {
    margin: 0;
}

/* ---------- A11Y ---------- */

:focus-visible {
    outline: 3px solid var(--pl-accent-orange);
    outline-offset: 2px;
    border-radius: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -48px;
    left: 0;
    background: var(--pl-forest-green);
    color: var(--pl-white-base);
    padding: 0.5rem 1rem;
    z-index: 200;
    font-weight: 600;
}

    .skip-link:focus {
        top: 0;
    }

/* ============================================================

   LAYOUT — outermost wrapper used by every section

   ============================================================ */

.wrapper {
    max-width: var(--wrapper-max);
    margin-inline: auto;
    padding-inline: var(--gutter);
    width: 100%;
}

/* ============================================================

   SECTION VARIANTS

   Sections supply the full-bleed background; .wrapper inside

   keeps the content centered & constrained to --wrapper-max.

   ============================================================ */

.section {
    padding-block: var(--section-y);
}

.section--fill {
    background: var(--pl-fill);
}

.section--green {
    background: var(--pl-forest-green);
    color: var(--pl-white-base);
}

.section--feature {
    position: relative;
    isolation: isolate;
    color: var(--pl-white-base);
    background: var(--pl-dark);
}

    .section--feature__bg,
    .section--feature > .feature-bg {
        position: absolute;
        inset: 0;
        z-index: -1;
        overflow: hidden;
    }

        .section--feature__bg img,
        .section--feature > .feature-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .section--feature__bg::after,
        .section--feature > .feature-bg::after {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
        }

/* ============================================================

   SHARED: SPLIT FEATURE  (half-bleed two-column block)
 
   Mobile  — image stacked on top of content. Image is gutter-

             respecting by default; add --media-bleed to make it

             go edge-to-edge on the viewport (used by hero blocks).

   Tablet  — same stacked treatment carries through 1023px.

   Desktop — two columns. Image bleeds to the viewport edge on

             one side; content aligns with the wrapper on the

             other. Direction set via --image-left | --image-right.
 
   The math in padding-inline keeps the content edge flush with

   the wrapper's safe zone even when viewport > --wrapper-max.

   ============================================================ */

.split-feature {
    display: grid;
    grid-template-columns: 1fr;
    background: inherit;
}

.split-feature__media {
    margin: 0;
    padding-inline: var(--gutter);
    order: -1;
}

    .split-feature__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: var(--radius-sm);
    }

.split-feature__content {
    padding: var(--section-y) var(--gutter);
}

.split-feature--media-bleed .split-feature__media {
    padding-inline: 0;
}

    .split-feature--media-bleed .split-feature__media img {
        border-radius: 0;
    }

@media (min-width: 1024px) {

    .split-feature {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: stretch;
    }

    .split-feature__media {
        padding: 0;
        order: 0;
        align-self: stretch;
    }

        .split-feature__media img {
            border-radius: 0;
        }

    .split-feature__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-block: var(--section-y);
    }

    .split-feature--image-left .split-feature__media {
        grid-column: 1;
        grid-row: 1;
    }

    .split-feature--image-left .split-feature__content {
        grid-column: 2;
        grid-row: 1;
        padding-inline: var(--space-8) max(var(--gutter), calc((100vw - var(--wrapper-max)) / 2 + var(--gutter)));
    }

    .split-feature--image-right .split-feature__media {
        grid-column: 2;
        grid-row: 1;
    }

    .split-feature--image-right .split-feature__content {
        grid-column: 1;
        grid-row: 1;
        padding-inline: max(var(--gutter), calc((100vw - var(--wrapper-max)) / 2 + var(--gutter))) var(--space-8);
    }
}

/* ============================================================

   SHARED: SITE HEADER + PRIMARY NAV

   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--pl-white-base);
    box-shadow: var(--shadow-nav);
}

.site-header__nav {
    max-width: var(--wrapper-max);
    margin-inline: auto;
    padding: var(--space-2) var(--gutter);
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    position: relative;
}

.site-header__logo img {
    width: clamp(96px, 8vw + 60px, 129px);
    height: auto;
    display: block;
}

.site-header__list {
    display: none;
    align-items: center;
    gap: var(--space-5);
}

.site-header__link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--pl-dark);
    padding: var(--space-3) 0;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s ease;
    white-space: nowrap;
}

    .site-header__link:hover,
    .site-header__link[aria-current="page"] {
        border-bottom-color: var(--pl-accent-orange);
    }

.site-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: var(--pl-forest-green);
}

    .site-header__toggle svg {
        width: 24px;
        height: 24px;
    }

.site-header__cta {
    display: none;
}

/* ============================================================

   SHARED: BUTTONS

   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.33;
    letter-spacing: 0.3px;
    padding: 12px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--pl-forest-green);
    background: var(--pl-forest-green);
    color: var(--pl-white-base);
    transition: background 0.2s, color 0.2s, transform 0.1s;
    box-shadow: var(--shadow-button);
    text-align: center;
    white-space: nowrap;
}

    .btn svg, .btn .btn__icon {
        width: 1.2em;
        height: 1.2em;
        flex: none;
    }

    .btn:hover {
        background: var(--pl-forest-green-text);
    }

    .btn:active {
        transform: translateY(1px);
    }

.btn--outline {
    background: transparent;
    color: var(--pl-forest-green);
}

    .btn--outline:hover {
        background: var(--pl-forest-green);
        color: var(--pl-white-base);
    }

.btn--outline-light {
    background: transparent;
    color: var(--pl-white-base);
    border-color: var(--pl-white-base);
}

    .btn--outline-light:hover {
        background: var(--pl-white-base);
        color: var(--pl-forest-green);
    }

.btn--accent {
    background: var(--pl-accent-orange);
    border-color: var(--pl-accent-orange);
}

    .btn--accent:hover {
        background: #c25e1f;
        border-color: #c25e1f;
    }

.btn--lg {
    font-size: clamp(15px, 0.5vw + 14px, 18px);
    padding: 14px clamp(20px, 1.5vw + 16px, 40px);
}

.btn--block {
    display: flex;
    width: 100%;
}

/* ============================================================

   SHARED: INLINE LINK (underlined text link with optional arrow)

   ============================================================ */

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-weight: 500;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
}

    .inline-link:hover {
        opacity: 0.85;
    }

    .inline-link svg {
        width: 18px;
        height: 18px;
        flex: none;
    }

/* ============================================================

   SHARED: HEADINGS

   .heading              — left-aligned block (default)

   .heading--center      — centered eyebrow + title + divider

   .heading__title       — fs-h2

   .heading__title--lg   — fs-h1

   .heading__title--display — fs-display (hero)

   .heading__divider     — short coloured underline rule

   ============================================================ */

.heading {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.heading--center {
    align-items: center;
    text-align: center;
}

.heading__eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-caption);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pl-dark-grey);
}

.heading__eyebrow--light {
    color: var(--pl-cool-grey);
}

.heading__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--fs-h2);
    line-height: 1.2;
    color: var(--pl-dark);
}

.heading__title--lg {
    font-size: var(--fs-h1);
}

.heading__title--display {
    font-size: var(--fs-display);
    line-height: 1.1;
}

.heading__title--light {
    color: var(--pl-white-base);
}

.heading__title--accent {
    color: var(--pl-sage-green);
}

.heading__divider {
    width: 64px;
    height: 4px;
    background: var(--pl-sage-green);
    border: none;
    margin: var(--space-1) 0 0;
}

.heading__mark {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: var(--space-1);
}

/* ============================================================

   SHARED: LEDE (intro paragraphs)

   ============================================================ */

.lede {
    font-family: var(--font-body);
    font-size: var(--fs-body-md);
    font-weight: 500;
    line-height: 1.6;
    color: inherit;
    max-width: 65ch;
}

    .lede + .lede {
        margin-top: var(--space-4);
    }

.lede--center {
    margin-inline: auto;
    text-align: center;
}

/* ============================================================

   SHARED: LINK ROW (underlined inline link with icon)

   Kept for backward compat with earlier pages.

   ============================================================ */

.link-row {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-body-md);
    color: var(--pl-forest-green-text);
    text-decoration: underline;
}

    .link-row__icon, .link-row svg {
        width: 18px;
        height: 18px;
        flex: none;
    }

/* ============================================================

   SHARED: CARDS — testimonial, team member, stat

   ============================================================ */

/* Testimonial card: light card on a coloured/dark section */

.testimonial-card {
    background: var(--pl-fill);
    color: var(--pl-dark);
    border-radius: var(--radius-sm);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    box-shadow: var(--shadow-card);
    height: 100%;
}

.testimonial-card__quote {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
    font-size: var(--fs-body-md);
    line-height: 1.6;
}

.testimonial-card__attribution {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--fs-caption);
    color: var(--pl-dark-grey);
    margin-top: auto;
}

/* Team card: white card with photo on top, name + role beneath */

.team-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.team-card__photo {
    aspect-ratio: 1 / 1;
    width: 100%;
    background: var(--pl-fill);
}

    .team-card__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.team-card__meta {
    padding: var(--space-4) var(--space-3);
    text-align: center;
    background: var(--pl-white-base);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-1);
}

.team-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem; /* 18px on mobile */

    line-height: 1.2;
    color: var(--pl-dark);
}

.team-card__role {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.75rem; /* 12px on mobile */

    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--pl-dark-grey);
    line-height: 1.4;
}

/* Stat card: dark glassy panel used inside .section--feature */

.stat-card {
    background: rgba(57, 57, 57, 0.8);
    color: var(--pl-white-base);
    border-radius: var(--radius-sm);
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.stat-card__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-h3);
    line-height: 1.3;
}

.stat-card__text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: var(--fs-body-md);
    line-height: 1.5;
}

/* ============================================================

   SHARED: CALLOUT BANNER  (small horizontal CTA strip)

   Used for "Custom care, just for you"-style mini banners.

   Mobile  — stacked, title/body above, action below.

   Tablet+ — title/body on the left, action on the right.

   ============================================================ */

.callout-banner {
    background: var(--pl-fill);
    border-radius: var(--radius);
    padding: var(--space-6) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
}

.callout-banner__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.callout-banner__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: var(--fs-h2);
    line-height: 1.2;
    color: var(--pl-dark);
}

.callout-banner__text {
    font-family: var(--font-body);
    font-size: var(--fs-body-md);
    font-weight: 500;
    line-height: 1.5;
    color: var(--pl-dark);
    max-width: 52ch;
}

.callout-banner__action {
    flex: none;
}

@media (min-width: 768px) {

    .callout-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: var(--space-8);
        padding: var(--space-8) var(--space-10);
    }
}

/* ============================================================

   SHARED: FACT CARD + FACT GRID

   Small text-only tile used inside larger sections to list

   short bullets / features (e.g. the food section).

   ============================================================ */

.fact-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: 1fr;
}

.fact-card {
    background: var(--pl-white-base);
    border-radius: var(--radius-sm);
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--fs-body-md);
    font-weight: 500;
    line-height: 1.4;
    color: var(--pl-dark);
    min-height: 80px;
    display: flex;
    align-items: center;
}

@media (min-width: 640px) {

    .fact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================

   SHARED: GALLERY STRIP  (horizontal thumbnail row)

   Used under a hero image on residence pages to show extra views.

   Mobile  — horizontally scrollable.

   Tablet+ — sits in a single row, no scroll.

   ============================================================ */

.gallery-strip {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-3);
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.gallery-strip__item {
    flex: 0 0 auto;
    width: clamp(72px, 13vw, 120px);
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--pl-fill);
}

    .gallery-strip__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

@media (min-width: 768px) {

    .gallery-strip {
        overflow: visible;
    }

    .gallery-strip__item {
        flex: 1 1 0;
    }
}

/* ============================================================

   SHARED: FORM CONTROLS

   White card + labeled inputs. Mobile-first: every field is

   full-width by default. Use .form-grid--2col on a wrapper to

   put two fields side by side at ≥ 640px.

   ============================================================ */

.form-card {
    background: var(--pl-white-base);
    /*border: 1px solid var(--pl-border);*/
    border-radius: var(--radius);
    padding: var(--space-5);
    box-shadow: var(--shadow-card);
}

.form-card__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--pl-dark);
    margin-bottom: var(--space-5);
}

.form-grid {
    display: grid;
    gap: var(--space-3);
    grid-template-columns: 1fr;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    position:relative;
}

.form-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--pl-dark);
    line-height: 1.4;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--pl-dark);
    background: var(--pl-white-base);
    border: 1px solid var(--pl-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .form-input:hover,
    .form-select:hover,
    .form-textarea:hover {
        border-color: var(--pl-cool-grey);
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--pl-forest-green);
        box-shadow: 0 0 0 3px rgba(9, 46, 29, 0.12);
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
        color: var(--pl-dark-grey);
        opacity: 1;
    }

.form-textarea {
    resize: vertical;
    min-height: 96px;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%236C757D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-checkbox {
    display: inline-flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--pl-dark);
    line-height: 1.4;
}

    .form-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        accent-color: var(--pl-forest-green);
        cursor: pointer;
        flex: none;
    }

.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-2);
}

@media (min-width: 640px) {

    .form-grid--2col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {

    .form-card {
        padding: var(--space-6);
    }
}

/* ============================================================

   SHARED: CAROUSEL DOTS

   ============================================================ */

.dots {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    list-style: none;
    padding: 0;
    margin: 0;
}

.dots__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.3;
    border: 0;
    padding: 0;
}

    .dots__dot[aria-current="true"],
    .dots__dot.is-active {
        opacity: 1;
    }

/* ============================================================

   SHARED: SITE FOOTER

   ============================================================ */

.site-footer {
    background: linear-gradient(0deg, var(--pl-card-overlay), var(--pl-card-overlay)), var(--pl-fill);
    color: var(--pl-dark);
    padding: var(--section-y) var(--gutter) var(--space-6);
}

.site-footer__inner {
    max-width: var(--wrapper-max);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.site-footer__top {
    display: grid;
    gap: var(--space-6);
    grid-template-columns: 1fr;
}

.site-footer__brand img {
    width: 120px;
    height: auto;
}

.site-footer__tagline {
    margin-top: var(--space-3);
    font-size: var(--fs-body-md);
    max-width: 430px;
    line-height: 1.5;
}

    .site-footer__tagline strong {
        font-weight: 500;
    }

.site-footer__col h2 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-caption);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pl-dark-grey);
    margin-bottom: var(--space-4);
}

.site-footer__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

    .site-footer__list a:hover {
        text-decoration: underline;
    }

.site-footer__social {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

    .site-footer__social a {
        display: inline-flex;
        align-items: center;
        gap: var(--space-3);
    }

.site-footer__icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(116, 131, 134, 0.3);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

    .site-footer__icon img {
        width: 20px;
        height: 20px;
    }

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--pl-border);
    font-size: var(--fs-caption);
}

.site-footer__legal {
    display: inline-flex;
    gap: var(--space-5);
}

    .site-footer__legal a {
        text-decoration: underline;
    }

/* ============================================================

   RESPONSIVE BREAKPOINTS

   · Small tablet ≥ 640px

   · Tablet ≥ 768px

   · Desktop ≥ 1024px

   ============================================================ */

/* Small tablet */

@media (min-width: 640px) {

    .heading__divider {
        width: 80px;
    }
}

/* Tablet */

@media (min-width: 768px) {

    .testimonial-card {
        padding: var(--space-6) var(--space-6);
    }

    .team-card__name {
        font-size: 1.25rem;
    }
    /* 20px */

    .team-card__role {
        font-size: 0.8125rem;
    }
    /* 13px */

    .stat-card {
        padding: var(--space-6);
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

/* Desktop */

@media (min-width: 1024px) {

    .site-header__nav {
        min-height: 80px;
        padding-block: var(--space-2);
    }

    .site-header__list {
        display: inline-flex;
    }

    .site-header__toggle {
        display: none;
    }

    .site-header__cta {
        display: inline-flex;
    }

    .site-header__logo img {
        width: 129px;
    }

    .site-header__link {
        font-size: 17px;
    }

    .team-card__name {
        font-size: 1.375rem;
    }
    /* 22px — Figma */

    .team-card__role {
        font-size: 0.875rem;
    }
    /* 14px — Figma */

    .stat-card {
        padding: var(--space-8);
        gap: var(--space-5);
    }

    .site-footer__social {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .site-footer__top {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .site-footer__brand img {
        width: 141px;
    }
}

/* Mobile-only: collapsible nav menu */

@media (max-width: 1023.98px) {

    .site-header__list[data-open="true"] {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        inset: 100% 0 auto 0;
        background: var(--pl-white-base);
        padding: var(--space-4) var(--gutter);
        box-shadow: var(--shadow-nav);
        gap: var(--space-3);
        border-top: 1px solid var(--pl-border);
    }

        .site-header__list[data-open="true"] .site-header__link {
            padding: var(--space-3) 0;
            font-size: 18px;
        }
}
 