:root {
    --bg: #f3f7f6;
    --surface: #ffffff;
    --surface-soft: rgba(255, 255, 255, 0.78);
    --surface-dark: #0a2437;
    --surface-dark-2: #0f3950;
    --text: #000000;
    --text-soft: #000000;
    --line: rgba(15, 36, 51, 0.1);
    --primary: #0a80aa;
    --primary-deep: #0a4d79;
    --accent: #2ec8a8;
    --brand-ocean-900: #082f5c;
    --brand-ocean-800: #0b4777;
    --brand-aqua-500: #0ea8d7;
    --brand-teal-500: #1597a6;
    --brand-foam: #ebfbff;
    --sand: #ece2cd;
    --shadow-lg: 0 28px 60px rgba(9, 31, 46, 0.16);
    --shadow-md: 0 18px 36px rgba(9, 31, 46, 0.1);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100vw - 3.5rem));
    --font-head: "Bahnschrift", "Aptos Display", "Trebuchet MS", sans-serif;
    --font-body: "Segoe UI", "Aptos", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(46, 200, 168, 0.12), transparent 22%),
        linear-gradient(180deg, #f8fbfb 0%, var(--bg) 50%, #f6f3ea 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.has-lightbox-open {
    overflow: hidden;
}

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

img.is-lightbox-ready {
    cursor: zoom-in;
}

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

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

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

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--surface-dark);
    color: #fff;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

.topbar {
    background: linear-gradient(90deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
}

.topbar__inner,
.topbar__links,
.site-header__inner,
.hero__actions,
.footer-cta__inner,
.footer-cta__actions,
.footer-meta,
.footer-meta__links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__actions {
    flex-wrap: wrap;
}

.topbar__inner,
.site-header__inner,
.footer-meta {
    justify-content: space-between;
}

.topbar__inner {
    padding: 0.7rem 0;
}

.topbar__announcement {
    margin: 0;
    max-width: 34rem;
}

.topbar__links {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topbar a:hover,
.footer-links a:hover,
.footer-meta a:hover,
.text-link:hover {
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(249, 252, 252, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    border-color: rgba(15, 36, 51, 0.08);
    box-shadow: 0 16px 32px rgba(10, 32, 46, 0.08);
    background: rgba(249, 252, 252, 0.96);
}

.site-header__inner {
    padding: 1rem 0;
}

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

.brand img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 24px rgba(8, 38, 62, 0.08);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: var(--font-head);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.brand small {
    max-width: 20rem;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.site-nav,
.site-nav ul,
.site-nav__actions,
.hero__chips {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: var(--text-soft);
    font-weight: 600;
}

.site-nav a.button {
    color: #fff;
}

.site-nav a.button--ghost {
    color: var(--primary-deep);
}

.site-nav a.button:hover {
    color: #fff;
}

.site-nav a.button--ghost:hover {
    color: var(--primary-deep);
}

.site-nav a.is-active,
.site-nav a:hover {
    color: var(--primary-deep);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    padding: 0.5rem;
    background: rgba(10, 128, 170, 0.08);
    border: 1px solid rgba(10, 77, 121, 0.12);
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(10, 32, 46, 0.08);
    cursor: pointer;
}

.nav-toggle__icon {
    width: 1.4rem;
    height: 1.4rem;
    color: var(--surface-dark);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 32px rgba(10, 128, 170, 0.22);
    cursor: pointer;
}

.button:hover {
    transform: translateY(-1px);
}

.button--ghost {
    background: transparent;
    border-color: rgba(10, 77, 121, 0.18);
    color: var(--primary-deep);
    box-shadow: none;
}

.button--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
}

.button--glass {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.button--small {
    min-height: 40px;
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
}

.crumb-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary-deep);
    font-weight: 700;
}

.section,
.page-hero {
    padding: 4.6rem 0;
}

.page-hero.detail-hero {
    padding: 3rem 0 2rem;
}

.section--tint {
    background: linear-gradient(180deg, rgba(10, 128, 170, 0.06), rgba(46, 200, 168, 0.08));
}

.section--sand {
    background: linear-gradient(180deg, rgba(236, 226, 205, 0.78), rgba(255, 255, 255, 0.82));
}

.section--dark {
    background:
        radial-gradient(circle at top left, rgba(67, 215, 222, 0.18), transparent 28%),
        linear-gradient(180deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
    color: #fff;
}

.section-shell {
    display: grid;
    gap: 1.6rem;
}

.section-heading {
    width: 100%;
    max-width: none;
}

.section-heading,
.page-hero__content,
.page-hero__snapshot,
.page-hero__card,
.about-split__content,
.about-split__content--panel,
.compact-card,
.compact-card__body,
.feature-card__body,
.supply-card__body,
.project-card figcaption,
.updates-showcase__panel,
.updates-showcase__panel-copy,
.updates-showcase__link,
.updates-showcase__link-copy,
.contact-panel,
.contact-sidebar,
.detail-article,
.detail-sidebar,
.detail-panel,
.detail-panel__head,
.brand span {
    min-width: 0;
}

.section-kicker {
    margin: 0 0 0.85rem;
    color: var(--primary-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker--light,
.section--dark .section-kicker,
.compact-card--glass .section-kicker {
    color: #97f2e8;
}

.section-heading h2,
.page-hero h1,
.hero__content h1,
.about-split__content h2,
.footer-cta h2 {
    margin: 0;
    font-family: var(--font-head);
    line-height: 1.04;
}

.section-heading h2,
.page-hero h1,
.about-split__content h2,
.footer-cta h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.page-hero {
    background:
        radial-gradient(circle at top right, rgba(14, 168, 215, 0.28), transparent 22%),
        radial-gradient(circle at bottom left, rgba(21, 151, 166, 0.2), transparent 28%),
        linear-gradient(122deg, var(--brand-ocean-900) 0%, #0a406d 34%, var(--brand-ocean-800) 62%, #0f8fb2 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: -1;
}

.page-hero::before {
    top: -8rem;
    right: -6rem;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(118, 241, 255, 0.22) 0%, rgba(118, 241, 255, 0) 72%);
}

.page-hero::after {
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(206, 247, 255, 0.58), rgba(255, 255, 255, 0));
}

.page-hero__inner {
    max-width: none;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 2.35rem;
    align-items: center;
}

.page-hero__content {
    display: grid;
    gap: 1.35rem;
    align-content: center;
    max-width: 42rem;
}

.page-hero__lead {
    margin: 0;
    max-width: 38rem;
    color: rgba(235, 251, 255, 0.92);
    font-size: 1.14rem;
    line-height: 1.55;
}

.page-hero__snapshot {
    display: grid;
    align-items: start;
}

.page-hero__snapshot--card-only {
    align-self: stretch;
}

.page-hero__media {
    margin: 0;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(214, 248, 255, 0.88);
    box-shadow: 0 28px 60px rgba(6, 31, 57, 0.34);
    background: rgba(255, 255, 255, 0.12);
    position: relative;
}

.page-hero__media::before,
.page-hero__media::after {
    content: "";
    position: absolute;
    z-index: 2;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(0.2px);
}

.page-hero__media::before {
    top: 1.1rem;
    right: 1.1rem;
    width: 4.35rem;
    height: 4.35rem;
    background: linear-gradient(135deg, rgba(20, 117, 194, 0.92), rgba(88, 235, 255, 0.4));
    opacity: 0.92;
}

.page-hero__media::after {
    left: -0.85rem;
    bottom: 1.1rem;
    width: 3.1rem;
    height: 3.1rem;
    background: linear-gradient(135deg, rgba(79, 243, 227, 0.72), rgba(255, 255, 255, 0.24));
    opacity: 0.78;
}

.page-hero__media img {
    width: 100%;
    min-height: 20rem;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3.05;
}

.page-hero__card {
    display: grid;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    border-radius: 24px;
    border: 1px solid rgba(214, 248, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.07)),
        radial-gradient(circle at top right, rgba(116, 242, 255, 0.18), transparent 46%);
    box-shadow: 0 24px 48px rgba(6, 31, 57, 0.28);
    color: #fff;
    backdrop-filter: blur(14px);
}

.page-hero__card h2 {
    margin: 0;
    font-family: var(--font-head);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.08;
    color: #fff;
}

.page-hero__card p {
    margin: 0;
    color: rgba(235, 251, 255, 0.84);
}

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

.page-hero__stat {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(214, 248, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.page-hero__stat strong {
    font-family: var(--font-head);
    font-size: 1.1rem;
    line-height: 1;
    color: #fff;
}

.page-hero__stat span {
    color: rgba(220, 246, 255, 0.74);
    font-size: 0.86rem;
    line-height: 1.3;
}

.page-hero__list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-hero__list li {
    position: relative;
    padding-left: 1.25rem;
    color: rgba(235, 251, 255, 0.84);
    font-weight: 600;
    line-height: 1.4;
}

.page-hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #cfffff, #1cc8df);
    box-shadow: 0 0 0 5px rgba(185, 242, 255, 0.1);
}

.page-hero .section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 0.35rem;
    border: 1px solid rgba(193, 243, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    color: #fff;
    letter-spacing: 0.12em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-hero h1,
.page-hero .crumb-link,
.page-hero .hero__actions a {
    color: #fff;
}

.page-hero .crumb-link {
    margin-bottom: 0.1rem;
    color: rgba(218, 247, 255, 0.88);
}

.page-hero .hero__actions .button {
    background: linear-gradient(135deg, var(--brand-aqua-500) 0%, var(--brand-teal-500) 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(4, 49, 91, 0.26);
}

.page-hero .hero__actions .button:hover {
    color: #fff;
}

.page-hero .hero__actions .button--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(214, 248, 255, 0.32);
    box-shadow: none;
}

.page-hero .hero__actions .button--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.section-heading p,
.about-split__lead,
.compact-card p,
.feature-card p,
.project-card span,
.supply-card p,
.testimonial-card span,
.testimonial-card p,
.contact-panel p,
.info-card p,
.footer-grid p,
.footer-meta p {
    color: var(--text-soft);
}
.section--dark .section-heading p,
.section--dark .compact-card p,
.section--dark .testimonial-card p,
.section--dark .footer-grid p,
.section--dark .footer-meta p {
    color: rgba(255, 255, 255, 0.76);
}

.hero {
    position: relative;
    overflow: clip;
    min-height: 46rem;
    color: #fff;
}

.hero__slides,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__slides {
    z-index: 0;
    overflow: hidden;
}

.hero__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero__slide {
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    filter: saturate(1.04);
}

.hero__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 28, 43, 0.76) 0%, rgba(8, 28, 43, 0.44) 42%, rgba(8, 28, 43, 0.28) 100%),
        radial-gradient(circle at bottom right, rgba(46, 200, 168, 0.26), transparent 26%);
}

.hero__shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    align-items: center;
    gap: 2rem;
    min-height: 46rem;
    padding: 8rem 0 6rem;
}

.hero__content {
    max-width: 34rem;
}

.hero__content h1 {
    font-size: clamp(3.1rem, 6vw, 5.7rem);
    max-width: 10ch;
}

.hero__lead {
    max-width: 24rem;
    margin: 1rem 0 1.7rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.04rem;
}

.hero__chips {
    flex-wrap: wrap;
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
}

.hero__chips li {
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
}

.hero__visual {
    position: relative;
    min-height: 32rem;
}

.hero-aquarium {
    position: absolute;
    right: 0;
    top: 0;
    width: min(100%, 28rem);
    height: 31rem;
    border-radius: 34% 34% 28% 28% / 20% 20% 28% 28%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0.14) 100%),
        rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 22px 44px rgba(6, 23, 38, 0.18);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transform: translate3d(calc(var(--pointer-x, 0) * 10px), calc(var(--pointer-y, 0) * 10px), 0);
    transition: transform 0.35s ease-out;
}

.hero-aquarium__rim,
.hero-aquarium__water,
.hero-aquarium__glow {
    position: absolute;
    inset: 0;
}

.hero-aquarium__rim {
    border-radius: inherit;
    box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.hero-aquarium__water {
    top: 30%;
    height: 70%;
    border-radius: 38% 38% 28% 28% / 14% 14% 30% 30%;
    background:
        linear-gradient(180deg, rgba(67, 215, 222, 0.3) 0%, rgba(9, 111, 154, 0.6) 100%);
}

.hero-aquarium__glow {
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 26%);
}

.hero-aquarium__fish {
    position: absolute;
    left: 4%;
    bottom: 8%;
    width: 92%;
    filter: drop-shadow(0 34px 34px rgba(7, 43, 69, 0.18));
}

.hero-aquarium__wave {
    fill: none;
    stroke: rgba(255, 255, 255, 0.26);
    stroke-linecap: round;
}

.hero-aquarium__wave--back {
    stroke-width: 16;
}

.hero-aquarium__wave--front {
    stroke-width: 10;
}

.hero-aquarium__body {
    fill: url(#heroFishGradient);
    animation: fish-swim 7.2s ease-in-out infinite;
    transform-origin: center;
}

.hero-aquarium__tail,
.hero-aquarium__fin {
    fill: rgba(8, 68, 118, 0.9);
    animation: fish-fin 1.5s ease-in-out infinite alternate;
    transform-origin: center;
}

.hero-aquarium__eye {
    fill: #fff;
}

.hero-aquarium__bubble {
    fill: rgba(255, 255, 255, 0.72);
    animation: fish-bubble 4.6s ease-in-out infinite;
}

.hero-aquarium__bubble--delay {
    animation-delay: 1.2s;
}

.hero-aquarium__bubble--slow {
    animation-duration: 5.5s;
}

.hero__mini {
    position: absolute;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.hero__mini strong,
.capability-card strong,
.partner-card strong {
    display: block;
}

.hero__mini span {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero__mini p {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.hero__mini--top {
    left: 0;
    top: 2rem;
    width: min(14rem, 58%);
}

.hero__mini--bottom {
    right: 1rem;
    bottom: 0.5rem;
}

.hero__controls {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0.65rem;
    align-items: center;
    padding-bottom: 2.2rem;
}

.hero__dot,
.rotator__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
}

.hero__dot.is-active,
.rotator__dot.is-active {
    background: #fff;
}

.capability-strip {
    margin-top: -2.6rem;
    position: relative;
    z-index: 3;
}

.capability-grid,
.compact-grid,
.feature-grid,
.project-grid,
.supply-grid,
.team-grid,
.testimonial-row,
.partner-row {
    display: grid;
    gap: 1.25rem;
}

.capability-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-card,
.compact-card,
.feature-card,
.project-card,
.supply-card,
.team-card,
.testimonial-card,
.partner-card,
.info-card,
.contact-panel,
.contact-sidebar .info-card,
.faq-item {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.compact-card,
.feature-card,
.supply-card,
.team-card,
.testimonial-card,
.partner-card {
    height: 100%;
}

.capability-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
}

.capability-card span,
.feature-card__index,
.partner-card__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(10, 128, 170, 0.1);
    color: var(--primary-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.capability-card strong {
    margin-top: 0.75rem;
    font-size: 1.02rem;
    line-height: 1.35;
}

.capability-card__icon,
.compact-card__icon,
.feature-card__icon,
.testimonial-card__icon,
.info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 128, 170, 0.14), rgba(46, 200, 168, 0.2));
    color: var(--primary-deep);
}

.capability-card__icon-svg,
.compact-card__icon-svg,
.feature-card__icon-svg,
.testimonial-card__icon-svg,
.info-card__icon-svg {
    width: 1.35rem;
    height: 1.35rem;
}

.capability-card__copy {
    display: grid;
}

.capability-card__copy strong {
    margin-top: 0.45rem;
}

.about-split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
    align-items: center;
}

.about-split--home {
    align-items: stretch;
}

.about-split__media {
    display: grid;
    gap: 1rem;
}

.about-split__media--single {
    height: 100%;
}

.about-split__media img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.about-split--home .about-split__media--single img {
    height: 100%;
    min-height: 33rem;
    object-fit: cover;
}

.about-split__content {
    display: grid;
    gap: 1.3rem;
}

.about-split__content--panel {
    align-content: center;
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-md);
}

.about-split__lead {
    margin: 0;
    font-size: 1.03rem;
}

.about-profile {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.35rem;
    align-items: start;
}

.about-profile__visual {
    position: relative;
    display: grid;
    padding: 0 1rem 1.25rem 0;
}

.about-profile__photo {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.about-profile__photo img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.about-profile__photo--primary img {
    aspect-ratio: 4 / 4.35;
}

.about-profile__photo--secondary {
    width: min(72%, 25rem);
    margin-top: -5.6rem;
    margin-left: auto;
    border: 8px solid rgba(249, 252, 252, 0.96);
    position: relative;
    z-index: 2;
}

.about-profile__photo--secondary img {
    aspect-ratio: 4 / 2.95;
}

.about-profile__note {
    position: absolute;
    left: 1.1rem;
    bottom: 0;
    z-index: 3;
    width: min(18rem, calc(100% - 3rem));
    padding: 1rem 1.1rem 1.15rem;
    border-radius: 22px;
    border: 1px solid rgba(10, 77, 121, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(12, 46, 73, 0.12);
}

.about-profile__note strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.05rem;
    line-height: 1.25;
}

.about-profile__content {
    display: grid;
    gap: 1.2rem;
    align-content: start;
    padding: 0.85rem 0 0.25rem;
}

.about-profile__story,
.about-profile__callout {
    display: grid;
    gap: 0.85rem;
}

.about-profile__story p,
.about-profile__callout p {
    margin: 0;
}

.about-profile__intro {
    font-size: 1.08rem;
}

.about-profile__callout {
    padding: 1.15rem 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(10, 77, 121, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(226, 244, 248, 0.88)),
        radial-gradient(circle at top right, rgba(46, 200, 168, 0.18), transparent 52%);
    box-shadow: 0 16px 34px rgba(12, 46, 73, 0.08);
}

.about-profile__callout h3 {
    margin: 0;
    font-family: var(--font-head);
    line-height: 1.16;
}

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

.about-profile__lane {
    display: grid;
    gap: 0.7rem;
    justify-items: center;
    text-align: center;
    align-content: start;
    padding: 1.1rem 1rem;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-md);
}

.about-profile__lane-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 128, 170, 0.14), rgba(46, 200, 168, 0.2));
    color: var(--primary-deep);
}

.about-profile__lane h3,
.about-profile__lane p {
    margin: 0;
}

.about-profile__lane h3 {
    font-family: var(--font-head);
    font-size: 1.02rem;
    line-height: 1.18;
}

.about-profile__lane p {
    font-size: 0.95rem;
}

.compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-grid--wide {
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.compact-grid--insights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.updates-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, 0.95fr);
    gap: 1.25rem;
    align-items: stretch;
}

.updates-showcase--solo {
    grid-template-columns: 1fr;
}

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

.updates-showcase__cards .compact-card--news {
    height: 100%;
}

.updates-showcase__cards .compact-card__body {
    min-height: 100%;
    align-content: start;
}

.updates-showcase__cards .button {
    margin-top: auto;
}

.updates-showcase__panel {
    display: grid;
    gap: 1.15rem;
    align-content: start;
    padding: 1.45rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(10, 77, 121, 0.16);
    background:
        radial-gradient(circle at top right, rgba(94, 230, 248, 0.18), transparent 46%),
        linear-gradient(155deg, rgba(8, 47, 92, 0.98), rgba(11, 71, 119, 0.96) 58%, rgba(15, 143, 178, 0.92));
    color: #fff;
    box-shadow: 0 22px 42px rgba(8, 36, 68, 0.18);
}

.updates-showcase__panel-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.updates-showcase__panel .compact-card__icon {
    margin: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.updates-showcase__panel-copy {
    display: grid;
    gap: 0.45rem;
}

.updates-showcase__panel-copy .section-kicker {
    margin-bottom: 0;
}

.updates-showcase__panel-copy h3 {
    margin: 0;
    font-family: var(--font-head);
    line-height: 1.12;
    color: #fff;
}

.updates-showcase__link-list {
    display: grid;
    gap: 0.85rem;
}

.updates-showcase__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    border: 1px solid rgba(214, 248, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.updates-showcase__link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(214, 248, 255, 0.32);
}

.updates-showcase__link-copy {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.updates-showcase__link-copy small {
    color: rgba(214, 248, 255, 0.8);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.updates-showcase__link-copy strong {
    color: #fff;
    font-family: var(--font-head);
    font-size: 1rem;
    line-height: 1.22;
    text-shadow: 0 0 0 rgba(164, 241, 255, 0);
    animation: announcement-glow 3.8s ease-in-out infinite alternate;
}

.updates-showcase__link-icon {
    width: 1.05rem;
    height: 1.05rem;
    color: rgba(214, 248, 255, 0.92);
    flex-shrink: 0;
}

.updates-showcase__panel-copy h3 {
    text-shadow: 0 0 0 rgba(164, 241, 255, 0);
    animation: announcement-glow 3.8s ease-in-out infinite alternate;
}

.updates-showcase__link:nth-child(2n) .updates-showcase__link-copy strong,
.updates-showcase__link:nth-child(2n) .updates-showcase__link-icon,
.updates-showcase__link:nth-child(2n) .updates-showcase__link-copy small {
    animation-delay: 0.45s;
}

.updates-showcase__link:nth-child(3n) .updates-showcase__link-copy strong,
.updates-showcase__link:nth-child(3n) .updates-showcase__link-icon,
.updates-showcase__link:nth-child(3n) .updates-showcase__link-copy small {
    animation-delay: 0.9s;
}

.updates-showcase__link-copy small,
.updates-showcase__link-icon {
    animation: announcement-glow-soft 3.8s ease-in-out infinite alternate;
}

.updates-showcase__footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.1rem;
}

@keyframes announcement-glow {
    0% {
        text-shadow: 0 0 0 rgba(164, 241, 255, 0);
    }

    100% {
        text-shadow:
            0 0 14px rgba(164, 241, 255, 0.28),
            0 0 28px rgba(78, 214, 244, 0.18);
    }
}

@keyframes announcement-glow-soft {
    0% {
        filter: drop-shadow(0 0 0 rgba(164, 241, 255, 0));
    }

    100% {
        filter: drop-shadow(0 0 10px rgba(164, 241, 255, 0.2));
    }
}

.compact-card {
    padding: 1.45rem;
}

.compact-card__body {
    display: grid;
    gap: 0.9rem;
}

.compact-card h2,
.compact-card h3,
.feature-card h2,
.feature-card h3,
.supply-card h2,
.supply-card h3,
.project-card strong,
.team-card h3,
.testimonial-card strong {
    margin: 0 0 0.55rem;
    font-family: var(--font-head);
    line-height: 1.16;
}

.compact-card--action {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.compact-card--news {
    overflow: hidden;
    padding: 0;
    gap: 0;
}

.compact-card--news .compact-card__body {
    padding: 1.15rem 1.25rem 1.3rem;
}

.compact-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.compact-card--icon .compact-card__icon {
    margin-bottom: 0.45rem;
}

.compact-card--title-only {
    display: grid;
    gap: 1rem;
    justify-items: start;
    align-content: start;
    text-align: left;
    padding: 1.5rem 1.35rem;
}

.compact-card--title-only .compact-card__icon {
    margin: 0;
}

.compact-card--title-only h2,
.compact-card--title-only h3 {
    margin: 0;
    max-width: none;
}

.compact-card--title-only .button {
    margin-top: 0.1rem;
    justify-self: start;
}

.compact-card--glass,
.section--dark .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    box-shadow: none;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid--service-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.supply-card,
.team-card {
    overflow: hidden;
}

.feature-card img,
.supply-card img,
.team-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.feature-card__body,
.supply-card__body,
.team-card div {
    padding: 1.35rem;
}

.feature-card__body {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.feature-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gallery-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0 0 0.35rem;
}

.gallery-intro__copy {
    max-width: 42rem;
}

.gallery-intro__copy h2 {
    margin: 0;
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.04;
}

.gallery-intro__copy p:last-child {
    margin-bottom: 0;
}

.gallery-intro__badge {
    display: grid;
    gap: 0.15rem;
    min-width: 9rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    border: 1px solid rgba(10, 77, 121, 0.12);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.gallery-intro__badge strong {
    font-family: var(--font-head);
    font-size: 2rem;
    line-height: 1;
}

.gallery-intro__badge span {
    color: var(--text-soft);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

.gallery-wall {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 124px;
    gap: 1rem;
}

.gallery-tile {
    position: relative;
    grid-column: span 1;
    grid-row: span 2;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(10, 77, 121, 0.08);
    box-shadow: var(--shadow-md);
}

.gallery-tile--feature {
    grid-column: span 2;
    grid-row: span 3;
}

.gallery-tile--tall {
    grid-row: span 3;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-within img {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.gallery-tile__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    gap: 0.32rem;
    padding: 1rem 1rem 1.05rem;
    background: linear-gradient(180deg, rgba(3, 21, 36, 0) 0%, rgba(3, 21, 36, 0.82) 76%, rgba(3, 21, 36, 0.94) 100%);
    color: #fff;
    pointer-events: none;
}

.gallery-tile__label {
    display: inline-flex;
    width: fit-content;
    padding: 0.34rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gallery-tile__overlay strong {
    font-family: var(--font-head);
    font-size: 1.15rem;
    line-height: 1.08;
}

.gallery-tile__overlay small {
    color: rgba(235, 251, 255, 0.86);
    font-size: 0.88rem;
    line-height: 1.35;
}

.supply-card__body {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.feature-card__meta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.feature-card__meta h3 {
    margin: 0;
}

.feature-card__body p {
    margin: 0;
    font-size: 1rem;
}

.service-disclosure {
    display: grid;
    gap: 0.85rem;
}

.service-disclosure summary {
    list-style: none;
}

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

.service-disclosure__panel {
    display: grid;
    gap: 1rem;
    padding-top: 0.25rem;
}

.project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-grid--home .project-card,
.project-grid--expanded .project-card {
    overflow: hidden;
}

.project-card {
    margin: 0;
}

.project-card img {
    width: 100%;
    aspect-ratio: 4 / 3.35;
    object-fit: cover;
}

.project-card figcaption {
    display: grid;
    gap: 0.7rem;
    padding: 1.15rem 1.25rem 1.3rem;
}

.project-grid--expanded .project-card:nth-child(2n) img {
    aspect-ratio: 4 / 4.4;
}

.project-grid--expanded .project-card:nth-child(3n) img {
    aspect-ratio: 4 / 2.9;
}

.supply-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.supply-card > div:not(.supply-card__body) {
    padding: 1.2rem;
}

.rotator {
    display: grid;
    gap: 1rem;
}

.rotator__viewport {
    position: relative;
    min-height: 1px;
}

.rotator__slide {
    display: none;
}

.rotator__slide.is-active {
    display: block;
    animation: slide-fade 0.5s ease;
}

.rotator__dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.marquee__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: marquee-scroll var(--marquee-duration, 24s) linear infinite;
}

.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
    animation-play-state: paused;
}

.marquee__item {
    flex: 0 0 auto;
}

.testimonial-card {
    width: clamp(18rem, 29vw, 23rem);
    padding: 1.5rem;
}

.testimonial-card__quote {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
}

.testimonial-card__icon {
    margin-bottom: 1rem;
    color: #97f2e8;
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card footer {
    display: grid;
    gap: 0.2rem;
    margin-top: 1rem;
}

.testimonial-card span {
    color: rgba(255, 255, 255, 0.7);
}

.partner-card {
    display: grid;
    gap: 1rem;
    align-content: center;
    width: clamp(10rem, 16vw, 12rem);
    min-height: 10.5rem;
    padding: 1.35rem;
    text-align: center;
}

.partner-card__logo {
    display: grid;
    place-items: center;
    width: 100%;
    height: 5rem;
}

.partner-card img {
    width: auto;
    max-width: 100%;
    height: 4.3rem;
    object-fit: contain;
}

.partner-card__mark {
    justify-self: center;
    background: linear-gradient(135deg, rgba(10, 128, 170, 0.14), rgba(46, 200, 168, 0.18));
    font-size: 0.72rem;
}

.partner-card--link {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-card--link:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 77, 121, 0.18);
}

.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2rem;
}

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

.info-card,
.contact-panel {
    padding: 1.45rem;
}

.info-card__icon {
    margin-bottom: 0.85rem;
}

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

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(15, 36, 51, 0.12);
    border-radius: 16px;
    background: #fff;
    color: var(--text);
}

.check-list,
.footer-links,
.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list {
    display: grid;
    gap: 0.8rem;
}

.check-list--compact {
    gap: 0.55rem;
}

.check-list li {
    position: relative;
    padding-left: 2.4rem;
    color: var(--text-soft);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0.9rem;
    top: 0.7rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.section--dark .check-list li {
    color: rgba(255, 255, 255, 0.78);
}

.alert {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    font-weight: 700;
}

.alert--success {
    background: rgba(46, 200, 168, 0.16);
    color: #0a6b55;
}

.alert--error {
    background: rgba(196, 80, 80, 0.12);
    color: #981b1b;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    gap: 1.5rem;
    align-items: start;
}

.detail-article,
.detail-sidebar {
    display: grid;
    gap: 1rem;
}

.detail-article__hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.detail-richtext {
    display: grid;
    gap: 1rem;
}

.detail-richtext p,
.detail-richtext ul,
.detail-richtext ol,
.faq-item__answer p,
.faq-item__answer ul,
.faq-item__answer ol {
    margin: 0;
    color: var(--text-soft);
}

.detail-richtext h2,
.detail-richtext h3,
.faq-item__answer h2,
.faq-item__answer h3 {
    margin: 0;
    color: var(--text);
    font-family: var(--font-head);
}

.detail-richtext ul,
.detail-richtext ol,
.faq-item__answer ul,
.faq-item__answer ol {
    padding-left: 1.1rem;
}

.detail-richtext li + li,
.faq-item__answer li + li {
    margin-top: 0.4rem;
}

.detail-richtext blockquote,
.faq-item__answer blockquote {
    margin: 0;
    padding: 1rem 1.15rem;
    border-left: 4px solid rgba(10, 77, 121, 0.18);
    border-radius: 16px;
    background: rgba(10, 77, 121, 0.05);
    color: var(--text);
}

.detail-richtext img,
.faq-item__answer img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.detail-panel {
    padding: 1.45rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}

.detail-panel__head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.detail-panel__head h2 {
    margin: 0;
    font-family: var(--font-head);
    font-size: 1.35rem;
}

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

.detail-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.detail-gallery__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 16, 26, 0.82);
    backdrop-filter: blur(10px);
}

.image-lightbox__dialog {
    position: relative;
    width: min(1040px, calc(100vw - 3rem));
    max-height: calc(100vh - 3rem);
    padding: 1rem;
    border-radius: 28px;
    border: 1px solid rgba(214, 248, 255, 0.18);
    background: rgba(7, 24, 39, 0.92);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.image-lightbox__close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(214, 248, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.image-lightbox__figure {
    display: grid;
    gap: 0.9rem;
    margin: 0;
}

.image-lightbox__image {
    width: 100%;
    max-height: calc(100vh - 10rem);
    border-radius: 22px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.04);
}

.image-lightbox__caption {
    margin: 0;
    color: rgba(235, 251, 255, 0.88);
    text-align: left;
}

.detail-sidebar {
    align-content: start;
}

.detail-sidebar__actions,
.detail-link-list {
    display: grid;
    gap: 0.8rem;
}

.detail-link-list__item {
    display: block;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.detail-link-list__item:hover {
    transform: translateY(-1px);
    border-color: rgba(10, 77, 121, 0.18);
}

.detail-link-list__item span,
.detail-link-list__item small {
    display: block;
}

.detail-link-list__item span {
    color: var(--text);
    font-weight: 700;
}

.detail-link-list__item small {
    margin-top: 0.35rem;
    color: var(--text-soft);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

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

.faq-item__answer {
    display: grid;
    gap: 0.85rem;
    padding: 0 1.25rem 1.25rem;
}

.faq-item p {
    margin: 0;
    padding: 0 1.25rem 1.25rem;
}

.footer-cta {
    padding: 3.5rem 0 2rem;
}

.site-footer {
    background: linear-gradient(180deg, #091b2a 0%, #08131f 100%);
    color: rgba(255, 255, 255, 0.9);
}

.footer-cta__inner,
.footer-grid {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.95fr 0.9fr;
    gap: 1.5rem;
    padding-top: 1rem;
}

.footer-grid h3 {
    margin-top: 0;
    font-family: var(--font-head);
}

.brand--footer small,
.site-footer p,
.footer-links a,
.footer-meta,
.footer-meta a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    display: grid;
    gap: 0.7rem;
}

.footer-meta {
    padding: 1.2rem 0 2rem;
    font-size: 0.92rem;
}

.js-enhanced [data-reveal] {
    opacity: 0.16;
    transform: translateY(22px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.js-enhanced [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-toggle:focus,
.button:focus,
.site-nav a:focus,
.topbar a:focus,
.footer-links a:focus,
.footer-meta a:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.faq-item summary:focus,
.hero__dot:focus,
.rotator__dot:focus {
    outline: 3px solid rgba(46, 200, 168, 0.36);
    outline-offset: 3px;
}

@keyframes fish-swim {
    0%,
    100% {
        transform: translateX(0) rotate(-2deg);
    }
    50% {
        transform: translateX(12px) rotate(2deg);
    }
}

@keyframes fish-fin {
    from {
        transform: rotate(-5deg);
    }
    to {
        transform: rotate(5deg);
    }
}

@keyframes fish-bubble {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.25;
    }
    50% {
        transform: translateY(-28px);
        opacity: 1;
    }
}

@keyframes slide-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

@media (max-width: 1024px) {
    .topbar__inner,
    .footer-cta__inner,
    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-toggle {
        display: block;
    }

    .site-header__inner {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 1rem;
        left: 1rem;
        padding: 1.2rem;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

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

    .site-nav,
    .site-nav ul,
    .site-nav__actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__shell,
    .about-split,
    .about-profile,
    .page-hero__grid,
    .detail-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: none;
    }

    .hero__visual {
        min-height: 28rem;
    }

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

    .feature-grid,
    .feature-grid--service-page,
    .project-grid,
    .supply-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 118px;
    }

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

    .page-hero__content {
        max-width: none;
    }

    .page-hero__snapshot {
        max-width: 38rem;
    }

    .about-profile__visual {
        padding-right: 0;
        padding-bottom: 1rem;
    }

    .about-profile__photo--secondary {
        width: min(74%, 24rem);
        margin-top: -4.4rem;
    }
}

@media (max-width: 900px) {
    .updates-showcase {
        grid-template-columns: 1fr;
    }

    .gallery-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .compact-grid,
    .compact-grid--insights,
    .feature-grid,
    .feature-grid--service-page,
    .project-grid,
    .supply-grid,
    .about-profile__lane-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    :root {
        --container: calc(100vw - 2.35rem);
    }

    .topbar {
        display: none;
    }

    .section,
    .page-hero {
        padding: 3rem 0;
    }

    .page-hero.detail-hero {
        padding: 2.2rem 0 1.4rem;
    }

    .section-shell {
        gap: 1.25rem;
    }

    .brand img {
        width: 60px;
        height: 60px;
    }

    .brand {
        max-width: calc(100% - 4.75rem);
    }

    .brand small {
        display: none;
    }

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

    .hero {
        min-height: auto;
    }

    .updates-showcase__cards {
        grid-template-columns: 1fr;
    }

    .page-hero__grid {
        gap: 1.6rem;
    }

    .page-hero__media img {
        min-height: 15rem;
    }

    .image-lightbox__dialog {
        width: min(100%, calc(100vw - 1.5rem));
        padding: 0.9rem;
        border-radius: 22px;
    }

    .image-lightbox__image {
        max-height: calc(100vh - 8.5rem);
    }

    .page-hero__stats {
        grid-template-columns: 1fr;
    }

    .hero__shell {
        min-height: auto;
        gap: 1.4rem;
        padding: 5.9rem 0 3rem;
    }

    .hero__content h1 {
        font-size: clamp(2.1rem, 9vw, 3.2rem);
        line-height: 1.08;
    }

    .hero__lead {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero__visual {
        min-height: 15rem;
    }

    .hero__chips {
        display: none;
    }

    .site-header__inner {
        position: relative;
        padding-right: 4.25rem;
    }

    .nav-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        transform: translateY(-50%);
        z-index: 4;
    }

    .hero-aquarium {
        position: relative;
        width: 100%;
        max-width: 21rem;
        height: 14rem;
        margin-inline: auto;
    }

    .capability-strip {
        display: none;
    }

    .capability-grid,
    .compact-grid,
    .feature-grid,
    .feature-grid--service-page,
    .project-grid,
    .supply-grid,
    .team-grid,
    .partner-row,
    .detail-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 110px;
    }

    .gallery-tile--feature {
        grid-column: span 2;
        grid-row: span 3;
    }

    .about-split--home .about-split__media--single img {
        min-height: 18rem;
    }

    .about-split__content--panel,
    .page-hero__card,
    .updates-showcase__panel {
        padding: 1.2rem;
    }

    .compact-card {
        padding: 1.2rem;
    }

    .compact-card--news {
        padding: 0;
    }

    .compact-card--news .compact-card__body,
    .feature-card__body,
    .supply-card__body,
    .project-card figcaption,
    .detail-panel {
        padding: 1rem;
    }

    .compact-card__body,
    .feature-card__body,
    .supply-card__body {
        gap: 0.72rem;
    }

    .feature-card__meta {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0.72rem;
    }

    .feature-card__meta h2,
    .feature-card__meta h3 {
        flex-basis: 100%;
    }

    .about-split--home .compact-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .page-hero h1,
    .about-split__content h2,
    .footer-cta h2,
    .gallery-intro__copy h2 {
        font-size: clamp(1.9rem, 8.3vw, 2.7rem);
        line-height: 1.08;
        overflow-wrap: break-word;
        hyphens: auto;
        text-wrap: balance;
    }

    .page-hero__card h2,
    .compact-card h2,
    .compact-card h3,
    .feature-card h2,
    .feature-card h3,
    .supply-card h2,
    .supply-card h3,
    .project-card strong {
        font-size: clamp(1.18rem, 5.6vw, 1.55rem);
        line-height: 1.14;
        overflow-wrap: break-word;
        hyphens: auto;
        text-wrap: balance;
    }

    .section-heading p,
    .page-hero__lead,
    .about-split__lead,
    .compact-card p,
    .feature-card p,
    .project-card span,
    .supply-card p,
    .detail-richtext p,
    .detail-richtext li,
    .updates-showcase__link-copy strong,
    .updates-showcase__link-copy small {
        overflow-wrap: break-word;
    }

    .section-heading p,
    .page-hero__lead,
    .about-split__lead,
    .compact-card p,
    .feature-card p,
    .project-card span,
    .supply-card p,
    .detail-richtext p,
    .detail-richtext li {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .button.button--small {
        min-width: 0;
    }

    .about-profile__note {
        position: static;
        width: auto;
        margin-top: -1rem;
    }

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

    .about-profile__photo--secondary {
        width: min(82%, 19rem);
        margin-top: -2.6rem;
        border-width: 6px;
    }

    .marquee {
        mask-image: none;
    }
}

@media (max-width: 560px) {
    :root {
        --container: calc(100vw - 2.1rem);
    }

    .site-header__inner {
        padding-right: 4rem;
    }

    .brand {
        max-width: calc(100% - 4.4rem);
    }

    .brand strong {
        font-size: 0.9rem;
    }

    .nav-toggle {
        width: 2.85rem;
        height: 2.85rem;
    }

    .page-hero__grid,
    .detail-layout {
        gap: 1.25rem;
    }

    .page-hero__media img {
        min-height: 13rem;
    }

    .feature-grid,
    .feature-grid--service-page,
    .project-grid,
    .supply-grid,
    .team-grid,
    .detail-gallery {
        grid-template-columns: 1fr;
    }

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

    .compact-grid,
    .compact-grid--insights {
        gap: 0.95rem;
    }

    .updates-showcase__panel-head {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .detail-panel__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .capability-card {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        align-items: flex-start;
        padding: 1rem;
    }

    .updates-showcase__link {
        padding: 0.88rem 0.92rem;
    }

    .compact-card,
    .about-split__content--panel,
    .page-hero__card,
    .updates-showcase__panel {
        border-radius: 22px;
    }

    .gallery-wall {
        gap: 0.75rem;
        grid-auto-rows: 96px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js-enhanced [data-reveal] {
        opacity: 1;
        transform: none;
    }

    .hero__track,
    .marquee__track {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}
