@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* =========================
   Great Northern Contracting
   Global Styles
========================= */

:root {
    --black: #0b0b0b;
    --dark: #151515;
    --dark-light: #202020;
    --orange: #f7941d;
    --orange-hover: #ffad3b;
    --white: #ffffff;
    --light-grey: #d4d4d4;
    --muted-grey: #a8a8a8;
    --border: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

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

html {
    scroll-behavior: smooth;
}

/* =========================
   Header
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

nav {
    width: min(1200px, calc(100% - 40px));
    min-height: 88px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 140px;
    height: auto;
    max-height: 75px;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;
    padding: 12px 0;

    color: var(--light-grey);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;

    height: 2px;
    background: var(--orange);

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

body {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
.hero-title,
.section-title {
    font-family: "Manrope", sans-serif;
}

nav a,
button,
.btn {
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

/* =========================
   Hero
========================= */

.hero {
    position: relative;
    min-height: 720px;
    padding: 110px 20px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.82) 38%,
            rgba(0, 0, 0, 0.42) 72%,
            rgba(0, 0, 0, 0.22) 100%),
        url("/images/hero.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.5),
            transparent 45%);

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 100%);
    margin: 0 auto;
}

.hero-content>* {
    max-width: 760px;
}

.hero-company {
    margin-bottom: 12px;

    color: var(--white);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-company::after {
    content: "";
    display: block;

    width: 75px;
    height: 3px;
    margin-top: 14px;

    background: var(--orange);
}

.eyebrow {
    margin-bottom: 18px;

    color: var(--orange);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 24px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;

    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.hero h1 span {
    display: block;
    color: var(--orange);
}

.hero-description {
    max-width: 620px;
    margin-bottom: 34px;

    color: var(--light-grey);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   Buttons
========================= */

.button {
    min-width: 175px;
    padding: 15px 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 2px solid transparent;
    border-radius: 3px;

    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;
    border: 1px solid var(--orange);
    border-radius: 8px;

    background: var(--orange);
    color: #111111;

    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ffa52f;
    box-shadow: 0 10px 24px rgba(255, 145, 12, 0.25);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;

    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    backdrop-filter: blur(6px);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

/* =========================
   General Sections
========================= */

.section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 100px 0;
}

.section+.section {
    border-top: 1px solid var(--border);
}

.section h2 {
    max-width: 800px;
    margin-bottom: 22px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
}

.section h2::before {
    content: "";
    display: block;

    width: 60px;
    height: 4px;
    margin-bottom: 20px;

    background: var(--orange);
}

.section p {
    max-width: 760px;
    color: var(--light-grey);
    font-size: 1.08rem;
}

/* Alternating backgrounds */

#services {
    width: 100%;
    max-width: none;
    padding-right: max(20px, calc((100% - 1200px) / 2));
    padding-left: max(20px, calc((100% - 1200px) / 2));
    background: var(--dark);
}

#contact {
    width: 100%;
    max-width: none;
    padding-right: max(20px, calc((100% - 1200px) / 2));
    padding-left: max(20px, calc((100% - 1200px) / 2));
    background:
        linear-gradient(rgba(247, 148, 29, 0.09), rgba(247, 148, 29, 0.02)),
        var(--dark);
}

/* =========================
   Section Labels
========================= */

.section-label {
    margin-bottom: 14px;

    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* =========================
   About Section
========================= */

.about-section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 110px 0;
}

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

.about-content h2 {
    margin-bottom: 26px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
}

.about-content h2::before {
    content: "";
    display: block;

    width: 60px;
    height: 4px;
    margin-bottom: 20px;

    background: var(--orange);
}

.about-content p:not(.section-label) {
    margin-bottom: 20px;
    color: var(--light-grey);
    font-size: 1.05rem;
}

.about-content .button {
    margin-top: 14px;
}

.about-image {
    position: relative;
    min-height: 470px;
}

.about-image::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;

    width: 55%;
    height: 55%;

    border-top: 3px solid var(--orange);
    border-right: 3px solid var(--orange);
}

.about-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 470px;

    border-radius: 3px;
    object-fit: cover;
}

/* =========================
   Services Section
========================= */

.services-section {
    padding: 110px max(20px, calc((100% - 1200px) / 2));
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading h2 {
    margin-bottom: 20px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.08;
}

.section-heading h2::before {
    content: "";
    display: block;

    width: 60px;
    height: 4px;
    margin-bottom: 20px;

    background: var(--orange);
}

.section-heading>p:not(.section-label) {
    color: var(--light-grey);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 300px;
    padding: 34px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015));

    border: 1px solid var(--border);
    border-radius: 8px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--orange);

    background:
        linear-gradient(145deg,
            rgba(247, 148, 29, 0.13),
            rgba(255, 255, 255, 0.025));
}

.service-number {
    margin-bottom: 30px;

    color: var(--orange);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-card h3 {
    margin-bottom: 16px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 1.55rem;
}

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

/* =========================
   Projects Section
========================= */

.projects-section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 110px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 310px;
    gap: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;

    min-height: 310px;

    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.project-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card-wide {
    grid-column: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.15) 65%,
            rgba(0, 0, 0, 0.05) 100%);

    transition: background 0.35s ease;
}

.project-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.82);
}

.project-card:hover::after {
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(247, 148, 29, 0.15) 100%);
}

.project-overlay {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    z-index: 2;
}

.project-overlay p {
    margin-bottom: 7px;

    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-overlay h3 {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.15;
}

.projects-action {
    margin-top: 42px;
    text-align: center;
}

/* =========================
   Contact Section
========================= */

.contact-section {
    padding: 110px max(20px, calc((100% - 1200px) / 2));

    background:
        linear-gradient(135deg,
            rgba(247, 148, 29, 0.11),
            transparent 45%),
        var(--dark);

    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}

.contact-content h2 {
    margin-bottom: 24px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.08;
}

.contact-content h2::before {
    content: "";
    display: block;

    width: 60px;
    height: 4px;
    margin-bottom: 20px;

    background: var(--orange);
}

.contact-content>p:not(.section-label) {
    margin-bottom: 40px;
    color: var(--light-grey);
    font-size: 1.06rem;
}

.contact-details {
    display: grid;
    gap: 26px;
}

.contact-detail {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.contact-detail span {
    display: block;
    margin-bottom: 5px;

    color: var(--orange);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail p {
    color: var(--white);
    font-size: 1.08rem;
}

.contact-detail a:hover {
    color: var(--orange);
}

/* =========================
   Quote Form
========================= */

.quote-form-wrapper {
    padding: 38px;

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.02));

    border: 1px solid var(--border);
    border-radius: 10px;
}

.quote-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--light-grey);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;

    background: var(--black);
    color: var(--white);

    border: 1px solid var(--border);
    border-radius: 7px;

    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 0.98rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 145px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(0, 0, 0, 0.55);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.13);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}

.form-group select {
    cursor: pointer;
}

.form-button {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

/* =========================
   Footer
========================= */

.site-footer {
    padding: 75px max(20px, calc((100% - 1200px) / 2)) 25px;

    background: #070707;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 110px;
    height: auto;
    max-height: 90px;
    display: block;
    object-fit: contain;
}

.footer-brand p {
    max-width: 340px;
    color: var(--muted-grey);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 7px;

    color: var(--orange);
    font-size: 0.8rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-column a {
    color: var(--muted-grey);
    font-size: 0.94rem;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding-top: 24px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-top: 1px solid var(--border);
    color: #777;
    font-size: 0.82rem;
}

/* =========================
   Thank You Page
========================= */

.thank-you-page {
    min-height: calc(100vh - 88px);
    padding: 100px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at top,
            rgba(247, 148, 29, 0.14),
            transparent 45%),
        var(--black);
}

.thank-you-content {
    width: min(720px, 100%);
    padding: 60px;

    text-align: center;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.thank-you-content h1 {
    margin-bottom: 24px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.thank-you-content .section-label {
    margin-bottom: 18px;
}

.thank-you-content>p:not(.section-label) {
    margin: 0 auto 34px;
    max-width: 600px;

    color: var(--light-grey);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* =========================
   Header Controls
========================= */

nav {
    position: relative;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 9px;

    flex-direction: column;
    justify-content: center;
    gap: 5px;

    background: transparent;
    border: 1px solid var(--border);
    border-radius: 3px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
}

.nav-phone {
    color: var(--orange) !important;
}

.nav-quote {
    padding: 11px 17px !important;
    background: var(--orange);
    color: var(--black) !important;
    border-radius: 3px;
}

.nav-quote::after {
    display: none;
}

.nav-quote:hover {
    background: var(--orange-hover);
}

/* =========================
   Interior Page Hero
========================= */

.page-hero {
    position: relative;
    min-height: 520px;
    padding: 100px 20px;

    display: flex;
    align-items: center;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-page-hero {
    background-image:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.67) 55%,
            rgba(0, 0, 0, 0.35) 100%),
        url("/images/about-hero.jpg");
}

.page-hero-content {
    position: relative;
    z-index: 2;

    width: min(1200px, 100%);
    margin: 0 auto;
}

.page-hero-content h1 {
    max-width: 850px;
    margin-bottom: 24px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1;
    letter-spacing: -0.04em;

    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.page-hero-content h1 span {
    display: block;
    color: var(--orange);
}

.page-hero-content>p:not(.section-label) {
    max-width: 650px;

    color: var(--light-grey);
    font-size: 1.15rem;
}

/* =========================
   About Story
========================= */

.about-story-section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 110px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.about-story-image {
    position: relative;
}

.about-story-image::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;

    width: 48%;
    height: 48%;

    border-top: 3px solid var(--orange);
    border-left: 3px solid var(--orange);
}

.about-story-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 590px;

    object-fit: cover;
    border-radius: 4px;
}

.about-story-content h2 {
    margin-bottom: 25px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 1.08;
}

.about-story-content p:not(.section-label) {
    margin-bottom: 20px;
    color: var(--light-grey);
    font-size: 1.05rem;
}

.about-story-content .button {
    margin-top: 15px;
}

/* =========================
   Values
========================= */

.values-section {
    padding: 110px max(20px, calc((100% - 1200px) / 2));

    background: var(--dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    min-height: 285px;
    padding: 32px;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border);
    border-radius: 4px;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange);
}

.value-number {
    display: block;
    margin-bottom: 30px;

    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.value-card h3 {
    margin-bottom: 15px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 1.45rem;
}

.value-card p {
    color: var(--muted-grey);
}

/* =========================
   Service Area CTA
========================= */

.service-area-section {
    padding: 100px 20px;

    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, 0.76),
            rgba(0, 0, 0, 0.88)),
        url("/images/service-area.jpg") center / cover no-repeat;
}

.service-area-content {
    width: min(750px, 100%);
    margin: 0 auto;
}

.service-area-content h2 {
    margin-bottom: 20px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.service-area-content>p:not(.section-label) {
    margin-bottom: 32px;

    color: var(--light-grey);
    font-size: 1.08rem;
}

/* =========================
   Services Page
========================= */

.services-page-hero {
    background-image:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.94) 0%,
            rgba(0, 0, 0, 0.68) 55%,
            rgba(0, 0, 0, 0.32) 100%),
        url("/images/services-hero.jpg");
}

.services-intro-section {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 100px 0;
}

.services-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: start;
}

.services-intro-grid h2 {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
}

.services-intro-content p {
    margin-bottom: 20px;
    color: var(--light-grey);
    font-size: 1.06rem;
}

.service-detail-section {
    padding: 100px max(20px, calc((100% - 1200px) / 2));
    border-top: 1px solid var(--border);
}

.service-detail-dark {
    background: var(--dark);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 75px;
    align-items: center;
}

.service-detail-reverse .service-detail-image {
    order: 2;
}

.service-detail-reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    position: relative;
}

.service-detail-image::after {
    content: "";
    position: absolute;
    right: -14px;
    bottom: -14px;

    width: 42%;
    height: 42%;

    border-right: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
}

.service-detail-image img {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 510px;

    object-fit: cover;
    border-radius: 4px;
}

.service-index {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.service-detail-content h2 {
    margin-bottom: 22px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.7rem);
    line-height: 1.08;
}

.service-detail-content>p:not(.section-label, .service-index) {
    margin-bottom: 25px;
    color: var(--light-grey);
    font-size: 1.05rem;
}

.service-list {
    display: grid;
    gap: 12px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 24px;
    color: var(--light-grey);
}

.service-list li::before {
    content: "";
    position: absolute;
    top: 0.68em;
    left: 0;

    width: 9px;
    height: 2px;

    background: var(--orange);
}

.process-section {
    padding: 110px max(20px, calc((100% - 1200px) / 2));

    background:
        linear-gradient(rgba(247, 148, 29, 0.05),
            rgba(247, 148, 29, 0)),
        var(--black);

    border-top: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    min-height: 260px;
    padding: 30px;

    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border);
    border-radius: 4px;
}

.process-card span {
    display: block;
    margin-bottom: 28px;

    color: var(--orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.process-card h3 {
    margin-bottom: 15px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 1.42rem;
}

.process-card p {
    color: var(--muted-grey);
}

.services-cta {
    padding: 105px 20px;
    text-align: center;

    background:
        linear-gradient(rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.9)),
        url("/images/services-cta.jpg") center / cover no-repeat;
}

.services-cta-content {
    width: min(760px, 100%);
    margin: 0 auto;
}

.services-cta-content h2 {
    margin-bottom: 20px;

    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: clamp(2.6rem, 6vw, 4.7rem);
}

.services-cta-content>p:not(.section-label) {
    margin-bottom: 32px;
    color: var(--light-grey);
    font-size: 1.08rem;
}

/* =========================
   Modern Typography
========================= */

h1,
h2,
h3 {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.hero h1,
.page-hero-content h1 {
    font-weight: 700;
    letter-spacing: -0.035em;
}

.about-content h2,
.section-heading h2,
.contact-content h2,
.about-story-content h2,
.service-detail-content h2,
.services-intro-grid h2 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

.service-card h3,
.project-overlay h3,
.value-card h3,
.process-card h3 {
    font-weight: 600;
    letter-spacing: -0.015em;
}

body,
p,
a,
input,
select,
textarea,
button {
    font-family: "Manrope", Arial, Helvetica, sans-serif;
}

/* =========================
   Responsive
========================= */

@media (max-width: 850px) {
    nav {
        width: min(1200px, calc(100% - 40px));
        min-height: 76px;
    }

    .logo img {
        width: 170px;
        max-height: 58px;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;

        display: none;
        padding: 22px;

        flex-direction: column;
        align-items: stretch;
        gap: 6px;

        background: rgba(11, 11, 11, 0.99);
        border: 1px solid var(--border);
        border-top: 0;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        padding: 12px;
    }

    .nav-quote {
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        min-height: 650px;
        padding: 90px 20px;
        background-position: 65% center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        min-height: 380px;
    }

    .about-image img {
        height: 380px;
    }

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

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .project-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .project-card-wide {
        grid-column: span 2;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-story-image img {
        height: 460px;
    }

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

    .services-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-detail-reverse .service-detail-image,
    .service-detail-reverse .service-detail-content {
        order: initial;
    }

    .service-detail-image img {
        height: 430px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-wrap: wrap;
    }
}

@media (max-width: 550px) {
    nav {
        width: min(100% - 24px, 1200px);
    }

    .hero {
        min-height: 620px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .section {
        width: min(100% - 30px, 1200px);
        padding: 75px 0;
    }

    .about-section {
        width: min(100% - 30px, 1200px);
        padding: 75px 0;
    }

    .about-image {
        min-height: 300px;
    }

    .about-image img {
        height: 300px;
    }

    .about-image::before {
        display: none;
    }

    .services-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

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

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

    .projects-section {
        width: min(100% - 30px, 1200px);
        padding: 75px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .project-card-large,
    .project-card-wide {
        grid-column: span 1;
    }

    .project-overlay {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .contact-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .quote-form-wrapper {
        padding: 24px 18px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
    }

    .footer-logo img {
        width: 190px;
    }

    .page-hero {
        min-height: 440px;
        padding: 80px 20px;
    }

    .about-story-section {
        width: min(100% - 30px, 1200px);
        padding: 75px 0;
    }

    .about-story-image::before {
        display: none;
    }

    .about-story-image img {
        height: 340px;
    }

    .values-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

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

    .value-card {
        min-height: auto;
    }

    .service-area-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .services-intro-section {
        width: min(100% - 30px, 1200px);
        padding: 75px 0;
    }

    .service-detail-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

    .service-detail-image::after {
        display: none;
    }

    .service-detail-image img {
        height: 310px;
    }

    .process-section {
        padding-top: 75px;
        padding-bottom: 75px;
    }

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

    .process-card {
        min-height: auto;
    }

    .services-cta {
        padding-top: 75px;
        padding-bottom: 75px;
    }

}

/* =========================
   Mobile Styles
========================= */

@media (max-width: 550px) {
    .thank-you-content {
        padding: 45px 22px;
    }
}