:root {
    --black: #090909;
    --ink: #151515;
    --muted: #707070;
    --line: rgba(20, 20, 20, 0.12);
    --light-line: rgba(255, 255, 255, 0.16);
    --white: #ffffff;
    --soft: #f5f3ef;
    --stone: #d8d2c8;
    --brass: #b99a5f;
    --sage: #6f7f6a;
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: "Jost", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1330px, calc(100% - 48px));
    margin: 0 auto;
}

.site-shell {
    min-height: 100vh;
    background: var(--white);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    width: 100%;
    padding: 22px 0;
    color: var(--white);
    transition: padding 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled,
.site-header.nav-open {
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    position: relative;
    display: block;
    width: 198px;
    height: 90px;
}

.brand-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.3s ease;
}

.brand-logo-dark,
.site-header.is-scrolled .brand-logo-light,
.site-header.nav-open .brand-logo-light {
    opacity: 0;
}

.site-header.is-scrolled .brand-logo-dark,
.site-header.nav-open .brand-logo-dark {
    opacity: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.main-nav a {
    position: relative;
    opacity: 0.86;
}

.main-nav a::after {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
}

.menu-toggle span {
    display: block;
    width: 16px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 0.25s ease;
}

.nav-open .menu-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

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

.section-light {
    background: var(--white);
    color: var(--ink);
    padding: 118px 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 0;
}

.hero-swiper,
.hero-slide {
    width: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 160px 0 92px;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #101010, #222 38%, #c9b37d 38%, #c9b37d 39%, #f2f0eb 39%, #f2f0eb 66%, #536056 66%),
    var(--black);
}

.hero-media-fallback {
    background: linear-gradient(135deg, #101010, #222 38%, #c9b37d 38%, #c9b37d 39%, #f2f0eb 39%, #f2f0eb 66%, #536056 66%),
    var(--black);
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.96;
}

.hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-slide-overlay {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, var(--hero-overlay)), rgba(0, 0, 0, calc(var(--hero-overlay) * 0.35)) 58%, rgba(0, 0, 0, calc(var(--hero-overlay) * 0.72))),
    linear-gradient(0deg, rgba(0, 0, 0, calc(var(--hero-overlay) * 0.82)), rgba(0, 0, 0, 0) 50%);
}

.overlay-0 {
    --hero-overlay: 0;
}

.overlay-1 {
    --hero-overlay: 0.1;
}

.overlay-2 {
    --hero-overlay: 0.2;
}

.overlay-3 {
    --hero-overlay: 0.3;
}

.overlay-4 {
    --hero-overlay: 0.4;
}

.overlay-5 {
    --hero-overlay: 0.5;
}

.overlay-6 {
    --hero-overlay: 0.6;
}

.overlay-7 {
    --hero-overlay: 0.7;
}

.overlay-8 {
    --hero-overlay: 0.8;
}

.overlay-9 {
    --hero-overlay: 0.9;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--brass);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.hero h1,
.page-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: "Jost", Inter, sans-serif;
    font-size: 78px;
    font-weight: 500;
    line-height: 0.96;
}

.hero p,
.page-hero p {
    max-width: 630px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 20px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.58);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--black);
}

.hero-cue {
    position: absolute;
    right: 38px;
    bottom: 38px;
    z-index: 2;
    writing-mode: vertical-rl;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-pagination {
    z-index: 4;
    bottom: 34px !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 34px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.52);
    opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--white);
}

.split-grid,
.feature-grid,
.contact-grid,
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 72px;
    align-items: start;
}

.section-heading h2,
.feature-copy h2,
.cta-inner h2 {
    margin: 0;
    font-family: "Jost", Inter, sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.08;
}

.section-heading.center {
    max-width: 760px;
    text-align: center;
}

.section-heading.center .eyebrow {
    justify-content: center;
}

.rich-copy p,
.feature-copy p {
    margin: 0 0 22px;
    color: #4f4f4f;
    font-size: 18px;
    line-height: 1.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 78px;
    background: var(--line);
    border: 1px solid var(--line);
}

.stat-item {
    min-height: 154px;
    padding: 34px;
    background: var(--white);
}

.stat-item strong {
    display: block;
    color: var(--black);
    font-family: "Jost", Inter, sans-serif;
    font-size: 48px;
    font-weight: 500;
}

.stat-item span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.services-section {
    padding: 120px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    margin-top: 64px;
    background: var(--light-line);
    border: 1px solid var(--light-line);
}

.service-card {
    min-height: 300px;
    padding: 34px;
    background: #0d0d0d;
}

.service-card i {
    color: var(--brass);
    font-size: 30px;
}

.service-card h3 {
    margin: 74px 0 18px;
    font-size: 22px;
    font-weight: 600;
}

.service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.75;
}

.feature-band {
    background: var(--soft);
}

.feature-visual {
    display: flex;
    min-height: 560px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius);
    background: linear-gradient(140deg, rgba(9, 9, 9, 0.94), rgba(9, 9, 9, 0.68)),
    linear-gradient(45deg, var(--brass), var(--sage));
}

.feature-visual img {
    width: min(62%, 360px);
    opacity: 0.78;
}

.process-list {
    display: grid;
    gap: 18px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: flex;
    gap: 22px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
    color: #3f3f3f;
    font-size: 18px;
}

.process-list span {
    color: var(--brass);
    font-size: 13px;
    font-weight: 800;
}

.project-section,
.listing-section {
    padding: 120px 0;
}

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

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

.showcase-card {
    position: relative;
    display: block;
    min-height: 390px;
    overflow: hidden;
    /*border-radius: var(--radius);*/
    background: #171717;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 0.7s ease, opacity 0.35s ease;
}

.showcase-card::after {
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));*/
    content: "";
}

.showcase-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    z-index: 1;
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    /*border-radius: var(--radius);*/
    background: rgba(0, 0, 0, 0.6);
    padding: 16px 18px;
    color: var(--white);
    font-size: 18px;
    font-weight: 300;
    /* backdrop-filter: blur(12px); */
}

.showcase-card:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.showcase-empty {
    display: flex;
    min-height: 220px;
    align-items: center;
    border: 1px solid var(--light-line);
    border-radius: var(--radius);
    padding: 28px;
    color: rgba(255, 255, 255, 0.72);
}

.showcase-grid.light .showcase-empty {
    border-color: var(--line);
    color: var(--muted);
}

.light-surface {
    border-color: var(--line);
    color: var(--muted);
    background: var(--white);
}

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

.lighting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 58px;
}

.lighting-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line);
    background: var(--white);
    padding: 26px 24px;
}

.lighting-card-index {
    color: var(--brass);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.lighting-card strong {
    color: var(--ink);
    font-size: 22px;
    font-weight: 500;
}

.lighting-card i {
    color: var(--ink);
}

.references-section {
    padding: 120px 0;
}

.reference-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 58px;
    background: var(--light-line);
    border: 1px solid var(--light-line);
}

.reference-logo-card {
    display: grid;
    min-height: 250px;
    align-content: space-between;
    background: #0d0d0d;
    padding: 28px;
}

.reference-logo-card img {
    width: 100%;
    height: 128px;
    object-fit: contain;
    object-position: left center;
    /*filter: grayscale(1);*/
    opacity: 0.86;
}

.reference-logo-card span {
    display: block;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    font-weight: 700;
}

.reference-table-wrap {
    margin-top: 42px;
}

.reference-table {
    border: 1px solid var(--light-line);
}

.reference-table-head,
.reference-table-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px;
    gap: 22px;
    align-items: center;
}

.reference-table-head {
    background: rgba(255, 255, 255, 0.08);
    padding: 18px 24px;
    color: var(--brass);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reference-table-row {
    border-top: 1px solid var(--light-line);
    padding: 22px 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.reference-table-row span:last-child,
.reference-table-head span:last-child {
    text-align: right;
}

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

.project-card {
    position: relative;
    display: block;
    min-height: 410px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #171717;
    padding: 28px;
}

.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
    transition: transform 0.7s ease, opacity 0.35s ease;
}

.project-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 62%);
    content: "";
}

.project-card:hover img {
    transform: scale(1.06);
    opacity: 0.9;
}

.project-card h3,
.project-card p,
.project-meta,
.project-placeholder {
    position: relative;
    z-index: 1;
}

.project-meta {
    display: block;
    margin-top: 256px;
    color: var(--brass);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-card h3 {
    margin: 12px 0 8px;
    color: var(--white);
    font-size: 24px;
}

.project-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.project-placeholder {
    display: inline-flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-line);
    border-radius: 50%;
    color: var(--brass);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
}

.project-card-empty .project-meta {
    margin-top: 164px;
}

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

.testimonial-swiper {
    max-width: 920px;
    padding-bottom: 52px;
}

.testimonial-slide {
    text-align: center;
}

.testimonial-slide p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.35;
}

.testimonial-slide span {
    display: block;
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.swiper-pagination-bullet {
    background: var(--black);
}

.cta-section {
    padding-top: 0;
}

.cta-inner {
    border-top: 1px solid var(--line);
    padding-top: 92px;
    text-align: center;
}

.cta-inner h2 {
    max-width: 800px;
    margin: 0 auto 34px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 100px;
}

.page-hero::before {
    position: absolute;
    right: -12%;
    bottom: -40%;
    width: 58%;
    height: 80%;
    background: linear-gradient(120deg, rgba(185, 154, 95, 0.44), rgba(111, 127, 106, 0.18));
    content: "";
    transform: skewX(-18deg);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

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

.contact-info {
    display: grid;
    align-content: start;
    gap: 18px;
}

.contact-info a {
    font-family: "Jost", Inter, sans-serif;
    font-size: 32px;
}

.office-phone-list {
    display: grid;
    gap: 10px;
}

.office-phone {
    display: grid;
    gap: 4px;
}

.office-phone span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-info p {
    max-width: 420px;
    margin: 12px 0 0;
    color: #555;
    line-height: 1.8;
}

.office-list {
    display: grid;
    gap: 16px;
    margin-top: 12px;
}

.office-item {
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.office-item strong {
    display: block;
    color: var(--black);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.office-item p {
    margin-top: 8px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(20, 20, 20, 0.15);
    border-radius: var(--radius);
    background: var(--white);
    padding: 17px 18px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brass);
    box-shadow: 0 0 0 4px rgba(185, 154, 95, 0.12);
}

.form-message {
    border-radius: var(--radius);
    background: rgba(111, 127, 106, 0.14);
    padding: 14px 16px;
    color: #334034;
}

.map-wrap {
    margin-top: 72px;
}

.map-wrap iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: var(--radius);
}

.narrow {
    max-width: 760px;
}

.detail-hero {
    position: relative;
    display: flex;
    min-height: 72vh;
    align-items: flex-end;
    overflow: hidden;
    padding: 170px 0 90px;
}

.detail-hero::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.24));
    content: "";
}

.detail-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 112%;
    object-fit: cover;
    opacity: 0.82;
}

.detail-hero .container {
    position: relative;
    z-index: 1;
}

.detail-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: "Jost", Inter, sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}

.detail-content {
    background: var(--white);
}

.rich-text {
    color: #333;
    font-size: 16px;
    line-height: 1.85;
}

.rich-text h2,
.rich-text h3 {
    color: var(--black);
    font-family: "Jost", Inter, sans-serif;
    font-weight: 500;
    line-height: 1.16;
}

.rich-text img {
    width: 100%;
    border-radius: var(--radius);
}

.rich-text p {
    margin: 0 0 18px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
    gap: 48px;
    align-items: start;
}

.detail-main-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: var(--radius);
}

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 0 0 28px;
}

.detail-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
}

.detail-rich-text {
    max-width: 860px;
}

.detail-sidebar {
    position: sticky;
    top: 112px;
    border-left: 1px solid var(--line);
    padding-left: 28px;
}

.detail-sidebar-title {
    display: block;
    margin-bottom: 22px;
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-sidebar-list {
    display: grid;
    gap: 14px;
}

.detail-sidebar-item {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.detail-sidebar-item img {
    width: 84px;
    height: 84px;
    border-radius: var(--radius);
    object-fit: cover;
}

.detail-sidebar-item span {
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
}

.detail-sidebar-text-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
}

.detail-sidebar-text-item span {
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
}

.detail-sidebar-text-item i {
    color: var(--muted);
}

.detail-sidebar-empty {
    color: var(--muted);
    font-size: 15px;
}

.site-footer {
    padding: 74px 0 38px;
}

.footer-grid {
    grid-template-columns: 1.4fr 0.7fr 1fr 0.7fr;
    gap: 46px;
}

.footer-logo {
    width: 154px;
    margin-bottom: 28px;
}

.site-footer p,
.site-footer a {
    display: block;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.footer-title {
    display: block;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.social-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-row a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-line);
    border-radius: 50%;
    color: var(--white);
}

.social-row.dark a {
    border-color: var(--line);
    color: var(--black);
}
