:root {
    --bg-0: #22160f;
    --bg-1: #2e1d14;
    --bg-2: #3a271a;
    --text: #f5efe5;
    --muted: #d4c9ba;
    --accent: #b6d46a; /* pistache */
    --accent-soft: rgba(182, 212, 106, 0.24);
    --line: rgba(245, 239, 229, 0.22);
    --panel: rgba(37, 24, 17, 0.64);
    --panel-strong: rgba(47, 31, 22, 0.82);
    --radius: 16px;
    --cursor-size: 11px;
    --cursor-dot: 3px;
}

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

html,
body {
    min-height: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 54%, rgba(191, 145, 92, 0.22), transparent 38%),
        radial-gradient(circle at 85% 45%, rgba(63, 90, 69, 0.18), transparent 45%),
        linear-gradient(120deg, var(--bg-0) 0%, var(--bg-1) 46%, var(--bg-2) 100%);
    cursor: none;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.24s ease;
}

body.page-ready {
    opacity: 1;
}

body.is-transitioning {
    pointer-events: none;
}

body.lock-scroll {
    overflow: hidden;
}

#custom-cursor {
    position: fixed;
    width: var(--cursor-size);
    height: var(--cursor-size);
    border: 1.4px solid rgba(63, 90, 69, 0.95);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    background: rgba(63, 90, 69, 0.14);
    transition: transform 0.16s ease, background-color 0.16s ease;
}

#custom-cursor::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: var(--cursor-dot);
    height: var(--cursor-dot);
    border-radius: 50%;
    background: var(--accent);
}

#custom-cursor.cursor-hover {
    transform: translate(-50%, -50%) scale(1.42);
    background: rgba(63, 90, 69, 0.28);
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
    display: grid;
    place-items: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(160deg, rgba(34, 22, 15, 0.95), rgba(47, 31, 22, 0.94));
}

.page-transition-label {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f1efeb;
    font-size: clamp(0.78rem, 2vw, 1rem);
}

body.is-transitioning .page-transition {
    transform: translateY(0);
}

.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem clamp(1.4rem, 3vw, 3rem);
    background: linear-gradient(to bottom, rgba(28, 19, 13, 0.86), rgba(28, 19, 13, 0.28));
    backdrop-filter: blur(9px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.topbar.scrolled {
    border-bottom-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.brand-logo {
    height: clamp(38px, 4.2vw, 58px);
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.brand-fallback {
    display: none;
    font-family: "Anton", sans-serif;
    color: var(--text);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    letter-spacing: 0.02em;
}

.brand-fallback::after {
    content: ".";
    color: var(--accent);
}

.brand-fallback small {
    display: none;
}

body.no-logo .brand-logo {
    display: none;
}

body.no-logo .brand-fallback {
    display: inline;
}

.site-nav {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.site-nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.77rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.44rem 0.72rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    border-color: rgba(63, 90, 69, 0.6);
    color: var(--accent);
    background: rgba(63, 90, 69, 0.12);
}

.menu-toggle {
    display: none;
    border: none;
    background: none;
    width: 42px;
    height: 42px;
    position: relative;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--text);
}

.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 28px; }

main {
    padding-top: 110px;
}

.page-main {
    padding-top: 152px;
}

.section {
    width: min(1160px, 90%);
    margin: 0 auto;
    padding: clamp(5.2rem, 10vw, 8.2rem) 0;
}

.section-compact {
    padding-top: 2.8rem;
}

.hero {
    width: min(1340px, 95%);
    margin: 0 auto;
    min-height: calc(100vh - 96px);
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(2.2rem, 5vw, 4.2rem);
    align-items: center;
}

.hero-home {
    grid-template-columns: 1fr;
    width: min(1180px, 92%);
}

.hero-copy,
.hero-tech-card,
.glass-card,
.service-card,
.project-card,
.about-copy,
.about-hero,
.founder-card,
.contact-side,
.contact-form {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.in-view {
    opacity: 1;
    transform: none;
}

.kicker {
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h1,
.page-title {
    font-family: "Anton", sans-serif;
    font-size: clamp(3.2rem, 11vw, 11rem);
    letter-spacing: 0.02em;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--text);
}

.page-title {
    font-size: clamp(1.7rem, 4.4vw, 3.9rem);
    line-height: 1.05;
    max-width: 20ch;
    margin-bottom: 1.6rem;
}

.hero h1 span {
    display: block;
    margin-top: 0.08em;
    color: transparent;
    -webkit-text-stroke: 1.6px rgba(245, 239, 229, 0.92);
    text-shadow: none;
}

.lead {
    margin-top: 1.8rem;
    max-width: 45ch;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
    color: #d3c7b8;
    line-height: 1.78;
}

.btn-primary {
    margin-top: 1.6rem;
    display: inline-block;
    text-decoration: none;
    border: 1px solid rgba(63, 90, 69, 0.6);
    border-radius: 999px;
    background: rgba(63, 90, 69, 0.14);
    color: var(--text);
    padding: 0.8rem 1.3rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: rgba(63, 90, 69, 0.3);
    transform: translateY(-2px);
}

.hero-tech-card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 1.3rem;
    background: var(--panel);
    backdrop-filter: blur(8px);
}

.hero-tech-card .signal {
    width: 100%;
    height: 7px;
    border-radius: 99px;
    background: linear-gradient(90deg, rgba(63, 90, 69, 0.94), transparent);
    margin-bottom: 1rem;
    animation: scan 2.4s linear infinite;
}

.hero-tech-card p {
    color: #e3d8c8;
    margin: 0.45rem 0;
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: min(1300px, 95%);
    margin: 0 auto;
    color: var(--accent);
    font-size: 0.84rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    animation: pulse 1.4s ease-in-out infinite;
}

.grid-2,
.service-grid,
.portfolio-grid {
    display: grid;
    gap: clamp(1.8rem, 3.6vw, 2.8rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.glass-card,
.service-card,
.project-card,
.about-copy,
.contact-form {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: var(--panel-strong);
    backdrop-filter: blur(8px);
}

.glass-card,
.service-card,
.project-card {
    padding: clamp(1.8rem, 3.2vw, 2.8rem);
    display: grid;
    gap: 1.05rem;
}

.service-grid {
    margin-top: clamp(2.1rem, 4.2vw, 3.4rem);
}

.services-group + .services-group {
    margin-top: clamp(3.2rem, 6vw, 5rem);
}

.services-group-title {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.cta-center {
    display: grid;
    place-items: center;
    text-align: center;
}

.cta-center .contact-side {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
}

.cta-center .page-title {
    max-width: none;
}

.portfolio-grid {
    margin-top: clamp(1.9rem, 3.8vw, 3rem);
}

.glass-card h2,
.service-card h2,
.project-card h2,
.about-copy h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.36rem, 2.2vw, 2rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
}

.glass-card p,
.service-card p,
.project-card p,
.about-copy p,
.contact-side p {
    margin-top: 0;
    color: #d3c8ba;
    line-height: 1.74;
}

.about-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(1.4rem, 4vw, 2.8rem);
}

.about-copy,
.contact-form {
    padding: clamp(1.6rem, 3.4vw, 2.5rem);
}

.about-copy h2 + p {
    margin-bottom: 1.8rem;
}

.about-hero {
    width: min(980px, 92%);
}

.signature-tagline {
    margin-top: 0.2rem;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: clamp(0.92rem, 1.7vw, 1.15rem);
    color: rgba(245, 239, 229, 0.88);
    padding-left: 0.95rem;
    border-left: 2px solid rgba(63, 90, 69, 0.7);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.2rem, 4vw, 2.8rem);
    align-items: start;
    padding-top: clamp(2.2rem, 5vw, 3.4rem);
}

@media (min-width: 980px) {
    .about-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }
}

.founder-card {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: var(--panel-strong);
    backdrop-filter: blur(8px);
    padding: clamp(1.6rem, 3.4vw, 2.5rem);
}

.founder-card h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.36rem, 2.2vw, 2rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
}

.founder-card p {
    margin-top: 1rem;
    color: #d3c8ba;
    line-height: 1.74;
}

.filter-row {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0.42rem 0.75rem;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: rgba(63, 90, 69, 0.72);
    background: rgba(63, 90, 69, 0.18);
    color: #d9eadb;
}

.project-card.is-hidden {
    display: none;
}

.project-media {
    width: 100%;
    min-height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    background: rgba(28, 19, 13, 0.9);
    cursor: pointer;
}

.project-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-media img {
    transform: scale(1.03);
}

.contact-form {
    display: grid;
    gap: 1.2rem;
}

.form-success {
    border: 1px solid rgba(245, 239, 229, 0.18);
    border-radius: var(--radius);
    background: rgba(47, 31, 22, 0.5);
    padding: clamp(1.6rem, 3.2vw, 2.2rem);
}

.hubspot-form {
    border: 1px solid rgba(245, 239, 229, 0.28);
    border-radius: var(--radius);
    background: rgba(245, 239, 229, 0.96);
    padding: clamp(1.2rem, 2.6vw, 1.9rem);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.hubspot-form iframe {
    width: 100% !important;
    border: 0 !important;
    border-radius: 10px;
    background: #f5efe5;
}

.hubspot-kicker {
    color: rgba(34, 22, 15, 0.72) !important;
    margin-bottom: 0.9rem;
}

.contact-hero {
    width: min(980px, 92%);
    padding-top: clamp(4.2rem, 8vw, 6.4rem);
    padding-bottom: clamp(2.6rem, 6vw, 4.2rem);
    text-align: center;
    display: grid;
    justify-items: center;
}

.contact-title {
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.contact-meta {
    margin-top: clamp(1.4rem, 3vw, 2rem);
    display: grid;
    gap: 0.5rem;
    width: fit-content;
    justify-items: center;
}

.contact-meta-line {
    color: rgba(245, 239, 229, 0.86);
    font-size: 1.12rem;
    line-height: 1.5;
}

/* Luxe services */
.offer-section {
    gap: 1.2rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.offer-card {
    border: 1px solid rgba(245, 239, 229, 0.22);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(47, 31, 22, 0.82);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    display: grid;
    grid-template-rows: 180px auto;
}

.offer-image {
    background-size: cover;
    background-position: center;
    filter: saturate(0.95);
}

.offer-content {
    padding: 1rem 1rem 1.2rem;
    display: grid;
    gap: 0.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.offer-content h3 {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.04em;
    font-size: 1.1rem;
}

.offer-content ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.5;
}

.offer-content li + li {
    margin-top: 0.2rem;
}

.about-luxe {
    display: grid;
    gap: 1.6rem;
}

.about-cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.4rem;
    align-items: center;
}

.about-photo img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(245, 239, 229, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    object-fit: cover;
    min-height: 320px;
    max-height: 520px;
}

.about-text p {
    margin-bottom: 0.8rem;
    color: var(--muted);
    line-height: 1.7;
}

.pillars {
    align-items: start;
}

.pillar-list {
    list-style: disc;
    padding-left: 1.3rem;
    color: var(--muted);
    line-height: 1.7;
}

.pillar-list li + li {
    margin-top: 0.5rem;
}

.exclusivity {
    border: 1px solid rgba(245, 239, 229, 0.22);
    border-radius: var(--radius);
    padding: 1.2rem;
    background: rgba(47, 31, 22, 0.7);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.exclusivity p {
    color: var(--muted);
    line-height: 1.6;
}

.legal-footer {
    width: min(1160px, 92%);
    margin: 0 auto clamp(2rem, 5vw, 3rem);
    padding-top: 1.6rem;
    border-top: 1px solid rgba(245, 239, 229, 0.16);
    text-align: center;
    display: grid;
    gap: 0.6rem;
    justify-items: center;
}

.newsletter-title {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.5;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.6rem;
    width: min(460px, 92vw);
}

.newsletter-form input {
    border: 1px solid rgba(245, 239, 229, 0.28);
    border-radius: 12px;
    background: rgba(47, 31, 22, 0.7);
    color: var(--text);
    padding: 0.8rem 0.95rem;
    font: 600 0.96rem/1.4 "Manrope", sans-serif;
}

.newsletter-form button {
    border: 1px solid rgba(245, 239, 229, 0.35);
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #0f0b09;
    padding: 0.8rem 1.2rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.newsletter-form button:hover {
    filter: brightness(1.05);
}

.legal-sub,
.legal-contact {
    color: rgba(245, 239, 229, 0.76);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.78rem;
}

.legal-links a {
    color: rgba(245, 239, 229, 0.7);
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--text);
    text-decoration: underline;
}

.legal-copy {
    font-size: 0.8rem;
    color: rgba(245, 239, 229, 0.7);
    margin-top: 0.4rem;
}

/* Luxe services */
.offer-section {
    gap: 1.2rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 1.2rem;
}

.offer-card {
    border: 1px solid rgba(245, 239, 229, 0.22);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(47, 31, 22, 0.82);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    display: grid;
    grid-template-rows: 180px auto;
}

.offer-image {
    background-size: cover;
    background-position: center;
    filter: saturate(0.95);
}

.offer-content {
    padding: 1rem 1rem 1.2rem;
    display: grid;
    gap: 0.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.offer-content h3 {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.04em;
    font-size: 1.1rem;
}

.offer-content ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.5;
}

.offer-content li + li {
    margin-top: 0.2rem;
}

.about-luxe {
    display: grid;
    gap: 1.6rem;
}

.about-cols {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.4rem;
    align-items: center;
}

.about-photo img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid rgba(245, 239, 229, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    object-fit: cover;
    min-height: 280px;
}

.about-text p {
    margin-bottom: 0.8rem;
    color: var(--muted);
    line-height: 1.7;
}

.pillars {
    align-items: start;
}

.pillar-list {
    list-style: disc;
    padding-left: 1.3rem;
    color: var(--muted);
    line-height: 1.7;
}

.pillar-list li + li {
    margin-top: 0.5rem;
}

.exclusivity {
    border: 1px solid rgba(245, 239, 229, 0.22);
    border-radius: var(--radius);
    padding: 1.2rem;
    background: rgba(47, 31, 22, 0.7);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.exclusivity p {
    color: var(--muted);
    line-height: 1.6;
}

.btn-secondary.btn-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 0.7rem;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 90, 69, 0.62);
    background: rgba(63, 90, 69, 0.12);
    color: var(--text);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn-secondary.btn-compact:hover {
    transform: translateY(-1px);
    background: rgba(63, 90, 69, 0.18);
    border-color: rgba(63, 90, 69, 0.82);
    color: #d9eadb;
}

.contact-forms {
    padding-top: clamp(2.2rem, 5vw, 3.4rem);
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2.6vw, 1.6rem);
    align-items: start;
}

/* Ticker */
.ticker {
    width: 100%;
    overflow: hidden;
    border-block: 1px solid rgba(245, 239, 229, 0.14);
    background: rgba(28, 19, 13, 0.9);
}

.ticker-track {
    display: inline-flex;
    gap: 1.6rem;
    padding: 0.85rem 1.4rem;
    font-family: "Oswald", sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    animation: ticker-scroll 18s linear infinite;
    white-space: nowrap;
}

.ticker-track span {
    color: rgba(245, 239, 229, 0.76);
    margin-right: 0.4rem;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Who we serve */
.who-section {
    border-top: 1px solid rgba(245, 239, 229, 0.12);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
    margin-top: 1.2rem;
}

.who-card {
    background: rgba(47, 31, 22, 0.78);
    border: 1px solid rgba(245, 239, 229, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    padding: 1.1rem;
    display: grid;
    gap: 0.7rem;
}

.who-title {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.98rem;
}

.who-image {
    display: block;
    height: 180px;
    border-radius: 12px;
    border: 1px solid rgba(245, 239, 229, 0.12);
    overflow: hidden;
}

.who-image span {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease;
}

.who-image:hover span {
    transform: scale(1.03);
}

.who-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 800;
}

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

@media (min-width: 980px) {
    .forms-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.meetings-panel {
    border: 1px solid rgba(245, 239, 229, 0.28);
    border-radius: var(--radius);
    background: rgba(245, 239, 229, 0.96);
    padding: clamp(1.2rem, 2.6vw, 1.9rem);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.meetings-panel .kicker {
    color: rgba(34, 22, 15, 0.72);
}

.meetings-panel p {
    color: rgba(34, 22, 15, 0.78);
    line-height: 1.7;
    margin-top: 0.6rem;
    margin-bottom: 1rem;
}

.meetings-iframe-container iframe {
    width: 100% !important;
    min-height: 560px;
    border: 0 !important;
    border-radius: 10px;
    background: #f5efe5;
}

.contact-form label {
    display: grid;
    gap: 0.52rem;
    color: var(--text);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(36, 24, 17, 0.78);
    color: var(--text);
    padding: 0.84rem 0.9rem;
    font: 600 0.95rem/1.4 "Manrope", sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 1px solid rgba(63, 90, 69, 0.65);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7, 10, 20, 0.86);
    backdrop-filter: blur(5px);
    z-index: 200;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.6rem;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-figure {
    margin: 0;
    display: grid;
    gap: 0.6rem;
    justify-items: center;
}

.lightbox-figure img {
    max-width: min(88vw, 1100px);
    max-height: 74vh;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}

.lightbox-figure figcaption {
    color: #e9e5df;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lightbox-close,
.lightbox-nav {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.lightbox-close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 0.44rem 0.75rem;
}

.lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
}

@keyframes pulse {
    50% {
        opacity: 0.44;
        transform: translateY(4px);
    }
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0.2;
    }
}

@media (max-width: 980px) {
    .hero,
    .about-layout,
    .contact-layout,
    .grid-2,
    .service-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 2.8rem 0 1.8rem;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 6.8rem);
    }

    .project-media,
    .project-media img {
        min-height: 250px;
    }

    .page-main {
        padding-top: 132px;
    }

    .section {
        width: min(1160px, 92%);
        padding: clamp(4rem, 9vw, 6rem) 0;
    }

    .about-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    body {
        cursor: auto;
    }

    .menu-toggle {
        display: inline-block;
        z-index: 81;
    }

    .site-nav {
        position: fixed;
        inset: 74px 1rem auto 1rem;
        display: grid;
        gap: 0.5rem;
        padding: 0.8rem;
        background: rgba(8, 12, 25, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 12px;
        transform: translateY(-130%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.22s ease, opacity 0.22s ease;
    }

    .site-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .lightbox {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.8rem;
    }

    .lightbox-nav {
        width: 100%;
        height: 42px;
    }

    .lightbox-figure img {
        max-width: 96vw;
        max-height: 65vh;
    }

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

@media (prefers-reduced-motion: reduce) {
    body {
        opacity: 1 !important;
        transition: none !important;
    }

    .page-transition {
        display: none !important;
    }

    .hero-copy,
    .hero-tech-card,
    .glass-card,
    .service-card,
    .project-card,
    .about-copy,
    .contact-side,
    .contact-form {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
