:root {
    --ink: #071018;
    --ink-soft: #14202e;
    --steel: #1f4f63;
    --teal: #17807a;
    --teal-deep: #0f5f5a;
    --mist: #eef2f5;
    --paper: #f5f7f9;
    --line: rgba(7, 16, 24, 0.1);
    --muted: #5c6b79;
    --accent: #17807a;
    --accent-deep: #0f5f5a;
    --white: #ffffff;
    --max: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Outfit", sans-serif;
    --header-h: 4.75rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(900px 420px at 0% 0%, rgba(23, 128, 122, 0.08), transparent 55%),
        radial-gradient(700px 380px at 100% 8%, rgba(31, 79, 99, 0.1), transparent 50%),
        var(--paper);
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.site-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.container {
    width: min(100% - 2.5rem, var(--max));
    margin-inline: auto;
}

/* ========== Header / Nav ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
    background: rgba(245, 247, 249, 0.72);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(7, 16, 24, 0.06);
}

.header-inner {
    position: relative;
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: var(--header-h);
    gap: 1rem;
}

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

.brand-mark {
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 0.7rem;
    background: linear-gradient(145deg, var(--ink) 0%, var(--steel) 55%, var(--teal) 130%);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    font-size: 0.78rem;
    box-shadow: 0 8px 20px rgba(23, 128, 122, 0.25);
}

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

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

.brand-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-shell {
    display: none;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(7, 16, 24, 0.04);
    border: 1px solid rgba(7, 16, 24, 0.06);
}

.nav-links a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-links a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.8);
}

.nav-links a.is-active {
    color: var(--white);
    background: var(--ink);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
}

.nav-phone {
    display: none;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.25s var(--ease);
}

.nav-phone:hover {
    color: var(--ink);
}

.nav-cta {
    display: none;
    align-items: center;
    padding: 0.7rem 1.15rem;
    background: var(--teal);
    color: var(--white);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
    box-shadow: 0 8px 18px rgba(23, 128, 122, 0.28);
}

.nav-cta:hover {
    background: var(--teal-deep);
    transform: translateY(-1px);
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid var(--line);
    border-radius: 0.75rem;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.menu-btn:hover {
    border-color: rgba(7, 16, 24, 0.22);
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    display: block;
    width: 1.05rem;
    height: 1.5px;
    background: var(--ink);
    position: relative;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-btn span::before,
.menu-btn span::after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-btn span::before {
    top: -5px;
}

.menu-btn span::after {
    top: 5px;
}

.menu-btn.is-open span {
    background: transparent;
}

.menu-btn.is-open span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-btn.is-open span::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-nav {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--ease);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid transparent;
}

.mobile-nav.is-open {
    grid-template-rows: 1fr;
    border-bottom-color: var(--line);
}

.mobile-nav-inner {
    overflow: hidden;
    display: grid;
    gap: 0.15rem;
    padding-bottom: 0;
}

.mobile-nav.is-open .mobile-nav-inner {
    padding-bottom: 1.25rem;
}

.mobile-nav a {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    font-weight: 500;
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), color 0.25s var(--ease);
}

.mobile-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.is-open a:nth-child(1) { transition-delay: 0.04s; }
.mobile-nav.is-open a:nth-child(2) { transition-delay: 0.08s; }
.mobile-nav.is-open a:nth-child(3) { transition-delay: 0.12s; }
.mobile-nav.is-open a:nth-child(4) { transition-delay: 0.16s; }
.mobile-nav.is-open a:nth-child(5) { transition-delay: 0.2s; }
.mobile-nav.is-open a:nth-child(6) { transition-delay: 0.24s; }

.mobile-nav a.is-active {
    color: var(--teal);
}

.mobile-nav a:last-child {
    border-bottom: 0;
}

.mobile-cta {
    margin-top: 0.5rem !important;
    text-align: center;
    background: var(--ink);
    color: var(--white) !important;
    border-radius: 0.85rem;
    border-bottom: 0 !important;
    padding: 0.95rem !important;
}

@media (min-width: 980px) {
    .nav-shell {
        display: flex;
    }

    .nav-phone,
    .nav-cta {
        display: inline-flex;
    }

    .menu-btn,
    .mobile-nav {
        display: none;
    }
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.94rem;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(23, 128, 122, 0.28);
}

.btn-primary:hover {
    background: var(--teal-deep);
}

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

.btn-ink:hover {
    background: var(--ink-soft);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: var(--ink);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    min-height: min(92vh, 820px);
    display: grid;
    align-items: end;
    color: var(--white);
    overflow: hidden;
}

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

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: slowZoom 16s var(--ease) both;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(7, 16, 24, 0.9) 0%, rgba(7, 16, 24, 0.62) 42%, rgba(7, 16, 24, 0.28) 100%),
        linear-gradient(0deg, rgba(7, 16, 24, 0.55) 0%, transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 6.5rem 0 5rem;
    max-width: 42rem;
}

.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 500;
    font-style: italic;
    letter-spacing: -0.02em;
    margin: 0 0 0.85rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6.2vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 0 0 1.1rem;
    font-weight: 600;
}

.hero-lead {
    margin: 0 0 1.85rem;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.84);
    max-width: 34rem;
    font-weight: 300;
}

.hero-scroll {
    position: absolute;
    right: max(1.25rem, calc((100% - var(--max)) / 2));
    bottom: 1.75rem;
    z-index: 2;
    display: none;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-scroll::after {
    content: "";
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@media (min-width: 900px) {
    .hero-scroll {
        display: flex;
    }
}

.page-hero {
    padding: 4.75rem 0 3.25rem;
    background:
        linear-gradient(180deg, rgba(23, 128, 122, 0.06), transparent 70%),
        var(--mist);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.6vw, 3.7rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin: 0 0 0.8rem;
    font-weight: 600;
}

.page-hero p {
    margin: 0;
    max-width: 40rem;
    color: var(--muted);
    font-size: 1.05rem;
}

/* ========== Sections ========== */
.section {
    padding: 5.25rem 0;
}

.section-tight {
    padding: 3.5rem 0;
}

.section-head {
    margin-bottom: 2.25rem;
}

.section-ink {
    background:
        radial-gradient(700px 300px at 10% 0%, rgba(23, 128, 122, 0.22), transparent 60%),
        var(--ink);
    color: var(--white);
}

.section-mist {
    background: linear-gradient(180deg, #eef2f5 0%, #f3f6f8 100%);
}

.section-stats {
    background: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.05rem, 3.5vw, 2.9rem);
    letter-spacing: -0.03em;
    margin: 0 0 0.7rem;
    line-height: 1.12;
    font-weight: 600;
}

.section-lead {
    margin: 0;
    color: var(--muted);
    max-width: 38rem;
    font-size: 1.02rem;
}

.section-ink .section-lead {
    color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
}

.stack-lg > * + * {
    margin-top: 1.25rem;
}

.split {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .split-2 {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3.25rem;
    }

    .split-2.is-reversed > :first-child {
        order: 2;
    }

    .split-2.is-reversed > :last-child {
        order: 1;
    }
}

.media-frame {
    overflow: hidden;
    border-radius: 1.25rem;
    min-height: 18rem;
}

.media-frame-lift {
    box-shadow: 0 24px 50px rgba(7, 16, 24, 0.12);
}

.media-frame img {
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.media-frame:hover img {
    transform: scale(1.04);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.feature-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}

.feature-list .dot {
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.55rem;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(23, 128, 122, 0.14);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 700px) {
    .stat-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.stat {
    padding: 1.35rem 1.2rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #fff, #f7fafb);
    border: 1px solid var(--line);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ink);
}

.stat-label {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.service-block + .service-block {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--line);
}

.service-block h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2.8vw, 2.55rem);
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.process {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 800px) {
    .process {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.process-step {
    padding: 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
}

.process-step .num {
    font-family: var(--font-body);
    color: var(--teal);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-step h3 {
    margin: 0.65rem 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* Service tiles */
.service-tiles {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 760px) {
    .service-tiles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .service-tiles {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-tile {
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 1.15rem;
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(7, 16, 24, 0.1);
}

.service-tile-media {
    overflow: hidden;
}

.service-tile-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

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

.service-tile-body {
    padding: 1.15rem 1.2rem 1.3rem;
}

.service-tile h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
}

.service-tile p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.service-tile a {
    display: inline-flex;
    margin-top: 0.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal);
}

.service-tile a::after {
    content: " →";
    transition: transform 0.25s var(--ease);
    display: inline-block;
}

.service-tile:hover a::after {
    transform: translateX(3px);
}

/* Team / careers */
.team-grid,
.jobs-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 700px) {
    .team-grid,
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.person {
    display: grid;
    gap: 0.95rem;
}

.person-media {
    overflow: hidden;
    border-radius: 1rem;
}

.person img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.person:hover img {
    transform: scale(1.04);
}

.person h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
}

.person .role {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

.job {
    padding: 1.35rem 0;
    border-top: 1px solid var(--line);
}

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

.job h3 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.job p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.job-meta {
    margin-top: 0.65rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
}

.career-card {
    display: grid;
    gap: 1rem;
    align-items: start;
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.82);
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.career-card:hover {
    border-color: rgba(23, 128, 122, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(7, 16, 24, 0.08);
}

@media (min-width: 560px) {
    .career-card {
        grid-template-columns: 9.5rem 1fr;
        gap: 1.15rem;
    }
}

.career-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 0.85rem;
}

.career-card h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
}

.career-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.career-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.cta-band {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: space-between;
}

@media (min-width: 800px) {
    .cta-band {
        flex-direction: row;
        align-items: center;
    }
}

.cta-band h2,
.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 2.8vw, 2.5rem);
    margin: 0 0 0.45rem;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 3rem;
    }
}

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

@media (min-width: 700px) {
    .contact-form {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form .full {
        grid-column: 1 / -1;
    }
}

.field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 0.75rem;
    padding: 0.85rem 0.95rem;
    outline: none;
    color: var(--ink);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(23, 128, 122, 0.12);
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--ink-soft);
    border-bottom: 2px solid var(--ink-soft);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.6rem;
    cursor: pointer;
    background-image: none;
}

.faq {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq details {
    border-top: 1px solid var(--line);
    padding: 0.95rem 0;
}

.faq details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq details p {
    margin: 0.65rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-map-faq {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.75rem;
    align-items: stretch;
}

@media (min-width: 900px) {
    .contact-map-faq {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 3rem;
    }
}

.map-slot {
    position: relative;
    min-height: 18rem;
    height: 100%;
    border-radius: 0.95rem;
    overflow: hidden;
    background: var(--mist);
    border: 1px solid var(--line);
}

.map-slot iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ========== Footer ========== */
.site-footer {
    margin-top: auto;
    position: relative;
    background:
        radial-gradient(800px 280px at 80% 0%, rgba(23, 128, 122, 0.18), transparent 55%),
        #050b12;
    color: rgba(255, 255, 255, 0.74);
    padding: 0 0 1.75rem;
}

.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--teal), #3d7ea6 50%, transparent);
}

.footer-top {
    display: grid;
    gap: 1.75rem;
    padding: 3.25rem 0 2.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 860px) {
    .footer-top {
        grid-template-columns: 1.4fr 0.8fr;
        align-items: end;
    }
}

.footer-brand .brand-name,
.footer-brand .brand-tag {
    color: rgba(255, 255, 255, 0.92);
}

.footer-brand .brand-tag {
    color: rgba(255, 255, 255, 0.55);
}

.footer-lead {
    margin: 1.1rem 0 0;
    max-width: 32rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

.footer-cta-mini {
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-mini p {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    padding: 2.25rem 0;
}

@media (min-width: 800px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.site-footer h4 {
    margin: 0 0 0.95rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
}

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

.site-footer a {
    transition: color 0.25s var(--ease);
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.35rem 0 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
}

@media (min-width: 800px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

.footer-copy {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.55rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
}

.footer-dot {
    opacity: 0.45;
}

.footer-credit {
    color: #7fd4cf;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    text-decoration-color: rgba(127, 212, 207, 0.45);
    transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}

.footer-credit:hover {
    color: #ffffff;
    text-decoration-color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.15rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    font-size: 0.82rem;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-social a:hover {
    background: rgba(23, 128, 122, 0.28);
    border-color: rgba(127, 212, 207, 0.45);
    color: #ffffff;
    transform: translateY(-1px);
}

/* ========== Motion ========== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.hero-content > * {
    animation: rise 0.95s var(--ease) both;
}

.hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-content > *:nth-child(4) { animation-delay: 0.24s; }

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
    50% { opacity: 1; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal,
    .hero-content > *,
    .hero-media img,
    .service-tile,
    .career-card,
    .mobile-nav a {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
