* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f4ed;
    color: #0b2940;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

:root {
    --navy: #0b2a40;
    --navy-dark: #061c2b;
    --gold: #dda936;
    --cream: #f7f4ed;
    --cream-dark: #ece8de;
    --white: #ffffff;
    --text: #0b2940;
    --muted: #536779;
}


/* HERO */

.hero {
    min-height: 100vh;
    background: var(--navy);
    color: white;
    overflow: hidden;
}


/* NAVIGATION */

.navbar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.brand-mark {
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 1.65rem;
    line-height: 1;
    padding-right: 12px;
    border-right: 1px solid rgba(221, 169, 54, 0.65);
}

.brand-name {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.brand-subtitle {
    margin-top: 2px;
    color: var(--gold);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gold);
}


/* HAMBURGER */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: white;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* HERO CONTENT */

.hero-content {
    max-width: 1320px;
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    padding: 55px 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.hero-copy {
    position: relative;
    z-index: 10;
    padding-top: 35px;
    padding-bottom: 70px;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.hero-copy h1 {
    max-width: 650px;
    font-size: clamp(3.4rem, 4.8vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.hero-copy h1 span {
    color: var(--gold);
}

.hero-text {
    max-width: 620px;
    margin-bottom: 32px;
    color: #e4ebef;
    font-size: 1.08rem;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}


/* BUTTONS */

.button {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.primary {
    background: var(--gold);
    color: var(--navy-dark);
}

.secondary {
    color: white;
    border: 2px solid var(--gold);
}


/* HERO OFFICE */

.hero-visual {
    position: relative;
    min-height: 650px;
    align-self: stretch;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.office-background {
    position: absolute;
    top: 40px;
    right: -100px;
    bottom: 0;
    left: -60px;
    background-image:
        linear-gradient(
            90deg,
            var(--navy) 0%,
            rgba(11, 42, 64, 0.95) 10%,
            rgba(11, 42, 64, 0.45) 38%,
            rgba(11, 42, 64, 0.08) 70%,
            rgba(11, 42, 64, 0.15) 100%
        ),
        url("images/hero-office-bg.png");
    background-size: cover;
    background-position: center;
    border-radius: 35px 0 0 0;
    opacity: 0.72;
    z-index: 1;
}

.office-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(11, 42, 64, 0.15) 0%,
            rgba(11, 42, 64, 0) 55%,
            rgba(11, 42, 64, 0.55) 100%
        );
}

.hero-portrait {
    position: relative;
    z-index: 5;
    width: min(620px, 100%);
    max-height: 720px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}


/* SHARED SECTION HEADINGS */

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    margin-bottom: 10px;
    color: #b87b00;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 4px;
}

.section-heading h2 {
    margin-bottom: 12px;
    font-size: 2.6rem;
    line-height: 1.2;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1rem;
}


/* SERVICES */

.services-section {
    padding: 90px 40px;
    background: var(--cream);
}

.service-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    min-height: 330px;
    padding: 35px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold);
    border-radius: 9px;
    color: #b97a00;
    font-size: 1.35rem;
}

.gold-line {
    width: 44px;
    height: 3px;
    margin: 20px 0 24px;
    background: var(--gold);
}

.service-card h3 {
    margin-bottom: 18px;
    font-size: 1.28rem;
}

.service-card p {
    color: #344f62;
    font-size: 1rem;
    line-height: 1.7;
}


/* FEATURED WORK */

.work-section {
    padding: 90px 40px;
    background: var(--cream-dark);
}

.project-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: white;
    border-radius: 8px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.project-number {
    position: absolute;
    top: 15px;
    right: 22px;
    color: #e9e3d7;
    font-size: 2.5rem;
    font-weight: 700;
}

.project-category {
    margin-bottom: 10px;
    color: #aa7000;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-card > h3 {
    max-width: 85%;
    margin-bottom: 26px;
    font-size: 1.55rem;
    line-height: 1.25;
}

.project-section {
    margin-bottom: 20px;
}

.project-section h4 {
    margin-bottom: 7px;
    font-size: 0.98rem;
}

.project-section p {
    color: #5a6b7a;
    font-size: 0.93rem;
    line-height: 1.65;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 22px;
}

.tags span {
    padding: 6px 11px;
    background: #f5efe4;
    color: #936514;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
}

.result-box {
    min-height: 125px;
    padding: 18px;
    background: var(--navy);
    color: white;
    border-radius: 6px;
}

.result-box strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 2px;
}

.result-box p {
    font-size: 0.86rem;
    line-height: 1.55;
}


/* ABOUT */

.about-section {
    padding: 100px 40px;
    background: var(--cream);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding-bottom: 55px;
}

.about-photo-box {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--navy);
    border-radius: 10px;
}

.about-photo-box img {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 95%;
    transform: translateX(-50%);
}

.about-gold-line {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 70px;
    height: 3px;
    background: var(--gold);
    z-index: 3;
}

.about-badge {
    position: absolute;
    right: -25px;
    bottom: 10px;
    width: 90%;
    padding: 22px 26px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 7px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.about-badge strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.about-badge span {
    font-size: 0.9rem;
}

.about-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1.05;
}

.about-copy h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.about-copy > p {
    margin-bottom: 20px;
    color: #3f596c;
    font-size: 0.98rem;
    line-height: 1.65;
}

.process-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.process-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
}

.process-number {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: #a66d00;
    font-size: 0.72rem;
    font-weight: 700;
}

.process-item strong {
    display: block;
    margin-bottom: 2px;
}

.process-item p {
    color: #60717e;
    font-size: 0.88rem;
}

.about-link {
    display: inline-block;
    margin-top: 30px;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--gold);
    color: #a76e00;
    text-decoration: none;
    font-weight: 700;
}


/* CONTACT */

.contact-section {
    padding: 100px 40px;
    background: var(--navy);
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.contact-copy .section-label {
    color: var(--gold);
}

.contact-copy h2 {
    max-width: 500px;
    margin-bottom: 22px;
    font-size: clamp(2.7rem, 4vw, 4rem);
    line-height: 1.08;
}

.contact-copy > p {
    max-width: 520px;
    color: #d9e3e9;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-details {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-detail {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: center;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 7px;
    color: var(--gold);
}

.contact-detail strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.contact-detail span {
    display: block;
    color: #bbc9d1;
    font-size: 0.86rem;
}


/* CONTACT FORM */

.contact-form-card {
    padding: 38px;
    background: white;
    color: var(--navy);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.form-label {
    margin-bottom: 8px;
    color: #ad7400;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-form-card h3 {
    margin-bottom: 28px;
    font-size: 1.8rem;
    line-height: 1.25;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 700;
}

.form-group label span {
    color: #85919a;
    font-size: 0.74rem;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #ccd4d9;
    border-radius: 5px;
    background: #fbfbfa;
    color: var(--navy);
    outline: none;
}

.form-group input,
.form-group select {
    height: 48px;
    padding: 0 14px;
}

.form-group textarea {
    padding: 14px;
    resize: vertical;
    min-height: 145px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(221, 169, 54, 0.13);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #919ba2;
}

.form-submit {
    width: 100%;
    min-height: 52px;
    padding: 13px 20px;
    border: 0;
    border-radius: 4px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.form-submit i {
    margin-left: 8px;
}

.form-submit:hover {
    transform: translateY(-2px);
    background: #e5b342;
}

.form-note {
    margin-top: 13px;
    color: #7a858d;
    text-align: center;
    font-size: 0.76rem;
}


/* NETLIFY FORM */

.bot-field {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-status {
    min-height: 24px;
    margin-top: 10px;
    text-align: center;
    font-size: 0.84rem;
    font-weight: 700;
}

.form-status.success {
    color: #2f6b45;
}

.form-status.error {
    color: #a12f2f;
}

.form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}


/* FOOTER */

footer {
    padding: 32px 20px;
    text-align: center;
    background: var(--navy-dark);
    color: #c8d2d8;
}

.footer-brand {
    margin-bottom: 2px;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
}

footer > p {
    font-size: 0.82rem;
}

.copyright {
    margin-top: 12px;
    opacity: 0.7;
}


/* TABLET */

@media (max-width: 1000px) {

    .navbar {
        padding-left: 25px;
        padding-right: 25px;
    }

    .hero-content {
        padding-left: 25px;
        padding-right: 25px;
        grid-template-columns: 1fr 0.85fr;
    }

    .hero-copy h1 {
        font-size: 3.5rem;
    }

    .service-grid,
    .project-grid {
        gap: 18px;
    }

    .service-card,
    .project-card {
        padding: 25px;
    }

    .about-container {
        gap: 40px;
    }

    .contact-container {
        gap: 40px;
    }
}


/* MOBILE */

@media (max-width: 800px) {

    body.menu-open {
        overflow: hidden;
    }

    .navbar {
        padding: 18px 20px;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 40;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 82vw);
        height: 100vh;
        padding: 100px 35px 35px;
        background: var(--navy-dark);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        box-shadow: -12px 0 30px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 30;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 1.05rem;
    }

    .brand-name {
        font-size: 0.78rem;
    }

    .brand-subtitle {
        font-size: 0.46rem;
        letter-spacing: 2px;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        min-height: auto;
        padding: 44px 22px 0;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        padding-top: 0;
        padding-bottom: 30px;
    }

    .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .hero-copy h1 {
        max-width: 610px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
        font-size: clamp(2.6rem, 10vw, 4rem);
        line-height: 1.04;
        letter-spacing: -1px;
    }

    .hero-copy h1 br {
        display: none;
    }

    .hero-text {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        min-height: 420px;
        width: 100%;
    }

    .office-background {
        display: none;
    }

    .hero-portrait {
        width: min(450px, 100%);
        max-height: 480px;
    }

    .services-section,
    .work-section,
    .about-section,
    .contact-section {
        padding: 70px 22px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .section-heading > p:last-child {
        font-size: 0.95rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        max-width: 580px;
    }

    .service-card {
        min-height: auto;
        padding: 28px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .project-card {
        min-height: auto;
        padding: 28px;
    }

    .project-card > h3 {
        font-size: 1.4rem;
    }

    .result-box {
        min-height: auto;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-visual {
        order: 2;
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
        padding-bottom: 42px;
    }

    .about-copy {
        order: 1;
        text-align: left;
    }

    .about-copy h2 {
        font-size: 2.8rem;
    }

    .about-photo-box {
        min-height: 470px;
    }

    .about-badge {
        right: 0;
        width: 92%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-copy {
        text-align: center;
    }

    .contact-copy h2,
    .contact-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .contact-form-card {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}


/* SMALL PHONES */

@media (max-width: 500px) {

    .brand-mark {
        font-size: 1.3rem;
        padding-right: 9px;
    }

    .brand-name {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .brand-subtitle {
        font-size: 0.42rem;
        letter-spacing: 1.5px;
    }

    .hero-content {
        padding-top: 32px;
    }

    .hero-copy h1 {
        font-size: clamp(2.35rem, 11vw, 3rem);
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .button {
        width: 100%;
        text-align: center;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-portrait {
        width: 100%;
        max-height: 390px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .service-card,
    .project-card {
        padding: 24px 20px;
    }

    .about-copy h2 {
        font-size: 2.35rem;
    }

    .about-copy h2 br {
        display: none;
    }

    .about-photo-box {
        min-height: 390px;
    }

    .about-badge {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 8px;
        padding: 18px;
    }

    .about-badge strong {
        letter-spacing: 2px;
    }

    .process-item {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .process-number {
        width: 38px;
        height: 38px;
    }

    .contact-copy h2 {
        font-size: 2.2rem;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-form-card h3 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}