:root {
    --bg: #081327;
    --bg-soft: #0f1f40;
    --surface: rgba(12, 27, 57, 0.82);
    --surface-strong: #11254b;
    --surface-light: #f5f8ff;
    --card: #ffffff;
    --text: #0d1831;
    --text-soft: #5b6a88;
    --white: #ffffff;
    --gold: #f1c54c;
    --gold-soft: #ffe7a0;
    --line: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 60px rgba(2, 10, 27, 0.22);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1160px, calc(100% - 2rem));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(241, 197, 76, 0.14), transparent 26%),
        radial-gradient(circle at 80% 0%, rgba(90, 134, 255, 0.12), transparent 28%),
        linear-gradient(180deg, #eef4ff 0%, #f8fbff 38%, #edf3ff 100%);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-shell {
    overflow: clip;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.eyebrow {
    margin: 0 0 1rem;
    color: #7b5b00;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading,
.section-copy,
.hero-copy {
    max-width: 640px;
}

.section-heading h2,
.section-copy h2,
.hero h1,
.process-copy h2,
.contact-copy h2 {
    margin: 0 0 1rem;
    font-family: "Sora", sans-serif;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.section-heading h2,
.section-copy h2,
.process-copy h2,
.contact-copy h2 {
    font-size: clamp(2rem, 3.5vw, 3.3rem);
}

.lead,
.section-heading p,
.section-copy p,
.process-copy p,
.contact-copy p,
.service-card p,
.gallery-copy p,
.feature-item p,
.site-footer p {
    color: var(--text-soft);
    line-height: 1.75;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
    backdrop-filter: blur(18px);
    background: rgba(238, 244, 255, 0.72);
    border-bottom: 1px solid rgba(12, 27, 57, 0.06);
}

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

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img,
.site-footer img {
    width: auto;
    height: 56px;
}

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

.site-nav a {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1c2d55;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(12, 27, 57, 0.12);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: var(--bg);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0.95rem 1.45rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #ffd55d);
    color: #131f3f;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(241, 197, 76, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(241, 197, 76, 0.42);
}

.button-secondary {
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(12, 27, 57, 0.12);
}

.button-small {
    min-height: 44px;
    padding: 0.65rem 1rem;
}

.hero {
    position: relative;
    padding-top: 4.5rem;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 3rem auto auto -8rem;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 197, 76, 0.26), transparent 68%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-meta div,
.hero-float,
.trust-card,
.service-card,
.gallery-card,
.contact-card,
.form-panel,
.process-panel,
.feature-item {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.hero-meta div {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.84);
}

.meta-label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.hero-main-card {
    position: absolute;
    inset: 0 0 5rem 2rem;
    margin: 0;
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(233, 240, 255, 0.94));
    box-shadow: 0 30px 60px rgba(8, 19, 39, 0.18);
}

.hero-main-card img,
.mosaic img,
.gallery-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-xl) - 10px);
}

.hero-float {
    position: absolute;
    max-width: 260px;
    padding: 1rem;
    background: rgba(8, 19, 39, 0.9);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-float img {
    border-radius: 16px;
    margin-bottom: 0.85rem;
}

.hero-float-top {
    top: 1rem;
    left: 0;
}

.hero-float-bottom {
    right: 0;
    bottom: 0;
}

.float-kicker {
    display: inline-block;
    margin-bottom: 0.45rem;
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.trust-strip {
    padding-bottom: 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-card {
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.9);
}

.trust-card strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--bg);
    font-family: "Sora", sans-serif;
    font-size: 2rem;
}

.trust-card span {
    color: var(--text-soft);
    line-height: 1.55;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 1.3rem;
    background: #ffffff;
}

.feature-item span {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--bg);
    font-weight: 800;
}

.mosaic {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    min-height: 580px;
}

.mosaic figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.mosaic-large {
    grid-row: 1 / span 2;
}

.mosaic-small {
    min-height: 280px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.service-card {
    padding: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96));
    border: 1px solid rgba(12, 27, 57, 0.06);
}

.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: rgba(241, 197, 76, 0.18);
    color: #8a6400;
    font-weight: 800;
}

.service-card h3,
.gallery-copy h3 {
    margin: 0 0 0.75rem;
    font-family: "Sora", sans-serif;
    color: var(--bg);
}

.process-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    color: var(--white);
    background:
        radial-gradient(circle at top right, rgba(241, 197, 76, 0.18), transparent 22%),
        linear-gradient(135deg, #09162f 0%, #152c59 100%);
}

.process-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.process-steps {
    display: grid;
    gap: 1rem;
}

.process-steps div {
    padding: 1.25rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
}

.process-steps span {
    display: inline-block;
    margin-bottom: 0.6rem;
    color: var(--gold-soft);
    font-weight: 800;
    letter-spacing: 0.12em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.gallery-card {
    overflow: hidden;
    background: #ffffff;
}

.gallery-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.gallery-trigger img {
    aspect-ratio: 4 / 3;
    border-radius: 0;
    transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-trigger img,
.gallery-card:focus-within .gallery-trigger img {
    transform: scale(1.04);
}

.gallery-copy {
    padding: 1.2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.contact-cards {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-card {
    padding: 1.2rem 1.3rem;
    background: #ffffff;
}

.contact-card span {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-soft);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-card strong {
    color: var(--bg);
    font-size: 1.1rem;
}

.form-panel {
    padding: 1.5rem;
    background: #ffffff;
}

.form-status {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    line-height: 1.6;
}

.form-status-success {
    background: #e8f9ee;
    color: #155c2d;
}

.form-status-error {
    background: #fff0f0;
    color: #8b1f1f;
}

.form-row {
    margin-bottom: 1rem;
}

.two-up {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--bg);
    font-size: 0.92rem;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(12, 27, 57, 0.12);
    border-radius: 14px;
    background: #fbfdff;
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(241, 197, 76, 0.48);
    border-color: rgba(241, 197, 76, 0.6);
}

textarea {
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.site-footer {
    padding: 2rem 0 3rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(12, 27, 57, 0.08);
}

.footer-links,
.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-soft);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 14, 29, 0.82);
    backdrop-filter: blur(6px);
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 2rem));
    padding: 1rem;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

.lightbox-dialog img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 22px;
    background: #edf3ff;
}

.lightbox-copy {
    padding: 1rem 0 0.25rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(8, 19, 39, 0.84);
    color: #ffffff;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .contact-grid,
    .process-panel,
    .services-grid,
    .gallery-grid,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual {
        min-height: 520px;
    }
}

@media (max-width: 860px) {
    .section {
        padding: 5rem 0;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.96);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-grid,
    .split-layout,
    .contact-grid,
    .process-panel,
    .trust-grid,
    .services-grid,
    .gallery-grid,
    .footer-inner,
    .hero-meta {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        padding-top: 1rem;
    }

    .hero-main-card {
        position: relative;
        inset: auto;
    }

    .hero-float {
        position: relative;
        max-width: none;
        margin-top: 1rem;
    }

    .mosaic {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mosaic-large {
        grid-row: auto;
        min-height: 420px;
    }

    .mosaic-small {
        min-height: 240px;
    }

    .two-up {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 3rem;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.35rem);
    }

    .section-heading h2,
    .section-copy h2,
    .process-copy h2,
    .contact-copy h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero-main-card,
    .hero-float,
    .process-panel,
    .form-panel,
    .gallery-card,
    .service-card,
    .trust-card {
        border-radius: 22px;
    }

    .hero-main-card {
        padding: 0.75rem;
    }
}
