:root {
    --orange: #f37314;
    --orange-dark: #cf5700;
    --orange-soft: #fff1e6;
    --ink: #23262a;
    --muted: #6d7278;
    --surface: #f7f8f8;
    --surface-strong: #eef0f1;
    --line: #e4e6e8;
    --white: #ffffff;
    --footer: #1d242b;
    --shadow: 0 18px 50px rgba(28, 34, 39, 0.09);
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
    line-height: 1.14;
}

h1,
h2 {
    font-weight: 750;
}

h3 {
    font-weight: 700;
}

svg.lucide {
    width: 1.1em;
    height: 1.1em;
    stroke-width: 1.8;
    flex: 0 0 auto;
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.narrow {
    max-width: 720px;
}

.centered {
    text-align: center;
}

.section-lg {
    padding-block: 104px;
}

.section-sm {
    padding-block: 44px;
}

.muted-section {
    background: var(--surface);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    border-radius: 6px;
    transform: translateY(-150%);
}

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

.eyebrow {
    margin-bottom: 13px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.icon-button:focus-visible,
.filter-button:focus-visible,
.primary-navigation a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(243, 115, 20, 0.3);
    outline-offset: 2px;
}

.button-primary {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 10px 24px rgba(243, 115, 20, 0.2);
}

.button-primary:hover {
    background: var(--orange-dark);
}

.button-dark {
    color: var(--white);
    background: var(--ink);
}

.button-dark:hover {
    background: #090b0d;
}

.button-light {
    color: var(--orange-dark);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(118, 53, 0, 0.15);
}

.button-light:hover {
    color: var(--ink);
}

.button-outline {
    color: var(--ink);
    background: var(--white);
    border-color: #d9dcde;
}

.button-outline:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
}

.button-ghost-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.button-ghost-light:hover {
    background: rgba(255, 255, 255, 0.16);
}

.icon-button {
    display: inline-grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.site-header {
    position: relative;
    z-index: 50;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(30, 35, 40, 0.08);
}

.header-top {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 28px;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: 170px;
    height: auto;
}

.contact-strip {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-left: auto;
    color: #53585e;
    font-size: 12px;
    font-weight: 650;
}

.contact-strip > a,
.contact-strip > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.contact-strip svg {
    color: var(--orange);
}

.nav-row {
    border-top: 1px solid #f0f1f2;
}

.nav-shell {
    display: flex;
    min-height: 56px;
    align-items: center;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 36px;
}

.primary-navigation a {
    position: relative;
    padding-block: 17px;
    color: #45494e;
    font-size: 13px;
    font-weight: 700;
}

.primary-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 9px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.primary-navigation a:hover,
.primary-navigation a.active {
    color: var(--ink);
}

.primary-navigation a:hover::after,
.primary-navigation a.active::after {
    transform: scaleX(1);
}

.header-cta {
    min-height: 40px;
    margin-left: auto;
    padding: 9px 18px;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    margin-left: auto;
}

.hero-home {
    position: relative;
    display: flex;
    min-height: 610px;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-image: url("../images/hero-main.webp");
    background-position: center;
    background-size: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 22, 25, 0.79) 0%, rgba(17, 22, 25, 0.54) 38%, rgba(17, 22, 25, 0.1) 72%, rgba(17, 22, 25, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 52px;
}

.hero-content .eyebrow {
    color: #ff8a32;
}

.hero-content h1 {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: 62px;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 575px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.87);
    font-size: 16px;
}

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

.benefits-wrap {
    position: relative;
    z-index: 3;
    margin-top: -68px;
}

.benefits-panel {
    display: grid;
    min-height: 176px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: start;
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(231, 233, 235, 0.8);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-item {
    min-width: 0;
    padding: 0 25px;
}

.benefit-item + .benefit-item {
    border-left: 1px solid var(--line);
}

.benefit-item h2 {
    margin: 14px 0 6px;
    font-size: 15px;
}

.benefit-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.round-icon {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: var(--orange-soft);
}

.round-icon.large {
    width: 58px;
    height: 58px;
    font-size: 22px;
}

.about-home {
    padding-top: 112px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 96px;
    align-items: center;
}

.about-copy h2 {
    margin-bottom: 25px;
    font-size: 39px;
}

.about-copy h2 span {
    color: var(--orange);
}

.about-copy p:not(.eyebrow) {
    max-width: 550px;
    color: var(--muted);
    font-size: 15px;
}

.about-copy .button {
    margin-top: 10px;
}

.about-collage {
    position: relative;
    min-height: 510px;
}

.about-collage img {
    position: absolute;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 22px 42px rgba(24, 29, 33, 0.1);
}

.about-image-main {
    top: 0;
    left: 6%;
    width: 61%;
    height: 440px;
}

.about-image-small {
    right: 2%;
    bottom: 0;
    width: 34%;
    height: 278px;
}

.dot-pattern {
    position: absolute;
    z-index: -1;
    top: 83px;
    right: -4px;
    width: 145px;
    height: 145px;
    opacity: 0.32;
    background-image: radial-gradient(#c8cccf 1.25px, transparent 1.25px);
    background-size: 12px 12px;
}

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

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
}

.section-heading h2,
.projects-toolbar h2 {
    margin-bottom: 13px;
    font-size: 36px;
}

.section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.compact-heading {
    margin-bottom: 22px;
}

.product-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-quick-card {
    display: grid;
    min-height: 126px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 17px;
    align-items: center;
    padding: 24px;
    background: var(--white);
    border: 1px solid #eceeef;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(28, 33, 38, 0.045);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-quick-card:hover {
    border-color: rgba(243, 115, 20, 0.38);
    box-shadow: 0 14px 32px rgba(28, 33, 38, 0.08);
    transform: translateY(-3px);
}

.product-quick-card strong {
    min-width: 0;
    font-size: 15px;
}

.circle-arrow {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--orange);
}

.center-action {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 30px;
}

.filter-button {
    min-height: 38px;
    padding: 8px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #53585e;
    background: var(--white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.filter-button:hover,
.filter-button.active {
    color: var(--white);
    background: var(--orange);
    border-color: var(--orange);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 1.5;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface-strong);
}

.portfolio-item[hidden],
.project-card[hidden] {
    display: none;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.portfolio-overlay {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    min-height: 45%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: var(--white);
    background: linear-gradient(0deg, rgba(20, 24, 28, 0.86), transparent);
    opacity: 0;
    transition: opacity 200ms ease;
}

.portfolio-overlay span {
    color: #ff9e56;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.portfolio-overlay strong {
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.3;
}

.portfolio-item:hover img {
    transform: scale(1.035);
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-visible .portfolio-overlay {
    opacity: 1;
}

.cta-band {
    display: grid;
    min-height: 132px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px 40px;
    color: var(--white);
    background: linear-gradient(105deg, #ff9d25 0%, var(--orange) 72%);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(243, 115, 20, 0.18);
}

.cta-band h2 {
    margin-bottom: 5px;
    font-size: 25px;
}

.cta-band p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
}

.cta-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(172, 63, 0, 0.18);
    font-size: 24px;
}

.site-footer {
    padding-top: 62px;
    color: #d5d9dc;
    background: var(--footer);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 1.15fr 1.25fr;
    gap: 64px;
    padding-bottom: 52px;
}

.footer-brand img {
    width: 165px;
    height: auto;
    filter: grayscale(1) brightness(2.6);
    opacity: 0.72;
}

.footer-brand p {
    max-width: 240px;
    margin: 19px 0;
    color: #aeb4b9;
    font-size: 13px;
}

.social-links {
    display: flex;
    gap: 9px;
}

.social-links .icon-button {
    width: 34px;
    height: 34px;
    border-color: rgba(255, 255, 255, 0.2);
}

.site-footer h3 {
    margin: 4px 0 18px;
    color: var(--white);
    font-size: 15px;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #b9bec2;
    font-size: 13px;
}

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

.footer-contact {
    gap: 12px;
}

.footer-contact li {
    display: flex;
    gap: 9px;
    align-items: flex-start;
}

.footer-contact svg {
    margin-top: 4px;
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: #8e959a;
    font-size: 11px;
}

.heart {
    color: var(--orange);
}

.inner-hero {
    position: relative;
    display: flex;
    min-height: 390px;
    align-items: center;
    color: var(--white);
    background-image: linear-gradient(90deg, rgba(20, 25, 29, 0.86), rgba(20, 25, 29, 0.35)), var(--hero-image);
    background-position: center;
    background-size: cover;
}

.inner-hero-content {
    padding-block: 70px;
}

.inner-hero h1 {
    max-width: 760px;
    margin-bottom: 14px;
    font-size: 52px;
}

.inner-hero-content > p:last-child {
    max-width: 630px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 86px;
    align-items: center;
}

.story-media {
    position: relative;
}

.story-media > img {
    width: 100%;
    min-height: 510px;
    border-radius: 8px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    right: -26px;
    bottom: 28px;
    display: flex;
    width: 156px;
    min-height: 112px;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    color: var(--white);
    background: var(--orange);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(182, 75, 0, 0.22);
}

.experience-badge strong {
    font-size: 32px;
    line-height: 1;
}

.experience-badge span {
    margin-top: 6px;
    font-size: 12px;
}

.story-copy h2 {
    margin-bottom: 24px;
    font-size: 39px;
}

.story-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    margin-top: 32px;
    padding-top: 27px;
    border-top: 1px solid var(--line);
}

.stats-row div {
    display: flex;
    flex-direction: column;
}

.stats-row strong {
    color: var(--orange);
    font-size: 24px;
}

.stats-row span {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-item {
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.value-item h3 {
    margin: 20px 0 10px;
    font-size: 20px;
}

.value-item p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

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

.process-grid article {
    position: relative;
    min-height: 280px;
    padding: 34px 28px;
}

.process-grid article + article {
    border-left: 1px solid var(--line);
}

.process-grid article > span {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #d7dade;
    font-size: 28px;
    font-weight: 800;
}

.process-grid article > svg {
    width: 31px;
    height: 31px;
    margin-top: 36px;
    color: var(--orange);
}

.process-grid h3 {
    margin: 23px 0 10px;
    font-size: 18px;
}

.process-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.products-intro {
    max-width: 850px;
}

.product-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.catalog-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.catalog-card:hover {
    box-shadow: 0 18px 40px rgba(27, 33, 38, 0.1);
    transform: translateY(-4px);
}

.catalog-image {
    display: block;
    aspect-ratio: 1.45;
    overflow: hidden;
    background: var(--surface-strong);
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.catalog-card:hover .catalog-image img {
    transform: scale(1.035);
}

.catalog-content {
    position: relative;
    padding: 28px;
}

.catalog-content .round-icon {
    position: absolute;
    top: -22px;
    left: 28px;
    border: 4px solid var(--white);
}

.catalog-content h2 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.catalog-content p {
    min-height: 69px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
}

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

.advisory-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr auto;
    gap: 45px;
    align-items: center;
}

.advisory-grid h2 {
    margin-bottom: 0;
    font-size: 32px;
}

.advisory-grid > p {
    margin-bottom: 0;
    color: var(--muted);
}

.product-detail-hero {
    background: var(--surface);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 12px;
}

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

.product-detail-copy h1 {
    margin: 22px 0 18px;
    font-size: 48px;
}

.lead {
    font-size: 18px;
}

.product-detail-copy .lead {
    color: var(--muted);
}

.check-list {
    display: grid;
    gap: 10px;
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.check-list svg {
    margin-top: 5px;
    color: var(--orange);
}

.product-detail-media {
    position: relative;
}

.product-detail-media > img {
    width: 100%;
    min-height: 520px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.media-note {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 15px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(20, 24, 28, 0.12);
    font-size: 12px;
    font-weight: 750;
}

.media-note svg {
    color: var(--orange);
}

.detail-columns,
.project-story-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
}

.detail-columns h2,
.project-story-grid h2 {
    margin-bottom: 0;
    font-size: 35px;
}

.detail-columns > div:last-child,
.project-story-grid > div:last-child {
    color: var(--muted);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.related-card {
    display: grid;
    min-height: 105px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.related-card > svg {
    color: var(--orange);
}

.related-card:hover {
    border-color: var(--orange);
}

.not-found {
    min-height: 520px;
    display: flex;
    align-items: center;
}

.not-found h1 {
    margin: 22px 0 12px;
    font-size: 46px;
}

.not-found p {
    color: var(--muted);
}

.not-found .button {
    margin-top: 15px;
}

.projects-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.projects-toolbar .filter-tabs {
    justify-content: flex-end;
    margin-bottom: 0;
}

.projects-catalog {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 24px;
}

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

.project-image {
    display: block;
    aspect-ratio: 1.5;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface-strong);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.project-card:hover .project-image img {
    transform: scale(1.035);
}

.project-card-content {
    padding: 19px 4px 0;
}

.project-card-content > span {
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-card-content h2 {
    margin: 8px 0 12px;
    font-size: 22px;
}

.project-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 42px;
}

.project-title-row h1 {
    max-width: 820px;
    margin-bottom: 0;
    font-size: 48px;
}

.project-cover {
    width: 100%;
    max-height: 690px;
    aspect-ratio: 1.75;
    border-radius: 8px;
    object-fit: cover;
}

.contact-section {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 80px;
    align-items: start;
}

.contact-aside h2 {
    margin-bottom: 20px;
    font-size: 38px;
}

.contact-aside > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-methods {
    display: grid;
    gap: 5px;
    margin-top: 35px;
}

.contact-methods > a,
.contact-methods > div {
    display: flex;
    gap: 15px;
    align-items: center;
    min-width: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.contact-methods > a:hover strong {
    color: var(--orange);
}

.contact-methods small,
.contact-methods strong {
    display: block;
}

.contact-methods small {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 11px;
}

.contact-methods strong {
    overflow-wrap: anywhere;
    font-size: 14px;
}

.contact-form-wrap {
    padding: 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    scroll-margin-top: 24px;
}

.form-heading h2 {
    margin-bottom: 28px;
    font-size: 30px;
}

.contact-form {
    display: grid;
    gap: 19px;
}

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

.contact-form label {
    display: grid;
    gap: 7px;
    color: #474c51;
    font-size: 12px;
    font-weight: 750;
}

.contact-form label > span {
    color: var(--orange);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #d9dde0;
    border-radius: 6px;
    color: var(--ink);
    background: var(--white);
    font-size: 14px;
    font-weight: 450;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
    height: 48px;
    padding: 0 14px;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
    padding: 13px 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(243, 115, 20, 0.1);
}

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

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 2px;
}

.form-submit-row p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 11px;
}

.form-alert {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding: 13px 15px;
    border-radius: 6px;
    font-size: 13px;
}

.form-alert.success {
    color: #1b6841;
    background: #ecf8f1;
    border: 1px solid #ccebd9;
}

.form-alert.error {
    color: #8c2c27;
    background: #fff0ef;
    border: 1px solid #f2ceca;
}

.location-band {
    padding-block: 54px;
    background: var(--white);
}

.location-grid,
.location-grid > div {
    display: flex;
    align-items: center;
}

.location-grid {
    justify-content: space-between;
    gap: 30px;
}

.location-grid > div {
    gap: 18px;
}

.location-grid .eyebrow {
    margin-bottom: 5px;
}

.location-grid h2 {
    margin-bottom: 0;
    font-size: 24px;
}

@media (max-width: 1080px) {
    .contact-strip {
        gap: 18px;
    }

    .contact-strip > span:last-child {
        display: none;
    }

    .about-grid,
    .story-grid,
    .contact-grid {
        gap: 55px;
    }

    .benefit-item {
        padding-inline: 17px;
    }

    .footer-grid {
        gap: 34px;
    }

    .advisory-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .advisory-grid .button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 900px) {
    .shell {
        width: min(calc(100% - 36px), var(--shell));
    }

    .section-lg {
        padding-block: 84px;
    }

    .header-top {
        min-height: 72px;
    }

    .brand img {
        width: 150px;
    }

    .contact-strip {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
    }

    .nav-row {
        max-height: 0;
        overflow: hidden;
        border-top: 0;
        transition: max-height 220ms ease;
    }

    .site-header.menu-open .nav-row {
        max-height: 540px;
        border-top: 1px solid var(--line);
    }

    .nav-shell {
        display: block;
        padding-block: 14px 20px;
    }

    .primary-navigation {
        display: grid;
        gap: 0;
    }

    .primary-navigation a {
        padding: 12px 2px;
        border-bottom: 1px solid var(--line);
        font-size: 14px;
    }

    .primary-navigation a::after {
        display: none;
    }

    .header-cta {
        width: 100%;
        margin: 16px 0 0;
    }

    .hero-home {
        min-height: 580px;
        background-position: 62% center;
    }

    .hero-content h1 {
        font-size: 51px;
    }

    .benefits-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 28px;
    }

    .benefit-item:nth-child(3) {
        border-left: 0;
    }

    .benefit-item:nth-child(n + 3) {
        padding-top: 25px;
        border-top: 1px solid var(--line);
    }

    .about-grid,
    .story-grid,
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-copy {
        max-width: 650px;
    }

    .about-collage {
        max-width: 680px;
        width: 100%;
        justify-self: center;
    }

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

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

    .portfolio-overlay {
        opacity: 1;
    }

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

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

    .process-grid article:nth-child(3) {
        border-left: 0;
    }

    .process-grid article:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .experience-badge {
        right: 22px;
    }

    .detail-columns,
    .project-story-grid {
        gap: 50px;
    }

    .product-detail-media > img {
        min-height: 440px;
    }

    .projects-toolbar {
        display: block;
    }

    .projects-toolbar .filter-tabs {
        justify-content: flex-start;
        margin-top: 24px;
    }
}

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

    .section-lg {
        padding-block: 70px;
    }

    .section-sm {
        padding-block: 34px;
    }

    .hero-home {
        min-height: 590px;
        align-items: flex-end;
        background-position: 64% center;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(17, 22, 25, 0.88), rgba(17, 22, 25, 0.22) 80%);
    }

    .hero-content {
        padding-bottom: 95px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-lead {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

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

    .benefits-wrap {
        margin-top: -54px;
    }

    .benefits-panel {
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 16px 22px;
    }

    .benefit-item {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        gap: 15px;
        align-items: start;
        padding: 19px 0;
    }

    .benefit-item + .benefit-item,
    .benefit-item:nth-child(3),
    .benefit-item:nth-child(n + 3) {
        padding-top: 19px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .benefit-item h2 {
        margin-top: 2px;
    }

    .about-home {
        padding-top: 75px;
    }

    .about-copy h2,
    .story-copy h2,
    .contact-aside h2 {
        font-size: 33px;
    }

    .about-collage {
        min-height: 410px;
    }

    .about-image-main {
        left: 0;
        width: 78%;
        height: 340px;
    }

    .about-image-small {
        right: 0;
        width: 43%;
        height: 220px;
    }

    .dot-pattern {
        display: none;
    }

    .section-heading h2,
    .projects-toolbar h2 {
        font-size: 31px;
    }

    .product-quick-grid,
    .product-catalog-grid,
    .portfolio-grid,
    .value-grid,
    .related-grid,
    .projects-catalog {
        grid-template-columns: 1fr;
    }

    .product-quick-card {
        min-height: 104px;
    }

    .catalog-content p {
        min-height: 0;
    }

    .portfolio-item {
        aspect-ratio: 1.35;
    }

    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 7px;
        scrollbar-width: none;
    }

    .filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-button {
        white-space: nowrap;
    }

    .cta-band {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 27px 24px;
    }

    .cta-band .button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .cta-band h2 {
        font-size: 21px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }

    .inner-hero {
        min-height: 340px;
    }

    .inner-hero h1 {
        font-size: 41px;
    }

    .inner-hero-content > p:last-child {
        font-size: 15px;
    }

    .story-media > img {
        min-height: 390px;
    }

    .experience-badge {
        right: 16px;
        bottom: 16px;
    }

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

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

    .process-grid article {
        min-height: 230px;
        border-left: 0 !important;
    }

    .process-grid article + article {
        border-top: 1px solid var(--line);
    }

    .advisory-grid,
    .detail-columns,
    .project-story-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .advisory-grid .button {
        grid-column: auto;
    }

    .product-detail-grid {
        gap: 45px;
    }

    .product-detail-copy h1,
    .project-title-row h1,
    .not-found h1 {
        font-size: 39px;
    }

    .product-detail-media > img {
        min-height: 330px;
    }

    .media-note {
        right: 12px;
        bottom: 12px;
        left: 12px;
        justify-content: center;
    }

    .detail-columns h2,
    .project-story-grid h2 {
        font-size: 30px;
    }

    .project-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .project-cover {
        aspect-ratio: 1.2;
    }

    .contact-form-wrap {
        padding: 26px 20px;
    }

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

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

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

    .location-grid {
        align-items: stretch;
        flex-direction: column;
    }

    .location-grid h2 {
        font-size: 19px;
        overflow-wrap: anywhere;
    }

    .location-grid .button {
        width: 100%;
    }
}

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

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