:root {
    --primary: #0B3D7A;
    --primary-deep: #072C58;
    --primary-soft: #c8daf0;
    --accent: #E8F0F8;
    --accent-mist: #f5f8fc;
    --secondary: #C9A84C;
    --secondary-deep: #B8943A;
    --teal: #2B9B9B;
    --ink: #0B1F33;
    --ink-soft: #5A6B7D;
    --line: rgba(11, 31, 51, 0.08);
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.72);
    --shadow: 0 20px 50px rgba(11, 61, 122, 0.12);
    --shadow-soft: 0 8px 24px rgba(11, 61, 122, 0.08);
    --radius: 18px;
    --radius-sm: 12px;
    --radius-lg: 24px;
    --radius-btn: 999px;
    --header-h: 76px;
    --font-display: "Sora", sans-serif;
    --font-body: "Sora", sans-serif;
    --font-serif: "Source Serif 4", Georgia, serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --float-gap: 0.65rem;
    --page-gutter: 1.375rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 10px);
    overflow-x: hidden;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        linear-gradient(180deg, #f4f7fb 0%, #ffffff 28%, #eef2f7 100%);
    line-height: 1.65;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open,
body.is-loading {
    overflow: hidden;
}

/* Page loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background: #ffffff;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-mark {
    position: relative;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
}

.page-loader-logo {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    max-width: 58px;
    margin: 0;
    object-fit: contain;
    display: block;
}

.page-loader-spinner {
    position: absolute;
    inset: 0;
    animation: page-loader-spin 0.85s linear infinite;
    will-change: transform;
}

.page-loader-spinner i {
    --i: 0;
    --o: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7.22px;
    height: 23px;
    margin: -11.5px 0 0 -3.61px;
    border-radius: 999px;
    background: var(--primary);
    opacity: var(--o);
    transform: rotate(calc(var(--i) * 45deg)) translateY(-48px);
}

.page-loader-spinner i:nth-child(1) { --i: 0; --o: 1; }
.page-loader-spinner i:nth-child(2) { --i: 1; --o: 0.875; }
.page-loader-spinner i:nth-child(3) { --i: 2; --o: 0.75; }
.page-loader-spinner i:nth-child(4) { --i: 3; --o: 0.625; }
.page-loader-spinner i:nth-child(5) { --i: 4; --o: 0.5; }
.page-loader-spinner i:nth-child(6) { --i: 5; --o: 0.375; }
.page-loader-spinner i:nth-child(7) { --i: 6; --o: 0.25; }
.page-loader-spinner i:nth-child(8) { --i: 7; --o: 0.125; }

@keyframes page-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

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

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

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--ink);
    color: var(--white);
    padding: 0.75rem 1rem;
    z-index: 1000;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: min(1200px, calc(100% - (var(--page-gutter) * 2)));
    max-width: 100%;
    margin-inline: auto;
}

svg,
video,
iframe {
    max-width: 100%;
}

main,
section,
.panel,
.newsletter-panel,
.profile-panel,
.form-grid,
.newsletter-form,
.contact-layout,
.split,
.profile-grid,
.footer-grid {
    min-width: 0;
}

.newsletter-form,
.form-grid {
    position: relative;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-h);
    backdrop-filter: blur(22px) saturate(1.25);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 40px rgba(6, 24, 33, 0.06);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: transparent;
    transition: transform 0.35s var(--ease);
}

.brand:hover .brand-logo {
    transform: scale(1.04);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-deep);
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border: 0;
}

.site-nav a {
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--ink-soft);
    padding: 0.7rem 0.95rem;
    border-radius: var(--radius-btn);
    border-bottom: 2px solid transparent;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-nav a:not(.btn):hover,
.site-nav a.is-active {
    color: var(--ink);
    background: var(--accent);
    box-shadow: none;
    border-bottom-color: transparent;
}

.site-nav a:not(.btn)::after {
    display: none;
}

.site-nav .nav-cta {
    margin-left: 0.65rem;
    min-height: 40px;
    padding: 0.55rem 1.1rem;
    font-size: 0.74rem;
    border-bottom: 0;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle {
    border-radius: var(--radius-sm);
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.85rem 1.55rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.78rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
}

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

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(11, 61, 122, 0.22);
}

.btn-primary:hover {
    background: var(--primary-deep);
    box-shadow: 0 14px 28px rgba(11, 61, 122, 0.28);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(201, 168, 76, 0.28);
}

.btn-secondary:hover {
    background: var(--secondary-deep);
    box-shadow: 0 14px 28px rgba(201, 168, 76, 0.34);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary-deep);
    background: transparent;
}

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

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

/* Signal bar */
.signal-bar {
    overflow: hidden;
    background: var(--primary);
    color: rgba(255, 255, 255, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    padding: 0.85rem 0;
    animation: signal-scroll 28s linear infinite;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.signal-track span {
    white-space: nowrap;
}

.signal-track span::before {
    content: "";
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.85rem;
    background: var(--secondary);
    border-radius: 999px;
    vertical-align: 0.05em;
}

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

/* Hero */
.hero {
    position: relative;
    min-height: min(86svh, calc(100svh - var(--header-h)));
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: hero-drift 20s var(--ease) infinite alternate;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 28, 56, 0.25) 0%, rgba(7, 28, 56, 0.5) 42%, rgba(7, 28, 56, 0.92) 100%),
        linear-gradient(115deg, rgba(11, 61, 122, 0.45), transparent 55%),
        radial-gradient(600px 300px at 80% 20%, rgba(201, 168, 76, 0.16), transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - (var(--page-gutter) * 2)));
    margin: 0 auto;
    padding: clamp(2.2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.25rem);
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.92;
    margin: 0 0 0.75rem;
    max-width: 11ch;
    text-wrap: balance;
}

.hero-brand span {
    color: var(--secondary);
}

.hero h1,
.hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 500;
    margin: 0 0 0.55rem;
    max-width: 28ch;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: 0.01em;
}

.hero h1:not(.hero-tagline) {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 500;
}

.hero-content > p:not(.hero-brand) {
    margin: 0 0 1.2rem;
    max-width: 40ch;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal.is-visible:nth-child(2) { transition-delay: 0.06s; }
.reveal.is-visible:nth-child(3) { transition-delay: 0.12s; }
.reveal.is-visible:nth-child(4) { transition-delay: 0.18s; }

/* Sections */
.section {
    padding: clamp(2.4rem, 4.5vw, 3.75rem) 0;
}

.section-tight {
    padding-top: 0.35rem;
}

.section-head {
    max-width: 40rem;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.85rem);
}

.activity-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.activity-nav-link {
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.35;
    background: rgba(255, 255, 255, 0.7);
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

.activity-nav-link span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 700;
}

.activity-nav-link:hover {
    color: var(--ink);
    border-color: var(--primary);
    background: var(--white);
    transform: translateY(-2px);
}

.section-head h2,
.service-block h2,
.panel h2,
.newsletter-copy h2 {
    font-family: var(--font-display);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 0 0.5rem;
    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
}

.section-head p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-deep);
}

/* Stats */
.stats-shell {
    margin-top: -2.2rem;
    position: relative;
    z-index: 3;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    padding: 0.65rem;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.stat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1rem;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.55rem);
    color: var(--primary-deep);
    letter-spacing: -0.045em;
    line-height: 1;
    margin-bottom: 0.45rem;
}

.stat span {
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
}

/* Services strip */
.services-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.65rem;
}

.service-tile {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    color: var(--white);
    isolation: isolate;
    border-radius: var(--radius);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-tile:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    z-index: -2;
}

.service-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 18, 28, 0.05), rgba(4, 18, 28, 0.88));
    z-index: -1;
}

.service-tile:hover img {
    transform: scale(1.1);
}

.service-tile > span {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.15rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.service-tile small {
    display: block;
    margin-top: 0.3rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.82rem;
    opacity: 0.85;
}

/* Split / about */
.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.25rem, 3vw, 2.25rem);
    align-items: center;
}

.split-media {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-media::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 1;
}

.checklist {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.checklist li {
    padding: 0.65rem 0.85rem 0.65rem 2.1rem;
    position: relative;
    color: var(--ink);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.checklist li::before {
    content: "";
    position: absolute;
    left: 0.95rem;
    top: 50%;
    width: 0.55rem;
    height: 0.55rem;
    transform: translateY(-50%);
    background: var(--secondary);
    border-radius: 999px;
}

/* Profiles */
.profile-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 0.85rem;
}

.profile-panel {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.15rem, 2.2vw, 1.6rem);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.profile-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), #66d4f5);
}

.profile-panel-solar::before {
    background: linear-gradient(180deg, var(--secondary), #ffe666);
}

.profile-panel h2 {
    font-family: var(--font-display);
    letter-spacing: -0.035em;
    margin: 0 0 0.45rem;
    font-size: clamp(1.25rem, 2.1vw, 1.6rem);
}

.profile-panel > p {
    margin: 0 0 0.85rem;
    color: var(--ink-soft);
}

.profile-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.profile-list li {
    position: relative;
    padding: 0.6rem 0.8rem 0.6rem 1.9rem;
    background: var(--accent-mist);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--ink);
    transition: transform 0.25s var(--ease), border-color 0.25s;
}

.profile-list li:hover {
    transform: translateX(3px);
    border-color: rgba(11, 61, 122, 0.35);
}

.profile-panel-solar .profile-list li {
    background: #fffcef;
}

.profile-list li::before {
    content: "";
    position: absolute;
    left: 0.85rem;
    top: 50%;
    width: 0.4rem;
    height: 0.4rem;
    transform: translateY(-50%);
    background: var(--primary);
    border-radius: 999px;
}

.profile-panel-solar .profile-list li::before {
    background: var(--secondary-deep);
}

/* CTA */
.cta-band {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    padding: clamp(2.25rem, 4vw, 3.25rem) 0;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url("../images/hero/about.jpg") center/cover;
    transform: scale(1.04);
}

.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(120deg, rgba(7, 44, 88, 0.94), rgba(11, 61, 122, 0.9) 55%, rgba(8, 28, 48, 0.92));
}

.cta-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-family: var(--font-display);
    margin: 0 0 0.55rem;
    letter-spacing: -0.04em;
    max-width: 16ch;
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.cta-band p {
    margin: 0;
    max-width: 40ch;
    color: rgba(255, 255, 255, 0.88);
}

/* Services detail */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 1.35rem;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
}

.service-block:nth-child(even) {
    direction: rtl;
}

.service-block:nth-child(even) > * {
    direction: ltr;
}

.service-block img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s var(--ease);
}

.service-block:hover img {
    transform: scale(1.015);
}

.service-block p {
    color: var(--ink-soft);
    margin: 0 0 0.9rem;
}

/* Credentials */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.doc-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 0.85rem;
    text-align: center;
    min-height: 140px;
    display: grid;
    place-items: center;
    gap: 0.55rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.doc-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.doc-item img {
    max-height: 84px;
    width: auto;
    margin-inline: auto;
    object-fit: contain;
}

.doc-item span {
    font-weight: 700;
    font-size: 0.92rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

/* Newsletter + contact */
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0.85rem;
    align-items: start;
}

.panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1.1rem, 2vw, 1.5rem);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

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

.newsletter-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    align-items: center;
    padding: clamp(1.2rem, 2.5vw, 1.75rem);
    background:
        linear-gradient(135deg, rgba(11, 61, 122, 0.08), rgba(201, 168, 76, 0.1)),
        rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.newsletter-copy p {
    margin: 0;
    color: var(--ink-soft);
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.7rem;
}

.newsletter-form input[type="email"],
.form-grid input,
.form-grid textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
    background: #f8fcfe;
    padding: 0.9rem 1.05rem;
    border-radius: var(--radius-sm);
    color: var(--ink);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.newsletter-form input[type="email"] {
    min-height: 50px;
}

.newsletter-form input[type="email"]:focus,
.form-grid input:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(11, 61, 122, 0.15);
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.contact-list strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-deep);
    margin-bottom: 0.25rem;
}

.contact-list li {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-list a {
    font-weight: 700;
    transition: color 0.25s;
}

.contact-list a:hover {
    color: var(--primary-deep);
}

.form-grid {
    display: grid;
    gap: 0.75rem;
}

.form-grid label {
    display: grid;
    gap: 0.4rem;
    font-weight: 600;
}

.security-check .security-question {
    font-weight: 500;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.security-check input {
    max-width: 180px;
}

.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

.form-feedback {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.form-feedback.success {
    background: #e8faf0;
    color: #0f6b3c;
}

.form-feedback.error {
    background: #ffecec;
    color: #9b1c1c;
}

.map-embed {
    margin-top: 0.85rem;
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-embed iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

/* Footer */
.site-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: 0.5rem;
    background:
        linear-gradient(180deg, rgba(11, 61, 122, 0.14), transparent 42%),
        #0B1F33;
    color: rgba(255, 255, 255, 0.82);
    padding: 3rem 0 1.4rem;
}

.footer-glow {
    position: absolute;
    inset: auto auto -30% -10%;
    width: min(520px, 80vw);
    height: min(520px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 61, 122, 0.35), transparent 68%);
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
    animation: footer-glow-drift 10s var(--ease) infinite alternate;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1.15fr;
    gap: 1.6rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-brand .brand-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: transform 0.45s var(--ease);
}

.footer-brand:hover .brand-logo {
    transform: scale(1.05) rotate(-2deg);
}

.footer-brand h2,
.site-footer h3 {
    font-family: var(--font-display);
    color: var(--white);
    margin: 0 0 0.85rem;
    letter-spacing: -0.02em;
}

.footer-brand h2 {
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
}

.footer-brand p {
    margin: 0;
    max-width: 34ch;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.45rem;
}

.site-footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform-origin: left center;
    animation: footer-line-in 0.7s var(--ease) both;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-list a {
    position: relative;
    display: inline-block;
    transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s var(--ease);
}

.footer-list a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-list a:hover::after {
    transform: scaleX(1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.35rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.site-footer.is-inview .footer-reveal {
    opacity: 1;
    transform: none;
}

.site-footer.is-inview .footer-grid .footer-reveal:nth-child(1) { transition-delay: 0.05s; }
.site-footer.is-inview .footer-grid .footer-reveal:nth-child(2) { transition-delay: 0.14s; }
.site-footer.is-inview .footer-grid .footer-reveal:nth-child(3) { transition-delay: 0.23s; }
.site-footer.is-inview .footer-bottom.footer-reveal { transition-delay: 0.32s; }

@keyframes footer-glow-drift {
    from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
    to { transform: translate3d(18%, -12%, 0) scale(1.12); opacity: 1; }
}

@keyframes footer-line-in {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
}

/* Float actions */
.float-actions {
    position: fixed;
    right: 1rem;
    bottom: 3.55rem;
    z-index: 70;
    display: grid;
    gap: var(--float-gap);
    max-width: calc(100vw - 1.5rem);
    pointer-events: none;
}

.float-actions > * {
    pointer-events: auto;
}

.float-btn {
    position: relative;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.float-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.float-tip {
    position: absolute;
    right: calc(100% + 0.65rem);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    white-space: nowrap;
    background: rgba(6, 24, 33, 0.92);
    color: var(--white);
    font-size: 0.74rem;
    font-weight: 600;
    padding: 0.42rem 0.7rem;
    border-radius: var(--radius-btn);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.float-btn:hover .float-tip,
.float-btn:focus-visible .float-tip {
    opacity: 1;
    transform: translateY(-50%);
}

.call-float {
    background: var(--primary);
}

.call-float img {
    width: 24px;
    height: 24px;
}

.whatsapp-float {
    background: #25d366;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.support-float {
    background: #111827;
}

.support-float img {
    width: 34px;
    height: 34px;
}

.top-float {
    background: linear-gradient(145deg, #1b3444, #0c2433);
}

.top-float img {
    width: 22px;
    height: 22px;
}

.top-float[hidden] {
    display: none !important;
}

.crafted-by {
    position: fixed;
    bottom: 12px;
    right: 12px;
    z-index: 2147483647;
    background: rgba(17, 17, 17, 0.85);
    color: #fff;
    font: 500 12px/1 system-ui, sans-serif;
    padding: 7px 12px;
    border-radius: var(--radius-btn);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.crafted-by:hover {
    opacity: 1;
    transform: translateY(-1px);
}

@keyframes hero-drift {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to { transform: scale(1.14) translate3d(-1.4%, -1.2%, 0); }
}

/* Responsive â€” tablet landscape / small desktop */
@media (max-width: 1100px) {
    .site-nav {
        gap: 0.1rem;
        padding: 0.25rem;
    }

    .site-nav a {
        padding: 0.48rem 0.55rem;
        font-size: 0.78rem;
    }

    .site-nav .nav-cta {
        padding: 0.45rem 0.85rem;
        font-size: 0.78rem;
    }

    .services-strip {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* Responsive â€” tablet */
@media (max-width: 980px) {
    :root {
        --header-h: 76px;
        --page-gutter: 1.25rem;
    }

    .container,
    .hero-content {
        width: min(1200px, calc(100% - (var(--page-gutter) * 2)));
    }

    .split,
    .service-block,
    .service-block:nth-child(even),
    .contact-layout,
    .footer-grid,
    .profile-grid,
    .newsletter-panel,
    .form-row {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .stat {
        padding: 0.85rem 0.7rem;
    }

    .stat strong {
        font-size: clamp(1.45rem, 3.5vw, 1.9rem);
    }

    .stat span {
        font-size: 0.78rem;
    }

    .stats-shell {
        margin-top: -1.5rem;
    }

    .services-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-tile {
        min-height: 200px;
    }

    .split-media {
        min-height: 260px;
        max-height: 320px;
    }

    .service-block img {
        height: 220px;
    }

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

    .cta-band .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band .hero-actions {
        width: 100%;
    }
}

/* Responsive â€” mobile menu */
@media (max-width: 960px) {
    .activity-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
        z-index: 60;
    }

    .site-nav {
        position: fixed;
        inset: calc(var(--header-h) + 0.35rem) 0.75rem auto;
        max-height: calc(100svh - var(--header-h) - 1.25rem);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        flex-direction: column;
        align-items: stretch;
        padding: 0.65rem;
        gap: 0.2rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
        box-shadow: var(--shadow);
        -webkit-overflow-scrolling: touch;
    }

    .site-nav.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        padding: 0.85rem 0.95rem;
        font-size: 0.98rem;
        border-radius: var(--radius-sm);
    }

    .site-nav a:not(.btn):hover,
    .site-nav a.is-active {
        background: var(--accent);
        box-shadow: none;
    }

    .site-nav .nav-cta {
        margin: 0.4rem 0 0;
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-sub {
        font-size: 0.66rem;
    }
}

/* Responsive â€” phones */
@media (max-width: 640px) {
    :root {
        --header-h: 70px;
        --float-gap: 0.5rem;
        --page-gutter: 1.25rem;
        --radius: 16px;
        --radius-sm: 12px;
        --radius-lg: 20px;
    }

    .activity-nav {
        grid-template-columns: 1fr;
    }

    .container,
    .hero-content {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
        padding-inline: max(var(--page-gutter), env(safe-area-inset-left)) max(var(--page-gutter), env(safe-area-inset-right));
        box-sizing: border-box;
    }

    .site-header {
        padding-inline: 0;
    }

    .header-inner {
        gap: 0.65rem;
        min-width: 0;
        align-items: center;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
        gap: 0.65rem;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
        flex-shrink: 0;
    }

    .brand-text {
        min-width: 0;
        max-width: none;
    }

    .brand-name {
        font-size: 0.98rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-sub {
        font-size: 0.64rem;
        letter-spacing: 0.14em;
    }

    .site-nav {
        inset: calc(var(--header-h) + 0.4rem) max(var(--page-gutter), env(safe-area-inset-left)) auto max(var(--page-gutter), env(safe-area-inset-right));
        border-radius: var(--radius);
    }

    .form-row,
    .newsletter-form,
    .contact-layout,
    .profile-grid,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .hero {
        min-height: min(70svh, 540px);
    }

    .hero-content {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
        text-align: left;
    }

    .hero-brand {
        font-size: clamp(2.15rem, 10.5vw, 3rem);
        max-width: 100%;
        margin-bottom: 0.85rem;
    }

    .hero h1 {
        font-size: 1.05rem;
        max-width: 100%;
        line-height: 1.35;
    }

    .hero-content > p:not(.hero-brand) {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 1.15rem;
        line-height: 1.55;
    }

    .hero-actions,
    .cta-band .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .hero-actions .btn,
    .cta-band .hero-actions .btn,
    .newsletter-form .btn,
    .form-grid .btn,
    .service-block .btn {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    .section {
        padding: 2.1rem 0;
    }

    .section-tight {
        padding-top: 0.25rem;
    }

    .section-head {
        margin-bottom: 1.15rem;
        max-width: none;
    }

    .section-head h2,
    .service-block h2,
    .panel h2,
    .newsletter-copy h2,
    .cta-band h2,
    .profile-panel h2 {
        font-size: clamp(1.4rem, 6.4vw, 1.8rem);
        line-height: 1.15;
    }

    .section-head p,
    .newsletter-copy p,
    .cta-band p,
    .service-block p,
    .profile-panel > p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .stats-shell {
        margin-top: 0.9rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        padding: 0.55rem;
        border-radius: var(--radius);
    }

    .stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.85rem;
        padding: 0.95rem 1rem;
        border-radius: var(--radius-sm);
    }

    .stat strong {
        margin: 0;
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .stat span {
        text-align: right;
        font-size: 0.84rem;
        line-height: 1.35;
    }

    .services-strip {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .service-tile {
        min-height: 168px;
        border-radius: var(--radius);
    }

    .service-tile > span {
        left: 0.7rem;
        right: 0.7rem;
        bottom: 0.7rem;
        font-size: 0.98rem;
    }

    .service-tile small {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .split {
        gap: 1rem;
    }

    .split-media {
        min-height: 210px;
        max-height: 240px;
        border-radius: var(--radius);
    }

    .checklist,
    .profile-list {
        gap: 0.5rem;
    }

    .checklist li,
    .profile-list li {
        font-size: 0.92rem;
        padding: 0.7rem 0.8rem 0.7rem 1.9rem;
        border-radius: var(--radius-sm);
    }

    .docs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    .doc-item {
        min-height: 118px;
        padding: 0.9rem 0.7rem;
        border-radius: var(--radius-sm);
    }

    .doc-item img {
        max-height: 60px;
    }

    .doc-item span {
        font-size: 0.88rem;
    }

    .service-block {
        padding: 1.2rem 0;
        gap: 0.95rem;
        border-top-color: rgba(6, 24, 33, 0.08);
    }

    .service-block img {
        height: 190px;
        border-radius: var(--radius);
    }

    .panel,
    .newsletter-panel,
    .profile-panel {
        border-radius: var(--radius);
        padding: 1.15rem;
    }

    .newsletter-panel {
        gap: 1rem;
    }

    .security-check input {
        max-width: none;
        width: 100%;
    }

    .map-embed {
        margin-top: 1rem;
        border-radius: var(--radius);
    }

    .map-embed,
    .map-embed iframe {
        min-height: 220px;
        height: 220px;
    }

    .cta-band {
        padding: 2.1rem 0;
    }

    .cta-band .container {
        gap: 1.1rem;
        align-items: stretch;
    }

    .cta-band h2 {
        max-width: none;
    }

    .cta-band p {
        max-width: none;
    }

    .site-footer {
        padding: 2.25rem 0 5.75rem;
    }

    .site-footer .container {
        width: 100%;
        max-width: 100%;
    }

    .footer-brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .footer-brand .brand-logo {
        width: 58px;
        height: 58px;
    }

    .footer-brand h2 {
        font-size: 1.1rem;
    }

    .footer-col h3 {
        margin-bottom: 0.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        padding-top: 1.15rem;
    }

    .footer-list a:hover {
        transform: none;
    }

    .float-actions {
        right: max(0.85rem, env(safe-area-inset-right));
        bottom: calc(3.2rem + env(safe-area-inset-bottom));
    }

    .float-btn {
        width: 46px;
        height: 46px;
    }

    .float-btn img {
        width: 24px;
        height: 24px;
    }

    .support-float img {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float img {
        width: 26px;
        height: 26px;
    }

    .float-tip {
        display: none;
    }

    .crafted-by {
        left: auto;
        right: max(var(--page-gutter), env(safe-area-inset-right));
        bottom: max(10px, env(safe-area-inset-bottom));
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* Responsive â€” small phones */
@media (max-width: 400px) {
    :root {
        --page-gutter: 1.1rem;
    }

    .services-strip,
    .docs-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .brand-text {
        display: none;
    }

    .hero-brand {
        font-size: 2.05rem;
    }

    .service-tile {
        min-height: 190px;
    }

    .stat {
        padding: 0.9rem 0.95rem;
    }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .service-tile:hover,
    .stat:hover,
    .doc-item:hover,
    .float-btn:hover {
        transform: none;
    }

    .service-tile:hover img,
    .service-block:hover img {
        transform: none;
    }
}

/* Modern soft structure */
.about-section {
    padding-top: clamp(2.8rem, 5vw, 4.5rem);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.about-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.15rem;
    padding: 1.1rem 1.35rem;
    background: var(--primary);
    color: var(--white);
    min-width: 140px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.about-badge strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.04em;
    line-height: 1;
}

.about-badge span {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-copy {
    padding: clamp(1.6rem, 3vw, 2.75rem);
    display: grid;
    align-content: center;
}

.about-copy p {
    color: var(--ink-soft);
    margin: 0 0 1.25rem;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.about-points > div {
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--accent-mist);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}

.section-work {
    padding-bottom: 0;
}

.section-work .section-head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.work-tile {
    position: relative;
    min-height: min(50vh, 480px);
    overflow: hidden;
    color: var(--white);
    background: var(--primary-deep);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: none;
    transition: color 0.35s var(--ease);
}

.work-tile:nth-child(2n) {
    border-right: 0;
}

.work-tile:nth-child(n + 3) {
    border-bottom: 0;
}

.work-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.7s var(--ease);
}

.work-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 28, 56, 0.2) 0%, rgba(7, 28, 56, 0.55) 45%, rgba(7, 28, 56, 0.88) 100%);
    transition: background 0.35s var(--ease);
}

.work-tile-body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    gap: 0.5rem;
}

.work-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--secondary);
}

.work-tile h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    max-width: 22ch;
}

.work-tile p {
    margin: 0;
    max-width: 38ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.55;
}

.work-tile:hover img {
    transform: scale(1.08);
}

.work-tile:hover::after {
    background:
        linear-gradient(180deg, rgba(7, 28, 56, 0.1) 0%, rgba(11, 61, 122, 0.72) 55%, rgba(7, 28, 56, 0.92) 100%);
}

.work-details {
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.detail-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: var(--shadow-soft);
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-meta,
.detail-body {
    padding: clamp(1.25rem, 2.5vw, 2rem);
}

.detail-meta {
    border-right: 1px solid var(--line);
    background: var(--accent-mist);
}

.detail-meta h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.detail-body p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

.detail-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.detail-list li {
    padding: 0.8rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--accent-mist);
    font-weight: 500;
    font-size: 0.95rem;
}

.detail-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.detail-list li::before {
    content: "";
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    margin-right: 0.7rem;
    background: var(--secondary);
    border-radius: 999px;
    vertical-align: 0.1em;
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.eyebrow-light {
    color: var(--secondary);
}

.contact-section {
    padding: 0;
}

.contact-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    min-height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    width: min(1200px, calc(100% - (var(--page-gutter) * 2)));
    margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.contact-aside {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.86);
    padding: clamp(1.75rem, 3.5vw, 3rem);
}

.contact-aside h2 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: -0.04em;
    color: var(--white);
}

.contact-aside > p {
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 34ch;
}

.contact-list-dark strong {
    color: var(--secondary);
}

.contact-list-dark a {
    color: var(--white);
}

.contact-list-dark a:hover {
    color: var(--secondary);
}

.contact-main {
    display: grid;
    grid-template-rows: 1.35fr auto;
    background: var(--white);
}

.contact-block,
.newsletter-block {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-block {
    border-bottom: 1px solid var(--line);
}

.contact-block h3,
.newsletter-block h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.newsletter-block p {
    margin: 0 0 1rem;
    color: var(--ink-soft);
}

.contact-section .map-embed {
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    width: min(1200px, calc(100% - (var(--page-gutter) * 2)));
    overflow: hidden;
}

.contact-section .map-embed iframe {
    height: 320px;
}

@media (max-width: 960px) {
    .about-layout,
    .work-grid,
    .detail-row,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .about-media {
        min-height: 280px;
    }

    .work-tile {
        min-height: 320px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .work-tile:last-child {
        border-bottom: 0;
    }

    .detail-meta {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 640px) {
    .about-points {
        grid-template-columns: 1fr;
    }

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

    .work-tile {
        min-height: 280px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .work-tile:last-child {
        border-bottom: 0;
    }

    .contact-shell,
    .contact-section .map-embed {
        width: min(100% - (var(--page-gutter) * 2), 1200px);
        margin-inline: auto;
        border-radius: var(--radius);
    }

    .signal-track {
        gap: 1.75rem;
        font-size: 0.66rem;
    }
}

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

    .reveal,
    .btn,
    .service-tile,
    .service-tile img,
    .hero-media img,
    .float-btn,
    .crafted-by,
    .stat,
    .doc-item,
    .page-loader-spinner,
    .footer-glow,
    .site-footer h3::after,
    .signal-track {
        animation: none !important;
    }

    .page-loader,
    .footer-reveal,
    .footer-list a,
    .footer-brand .brand-logo {
        transition: none !important;
    }

    .reveal,
    .footer-reveal {
        opacity: 1;
        transform: none;
    }
}
