/* ==========================================================================
   TOUCH GRASS™
   Shared Site Styles

   Direction:
   Contemporary residential landscape design / build company

   Typography system:
   12px  - labels / metadata
   14px  - supporting copy
   15px  - body copy
   20px  - card / item headings
   36px  - section headings
   52px  - homepage hero maximum
   ========================================================================== */


/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */

:root {
    --white: #ffffff;
    --off-white: #f5f4ef;
    --warm-white: #ece9e0;

    --green: #304534;
    --green-dark: #213326;
    --green-soft: #66776a;

    --sage: #dce3d8;
    --sage-light: #edf1eb;

    --stone: #747a72;
    --stone-light: #b8bbb4;

    --ochre: #a37949;

    --ink: #222822;
    --text: #525b53;
    --muted: #7d847d;

    --border: rgba(34, 40, 34, 0.14);
    --border-strong: rgba(34, 40, 34, 0.26);
    --border-light: rgba(255, 255, 255, 0.16);

    --font:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    --content-width: 1280px;
    --page-padding: clamp(22px, 4vw, 64px);

    --section-space: 112px;

    --radius-small: 3px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--ink);
    background: var(--off-white);

    font-family: var(--font);
    font-size: 15px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
p,
blockquote,
figure {
    margin-top: 0;
}

::selection {
    color: var(--white);
    background: var(--green-dark);
}


/* ==========================================================================
   3. SHARED LAYOUT
   ========================================================================== */

.content-width {
    width: min(
        calc(100% - (var(--page-padding) * 2)),
        var(--content-width)
    );

    margin-inline: auto;
}

.section-kicker {
    display: block;

    margin-bottom: 16px;

    color: var(--green-soft);

    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
    align-items: end;
    gap: 60px;

    margin-bottom: 52px;
}

.section-header h2,
.feature-copy h2,
.contact-intro h2 {
    margin: 0;

    font-size: 36px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.section-header > p {
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.75;
}

.section-footer {
    display: flex;
    justify-content: flex-end;

    margin-top: 42px;
}

.inline-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 9px;

    padding-bottom: 3px;

    border-bottom: 1px solid var(--green);

    color: var(--green);

    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;

    transition:
        color 180ms ease,
        gap 200ms var(--ease);
}

.inline-link:hover {
    gap: 14px;

    color: var(--ochre);
    border-color: var(--ochre);
}


/* ==========================================================================
   4. ACCESSIBILITY
   ========================================================================== */

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;

    padding: 10px 14px;

    transform: translateY(-160%);

    color: var(--white);
    background: var(--green-dark);

    font-size: 13px;
    font-weight: 600;

    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}


/* ==========================================================================
   5. HEADER
   ========================================================================== */

.site-header {
    position: relative;
    z-index: 100;

    background: var(--white);

    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: grid;
    width: min(
        calc(100% - (var(--page-padding) * 2)),
        var(--content-width)
    );
    min-height: 78px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 42px;

    margin-inline: auto;
}

.brand {
    display: grid;
    grid-template-columns: auto auto;
    align-items: start;
    width: fit-content;

    line-height: 1;
}

.brand strong {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.brand sup {
    margin-left: 2px;

    color: var(--ochre);

    font-size: 8px;
    font-weight: 700;
    line-height: 1;
}

.brand > span {
    grid-column: 1 / -1;

    margin-top: 6px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
}

.primary-nav a {
    position: relative;

    padding-block: 28px;

    color: var(--text);

    font-size: 14px;
    font-weight: 500;

    transition: color 180ms ease;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;

    height: 1px;

    content: "";

    transform: scaleX(0);
    transform-origin: right;

    background: var(--green);

    transition: transform 200ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: var(--green-dark);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-action {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;

    padding: 0 17px;

    border: 1px solid var(--green);

    color: var(--green);

    font-size: 13px;
    font-weight: 600;

    transition:
        color 180ms ease,
        background 180ms ease;
}

.header-action:hover {
    color: var(--white);
    background: var(--green);
}

.nav-toggle {
    display: none;
}


/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.button {
    display: inline-flex;
    width: fit-content;
    min-height: 46px;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: var(--radius-small);

    cursor: pointer;

    font-size: 14px;
    font-weight: 600;
    line-height: 1;

    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms var(--ease);
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--white);
    background: var(--green);
}

.button-primary:hover {
    background: var(--green-dark);
}


/* ==========================================================================
   7. HERO
   ========================================================================== */

.hero {
    padding:
        52px
        0
        72px;

    background: var(--off-white);
}

.hero-inner {
    display: grid;
    width: min(
        calc(100% - (var(--page-padding) * 2)),
        var(--content-width)
    );
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
    align-items: stretch;
    gap: clamp(42px, 6vw, 88px);

    margin-inline: auto;
}

.hero-copy {
    display: flex;
    min-height: 610px;
    flex-direction: column;
    justify-content: center;

    padding-block: 40px;
}

.hero-copy h1 {
    max-width: 580px;
    margin: 0;

    font-size: 52px;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hero-lead {
    max-width: 505px;

    margin:
        30px
        0
        0;

    color: var(--text);

    font-size: 17px;
    line-height: 1.6;
}

.hero-joke {
    max-width: 430px;

    margin:
        22px
        0
        0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 36px;
}

.hero-image {
    min-height: 610px;

    overflow: hidden;

    background: var(--sage);
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ==========================================================================
   8. DISCIPLINES
   ========================================================================== */

.disciplines {
    padding:
        0
        0
        80px;

    background: var(--off-white);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid var(--border-strong);
}

.disciplines-grid > div {
    min-height: 190px;

    padding:
        24px
        clamp(22px, 3vw, 40px)
        10px;

    border-right: 1px solid var(--border);
}

.disciplines-grid > div:first-child {
    padding-left: 0;
}

.disciplines-grid > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.disciplines-grid span {
    display: block;

    margin-bottom: 42px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 600;
}

.disciplines-grid strong {
    display: block;

    margin-bottom: 12px;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.disciplines-grid p {
    max-width: 340px;
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================================================
   9. SELECTED WORK
   ========================================================================== */

.work {
    padding:
        var(--section-space)
        0;

    background: var(--white);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:
        52px
        32px;
}

.work-card {
    min-width: 0;
}

.work-card-wide {
    grid-column: 1 / -1;
}

.work-card a {
    display: block;
}

.work-image {
    overflow: hidden;

    background: var(--sage-light);
}

.work-image img {
    width: 100%;
    height: 480px;

    object-fit: cover;

    transition:
        transform 450ms var(--ease),
        opacity 250ms ease;
}

.work-card-wide .work-image img {
    height: 650px;
}

.work-card-wide .work-image-short img {
    height: 430px;
}

.work-card a:hover .work-image img {
    transform: scale(1.008);

    opacity: 0.94;
}

.work-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;

    padding-top: 16px;
}

.work-meta > div > span {
    display: block;

    margin-bottom: 6px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.work-meta h3 {
    margin: 0;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.work-meta > p {
    margin: 3px 0 0;

    color: var(--muted);

    font-size: 13px;
    line-height: 1.5;
    text-align: right;
}


/* ==========================================================================
   10. SERVICES
   ========================================================================== */

.services {
    padding:
        var(--section-space)
        0;

    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid var(--border-strong);
    border-left: 1px solid var(--border);
}

.service-card {
    position: relative;

    display: flex;
    min-height: 300px;
    flex-direction: column;

    padding:
        28px
        28px
        26px;

    background: var(--off-white);

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    transition:
        background 180ms ease,
        color 180ms ease;
}

.service-card:hover {
    color: var(--white);
    background: var(--green);
}

.service-card > span {
    margin-bottom: auto;

    color: var(--muted);

    font-size: 12px;
    font-weight: 600;

    transition: color 180ms ease;
}

.service-card h3 {
    max-width: 260px;

    margin:
        58px
        0
        12px;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.service-card p {
    max-width: 330px;
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.7;

    transition: color 180ms ease;
}

.service-card b {
    position: absolute;
    top: 26px;
    right: 26px;

    font-size: 17px;
    font-weight: 400;

    transition: transform 180ms var(--ease);
}

.service-card:hover > span,
.service-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}

.service-card:hover b {
    transform: translateX(4px);
}


/* ==========================================================================
   11. FEATURE / APPROACH
   ========================================================================== */

.feature {
    padding:
        var(--section-space)
        0;

    background: var(--white);

    border-block: 1px solid var(--border);
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
    align-items: center;
    gap: clamp(55px, 8vw, 115px);
}

.feature-image {
    min-height: 620px;
}

.feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.feature-copy {
    max-width: 515px;
}

.feature-copy h2 {
    margin-bottom: 26px;
}

.feature-copy > p:not(.small-joke) {
    margin-bottom: 18px;

    color: var(--text);

    font-size: 15px;
    line-height: 1.75;
}

.small-joke {
    margin:
        27px
        0;

    color: var(--ochre);

    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}


/* ==========================================================================
   12. PROCESS
   ========================================================================== */

.process {
    padding:
        var(--section-space)
        0;

    background: var(--sage-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-top: 1px solid var(--border-strong);
}

.process-grid article {
    min-height: 265px;

    padding:
        25px
        clamp(22px, 3vw, 38px)
        16px;

    border-right: 1px solid var(--border);
}

.process-grid article:first-child {
    padding-left: 0;
}

.process-grid article:last-child {
    padding-right: 0;
    border-right: 0;
}

.process-grid article > span {
    display: block;

    margin-bottom: 66px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.process-grid h3 {
    max-width: 300px;

    margin: 0 0 13px;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.process-grid p {
    max-width: 350px;
    margin: 0;

    color: var(--text);

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================================================
   13. TESTIMONIAL
   ========================================================================== */

.testimonial {
    padding:
        98px
        0;

    color: var(--white);
    background: var(--green-dark);
}

.testimonial-inner {
    max-width: 980px;
}

.testimonial .section-kicker {
    color: rgba(255, 255, 255, 0.5);
}

.testimonial blockquote {
    max-width: 900px;

    margin:
        30px
        0
        30px;

    font-size: 34px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 11px;

    font-size: 13px;
}

.testimonial-meta strong {
    font-weight: 600;
}

.testimonial-meta span {
    color: rgba(255, 255, 255, 0.52);
}

.testimonial small {
    display: block;

    margin-top: 24px;

    color: var(--ochre);

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================================
   14. CONTACT PANEL
   ========================================================================== */

.contact-panel {
    padding:
        var(--section-space)
        0;

    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: clamp(70px, 10vw, 150px);
}

.contact-intro {
    max-width: 470px;
}

.contact-intro h2 {
    margin-bottom: 23px;
}

.contact-intro > p:not(.small-joke) {
    margin: 0;

    color: var(--text);

    font-size: 15px;
    line-height: 1.75;
}

.contact-form {
    display: grid;
    gap: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:
        30px
        28px;
}

.contact-form label {
    display: grid;
    gap: 9px;
}

.contact-form label > span {
    color: var(--muted);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding:
        12px
        0;

    border: 0;
    border-bottom: 1px solid var(--border-strong);
    border-radius: 0;
    outline: 0;

    color: var(--ink);
    background: transparent;

    font-family: var(--font);
    font-size: 15px;

    transition: border-color 180ms ease;
}

.contact-form input,
.contact-form select {
    min-height: 48px;
}

.contact-form textarea {
    min-height: 135px;

    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--stone-light);

    opacity: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--green);
}

.message-field {
    margin-top: 4px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding-top: 6px;
}

.form-footer p {
    max-width: 300px;
    margin: 0;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================================
   15. DEMO NOTICE
   ========================================================================== */

.demo-notice {
    background: var(--warm-white);

    border-block: 1px solid var(--border);
}

.demo-inner {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 32px;

    padding-block: 22px;
}

.demo-inner strong {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.demo-inner p {
    max-width: 900px;
    margin: 0;

    color: var(--text);

    font-size: 12px;
    line-height: 1.65;
}


/* ==========================================================================
   16. FOOTER
   ========================================================================== */

.site-footer {
    padding:
        72px
        0
        28px;

    color: var(--white);
    background: var(--green-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 80px;

    padding-bottom: 65px;
}

.footer-brand strong {
    display: block;

    margin-bottom: 12px;

    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-brand p {
    max-width: 300px;
    margin: 0;

    color: rgba(255, 255, 255, 0.52);

    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(145px, 1fr));
    gap: 65px;
}

.footer-links > div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-links span {
    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
}

.footer-links a {
    width: fit-content;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;

    padding-top: 22px;

    border-top: 1px solid var(--border-light);
}

.footer-bottom > span {
    color: rgba(255, 255, 255, 0.38);

    font-size: 11px;
}

.footer-bottom > span:nth-child(2) {
    text-align: center;
}

.footer-bottom > span:last-child {
    color: var(--ochre);

    text-align: right;
}


/* ==========================================================================
   17. MOBILE CTA
   ========================================================================== */

.mobile-cta {
    display: none;
}


/* ==========================================================================
   18. RESPONSIVE — 1180PX
   ========================================================================== */

@media (max-width: 1180px) {

    :root {
        --section-space: 96px;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .header-action {
        display: none;
    }

    .nav-toggle {
        position: relative;
        z-index: 104;

        display: flex;
        align-items: center;
        gap: 10px;

        padding: 0;

        color: var(--ink);
        background: transparent;

        cursor: pointer;

        font-size: 13px;
        font-weight: 600;
    }

    .nav-toggle i {
        display: grid;
        width: 22px;
        gap: 6px;
    }

    .nav-toggle b {
        display: block;
        width: 100%;
        height: 1px;

        background: currentColor;

        transition:
            transform 200ms var(--ease),
            opacity 180ms ease;
    }

    .nav-toggle[aria-expanded="true"] {
        color: var(--white);
    }

    .nav-toggle[aria-expanded="true"] b:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] b:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        z-index: 103;
        inset: 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;

        padding:
            95px
            var(--page-padding)
            55px;

        visibility: hidden;
        opacity: 0;

        background: var(--green-dark);

        transition:
            visibility 180ms ease,
            opacity 180ms ease;
    }

    .primary-nav.is-open {
        visibility: visible;
        opacity: 1;
    }

    .primary-nav a {
        width: 100%;

        padding: 17px 0;

        color: rgba(255, 255, 255, 0.82);

        border-bottom: 1px solid var(--border-light);

        font-size: 26px;
        font-weight: 500;
    }

    .primary-nav a::after {
        display: none;
    }

    .primary-nav a:hover,
    .primary-nav a[aria-current="page"] {
        color: var(--white);
    }

    .hero-inner {
        grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
        gap: 50px;
    }

    .hero-copy h1 {
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid {
        gap: 65px;
    }

}


/* ==========================================================================
   19. RESPONSIVE — 900PX
   ========================================================================== */

@media (max-width: 900px) {

    :root {
        --section-space: 84px;
    }

    .section-header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-header > p {
        max-width: 520px;
    }

    .hero {
        padding-top: 38px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .hero-copy {
        min-height: 0;

        padding:
            45px
            0
            15px;
    }

    .hero-copy h1 {
        max-width: 600px;

        font-size: 46px;
    }

    .hero-image {
        min-height: 560px;
    }

    .disciplines-grid {
        grid-template-columns: 1fr;
    }

    .disciplines-grid > div,
    .disciplines-grid > div:first-child,
    .disciplines-grid > div:last-child {
        display: grid;
        min-height: 0;
        grid-template-columns: 50px 160px minmax(0, 1fr);
        align-items: start;
        gap: 20px;

        padding: 24px 0;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .disciplines-grid span,
    .disciplines-grid strong {
        margin: 0;
    }

    .work-card-wide .work-image img {
        height: 560px;
    }

    .work-image img {
        height: 410px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-image {
        min-height: 560px;
    }

    .feature-copy {
        max-width: 650px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-grid article,
    .process-grid article:first-child,
    .process-grid article:last-child {
        display: grid;
        min-height: 0;
        grid-template-columns: 130px 220px minmax(0, 1fr);
        gap: 22px;

        padding: 25px 0;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .process-grid article > span,
    .process-grid h3 {
        margin: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-intro {
        max-width: 620px;
    }

}


/* ==========================================================================
   20. RESPONSIVE — 680PX
   ========================================================================== */

@media (max-width: 680px) {

    :root {
        --page-padding: 20px;
        --section-space: 72px;
    }

    body {
        padding-bottom: 64px;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand strong {
        font-size: 18px;
    }

    .primary-nav a {
        font-size: 24px;
    }

    .section-header h2,
    .feature-copy h2,
    .contact-intro h2 {
        font-size: 30px;
    }

    .hero {
        padding:
            25px
            0
            60px;
    }

    .hero-copy {
        padding-top: 40px;
    }

    .hero-copy h1 {
        font-size: 40px;
        line-height: 1.06;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .hero-image {
        min-height: 430px;
    }

    .disciplines {
        padding-bottom: 60px;
    }

    .disciplines-grid > div,
    .disciplines-grid > div:first-child,
    .disciplines-grid > div:last-child {
        grid-template-columns: 36px 1fr;
        gap: 10px 17px;
    }

    .disciplines-grid p {
        grid-column: 2;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .work-card-wide {
        grid-column: 1;
    }

    .work-image img,
    .work-card-wide .work-image img,
    .work-card-wide .work-image-short img {
        height: 430px;
    }

    .work-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .work-meta > p {
        text-align: left;
    }

    .section-footer {
        justify-content: flex-start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 250px;
    }

    .feature-image {
        min-height: 430px;
    }

    .process-grid article,
    .process-grid article:first-child,
    .process-grid article:last-child {
        grid-template-columns: 1fr;
        gap: 9px;

        padding: 28px 0;
    }

    .process-grid article > span {
        margin-bottom: 24px;
    }

    .testimonial {
        padding:
            72px
            0;
    }

    .testimonial blockquote {
        font-size: 28px;
    }

    .testimonial-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .demo-inner {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        gap: 35px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .footer-bottom > span:nth-child(2),
    .footer-bottom > span:last-child {
        text-align: left;
    }

    .mobile-cta {
        position: fixed;
        z-index: 90;
        right: 10px;
        bottom: 10px;
        left: 10px;

        display: flex;
        min-height: 52px;
        align-items: center;
        justify-content: center;

        color: var(--white);
        background: var(--green-dark);

        box-shadow:
            0 12px 30px rgba(33, 51, 38, 0.24);

        font-size: 14px;
        font-weight: 600;
    }

}


/* ==========================================================================
   21. RESPONSIVE — 420PX
   ========================================================================== */

@media (max-width: 420px) {

    .hero-copy h1 {
        font-size: 36px;
    }

    .hero-image {
        min-height: 370px;
    }

    .work-image img,
    .work-card-wide .work-image img,
    .work-card-wide .work-image-short img {
        height: 380px;
    }

    .section-header h2,
    .feature-copy h2,
    .contact-intro h2 {
        font-size: 28px;
    }

    .testimonial blockquote {
        font-size: 26px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

}


/* ==========================================================================
   22. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}