:root {
    --canvas: #e8efea;
    --surface: #fbfcf8;
    --ink: #17352f;
    --ink-soft: #36564f;
    --moss: #2f5549;
    --coral: #e26442;
    --coral-dark: #bc482c;
    --gold: #e8c45e;
    --sky: #b8d2da;
    --line: rgba(23, 53, 47, 0.18);
    --line-light: rgba(255, 255, 255, 0.24);
    --white: #ffffff;
    --display: "Fraunces", Georgia, serif;
    --body: "Manrope", sans-serif;
    --mono: "DM Mono", monospace;
    --shadow: 0 22px 60px rgba(19, 53, 45, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background-color: var(--canvas);
    background-image: repeating-linear-gradient(0deg, rgba(23, 53, 47, 0.025) 0, rgba(23, 53, 47, 0.025) 1px, transparent 1px, transparent 6px);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

button {
    border: 0;
}

p,
h1,
h2,
h3,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: inherit;
    font-family: var(--display);
    font-weight: 500;
    line-height: 1.02;
}

h1 em,
h2 em {
    color: var(--coral);
    font-style: italic;
    font-weight: 400;
}

::selection {
    color: var(--surface);
    background: var(--coral);
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 4px;
}

.site-shell {
    width: min(100% - 96px, 1420px);
    margin-inline: auto;
}

.section-space {
    padding-block: 136px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--surface);
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow,
.footer-label {
    margin-bottom: 16px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.86);
}

.eyebrow--accent {
    color: var(--gold);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button span,
.text-link span {
    display: inline-block;
    transition: transform 180ms ease;
}

.button:hover span,
.text-link:hover span {
    transform: translateX(4px);
}

.button--compact {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 12px;
}

.button--light {
    color: var(--ink);
    background: var(--surface);
}

.button--light:hover {
    color: var(--surface);
    background: var(--coral);
}

.button--ghost-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

.button--ghost-light:hover {
    color: var(--ink);
    border-color: var(--surface);
    background: var(--surface);
}

.button--dark {
    color: var(--surface);
    background: var(--ink);
}

.button--dark:hover {
    color: var(--surface);
    background: var(--coral-dark);
}

.button--accent {
    color: var(--ink);
    background: var(--gold);
}

.button--accent:hover {
    color: var(--surface);
    background: var(--coral);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.text-link--light {
    color: var(--white);
}

.site-header {
    position: relative;
    z-index: 20;
    width: 100%;
    color: var(--ink);
    background: var(--canvas);
    transition: color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.site-header--overlay {
    position: absolute;
    color: var(--white);
    background: transparent;
}

.site-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    color: var(--ink);
    background: rgba(232, 239, 234, 0.96);
    box-shadow: 0 6px 24px rgba(23, 53, 47, 0.12);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
}

.brandmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.brandmark__symbol {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border: 1px solid currentColor;
    font-family: var(--display);
    font-size: 19px;
    font-style: italic;
    line-height: 1;
}

.brandmark__wordmark {
    font-size: 2rem;          /* Large font */
    font-weight: 500;         /* Extra Bold */
    color: #FFB000;           /* Change as required */
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brandmark__wordmark small {
    margin-top: 3px;
    font-family: var(--mono);
    font-size: 2rem;
    font-weight: 500;
    color: #FFB000; 
}


.primary-navigation {
    display: flex;
    align-items: center;
    gap: 34px;
}

.primary-navigation ul {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-navigation li a {
    padding-block: 8px;
    border-bottom: 1px solid transparent;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: border-color 180ms ease, color 180ms ease;
}

.primary-navigation li a:hover,
.primary-navigation li a[aria-current="page"] {
    border-color: currentColor;
}

.button--header {
    color: var(--surface);
    background: var(--ink);
}

.site-header--overlay .button--header {
    color: var(--ink);
    background: var(--surface);
}

.site-header--overlay .button--header:hover {
    color: var(--surface);
    background: var(--coral);
}

.site-header.is-scrolled .button--header {
    color: var(--surface);
    background: var(--ink);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    color: inherit;
    background: transparent;
}

.menu-toggle__line {
    display: block;
    width: 24px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
    transition: transform 180ms ease;
}

.site-header.navigation-open .menu-toggle__line:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
}

.site-header.navigation-open .menu-toggle__line:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
}

.home-hero {
    position: relative;
    display: flex;
    min-height: 800px;
    overflow: clip;
    color: var(--white);
    isolation: isolate;
}

.home-hero__media,
.home-hero__media img,
.home-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__media {
    z-index: -2;
}

.home-hero__media img {
    object-fit: cover;
    object-position: center;
}

.home-hero__shade {
    z-index: -1;
    background: rgba(10, 29, 25, 0.38);
}

.home-hero__content {
    align-self: center;
    padding-top: 96px;
}

.home-hero h1 {
    max-width: 900px;
    margin-bottom: 30px;
    font-size: 86px;
    line-height: 0.96;
}

.home-hero h1 em {
    color: var(--gold);
}

.home-hero__lead {
    max-width: 520px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero__scroll {
    position: absolute;
    bottom: 35px;
    left: max(48px, calc((100% - 1420px) / 2));
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}

.home-hero__scroll i {
    display: block;
    width: 52px;
    height: 1px;
    background: currentColor;
}

.home-hero__index {
    position: absolute;
    right: max(48px, calc((100% - 1420px) / 2));
    bottom: 35px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--mono);
    font-size: 10px;
}

.introduction {
    background: var(--surface);
}

.introduction__grid {
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 2fr);
    gap: 72px;
}

.introduction h2,
.section-heading h2,
.services-section__heading h2,
.discovery-section h2,
.craft-feature h2,
.why-section h2,
.numbers-section h2,
.faq-section h2,
.contact-section h2 {
    margin-bottom: 30px;
    font-size: 58px;
}

.introduction__copy {
    max-width: 690px;
    margin-bottom: 28px;
    color: var(--ink-soft);
    font-size: 20px;
    line-height: 1.68;
}

.services-section {
    padding-top: 136px;
    overflow: hidden;
    background: var(--sky);
}

.services-section__heading {
    margin-bottom: 72px;
}

.services-stack {
    width: min(100% - 96px, 1540px);
    margin-inline: auto;
}

.service-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    min-height: 570px;
    background: var(--surface);
}

.service-feature--2 {
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    color: var(--surface);
    background: var(--ink);
}

.service-feature--2 .service-feature__image {
    grid-column: 2;
}

.service-feature--2 .service-feature__content {
    grid-column: 1;
    grid-row: 1;
}

.service-feature--2 h3 {
    color: var(--gold);
}

.service-feature--2 .service-feature__content p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.76);
}

.service-feature--3 {
    color: var(--ink);
    background: var(--gold);
}

.service-feature__image {
    position: relative;
    align-self: stretch;
    min-height: 570px;
    overflow: hidden;
}

.service-feature__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(23, 53, 47, 0.08);
}

.service-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.service-feature:hover .service-feature__image img {
    transform: scale(1.035);
}

.service-feature__number {
    position: absolute;
    top: 30px;
    right: 32px;
    z-index: 1;
    color: var(--white);
    font-family: var(--mono);
    font-size: 13px;
}

.service-feature__content {
    padding: 72px;
}

.service-feature__content h3 {
    margin-bottom: 22px;
    font-size: 52px;
}

.service-feature__content p:not(.eyebrow) {
    max-width: 355px;
    margin-bottom: 28px;
    color: var(--ink-soft);
}

.projects-section {
    background: var(--canvas);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 58px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 0.65fr);
    align-items: end;
    max-width: none;
    gap: 72px;
}

.section-heading--split > div > p:last-child,
.section-heading--split > p {
    max-width: 410px;
    margin: 0 0 18px;
    color: var(--ink-soft);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.project-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: var(--surface);
    background: var(--ink);
}

.project-card:nth-child(2) {
    color: var(--ink);
    background: var(--gold);
}

.project-card:nth-child(3) {
    background: var(--moss);
}

.project-card__image {
    position: relative;
    height: 430px;
    overflow: hidden;
}

.project-card__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(12, 28, 25, 0.12);
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-card__tag,
.project-card__count {
    position: absolute;
    z-index: 1;
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}

.project-card__tag {
    top: 20px;
    left: 20px;
    padding: 7px 9px;
    color: var(--ink);
    background: var(--surface);
}

.project-card__count {
    right: 20px;
    bottom: 18px;
    color: var(--white);
}

.project-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 27px 26px 30px;
}

.project-card__content > p {
    margin-bottom: 10px;
    font-family: var(--mono);
    font-size: 10px;
    opacity: 0.76;
    text-transform: uppercase;
}

.project-card h3 {
    margin-bottom: 24px;
    font-size: 34px;
}

.project-card__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-top: 18px;
    margin: auto 0 22px;
    border-top: 1px solid currentColor;
}

.project-card__facts div {
    min-width: 0;
}

.project-card__facts dt {
    margin-bottom: 4px;
    font-family: var(--mono);
    font-size: 9px;
    opacity: 0.68;
    text-transform: uppercase;
}

.project-card__facts dd {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.project-card .text-link {
    align-self: flex-start;
}

.why-section {
    padding-block: 136px;
    color: var(--surface);
    background: var(--ink);
}

.why-section__inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 100px;
}

.why-section__intro {
    position: sticky;
    top: 110px;
    align-self: start;
}

.why-section h2 {
    color: var(--surface);
}

.why-section__intro > p:not(.eyebrow) {
    max-width: 390px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.72);
}

.trust-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.trust-list li {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding-block: 24px;
    border-top: 1px solid var(--line-light);
}

.trust-list li:last-child {
    border-bottom: 1px solid var(--line-light);
}

.trust-list li > span {
    padding-top: 4px;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 12px;
}

.trust-list h3 {
    margin-bottom: 6px;
    color: var(--surface);
    font-family: var(--body);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.trust-list p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.discovery-section {
    color: var(--ink);
    background: var(--coral);
}

.discovery-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    align-items: start;
    gap: 100px;
}

.discovery-section__copy > p:not(.eyebrow) {
    max-width: 370px;
    font-size: 18px;
}

.discovery-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 34px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.discovery-form label,
.contact-form label {
    display: grid;
    gap: 8px;
}

.discovery-form label > span,
.contact-form label > span {
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}

.discovery-form select,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 0;
    color: var(--ink);
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: none;
    background: transparent;
    font-size: 14px;
}

.discovery-form select {
    padding-right: 22px;
}

.discovery-form select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--coral);
}

.discovery-form .button {
    align-self: end;
}

.form-status {
    grid-column: 1 / -1;
    min-height: 20px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 12px;
}

.craft-section {
    overflow: hidden;
}

.craft-feature {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 660px;
    background: var(--surface);
}

.craft-feature--construction {
    grid-template-columns: 0.9fr 1.1fr;
    color: var(--surface);
    background: var(--moss);
}

.craft-feature__media {
    overflow: hidden;
}

.craft-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.craft-feature:hover .craft-feature__media img {
    transform: scale(1.035);
}

.craft-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px;
}

.craft-feature__content > p:not(.eyebrow) {
    max-width: 430px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 17px;
}

.craft-feature--construction h2 {
    color: var(--surface);
}

.craft-feature--construction h2 em {
    color: var(--gold);
}

.craft-feature--construction .craft-feature__content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
}

.process-section {
    background: var(--surface);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.process-list li {
    min-height: 245px;
    padding: 24px 22px 20px;
    border-right: 1px solid var(--line);
}

.process-list li:first-child {
    border-left: 1px solid var(--line);
}

.process-list__number {
    display: block;
    margin-bottom: 62px;
    font-family: var(--mono);
    font-size: 11px;
}

.process-list h3 {
    margin-bottom: 10px;
    font-family: var(--body);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.process-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.55;
}

.numbers-section {
    padding-block: 110px;
    background: var(--gold);
}

.numbers-section__inner {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(420px, 1fr);
    gap: 90px;
    align-items: end;
}

.numbers-section h2 {
    max-width: 610px;
    margin: 0;
}

.number-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid rgba(23, 53, 47, 0.45);
    border-left: 1px solid rgba(23, 53, 47, 0.45);
}

.number-grid > div {
    min-height: 145px;
    padding: 23px;
    border-right: 1px solid rgba(23, 53, 47, 0.45);
    border-bottom: 1px solid rgba(23, 53, 47, 0.45);
}

.number-grid strong,
.number-grid span {
    display: block;
}

.number-grid strong {
    margin-bottom: 7px;
    font-family: var(--display);
    font-size: 51px;
    font-weight: 500;
    line-height: 1;
}

.number-grid span {
    font-size: 12px;
    font-weight: 700;
}

.testimonials-section {
    background: var(--canvas);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 32px;
    background: var(--surface);
    border-top: 3px solid var(--ink);
}

.testimonial-card:nth-child(2) {
    border-color: var(--coral);
}

.testimonial-card:nth-child(3) {
    border-color: var(--moss);
}

.testimonial-card__quote {
    display: block;
    height: 54px;
    color: var(--coral);
    font-family: var(--display);
    font-size: 80px;
    line-height: 1;
}

.testimonial-card__text {
    margin: 0 0 30px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.65;
}

.testimonial-card footer {
    display: grid;
    gap: 3px;
    margin-top: auto;
}

.testimonial-card footer strong {
    font-size: 13px;
}

.testimonial-card footer span {
    color: var(--ink-soft);
    font-size: 12px;
}

.faq-section {
    padding-block: 128px;
    background: var(--surface);
}

.faq-section__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(400px, 1.2fr);
    gap: 110px;
}

.faq-section__intro {
    position: sticky;
    top: 110px;
    align-self: start;
}

.faq-section__intro > p:not(.eyebrow) {
    max-width: 375px;
    margin-bottom: 28px;
    color: var(--ink-soft);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    display: block;
    padding: 23px 44px 23px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    right: 2px;
    width: 18px;
    height: 1px;
    content: "";
    background: var(--ink);
    transition: transform 180ms ease;
}

.faq-list summary span::after {
    transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: rotate(0deg);
}

.faq-list details > p {
    max-width: 670px;
    margin: -3px 0 24px;
    color: var(--ink-soft);
    font-size: 15px;
}

.final-cta {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
}

.final-cta > img,
.final-cta__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.final-cta > img {
    object-fit: cover;
}

.final-cta__shade {
    z-index: -1;
    background: rgba(10, 29, 25, 0.48);
}

.final-cta__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 650px;
}

.final-cta h2 {
    max-width: 800px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: 68px;
}

.final-cta h2 em {
    color: var(--gold);
}

.final-cta__content > p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 31px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
}

.contact-section {
    background: var(--canvas);
}

.contact-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
    gap: 104px;
}

.contact-section__intro > p:not(.eyebrow) {
    max-width: 430px;
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 17px;
}

.contact-section__details {
    display: grid;
    gap: 8px;
    max-width: 330px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
    font-size: 13px;
}

.contact-section__details a {
    font-weight: 800;
}

.contact-section__details span {
    color: var(--ink-soft);
}

.contact-form {
    padding: 36px;
    background: var(--surface);
    box-shadow: 12px 12px 0 var(--sky);
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 28px;
}

.contact-form > label {
    margin-bottom: 28px;
}

.contact-form textarea {
    min-height: 105px;
    resize: vertical;
}

.contact-form textarea::placeholder {
    color: rgba(23, 53, 47, 0.48);
}

.contact-form .is-invalid {
    border-color: var(--coral);
}

.contact-form__submit {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-form__submit .form-status {
    color: var(--ink-soft);
}

.site-footer {
    padding: 76px 0 22px;
    color: var(--surface);
    background: #122b26;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 0.65fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 68px;
}

.brandmark--footer {
    margin-bottom: 23px;
}

.site-footer__brand > p {
    max-width: 320px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
}

.footer-label {
    color: var(--gold);
}

.footer-links {
    display: grid;
    gap: 11px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.73);
    font-size: 13px;
    line-height: 1.45;
    transition: color 160ms ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--mono);
    font-size: 10px;
    text-transform: uppercase;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.site-footer__bottom p,
.site-footer__bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
}

.site-footer__bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.site-footer__bottom a:hover {
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .site-shell,
    .services-stack {
        width: min(100% - 64px, 1420px);
    }

    .primary-navigation {
        gap: 22px;
    }

    .primary-navigation ul {
        gap: 17px;
    }

    .home-hero h1 {
        font-size: 76px;
    }

    .service-feature__content,
    .craft-feature__content {
        padding: 56px;
    }

    .service-feature__content h3 {
        font-size: 46px;
    }

    .why-section__inner,
    .discovery-section__grid,
    .faq-section__grid,
    .contact-section__grid {
        gap: 68px;
    }
}

@media (max-width: 960px) {
    .section-space,
    .services-section,
    .why-section,
    .faq-section {
        padding-block: 104px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-navigation {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 24px;
        padding: 26px;
        color: var(--ink);
        background: var(--surface);
        box-shadow: var(--shadow);
    }

    .site-header.navigation-open .primary-navigation {
        display: flex;
    }

    .primary-navigation ul {
        display: grid;
        gap: 8px;
    }

    .primary-navigation li a {
        display: block;
        padding: 10px 0;
    }

    .primary-navigation .button {
        align-self: stretch;
    }

    .site-header--overlay.navigation-open {
        color: var(--ink);
        background: var(--canvas);
    }

    .site-header--overlay.navigation-open .button--header {
        color: var(--surface);
        background: var(--ink);
    }

    .home-hero {
        min-height: 760px;
    }

    .home-hero h1 {
        max-width: 760px;
        font-size: 66px;
    }

    .introduction__grid,
    .section-heading--split,
    .numbers-section__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-feature,
    .service-feature--2 {
        grid-template-columns: 1fr 0.85fr;
        min-height: 500px;
    }

    .service-feature__image {
        min-height: 500px;
    }

    .service-feature--2 .service-feature__image {
        grid-column: 2;
    }

    .project-grid,
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .project-card:last-child,
    .testimonial-card:last-child {
        grid-column: span 2;
    }

    .project-card:last-child .project-card__image {
        height: 360px;
    }

    .why-section__inner,
    .discovery-section__grid,
    .faq-section__grid,
    .contact-section__grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .why-section__intro,
    .faq-section__intro {
        position: static;
    }

    .discovery-form {
        max-width: 700px;
    }

    .craft-feature,
    .craft-feature--construction {
        min-height: 550px;
    }

    .craft-feature__content {
        padding: 48px;
    }

    .process-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-list li:nth-child(4) {
        border-left: 1px solid var(--line);
    }

    .site-footer__top {
        grid-template-columns: 1.3fr 0.8fr 0.9fr;
    }

    .site-footer__contact {
        grid-column: span 3;
    }
}

@media (max-width: 700px) {
    .site-shell,
    .services-stack {
        width: min(100% - 40px, 1420px);
    }

    .section-space,
    .services-section,
    .why-section,
    .faq-section {
        padding-block: 80px;
    }

    .site-header__inner {
        min-height: 70px;
    }

    .primary-navigation {
        top: 62px;
    }

    .home-hero {
        min-height: 700px;
    }

    .home-hero__media img {
        object-position: 57% center;
    }

    .home-hero__content {
        align-self: flex-end;
        padding-top: 0;
        padding-bottom: 76px;
    }

    .home-hero h1 {
        margin-bottom: 24px;
        font-size: 54px;
    }

    .home-hero__lead {
        max-width: 450px;
        margin-bottom: 28px;
        font-size: 16px;
    }

    .home-hero__scroll {
        left: 20px;
        bottom: 24px;
    }

    .home-hero__index {
        right: 20px;
        bottom: 24px;
    }

    .introduction h2,
    .section-heading h2,
    .services-section__heading h2,
    .discovery-section h2,
    .craft-feature h2,
    .why-section h2,
    .numbers-section h2,
    .faq-section h2,
    .contact-section h2 {
        margin-bottom: 22px;
        font-size: 45px;
    }

    .introduction__copy {
        font-size: 17px;
    }

    .services-section__heading {
        margin-bottom: 46px;
    }

    .service-feature,
    .service-feature--2 {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .service-feature--2 .service-feature__image,
    .service-feature--2 .service-feature__content {
        grid-column: auto;
        grid-row: auto;
    }

    .service-feature__image {
        width: 100%;
        min-height: 390px;
        height: 390px;
    }

    .service-feature__content {
        padding: 37px 28px 42px;
    }

    .service-feature__content h3 {
        font-size: 40px;
    }

    .project-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .project-card:last-child,
    .testimonial-card:last-child {
        grid-column: auto;
    }

    .project-card__image,
    .project-card:last-child .project-card__image {
        height: 390px;
    }

    .why-section__inner {
        gap: 40px;
    }

    .trust-list li {
        grid-template-columns: 45px 1fr;
        gap: 12px;
        padding-block: 20px;
    }

    .discovery-form {
        grid-template-columns: 1fr;
        padding: 27px 24px;
    }

    .craft-feature,
    .craft-feature--construction {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .craft-feature--construction .craft-feature__content {
        order: 2;
    }

    .craft-feature--construction .craft-feature__media {
        order: 1;
    }

    .craft-feature__media {
        height: 410px;
    }

    .craft-feature__content {
        padding: 52px 28px;
    }

    .process-list {
        grid-template-columns: 1fr 1fr;
    }

    .process-list li,
    .process-list li:first-child,
    .process-list li:nth-child(4) {
        min-height: 210px;
        border-left: 1px solid var(--line);
    }

    .process-list__number {
        margin-bottom: 42px;
    }

    .numbers-section {
        padding-block: 80px;
    }

    .number-grid strong {
        font-size: 43px;
    }

    .faq-section__grid,
    .contact-section__grid {
        gap: 38px;
    }

    .final-cta,
    .final-cta__content {
        min-height: 560px;
    }

    .final-cta h2 {
        font-size: 51px;
    }

    .contact-form {
        padding: 26px 22px;
        box-shadow: 7px 7px 0 var(--sky);
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 28px;
    }

    .contact-form__submit {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        padding-top: 60px;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 42px 28px;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: span 2;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .site-shell,
    .services-stack {
        width: min(100% - 32px, 1420px);
    }

    .brandmark__symbol {
        width: 28px;
        height: 28px;
    }

    .home-hero {
        min-height: 650px;
    }

    .home-hero h1 {
        font-size: 44px;
        line-height: 1;
    }

    .home-hero__lead {
        font-size: 15px;
    }

    .home-hero__scroll span,
    .home-hero__scroll i {
        display: none;
    }

    .introduction h2,
    .section-heading h2,
    .services-section__heading h2,
    .discovery-section h2,
    .craft-feature h2,
    .why-section h2,
    .numbers-section h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 39px;
    }

    .service-feature__image {
        height: 330px;
        min-height: 330px;
    }

    .service-feature__content h3 {
        font-size: 35px;
    }

    .project-card__content {
        padding: 23px 20px 25px;
    }

    .project-card__image,
    .project-card:last-child .project-card__image,
    .craft-feature__media {
        height: 330px;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li,
    .process-list li:first-child,
    .process-list li:nth-child(4) {
        min-height: 0;
        border-left: 1px solid var(--line);
    }

    .number-grid > div {
        min-height: 125px;
        padding: 17px;
    }

    .number-grid strong {
        font-size: 36px;
    }

    .testimonial-card {
        min-height: 280px;
        padding: 25px;
    }

    .final-cta h2 {
        font-size: 44px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__brand,
    .site-footer__contact {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
