:root {
    --charcoal: #303030;
    --charcoal-deep: #222222;
    --grey: #4d4d4d;
    --rust: #b14810;
    --rust-dark: #913a0d;
    --sand: #e9e4df;
    --soft: #f4f1ee;
    --white: #ffffff;
    --ink: #161616;
    --muted: #68645f;
    --border: #d8d2cc;
    --shadow: 0 24px 70px rgba(33, 28, 24, 0.14);
    --container: 1200px;
    --heading-font: 'Rubik', sans-serif;
    --body-font: 'Karla', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
    font-family: var(--body-font);
}



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



.brand img {
    width: 100%;
    height: auto;
	padding: 5px 0;
    
}


a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
    line-height: 1.08;
}

h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.7rem, 6.6vw, 6.2rem);
    font-weight: 600;
    letter-spacing: -0.055em;
}

h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 600;
    letter-spacing: -0.04em;
}

h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 600;
}

p:last-child {
    margin-bottom: 0;
}

:focus-visible {
    outline: 3px solid var(--rust);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 3rem), var(--container));
    margin-inline: auto;
}

.section {
    padding: clamp(5rem, 10vw, 9rem) 0;
}

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

.section--dark {
    color: var(--white);
    background: var(--charcoal-deep);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--rust);
    transform: translateY(-200%);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
    color: var(--rust);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 2.4rem;
    height: 2px;
    background: currentColor;
    content: '';
}

.eyebrow--light {
    color: #e7a071;
}

.button {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border: 2px solid var(--rust);
    border-radius: 0;
    color: var(--white);
    background: var(--rust);
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
    border-color: var(--rust-dark);
    background: var(--rust-dark);
    transform: translateY(-2px);
}

.button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.button--small {
    min-height: 2.75rem;
    padding: 0.7rem 1.15rem;
}

.button--ghost {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
}

.button--ghost:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--charcoal-deep);
}

.button--dark {
    border-color: var(--charcoal-deep);
    background: var(--charcoal-deep);
}

.button--dark:hover {
    border-color: var(--rust);
    background: var(--rust);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--rust);
    font-weight: 700;
    text-decoration: none;
}

.text-link::after {
    content: '→';
    transition: transform 180ms ease;
}

.text-link:hover::after {
    transform: translateX(0.3rem);
}

.text-link--light {
    color: #ffd1b4;
}

.site-header {
    position: relative;
    z-index: 20;
    background: var(--white);
}

.top-bar {
    color: var(--white);
    background: var(--grey);
    font-size: 0.88rem;
}

.top-bar__inner {
    display: flex;
    min-height: 2.65rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-bar p {
    margin: 0;
}

.top-bar a {
    color: var(--white);
    font-weight: 700;
    text-underline-offset: 0.2rem;
}

.header-main {
    display: flex;
    min-height: 7.4rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    width: min(19rem, 48vw);
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2.5vw, 2.4rem);
}

.primary-navigation > a:not(.button) {
    position: relative;
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-navigation > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -0.45rem;
    left: 0;
    height: 2px;
    background: var(--rust);
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-navigation > a:not(.button):hover::after,
.primary-navigation > a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
    border: 0;
    color: var(--charcoal);
    background: transparent;
    cursor: pointer;
    font-weight: 700;
}

.menu-toggle__icon,
.menu-toggle__icon::before,
.menu-toggle__icon::after {
    display: block;
    width: 1.7rem;
    height: 2px;
    background: currentColor;
}

.menu-toggle__icon {
    position: relative;
    margin-left: 0.65rem;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
    position: absolute;
    left: 0;
    content: '';
}

.menu-toggle__icon::before {
    top: -0.45rem;
}

.menu-toggle__icon::after {
    top: 0.45rem;
}

.hero {
    position: relative;
    display: grid;
    min-height: min(76vh, 760px);
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal-deep);
}

.hero__image,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__image {
    background-image: url('../images/finished-garden-room.webp');
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.62) 47%, rgba(20, 20, 20, 0.15) 78%),
        linear-gradient(0deg, rgba(20, 20, 20, 0.65) 0%, transparent 50%);
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 7rem;
    padding-bottom: clamp(5rem, 9vw, 8rem);
}

.hero h1 {
    max-width: 920px;
}

.hero__intro {
    max-width: 670px;
    margin-bottom: 2rem;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: start;
}

.split-layout h2 {
    max-width: 690px;
}

.rich-text {
    color: var(--muted);
    font-size: 1.12rem;
}

.rich-text p {
    margin-bottom: 1.35rem;
}

.rich-text--large h2 {
    color: var(--ink);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
}

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

.service-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    box-shadow: var(--shadow);
}

.service-panel {
    min-height: 34rem;
    padding: clamp(2.5rem, 5vw, 4.7rem);
    color: var(--white);
}

.service-panel--residential {
    background:
        linear-gradient(rgba(33, 33, 33, 0.87), rgba(33, 33, 33, 0.87)),
        url('../images/garden-room-interior.webp') center / cover;
}

.service-panel--commercial {
    background: var(--grey);
}

.service-panel__number {
    margin-bottom: 5rem;
    color: #e7a071;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.service-panel h3 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.service-panel > p:not(.service-panel__number) {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.76);
}

.service-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.2rem;
    margin: 2rem 0 2.6rem;
    padding: 0;
    list-style: none;
}

.service-panel li::before {
    margin-right: 0.5rem;
    color: #e7a071;
    content: '—';
}

.project-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
}

.project-story__copy p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 1.12rem;
}

.project-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.project-collage figure {
    min-height: 220px;
    margin: 0;
    overflow: hidden;
}

.project-collage__large {
    grid-column: 1 / -1;
    min-height: 420px !important;
}

.project-collage img,
.editorial-grid__image img,
.gallery-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    list-style: none;
}

.process-list li {
    padding: 2rem 2rem 0 0;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li:not(:first-child) {
    padding-left: 2rem;
}

.process-list li:last-child {
    border-right: 0;
}

.process-list span,
.values-grid span,
.service-list span {
    display: block;
    margin-bottom: 2.7rem;
    color: #e7a071;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.process-list p {
    color: rgba(255, 255, 255, 0.66);
}

.cta {
    background: var(--sand);
}

.cta__inner,
.sister-company__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta h2,
.sister-company h2 {
    margin-bottom: 0;
}

.page-hero {
    padding: clamp(5rem, 10vw, 9rem) 0;
    border-top: 1px solid var(--border);
    background: var(--soft);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.6fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: end;
}

.page-hero h1 {
    max-width: 880px;
    margin-bottom: 0;
}

.page-hero__lead {
    margin-bottom: 0.5rem;
    color: var(--muted);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.page-hero--services {
    background: var(--sand);
}

.page-hero--contact {
    color: var(--white);
    background: var(--grey);
}

.page-hero--contact .page-hero__lead {
    color: rgba(255, 255, 255, 0.78);
}

.page-hero--contact .eyebrow {
    color: #f0aa7b;
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
}

.editorial-grid__image {
    height: min(68vw, 660px);
    min-height: 480px;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
}

.values-grid article {
    padding: 2.5rem 2.5rem 0 0;
    border-right: 1px solid var(--border);
}

.values-grid article:not(:first-child) {
    padding-left: 2.5rem;
}

.values-grid article:last-child {
    border-right: 0;
}

.values-grid h2 {
    font-size: 1.6rem;
    letter-spacing: -0.025em;
}

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

.sister-company {
    color: var(--white);
    background: var(--grey);
}

.sister-company__inner > div {
    max-width: 760px;
}

.sister-company p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.12rem;
}

.service-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(4rem, 8vw, 8rem);
    align-items: start;
}

.service-detail__intro {
    position: sticky;
    top: 2rem;
}

.service-detail__intro > p:not(.eyebrow) {
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 1.12rem;
}

.service-list {
    border-top: 1px solid var(--border);
}

.service-list article {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1rem;
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--border);
}

.service-list span {
    margin: 0;
}

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

.service-detail--dark {
    color: var(--white);
    background: var(--charcoal-deep);
}

.service-detail--dark .service-detail__intro > p:not(.eyebrow),
.service-detail--dark .service-list p {
    color: rgba(255, 255, 255, 0.68);
}

.service-detail--dark .service-list,
.service-detail--dark .service-list article {
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--charcoal-deep);
}

.gallery-strip figure {
    height: clamp(220px, 28vw, 460px);
    margin: 0;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: start;
}

.contact-details {
    max-width: 470px;
}

.contact-details > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.12rem;
}

.contact-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-note h3 {
    font-size: 1.25rem;
}

.contact-note p {
    color: var(--muted);
}

.form-card {
    padding: clamp(2rem, 5vw, 4rem);
    background: var(--soft);
    box-shadow: var(--shadow);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.45rem;
    color: var(--charcoal);
    font-size: 0.94rem;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    min-height: 3.6rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid #aaa39d;
    border-radius: 0;
    color: var(--ink);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--rust);
    outline: 2px solid rgba(177, 72, 16, 0.18);
}

.form-group [aria-invalid='true'] {
    border-color: #a12626;
}

.field-error {
    min-height: 1.45rem;
    padding-top: 0.25rem;
    color: #a12626;
    font-size: 0.88rem;
}

.form-privacy {
    margin: 1.4rem 0 1.6rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.form-status {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 1.1rem;
    border-left: 4px solid;
    font-weight: 700;
}

.form-status--success,
.form-status--error {
    display: block;
}

.form-status--success {
    border-color: #397247;
    color: #245730;
    background: #e5f2e8;
}

.form-status--error {
    border-color: #a12626;
    color: #812020;
    background: #f8e7e7;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

.site-footer {
    padding: 5rem 0 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    background: var(--charcoal-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.65fr 0.85fr;
    gap: clamp(2.5rem, 7vw, 6rem);
    padding-bottom: 4rem;
}

.footer-logo {
    width: min(18rem, 80%);
    margin-bottom: 1.5rem;
    filter: invert(1);
}

.footer-grid h2 {
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid p {
    max-width: 420px;
}

.footer-links {
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
    }

    .primary-navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 1.25rem 1.5rem 1.5rem;
        background: var(--white);
        box-shadow: 0 16px 24px rgba(0, 0, 0, 0.12);
    }

    .primary-navigation.is-open {
        display: grid;
    }

    .primary-navigation > a:not(.button) {
        padding: 0.7rem 0;
    }

    .primary-navigation > a:not(.button)::after {
        display: none;
    }

    .split-layout,
    .project-story__grid,
    .editorial-grid,
    .service-detail__grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail__intro {
        position: static;
    }

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

    .process-list li:nth-child(2) {
        border-right: 0;
    }

    .process-list li:nth-child(n + 3) {
        margin-top: 2.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-grid article,
    .values-grid article:not(:first-child) {
        padding: 2rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .values-grid article:last-child {
        border-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    .top-bar__inner {
        justify-content: center;
        text-align: center;
    }

    .top-bar p {
        display: none;
    }

    .header-main {
        min-height: 6.2rem;
    }

    .brand {
        width: min(14rem, 58vw);
    }

    .hero {
        min-height: 670px;
    }

    .hero__overlay {
        background: linear-gradient(0deg, rgba(20, 20, 20, 0.92), rgba(20, 20, 20, 0.28));
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .page-hero__grid,
    .service-columns,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-panel {
        min-height: auto;
    }

    .service-panel__number {
        margin-bottom: 3rem;
    }

    .service-panel ul {
        grid-template-columns: 1fr;
    }

    .project-collage__large {
        min-height: 300px !important;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li,
    .process-list li:not(:first-child) {
        margin-top: 0;
        padding: 2rem 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .process-list li:last-child {
        border-bottom: 0;
    }

    .cta__inner,
    .sister-company__inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .editorial-grid__image {
        min-height: 380px;
    }

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

    .gallery-strip figure {
        height: 260px;
    }

    .form-card {
        padding: 1.5rem;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

