:root {
    --primary: #111827;
    --secondary: #0b0f14;
    --accent: #b89554;
    --surface: #ffffff;
    --surface-soft: #f5f5f2;
    --text: #111318;
    --muted: #6b7280;
    --border: rgba(17, 19, 24, 0.12);
    --border-light: rgba(255, 255, 255, 0.14);
    --shadow-soft: 0 24px 70px rgba(13, 18, 25, 0.08);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --container-wide: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--surface);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
    font-family: "Plus Jakarta Sans", sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    max-width: var(--container-wide);
}

.section-padding {
    padding: 150px 0;
}

/* NAVBAR */
.navbar {
    min-height: 86px;
    padding: 13px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        min-height 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar.scrolled {
    min-height: 72px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 30px rgba(13, 18, 25, 0.06);
    backdrop-filter: blur(18px);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin: 0;
    color: #fff;
    text-decoration: none;
}

.navbar.scrolled .navbar-brand {
    color: var(--text);
}

.navbar-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.brand-symbol {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 46px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    background: var(--accent);
    border-radius: 50%;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    max-width: 240px;
    overflow: hidden;
    font-size: 0.95rem;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-copy small {
    margin-top: 5px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    opacity: 0.65;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 4px;
}

.nav-link {
    position: relative;
    margin: 0 7px;
    padding: 10px 3px !important;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 600;
}

.navbar.scrolled .nav-link {
    color: #424750;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 3px;
    bottom: 3px;
    left: 3px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: #fff;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link:focus::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.navbar-toggler {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    box-shadow: none !important;
}

.navbar.scrolled .navbar-toggler {
    border-color: var(--border);
}

.navbar-toggler span {
    width: 18px;
    height: 1px;
    background: #fff;
}

.navbar.scrolled .navbar-toggler span {
    background: var(--text);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

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

.btn-primary-modern,
.btn-gradient {
    color: #fff;
    border: 1px solid var(--primary);
    background: var(--primary);
    box-shadow: none;
}

.btn-primary-modern:hover,
.btn-gradient:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
}

.navbar:not(.scrolled) .btn-primary-modern {
    color: var(--text);
    border-color: #fff;
    background: #fff;
}

.navbar:not(.scrolled) .btn-primary-modern:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
}

.btn-light-modern {
    color: var(--text);
    border: 1px solid #fff;
    background: #fff;
}

.btn-light-modern:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
}

.btn-outline-light-modern,
.btn-glass {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
}

.btn-outline-light-modern:hover,
.btn-glass:hover {
    color: var(--text);
    border-color: #fff;
    background: #fff;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(100deg, rgba(5, 8, 12, 0.92) 0%, rgba(5, 8, 12, 0.67) 52%, rgba(5, 8, 12, 0.34) 100%),
        url("../images/hero-building.jpg") center/cover no-repeat,
        #171b20;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(4, 7, 10, 0.78), transparent 45%),
        radial-gradient(circle at 75% 28%, rgba(184, 149, 84, 0.2), transparent 26%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(90deg, transparent calc(25% - 1px), rgba(255,255,255,.1) 25%, transparent calc(25% + 1px)),
        linear-gradient(90deg, transparent calc(50% - 1px), rgba(255,255,255,.1) 50%, transparent calc(50% + 1px)),
        linear-gradient(90deg, transparent calc(75% - 1px), rgba(255,255,255,.1) 75%, transparent calc(75% + 1px));
}

.hero-content {
    padding-top: 170px;
    padding-bottom: 90px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.eyebrow {
    color: #f1dfbc;
}

.hero-section h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(3.8rem, 7vw, 7.7rem);
    font-weight: 700;
    line-height: 0.97;
    letter-spacing: -0.065em;
}

.hero-section h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.48);
}

.hero-bottom {
    max-width: 1100px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
    margin-top: 46px;
}

.hero-copy {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 860px;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-metrics > div {
    padding: 24px 28px 0 0;
}

.hero-metrics strong,
.hero-metrics span {
    display: block;
}

.hero-metrics strong {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-metrics span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.8rem;
}

.scroll-indicator {
    position: absolute;
    right: 42px;
    bottom: 38px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

/* TYPOGRAPHY */
.section-title {
    max-width: 850px;
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.section-title span {
    display: block;
    color: var(--accent);
}

.section-copy {
    max-width: 690px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.9;
}

.section-kicker.light {
    color: #d9bd87;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 62px;
}

.section-side-copy,
.project-heading-copy {
    max-width: 410px;
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.85;
}

/* ABOUT */
.about-section {
    background: var(--surface);
}

.about-image-wrap {
    position: relative;
    min-height: 650px;
    padding-right: 45px;
    padding-bottom: 48px;
}

.about-image {
    min-height: 620px;
    height: 100%;
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(to top, rgba(4, 7, 10, 0.8), rgba(4, 7, 10, 0.12) 60%),
        url("../images/about-building.jpg") center/cover no-repeat,
        #1d2329;
    border-radius: var(--radius-lg);
}

.about-image-content {
    position: absolute;
    right: 42px;
    bottom: 38px;
    left: 42px;
}

.about-image-content span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-image-content strong {
    display: block;
    margin: 4px 0 10px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(3.6rem, 7vw, 7rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.about-image-content p {
    max-width: 320px;
    margin: 0;
    color: rgba(255,255,255,.72);
}

.about-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 260px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    color: #fff;
    background: var(--primary);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.about-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}

.about-badge span {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
}

.about-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.about-note-number {
    color: var(--accent);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.about-note h3 {
    margin: 0 0 10px;
    font-size: 1.22rem;
    font-weight: 700;
}

.about-note p {
    margin: 0;
    color: var(--muted);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
    margin: 34px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-item i {
    color: var(--accent);
}

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

.text-link i {
    transition: transform 0.2s ease;
}

.text-link:hover {
    color: var(--accent);
}

.text-link:hover i {
    transform: translateX(4px);
}

/* TIMELINE */
.timeline-section {
    padding: 0 0 150px;
    background: var(--surface);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.timeline-grid article {
    min-height: 240px;
    padding: 38px 35px;
    border-right: 1px solid var(--border);
}

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

.timeline-grid span {
    color: var(--accent);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.timeline-grid h3 {
    margin: 56px 0 12px;
    font-size: 1.28rem;
    font-weight: 700;
}

.timeline-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

/* SERVICES */
.services-section {
    color: #fff;
    background: var(--secondary);
}

.services-section .section-title span {
    color: rgba(255, 255, 255, 0.42);
}

.section-side-copy {
    color: rgba(255, 255, 255, 0.58);
}

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

.service-row {
    display: grid;
    grid-template-columns: 70px 70px minmax(0, 1fr) 52px;
    align-items: center;
    gap: 24px;
    padding: 34px 0;
    border-bottom: 1px solid var(--border-light);
    transition: padding 0.25s ease, background 0.25s ease;
}

.service-row:hover {
    padding-right: 18px;
    padding-left: 18px;
    background: rgba(255,255,255,.035);
}

.service-number {
    color: rgba(255, 255, 255, 0.35);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 1.15rem;
    border: 1px solid var(--border-light);
    border-radius: 50%;
}

.service-content {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(260px, 1fr);
    align-items: center;
    gap: 45px;
}

.service-content h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.service-content p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
}

.service-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.service-row:hover .service-arrow {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateX(4px);
}

/* PROJECTS */
.projects-section {
    background: #fff;
}

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

.project-card {
    min-width: 0;
}

.project-featured {
    grid-column: 1 / -1;
}

.project-image {
    min-height: 440px;
    position: relative;
    overflow: hidden;
    background-color: #222931;
    background-position: center;
    background-size: cover;
    border-radius: var(--radius-md);
}

.project-featured .project-image {
    min-height: 650px;
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 7, 10, 0.55), transparent 48%);
    transition: background .3s ease;
}

.project-card:hover .project-image::after {
    background: linear-gradient(to top, rgba(4, 7, 10, 0.68), rgba(4, 7, 10, 0.06) 60%);
}

.project-placeholder {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, #242b33, #101419);
}

.project-placeholder-mark {
    color: rgba(255,255,255,.18);
    font-size: 5.5rem;
}

.project-category {
    position: absolute;
    z-index: 2;
    left: 22px;
    top: 22px;
    padding: 9px 13px;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: rgba(7, 10, 14, 0.5);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    text-transform: uppercase;
}

.project-open {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--text);
    text-decoration: none;
    background: #fff;
    border-radius: 50%;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.project-open:hover {
    color: #fff;
    background: var(--accent);
    transform: rotate(4deg);
}

.project-content {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 25px 2px 0;
}

.project-index {
    padding-top: 7px;
    color: var(--accent);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
}

.project-content h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    font-weight: 700;
}

.project-content p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

/* VALUE */
.value-section {
    background: var(--surface-soft);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.value-grid article {
    min-height: 270px;
    padding: 34px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.value-grid span {
    color: var(--accent);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
}

.value-grid h3 {
    margin: 62px 0 13px;
    font-size: 1.28rem;
    font-weight: 700;
}

.value-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* VIDEOS */
.videos-section {
    background: #fff;
}

.video-heading {
    display: block;
    max-width: 900px;
    margin-inline: auto;
}

.video-heading .section-title {
    margin-inline: auto;
}

.video-heading > p {
    max-width: 650px;
    margin: 24px auto 0;
    color: var(--muted);
}

.video-card {
    height: 100%;
    overflow: hidden;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.video-card iframe {
    border: 0;
}

.video-content {
    padding: 26px;
}

.video-content > span {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.video-content h3 {
    margin: 10px 0;
    font-size: 1.18rem;
    font-weight: 700;
}

.video-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

/* CONTACT */
.contact-section {
    background: var(--surface-soft);
}

.contact-shell {
    overflow: hidden;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-info {
    padding: 68px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0%, rgba(184, 149, 84, 0.2), transparent 32%),
        var(--secondary);
}

.contact-info h2 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(2.7rem, 4.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.contact-info > p {
    max-width: 510px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.62);
}

.contact-list {
    display: grid;
    gap: 24px;
    margin-top: 55px;
}

.contact-list a,
.contact-list > div {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
}

.contact-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    color: var(--accent);
    border: 1px solid var(--border-light);
    border-radius: 50%;
}

.contact-list a > span:last-child,
.contact-list > div > span:last-child {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.contact-list small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-form-wrap {
    padding: 68px;
}

.contact-form label {
    display: block;
    margin-bottom: 9px;
    color: #292d34;
    font-size: 0.8rem;
    font-weight: 700;
}

.form-control {
    min-height: 54px;
    padding: 13px 15px;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    box-shadow: none;
}

.form-control::placeholder {
    color: #a1a6ae;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(184, 149, 84, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.alert {
    border: 0;
    border-radius: var(--radius-sm);
}

/* FOOTER */
footer {
    padding: 65px 0 28px;
    color: rgba(255, 255, 255, 0.58);
    background: #080b0f;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand > div {
    display: flex;
    flex-direction: column;
}

.footer-brand strong {
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.96rem;
}

.footer-brand > div span {
    margin-top: 4px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.footer-nav a {
    color: rgba(255,255,255,.62);
    font-size: 0.82rem;
    text-decoration: none;
}

.footer-nav a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-top: 26px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.76rem;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .section-padding {
        padding: 120px 0;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .timeline-section {
        padding-bottom: 120px;
    }

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

    .timeline-grid article:nth-child(2) {
        border-right: 0;
    }

    .timeline-grid article:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .contact-info,
    .contact-form-wrap {
        padding: 52px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 20px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
    }

    .navbar-collapse .nav-link {
        margin: 0;
        color: var(--text) !important;
    }

    .navbar-collapse .btn-primary-modern {
        width: 100%;
        margin-top: 14px;
        color: #fff !important;
        border-color: var(--primary) !important;
        background: var(--primary) !important;
    }

    .hero-content {
        padding-top: 145px;
    }

    .hero-section h1 {
        font-size: clamp(3.6rem, 10vw, 6rem);
    }

    .hero-lines {
        opacity: 0.12;
    }

    .about-image-wrap {
        min-height: 580px;
    }

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

    .section-heading {
        display: block;
    }

    .project-heading-copy {
        margin-top: 24px;
    }

    .project-featured .project-image,
    .project-image {
        min-height: 500px;
    }

    .value-grid {
        margin-top: 20px;
    }

    .contact-info {
        min-height: 570px;
    }

    .footer-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 92px 0;
    }

    .navbar {
        min-height: 74px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        max-width: 175px;
        font-size: 0.82rem;
    }

    .hero-section h1 {
        font-size: clamp(3rem, 13vw, 4.7rem);
    }

    .hero-copy {
        font-size: 0.96rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 50px;
    }

    .hero-metrics > div {
        padding-top: 17px;
        border-top: 1px solid rgba(255,255,255,.12);
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .about-image-wrap {
        min-height: auto;
        padding-right: 0;
        padding-bottom: 75px;
    }

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

    .about-badge {
        right: 20px;
        bottom: 0;
        left: 20px;
        width: auto;
    }

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

    .timeline-section {
        padding-bottom: 92px;
    }

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

    .timeline-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

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

    .timeline-grid h3 {
        margin-top: 28px;
    }

    .service-row {
        grid-template-columns: 44px 54px 1fr;
        gap: 14px;
    }

    .service-content {
        grid-column: 3;
    }

    .service-arrow {
        display: none;
    }

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

    .project-featured {
        grid-column: auto;
    }

    .project-featured .project-image,
    .project-image {
        min-height: 420px;
    }

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

    .contact-info,
    .contact-form-wrap {
        padding: 38px 26px;
    }

    .contact-info {
        min-height: auto;
    }

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

@media (max-width: 575px) {
    .container {
        width: min(100% - 28px, var(--container-wide));
    }

    .hero-content {
        padding-top: 128px;
        padding-bottom: 58px;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .eyebrow,
    .section-kicker {
        letter-spacing: 0.14em;
    }

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

    .about-image-content {
        right: 26px;
        bottom: 28px;
        left: 26px;
    }

    .about-image-content strong {
        font-size: 4rem;
    }

    .service-row {
        grid-template-columns: 35px 48px 1fr;
    }

    .service-icon {
        width: 46px;
        height: 46px;
    }

    .project-featured .project-image,
    .project-image {
        min-height: 340px;
    }

    .project-content {
        grid-template-columns: 34px 1fr;
    }

    .value-grid article {
        min-height: 235px;
        padding: 28px;
    }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
