:root {
    --ink: #17201c;
    --muted: #63706a;
    --line: #dfe5df;
    --paper: #fbfaf6;
    --soft: #f1f4ed;
    --forest: #173f35;
    --forest-2: #0d2a25;
    --gold: #c6a15b;
    --gold-2: #f0d890;
    --teal: #1e7668;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(23, 32, 28, 0.12);
    --gutter: clamp(18px, 5vw, 72px);
    --section-y: clamp(64px, 8vw, 112px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(198, 161, 91, 0.75);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 14px;
    color: var(--forest-2);
    background: var(--gold-2);
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 64px);
    background: rgba(251, 250, 246, 0.88);
    border-bottom: 1px solid rgba(23, 32, 28, 0.08);
    backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0;
}

.brand img,
.footer-brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(198, 161, 91, 0.7);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 10px 14px;
    color: var(--muted);
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--forest);
    background: rgba(30, 118, 104, 0.09);
}

.site-nav .nav-cta {
    color: var(--white);
    background: var(--forest);
    box-shadow: 0 10px 24px rgba(23, 63, 53, 0.18);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
    color: var(--white);
    background: var(--teal);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--forest);
    border-radius: 3px;
    transition: 0.2s ease;
}

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

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

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

.hero {
    position: relative;
    min-height: 94vh;
    padding: 150px clamp(20px, 6vw, 84px) 56px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}

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

.hero-carousel {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 6000ms ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-media {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(13, 42, 37, 0.92), rgba(13, 42, 37, 0.62) 48%, rgba(13, 42, 37, 0.16));
}

.hero-content {
    position: relative;
    width: min(820px, 100%);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.96;
    letter-spacing: 0;
}

h2 {
    margin: 0;
    font-size: clamp(32px, 4.6vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
}

.hero-copy,
.page-hero p,
.split p,
.section-heading + p {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 2vw, 21px);
}

.hero-copy {
    max-width: 690px;
    margin: 24px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-carousel-controls {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.hero-dot {
    width: 42px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.hero-dot.active {
    background: var(--gold-2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--forest-2);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    box-shadow: 0 16px 34px rgba(198, 161, 91, 0.28);
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.intro-band .btn-secondary,
.service-suite .btn-secondary,
.map-band .btn-secondary {
    color: var(--forest);
    border-color: var(--line);
    background: var(--white);
}

.map-link {
    margin-top: 14px;
}

.hero-panel {
    position: relative;
    align-self: end;
    justify-self: end;
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1px;
    width: min(620px, 100%);
    margin-top: 80px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.hero-panel div {
    padding: 20px;
    background: rgba(13, 42, 37, 0.42);
}

.hero-panel span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.hero-panel .stat {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
}

.section {
    padding: clamp(70px, 9vw, 128px) clamp(20px, 6vw, 84px);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: start;
}

.split p {
    margin: 0;
    color: var(--muted);
}

.intro-band {
    background: var(--forest);
    color: var(--white);
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}

.proof-strip div {
    padding: clamp(22px, 3vw, 34px) var(--gutter);
    background: var(--paper);
}

.proof-strip strong,
.proof-strip span {
    display: block;
}

.proof-strip strong {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.1;
}

.proof-strip span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.section-heading {
    max-width: 840px;
    margin-bottom: 42px;
}

.section-heading h2 {
    color: var(--ink);
}

.feature-grid,
.compact-grid,
.resource-grid,
.team-grid,
.service-list,
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature-card,
.compact-grid article,
.service-list article,
.resource-card,
.contact-cards article,
.mission-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(23, 32, 28, 0.06);
}

.image-card {
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-card div,
.compact-grid article,
.service-list article,
.resource-card,
.contact-cards article,
.mission-grid article {
    padding: 28px;
}

.feature-card i,
.compact-grid i,
.service-list i,
.resource-card i,
.contact-cards i,
.mission-grid i {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    color: var(--forest);
    background: rgba(198, 161, 91, 0.18);
    border-radius: 999px;
}

.feature-card p,
.compact-grid p,
.service-list p,
.resource-card p,
.contact-cards p,
.mission-grid p,
.team-card p {
    color: var(--muted);
}

.feature-card a,
.resource-card a,
.contact-cards a,
.footer-grid a,
.footer-grid span,
.download-list span {
    text-decoration: none;
}

.feature-card a,
.resource-card a {
    color: var(--teal);
    font-weight: 900;
}

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

.dark-section .section-heading h2,
.dark-section h3 {
    color: var(--white);
}

.dark-section p,
.dark-section .compact-grid p {
    color: rgba(255, 255, 255, 0.72);
}

.value-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.value-item,
.process-grid div {
    padding: 30px;
    background: rgba(255, 255, 255, 0.06);
}

.value-item span,
.process-grid span {
    display: block;
    margin-bottom: 30px;
    color: var(--gold);
    font-weight: 900;
}

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

.process-grid.light {
    border-color: var(--line);
    background: var(--line);
}

.process-grid.light div {
    background: var(--white);
}

.process-grid.light p {
    color: var(--muted);
}

.process-strip {
    background: var(--soft);
}

.testimonials-section {
    background: var(--paper);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
}

.testimonial-grid figure {
    margin: 0;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(23, 32, 28, 0.06);
}

.testimonial-grid blockquote {
    margin: 0;
    color: var(--ink);
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.45;
}

.testimonial-grid figcaption {
    margin-top: 20px;
    color: var(--teal);
    font-weight: 900;
}

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

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(23, 32, 28, 0.05);
}

.faq-list summary {
    min-height: 58px;
    padding: 18px 22px;
    color: var(--ink);
    cursor: pointer;
    font-weight: 900;
}

.faq-list details p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: var(--white);
    background: linear-gradient(135deg, var(--forest), var(--teal));
}

.cta-section div {
    max-width: 760px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.78);
}

.page-hero {
    padding: 150px clamp(20px, 6vw, 84px) 72px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(13, 42, 37, 0.94), rgba(23, 63, 53, 0.82)),
        url("images/consulting.jpg") center/cover;
}

.page-hero > div {
    max-width: 900px;
}

.page-hero h1 {
    font-size: clamp(42px, 6vw, 78px);
}

.image-page-hero {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 460px);
    gap: 42px;
    align-items: end;
}

.image-page-hero img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow);
}

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

.service-suite {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
    gap: clamp(30px, 6vw, 78px);
    align-items: start;
}

.service-suite.reverse .suite-copy {
    order: 2;
}

.suite-copy {
    position: sticky;
    top: 110px;
}

.suite-copy p {
    color: var(--muted);
}

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

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

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

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

.team-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 22px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.team-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.team-card div {
    padding: 24px 24px 24px 0;
}

.team-card span {
    display: block;
    margin-top: 8px;
    color: var(--teal);
    font-weight: 900;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.form-panel,
.hours-panel {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

form {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 15px;
    color: var(--ink);
    background: #fcfcfa;
    font: inherit;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(30, 118, 104, 0.12);
}

small {
    min-height: 18px;
    color: #b3261e;
    font-weight: 700;
}

.message-box {
    display: none;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 800;
}

.message-box.success {
    display: block;
    color: #0f5132;
    background: #dff5e8;
}

.message-box.warning,
.message-box.error {
    display: block;
    color: #7a4c00;
    background: #fff1cf;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.contact-highlight {
    margin-top: 28px;
    padding: 24px;
    color: var(--white);
    border-radius: 8px;
    background: var(--forest);
}

.contact-highlight a {
    color: var(--gold-2);
    font-weight: 900;
}

.map-band {
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--soft);
}

.map-band > i {
    display: grid;
    place-items: center;
    flex: 0 0 86px;
    width: 86px;
    height: 86px;
    color: var(--forest);
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow);
}

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

.resource-card span,
.download-list span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 6px 10px;
    color: var(--forest);
    background: rgba(198, 161, 91, 0.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.resource-mini-link {
    display: inline-flex;
    width: fit-content;
    padding: 9px 14px;
    color: var(--white);
    background: var(--forest);
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.resource-card button,
.resource-card a {
    display: inline-flex;
    margin-top: 14px;
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--forest);
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
}

.resource-card.unavailable {
    opacity: 0.82;
}

.resource-card.unavailable button {
    color: var(--muted);
    background: var(--soft);
    cursor: not-allowed;
}

.resource-card.featured {
    border-color: rgba(198, 161, 91, 0.7);
    box-shadow: 0 20px 44px rgba(198, 161, 91, 0.16);
}

.download-list {
    display: grid;
    gap: 14px;
}

.download-list > div {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.download-list i {
    color: var(--teal);
    font-size: 24px;
}

.download-list h3,
.download-list p {
    margin: 0;
}

.download-list p {
    color: var(--muted);
}

.site-footer {
    padding: 64px clamp(20px, 6vw, 84px) 28px;
    color: rgba(255, 255, 255, 0.76);
    background: #0b1d1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 30px;
}

.footer-grid h3 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 15px;
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover {
    color: var(--gold-2);
}

.footer-brand {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.live-chat-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px;
    color: var(--white);
    background: #18a85a;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(24, 168, 90, 0.3);
    text-decoration: none;
    font-weight: 900;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 88px;
    z-index: 45;
    display: none;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    color: var(--white);
    background: var(--forest);
    border-radius: 999px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    display: grid;
}

@media (max-width: 1060px) {
    .feature-grid,
    .compact-grid,
    .resource-grid,
    .contact-cards,
    .testimonial-grid,
    .proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .value-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-suite,
    .contact-layout,
    .image-page-hero {
        grid-template-columns: 1fr;
    }

    .service-suite.reverse .suite-copy {
        order: 0;
    }

    .suite-copy {
        position: static;
    }
}

@media (max-width: 780px) {
    .site-header {
        padding: 12px 18px;
    }

    .brand span {
        max-width: 170px;
        font-size: 14px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav a {
        border-radius: 8px;
    }

    .hero {
        min-height: 88vh;
        padding: 128px 20px 34px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(13, 42, 37, 0.92), rgba(13, 42, 37, 0.62));
    }

    .hero-panel,
    .split,
    .feature-grid,
    .compact-grid,
    .resource-grid,
    .testimonial-grid,
    .proof-strip,
    .team-grid,
    .service-list,
    .contact-cards,
    .mission-grid,
    .process-grid,
    .value-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        grid-template-columns: 1fr;
    }

    .team-card img {
        height: 320px;
    }

    .team-card div {
        padding: 0 24px 24px;
    }

    .cta-section,
    .map-band,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .download-list > div {
        grid-template-columns: 1fr;
    }

    .live-chat-button span {
        display: none;
    }

    .live-chat-button {
        width: 52px;
        padding: 0;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 40px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .section,
    .page-hero {
        padding-left: 18px;
        padding-right: 18px;
    }

    .image-card img {
        height: 210px;
    }
}

/* Final polish: spacing, typography, and mobile rhythm */
.site-header {
    padding: 12px var(--gutter);
}

.brand,
.footer-brand {
    line-height: 1.1;
}

.site-nav a {
    min-height: 42px;
}

.hero {
    min-height: 92svh;
    padding: clamp(128px, 16vw, 176px) var(--gutter) clamp(36px, 6vw, 64px);
}

.hero-content {
    width: min(780px, 100%);
}

h1 {
    max-width: 12ch;
    font-size: clamp(44px, 6.5vw, 86px);
    line-height: 0.98;
}

h2 {
    max-width: 16ch;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.06;
}

h3 {
    font-size: clamp(19px, 1.5vw, 22px);
    line-height: 1.24;
}

p {
    margin-top: 0;
}

.hero-copy,
.page-hero p,
.split p,
.section-heading + p {
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.65;
}

.hero-copy {
    margin-top: 22px;
}

.hero-actions {
    gap: 12px;
    margin-top: 32px;
}

.hero-panel {
    margin-top: clamp(44px, 8vw, 76px);
}

.hero-panel div,
.value-item,
.process-grid div {
    padding: clamp(20px, 3vw, 34px);
}

.section {
    padding: var(--section-y) var(--gutter);
}

.split {
    gap: clamp(28px, 6vw, 72px);
}

.split p,
.suite-copy p,
.cta-section p,
.feature-card p,
.compact-grid p,
.service-list p,
.resource-card p,
.contact-cards p,
.mission-grid p,
.team-card p,
.page-hero p {
    max-width: 66ch;
}

.intro-band .split p {
    color: rgba(255, 255, 255, 0.78);
}

.section-heading {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.feature-grid,
.compact-grid,
.resource-grid,
.team-grid,
.service-list,
.contact-cards,
.mission-grid {
    gap: clamp(16px, 2vw, 24px);
}

.feature-card,
.compact-grid article,
.service-list article,
.resource-card,
.contact-cards article,
.mission-grid article,
.team-card,
.form-panel,
.hours-panel,
.contact-highlight,
.download-list > div,
.image-page-hero img {
    border-radius: 10px;
}

.image-card img {
    height: clamp(210px, 20vw, 270px);
}

.image-card div,
.compact-grid article,
.service-list article,
.resource-card,
.contact-cards article,
.mission-grid article {
    padding: clamp(24px, 2.6vw, 30px);
}

.feature-card p,
.compact-grid p,
.service-list p,
.resource-card p,
.contact-cards p,
.mission-grid p {
    margin-bottom: 0;
}

.page-hero {
    padding: clamp(126px, 15vw, 164px) var(--gutter) clamp(56px, 8vw, 86px);
}

.page-hero h1 {
    max-width: 13ch;
    font-size: clamp(40px, 5.4vw, 72px);
}

.image-page-hero,
.service-suite {
    gap: clamp(30px, 6vw, 72px);
}

.suite-copy .btn {
    margin-top: 12px;
}

label {
    font-size: 15px;
}

input,
select {
    min-height: 50px;
}

textarea {
    min-height: 148px;
    resize: vertical;
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

button,
.btn,
.site-nav a,
.resource-card button,
.resource-card a {
    touch-action: manipulation;
}

.site-footer {
    padding: clamp(54px, 7vw, 72px) var(--gutter) 28px;
}

.footer-bottom {
    line-height: 1.5;
}

@media (max-width: 780px) {
    :root {
        --gutter: 18px;
        --section-y: 58px;
    }

    .site-header {
        padding: 10px 18px;
    }

    .brand span {
        max-width: 150px;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .hero {
        min-height: auto;
        padding: 118px var(--gutter) 34px;
    }

    .hero-panel {
        justify-self: stretch;
    }

    h1,
    .page-hero h1 {
        max-width: 13ch;
    }

    h2 {
        max-width: 18ch;
    }

    .page-hero {
        padding-top: 116px;
    }

    .team-card img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
        line-height: 1.04;
    }

    .page-hero h1 {
        font-size: 34px;
        line-height: 1.06;
    }

    h2 {
        font-size: 29px;
        line-height: 1.12;
    }

    .hero-copy,
    .page-hero p,
    .split p,
    .section-heading + p {
        font-size: 16px;
        line-height: 1.62;
    }

    .image-card img {
        height: 200px;
    }

    .hero-actions,
    .cta-section {
        align-items: stretch;
    }

    .hero-actions .btn,
    .cta-section .btn {
        width: 100%;
    }

    .hero-carousel-controls {
        width: 100%;
    }

    .hero-dot {
        flex: 1;
    }

    .hero-panel .stat {
        font-size: 28px;
    }

    .footer-bottom {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
