/* =============================================
   HARECROFT CONSULTANTS — MAIN STYLESHEET
   Mobile-first. Pure CSS. No frameworks.
   Version: 1.0.0
   ============================================= */

/* ── CUSTOM PROPERTIES ── */
:root {
    --navy:       #1F2A44;
    --navy-deep:  #131b2e;
    --navy-mid:   #2C3A5C;
    --orange:     #F28C38;
    --orange-dk:  #d97720;
    --teal:       #3C8D8D;
    --teal-dk:    #2f7070;
    --green:      #6DAA64;
    --green-dk:   #568a4e;
    --off-white:  #F7F8FA;
    --light:      #E8ECF4;
    --mid-grey:   #6B7280;
    --body-col:   #374151;
    --white:      #ffffff;
    --font-head:  'Outfit', system-ui, sans-serif;
    --font-body:  'Atkinson Hyperlegible', Georgia, serif;
    --radius:     6px;
    --radius-lg:  12px;
    --shadow-sm:  0 2px 8px rgba(0, 0, 0, .06);
    --shadow-md:  0 6px 24px rgba(0, 0, 0, .10);
    --shadow-lg:  0 16px 48px rgba(0, 0, 0, .14);
    --tr:         0.22s ease;
    --container:  1180px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--body-col);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ── ACCESSIBILITY ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 9999;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 14px;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
    border-radius: 3px;
}

.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;
}

/* ── LAYOUT UTILITIES ── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 28px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 36px;
    }
}

/* ── TYPOGRAPHY UTILITIES ── */
.chip {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 20px;
    background: var(--teal);
    color: var(--white);
    margin-bottom: 16px;
}

.chip--orange { background: var(--orange); }
.chip--green  { background: var(--green); }
.chip--navy   { background: var(--navy); }

.section-title {
    font-family: var(--font-head);
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.section-sub {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--mid-grey);
    line-height: 1.7;
    max-width: 560px;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 40px;
    border: 2px solid transparent;
    transition: all var(--tr);
    letter-spacing: 0.2px;
    text-align: center;
    white-space: nowrap;
}

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

.btn--primary:hover,
.btn--primary:focus-visible {
    background: var(--orange-dk);
    border-color: var(--orange-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 140, 56, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

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

.btn--outline:hover,
.btn--outline:focus-visible {
    background: var(--navy);
    color: var(--white);
}

.btn--white {
    background: var(--white);
    color: var(--teal);
    border-color: var(--white);
    font-weight: 700;
}

.btn--white:hover,
.btn--white:focus-visible {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--teal:hover,
.btn--teal:focus-visible {
    background: var(--teal-dk);
    border-color: var(--teal-dk);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ── PAGE HERO (shared across inner pages) ── */
.page-hero {
    background: var(--navy);
    padding: 56px 0 44px;
    border-bottom: 4px solid var(--teal);
    position: relative;
    overflow: hidden;
}

.page-hero--orange { border-bottom-color: var(--orange); }
.page-hero--green  { border-bottom-color: var(--green); }

.page-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 141, 141, 0.15) 0%, transparent 65%);
    pointer-events: none;
}

.page-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.page-hero__title {
    font-family: var(--font-head);
    font-size: clamp(32px, 7vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.page-hero__sub {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.72;
}

.page-hero__note {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 3px solid var(--orange);
    border-radius: var(--radius);
    padding: 18px 22px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 72px 0 56px;
    }

    .page-hero__inner {
        flex-direction: row;
        align-items: flex-end;
        gap: 48px;
    }

    .page-hero__content {
        flex: 2;
    }

    .page-hero__note-wrap {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .page-hero {
        padding: 80px 0 64px;
    }
}

/* ── CTA BAND ── */
.cta-band {
    background: var(--teal);
    padding: 56px 0;
}

.cta-band--orange { background: var(--orange); }
.cta-band--green  { background: var(--green); }

.cta-band__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
}

.cta-band__title {
    font-family: var(--font-head);
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.2;
}

.cta-band__sub {
    font-size: clamp(15px, 2vw, 17px);
    color: rgba(255, 255, 255, 0.82);
    max-width: 500px;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .cta-band {
        padding: 64px 0;
    }

    .cta-band__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
    background: var(--navy-mid);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(60, 141, 141, 0.2), rgba(31, 42, 68, 0.4));
}

.img-placeholder span {
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────
   HOME PAGE
───────────────────────────────────────── */

/* Hero */
.hero {
    background: var(--navy);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}

.hero__bg-1 {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 141, 141, 0.2) 0%, transparent 68%);
    pointer-events: none;
}

.hero__bg-2 {
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 140, 56, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.hero__eyebrow {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange);
    flex-shrink: 0;
}

.hero__title {
    font-family: var(--font-head);
    font-size: clamp(30px, 7vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero__title em {
    color: var(--orange);
    font-style: normal;
}

.hero__body {
    font-size: clamp(16px, 2.5vw, 18px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.78;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.hero__visual {
    position: relative;
    margin-top: 40px;
}

.hero__img-frame {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

.hero__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__badge {
    position: absolute;
    bottom: -16px;
    left: 16px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.hero__badge-num {
    display: block;
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.hero__badge-label {
    font-size: 12px;
    opacity: 0.88;
}

@media (min-width: 480px) {
    .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0 72px;
    }

    .hero__inner {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 56px;
        align-items: center;
    }

    .hero__visual {
        margin-top: 0;
    }

    .hero__badge {
        bottom: -20px;
        left: -20px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 96px 0 88px;
    }
}

/* Empathy section */
.empathy {
    background: var(--off-white);
    border-top: 4px solid var(--teal);
    padding: 56px 0;
}

.empathy__label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}

.empathy__questions {
    margin-bottom: 36px;
}

.empathy__questions li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--light);
    font-size: clamp(15px, 2vw, 17px);
    color: var(--navy);
}

.empathy__questions li:last-child {
    border-bottom: none;
}

.empathy__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 7px;
}

.empathy__response {
    font-family: var(--font-head);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 18px;
}

.empathy__response em {
    color: var(--teal);
    font-style: normal;
}

.empathy__body {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--body-col);
    line-height: 1.78;
}

@media (min-width: 768px) {
    .empathy {
        padding: 72px 0;
    }

    .empathy__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }

    .empathy__questions {
        margin-bottom: 0;
    }
}

/* Services teaser */
.services-teaser {
    background: var(--white);
    padding: 56px 0;
}

.services-teaser__head {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--off-white);
    border-radius: 10px;
    padding: 28px 24px;
    border: 1px solid var(--light);
    border-top: 5px solid transparent;
    transition: all var(--tr);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.service-card:nth-child(1) { border-top-color: var(--navy); }
.service-card:nth-child(2) { border-top-color: var(--green); }
.service-card:nth-child(3) { border-top-color: var(--teal); }
.service-card:nth-child(4) { border-top-color: var(--orange); }

.service-card:hover,
.service-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
}

.service-card:nth-child(1) .service-card__icon { background: rgba(31,42,68,0.08); }
.service-card:nth-child(2) .service-card__icon { background: rgba(109,170,100,0.13); }
.service-card:nth-child(3) .service-card__icon { background: rgba(60,141,141,0.13); }
.service-card:nth-child(4) .service-card__icon { background: rgba(242,140,56,0.13); }

.service-card__title {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-card__body {
    font-size: 14px;
    color: var(--mid-grey);
    line-height: 1.65;
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .services-teaser {
        padding: 80px 0;
    }

    .services-teaser__head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 48px;
    }
}

@media (min-width: 1024px) {
    .services-teaser {
        padding: 96px 0;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Promise section */
.promise {
    background: var(--navy);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.promise::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 141, 141, 0.15), transparent 65%);
    pointer-events: none;
}

.promise__title {
    font-family: var(--font-head);
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 18px;
}

.promise__body {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.78;
    margin-bottom: 28px;
}

.promise__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.promise__stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 12px;
    text-align: center;
}

.promise__stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
}

.promise__stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

@media (min-width: 768px) {
    .promise {
        padding: 80px 0;
    }

    .promise__inner {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 64px;
        align-items: center;
    }

    .promise__stats {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .promise {
        padding: 88px 0;
    }
}

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */

.services-jumpmenu {
    background: var(--white);
    border-bottom: 1px solid var(--light);
    position: sticky;
    top: 70px; /* matches nav height */
    z-index: 100;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.admin-bar .services-jumpmenu {
    top: 70px; /* admin bar scrolls away below 600px — no offset */
}

@media screen and (min-width: 600px) {
    .admin-bar .services-jumpmenu {
        top: 116px; /* 70px nav + 46px admin bar */
    }
}

@media screen and (min-width: 783px) {
    .admin-bar .services-jumpmenu {
        top: 102px; /* 70px nav + 32px admin bar */
    }
}

.services-jumpmenu::-webkit-scrollbar {
    display: none;
}

.services-jumpmenu__inner {
    display: flex;
    min-width: max-content;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .services-jumpmenu__inner {
        padding: 0 28px;
    }
}

@media (min-width: 1024px) {
    .services-jumpmenu__inner {
        padding: 0 36px;
    }
}

.svc-jump-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    transition: all var(--tr);
    white-space: nowrap;
    font-family: var(--font-head);
}

.svc-jump-pill:hover,
.svc-jump-pill.active {
    background: var(--off-white);
    border-bottom-color: var(--orange);
}

.svc-jump-pill__num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--mid-grey);
}

.svc-jump-pill__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

/* Service blocks */
.svc {
    padding: 56px 0;
    border-bottom: 1px solid var(--light);
}

.svc:nth-child(even) {
    background: var(--off-white);
}

.svc__inner {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    align-items: start;
}

.svc__aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 4px;
}

.svc__num {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.svc:nth-child(1) .svc__num { background: var(--navy); }
.svc:nth-child(2) .svc__num { background: var(--green); }
.svc:nth-child(3) .svc__num { background: var(--teal); }
.svc:nth-child(4) .svc__num { background: var(--orange); }

.svc__connector {
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: var(--light);
    border-radius: 2px;
    margin-top: 8px;
}

.svc__title {
    font-family: var(--font-head);
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.22;
    letter-spacing: -0.2px;
}

.svc__body {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--body-col);
    line-height: 1.8;
    margin-bottom: 24px;
}

.svc__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.svc__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--body-col);
    border-bottom: 1px solid var(--light);
}

.svc__list li:last-child {
    border-bottom: none;
}

.svc__bullet {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-top: 7px;
}

.svc:nth-child(1) .svc__bullet { background: var(--navy); }
.svc:nth-child(2) .svc__bullet { background: var(--green); }
.svc:nth-child(3) .svc__bullet { background: var(--teal); }
.svc:nth-child(4) .svc__bullet { background: var(--orange); }

.svc__visual {
    display: none;
}

@media (min-width: 640px) {
    .svc__list {
        grid-template-columns: 1fr 1fr;
    }

    .svc__list li:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    .svc {
        padding: 72px 0;
    }

    .svc__inner {
        grid-template-columns: 48px 1fr 340px;
        gap: 36px;
    }

    /* Flipped: visual left, content right — aside always stays left */
    .svc--flip .svc__inner {
        grid-template-columns: 340px 1fr 48px;
    }

    .svc--flip .svc__aside {
        order: 3;
    }

    .svc--flip .svc__content {
        order: 2;
    }

    .svc--flip .svc__visual {
        order: 1;
    }

    .svc__visual {
        display: flex;
        aspect-ratio: 4/3;
        border-radius: var(--radius-lg);
        overflow: hidden;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-style: italic;
        color: rgba(255, 255, 255, 0.4);
        text-align: center;
        padding: 24px;
    }

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

    .svc:nth-child(1) .svc__visual { background: linear-gradient(140deg, #2c3a5c, #131b2e); }
    .svc:nth-child(2) .svc__visual { background: linear-gradient(140deg, #3d6b3a, #2a4a28); }
    .svc:nth-child(3) .svc__visual { background: linear-gradient(140deg, #1f5c5c, #164242); }
    .svc:nth-child(4) .svc__visual { background: linear-gradient(140deg, #8a4e1a, #5c3310); }
}

@media (min-width: 1024px) {
    .svc {
        padding: 80px 0;
    }

    .svc__inner {
        grid-template-columns: 56px 1fr 380px;
        gap: 48px;
    }

    .svc--flip .svc__inner {
        grid-template-columns: 380px 1fr 56px;
    }
}

/* ─────────────────────────────────────────
   OUR PEOPLE PAGE
───────────────────────────────────────── */

.people-intro {
    background: var(--white);
    padding: 56px 0;
}

.people-values {
    margin-top: 28px;
}

.people-values li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--light);
}

.people-values li:last-child {
    border-bottom: none;
}

.pv-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pv-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.pv-body {
    font-size: 15px;
    color: var(--mid-grey);
    line-height: 1.6;
}

.people-quote {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    margin-top: 36px;
}

.people-quote::before {
    content: '\201C';
    font-family: var(--font-head);
    font-size: 100px;
    color: rgba(255, 255, 255, 0.06);
    position: absolute;
    top: -10px;
    left: 16px;
    line-height: 1;
    pointer-events: none;
}

.people-quote__text {
    font-family: var(--font-head);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
}

.people-quote__sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.72;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .people-intro {
        padding: 72px 0;
    }

    .people-intro__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }

    .people-quote {
        margin-top: 0;
        padding: 40px;
    }
}

/* Team grid */
.team-section {
    background: var(--off-white);
    padding: 56px 0;
}

.team-section__head {
    margin-bottom: 36px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light);
    transition: all var(--tr);
}

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

.team-card__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.team-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(31, 42, 68, 0.5));
}

.team-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.35);
    background: linear-gradient(140deg, #2c3a5c, #131b2e);
}

.team-card__body {
    padding: 24px;
}

.team-card__name {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-card__role {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
    margin-bottom: 12px;
}

.team-card__bio {
    font-size: 14px;
    color: var(--mid-grey);
    line-height: 1.65;
    margin-bottom: 16px;
}

.team-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.team-card__tag {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--off-white);
    color: var(--navy);
    border: 1px solid var(--light);
}

@media (min-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .team-section {
        padding: 72px 0;
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─────────────────────────────────────────
   SUCCESSES PAGE
───────────────────────────────────────── */

.successes-holding {
    background: var(--white);
    padding: 64px 0;
    text-align: center;
}

.successes-holding__icon {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 20px;
}

.successes-holding__title {
    font-family: var(--font-head);
    font-size: clamp(26px, 5vw, 40px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.successes-holding__body {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--mid-grey);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline {
    padding: 56px 0;
    background: var(--off-white);
}

.timeline__head {
    margin-bottom: 36px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--light);
    align-items: start;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item__date {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--mid-grey);
    text-align: right;
    padding-top: 4px;
}

.timeline-item__content {
    position: relative;
    padding-left: 26px;
}

.timeline-item__content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
}

.timeline-item__title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.timeline-item__body {
    font-size: 15px;
    color: var(--mid-grey);
    line-height: 1.65;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 56px 0;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--light);
    border-top: 4px solid var(--teal);
}

.testimonial-card:nth-child(2) { border-top-color: var(--orange); }
.testimonial-card:nth-child(3) { border-top-color: var(--green); }

.testimonial-card__quote-mark {
    font-family: var(--font-head);
    font-size: 48px;
    color: var(--light);
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-placeholder {
    background: var(--light);
    border-radius: var(--radius);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--mid-grey);
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    color: var(--body-col);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card__org {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-card__phase {
    font-size: 11px;
    color: var(--mid-grey);
    margin-top: 4px;
}

@media (min-width: 640px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */

.contact-body {
    padding: 56px 0;
    background: var(--off-white);
}

.contact-info h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

.info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 22px 20px;
    margin-bottom: 16px;
    border-left: 4px solid var(--teal);
    box-shadow: var(--shadow-sm);
}

.info-card--orange { border-left-color: var(--orange); }

.info-card__label {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mid-grey);
    margin-bottom: 7px;
}

.info-card__value {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.info-card__value--sm {
    font-size: 15px;
    font-weight: 500;
}

.info-card__note {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.6;
}

.contact-assurance {
    background: var(--navy);
    border-radius: 10px;
    padding: 24px;
    margin-top: 20px;
}

.contact-assurance p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 10px;
}

.contact-assurance p:last-child {
    margin-bottom: 0;
}

.contact-assurance strong {
    color: var(--orange);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--orange);
    margin-top: 36px;
}

.contact-form-card h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-form-card > p {
    font-size: 15px;
    color: var(--mid-grey);
    margin-bottom: 28px;
}

.contact-form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--mid-grey);
    background: var(--off-white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 10px 14px;
    margin-bottom: 24px !important;
    line-height: 1.5;
}

/* Gravity Forms overrides */
.gform_wrapper .gform_body {
    font-family: var(--font-body);
}

.gform_wrapper label.gfield_label {
    font-family: var(--font-head) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    margin-bottom: 8px !important;
}

.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper textarea {
    width: 100% !important;
    padding: 13px 16px !important;
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    color: var(--navy) !important;
    background: var(--off-white) !important;
    border: 2px solid var(--light) !important;
    border-radius: var(--radius) !important;
    transition: border-color var(--tr), box-shadow var(--tr) !important;
    outline: none !important;
    box-shadow: none !important;
}

.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper textarea:focus {
    border-color: var(--teal) !important;
    box-shadow: 0 0 0 3px rgba(60, 141, 141, 0.15) !important;
    background: var(--white) !important;
}

.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_footer button[type="submit"] {
    background: var(--orange) !important;
    color: var(--white) !important;
    font-family: var(--font-head) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
    border-radius: 40px !important;
    border: 2px solid var(--orange) !important;
    cursor: pointer !important;
    transition: all var(--tr) !important;
    width: 100% !important;
}

.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer button[type="submit"]:hover {
    background: var(--orange-dk) !important;
    border-color: var(--orange-dk) !important;
}

.contact-form-fallback {
    padding: 20px;
    background: var(--off-white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--mid-grey);
    text-align: center;
}

@media (min-width: 768px) {
    .contact-body {
        padding: 72px 0;
    }

    .contact-body__inner {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 52px;
        align-items: start;
    }

    .contact-form-card {
        margin-top: 0;
        padding: 40px 36px;
    }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */

.footer {
    background: var(--navy-deep);
    padding: 52px 0 28px;
    border-top: 4px solid var(--orange);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.footer__logo-badge {
    background: var(--white);
    border-radius: 8px;
    padding: 6px 8px;
    height: 48px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__logo-badge img {
    height: 36px;
    width: auto;
    object-position: center top;
}

.footer__logo-name {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.footer__logo-tag {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

.footer__tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.72;
    margin-bottom: 10px;
    max-width: 340px;
}

.footer__domain {
    font-family: var(--font-head);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer__col-head {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.58);
    transition: color var(--tr);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.32);
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.32);
    transition: color var(--tr);
}

.footer__legal a:hover {
    color: rgba(255, 255, 255, 0.65);
}

.footer__rivmedia {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.footer__rivmedia a {
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--tr);
}

.footer__rivmedia a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 640px) {
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 64px 0 36px;
    }

    .footer__inner {
        grid-template-columns: 1.6fr 1fr 1fr;
        gap: 52px;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px 24px;
    }
}

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ─────────────────────────────────────────
   DEFAULT PAGE (page.php)
───────────────────────────────────────── */

.page-content {
    padding: 56px 0 72px;
}

.page-content .container {
    max-width: 860px;
}

/* ─────────────────────────────────────────
   LEGAL PAGES (privacy, terms, cookies, a11y)
───────────────────────────────────────── */

.legal-body {
    padding: 56px 0 80px;
    background: var(--white);
}

.legal-content {
    max-width: 780px;
}

.legal-content h2 {
    font-family: var(--font-head);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--navy);
    margin: 44px 0 14px;
    line-height: 1.25;
}

.legal-content h3 {
    font-family: var(--font-head);
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 600;
    color: var(--navy);
    margin: 32px 0 10px;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 16px;
    color: var(--body-col);
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 18px 24px;
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 16px;
    color: var(--body-col);
    line-height: 1.78;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--teal);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--teal-dk);
}

.legal-content strong {
    font-weight: 700;
    color: var(--navy);
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 15px;
}

.legal-content th {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
}

.legal-content td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--light);
    color: var(--body-col);
    vertical-align: top;
}

.legal-content tr:nth-child(even) td {
    background: var(--off-white);
}

@media (min-width: 768px) {
    .legal-body {
        padding: 72px 0 96px;
    }
}

/* ─────────────────────────────────────────
   SINGLE POST (single.php)
───────────────────────────────────────── */

.post-hero {
    background: var(--navy);
    padding: 56px 0 44px;
    border-bottom: 4px solid var(--orange);
}

.post-hero__meta {
    margin-bottom: 16px;
}

.post-hero__title {
    font-family: var(--font-head);
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.post-hero__byline {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-head);
}

.post-hero__sep {
    opacity: 0.4;
}

.post-featured-img {
    padding: 32px 0 0;
    background: var(--off-white);
}

.post-featured-img__img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.post-body {
    padding: 48px 0 72px;
    background: var(--off-white);
}

.post-body__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

/* Post content typography */
.post-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
}

.post-content h2 {
    font-family: var(--font-head);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--navy);
    margin: 40px 0 14px;
    line-height: 1.25;
}

.post-content h3 {
    font-family: var(--font-head);
    font-size: clamp(18px, 2.5vw, 21px);
    font-weight: 600;
    color: var(--navy);
    margin: 32px 0 10px;
}

.post-content h2:first-child,
.post-content h3:first-child {
    margin-top: 0;
}

.post-content p {
    font-size: 17px;
    color: var(--body-col);
    line-height: 1.82;
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 0 0 20px 22px;
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-content li {
    font-size: 17px;
    color: var(--body-col);
    line-height: 1.78;
    margin-bottom: 8px;
}

.post-content a {
    color: var(--teal);
    text-decoration: underline;
}

.post-content a:hover {
    color: var(--teal-dk);
}

.post-content blockquote {
    border-left: 4px solid var(--orange);
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
    font-style: italic;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.65;
}

.post-content img {
    border-radius: var(--radius);
    margin: 24px 0;
}

/* Post navigation */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--light);
}

.post-nav__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: var(--radius);
    border: 1px solid var(--light);
    transition: all var(--tr);
    text-decoration: none;
}

.post-nav__item:hover {
    border-color: var(--teal);
    background: var(--white);
}

.post-nav__item--next {
    text-align: right;
}

.post-nav__label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--teal);
}

.post-nav__title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.4;
}

/* Post sidebar */
.post-sidebar__cta {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 24px;
}

.post-sidebar__cta-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 12px;
}

.post-sidebar__cta-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.post-sidebar__cta-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 20px;
}

.post-sidebar__services {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--light);
    box-shadow: var(--shadow-sm);
}

.post-sidebar__services-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}

.post-sidebar__services-list {
    margin: 0 0 4px;
}

.post-sidebar__services-list li {
    border-bottom: 1px solid var(--light);
}

.post-sidebar__services-list li:last-child {
    border-bottom: none;
}

.post-sidebar__services-list a {
    display: block;
    padding: 9px 0;
    font-size: 14px;
    color: var(--body-col);
    transition: color var(--tr);
    text-decoration: none;
}

.post-sidebar__services-list a:hover {
    color: var(--teal);
    padding-left: 4px;
}

@media (min-width: 900px) {
    .post-body__inner {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .post-content {
        padding: 44px 40px;
    }

    .post-sidebar {
        position: sticky;
        top: 106px;
    }
}

/* ─────────────────────────────────────────
   ARCHIVE PAGE (archive.php)
───────────────────────────────────────── */

.archive-body {
    padding: 56px 0 80px;
    background: var(--off-white);
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
}

.archive-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--light);
    box-shadow: var(--shadow-sm);
    transition: all var(--tr);
    display: flex;
    flex-direction: column;
}

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

.archive-card__img-link {
    display: block;
    overflow: hidden;
}

.archive-card__img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.archive-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.archive-card:hover .archive-card__img img {
    transform: scale(1.04);
}

.archive-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.archive-card__cat {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
    text-decoration: none;
}

.archive-card__title {
    font-family: var(--font-head);
    font-size: clamp(17px, 2.5vw, 20px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 10px;
}

.archive-card__title a {
    text-decoration: none;
    transition: color var(--tr);
}

.archive-card__title a:hover {
    color: var(--teal);
}

.archive-card__excerpt {
    font-size: 15px;
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.archive-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--mid-grey);
    font-family: var(--font-head);
    margin-bottom: 16px;
}

.archive-card__link {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    transition: color var(--tr);
}

.archive-card__link:hover {
    color: var(--teal-dk);
}

.archive-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--tr);
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.archive-empty {
    text-align: center;
    padding: 64px 0;
}

.archive-empty p {
    font-size: 18px;
    color: var(--mid-grey);
    margin-bottom: 28px;
}

@media (min-width: 640px) {
    .archive-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .archive-body {
        padding: 72px 0 96px;
    }

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

/* ─────────────────────────────────────────
   THANK YOU PAGE
───────────────────────────────────────── */

.thankyou-hero {
    background: var(--navy);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--teal);
}

.thankyou-hero::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 141, 141, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.thankyou-hero::after {
    content: '';
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 140, 56, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.thankyou-hero__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.thankyou-hero__icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(60, 141, 141, 0.18);
    border: 2px solid rgba(60, 141, 141, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--teal);
}

.thankyou-hero__title {
    font-family: var(--font-head);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.thankyou-hero__sub {
    font-size: clamp(17px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
    margin-bottom: 12px;
    font-family: var(--font-head);
    font-weight: 500;
}

.thankyou-hero__body {
    font-size: clamp(15px, 2vw, 17px);
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.72;
    margin-bottom: 36px;
}

.thankyou-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 480px) {
    .thankyou-hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
