:root {
    --blue: #1f3292;
    --blue-2: #3448c5;
    --navy: #08103a;
    --navy-2: #0d1748;
    --sky: #8f9fe6;
    --ice: #f5f7ff;
    --white: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.1);
    --glass: rgba(255, 255, 255, 0.11);
    --shadow: 0 28px 80px rgba(8, 16, 58, 0.14);
    --shadow-soft: 0 18px 46px rgba(8, 16, 58, 0.07);
    --radius-xl: 32px;
    --radius-lg: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--ice);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section-pad {
    padding: 112px 0;
}

.center {
    text-align: center;
}

.soft {
    background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -90px;
    z-index: 1000;
    border-radius: 999px;
    background: var(--white);
    color: var(--blue);
    padding: 10px 14px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(8, 16, 58, 0.76);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(8, 16, 58, 0.92);
    box-shadow: 0 12px 40px rgba(8, 16, 58, 0.18);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    line-height: 1;
    min-width: max-content;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    padding: 3px;
    object-fit: contain;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.brand-copy strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
}

.brand-copy small {
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.07);
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(255, 255, 255, 0.13);
    color: var(--white);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
    background: var(--white);
    color: var(--blue);
    padding: 11px 18px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.header-cta:hover,
.button:hover,
.lift-card:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
}

.hero {
    min-height: 860px;
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 12%, rgba(143, 159, 230, 0.32), transparent 34%),
        linear-gradient(135deg, #08103a 0%, #1f3292 60%, #08103a 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 220px;
    background: linear-gradient(0deg, var(--ice), transparent);
}

.hero-orbit {
    position: absolute;
    width: 720px;
    height: 720px;
    right: -220px;
    top: 110px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    inset: 85px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-orbit::after {
    inset: 190px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
    padding-top: 64px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero .eyebrow {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 10px 16px;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.hero h1 {
    margin-bottom: 16px;
    font-size: clamp(64px, 10vw, 128px);
    font-weight: 880;
}

.hero-subtitle {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.hero-text {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 22px;
    line-height: 1.45;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.button {
    min-height: 52px;
    padding: 0 24px;
}

.button-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow);
}

.hero .button-primary,
.admissions-panel .button-primary {
    background: var(--white);
    color: var(--blue);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.hero-card {
    position: relative;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 44px;
    background: rgba(255, 255, 255, 0.12);
    padding: 20px;
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.26);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 32px;
    background: linear-gradient(135deg, #ffffff, #eef2ff 52%, #cbd5ff);
}

.hero-card > * {
    position: relative;
    z-index: 1;
}

.hero-card-art {
    position: absolute;
    inset: 18px 18px auto;
    height: 300px;
    z-index: 1;
    overflow: hidden;
    border-radius: 30px;
}

.hero-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-kicker {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin-bottom: 28px;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 66px);
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-row div {
    border: 1px solid rgba(31, 50, 146, 0.11);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    padding: 18px;
}

.stat-row strong {
    display: block;
    color: var(--blue);
    font-size: 32px;
    letter-spacing: -0.06em;
}

.stat-row span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 80px;
}

.split.reverse {
    grid-template-columns: 1fr 0.9fr;
}

.split h2,
.section-head h2,
.admissions-panel h2,
.page-hero h1,
.map-panel h2 {
    font-size: clamp(42px, 6vw, 72px);
}

.section-head {
    max-width: 880px;
}

.section-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.copy-panel {
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 38px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.card-grid {
    display: grid;
    gap: 20px;
    margin-top: 52px;
}

.card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

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

.feature-card {
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 30px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.lift-card:hover,
.feature-card:hover {
    box-shadow: var(--shadow);
}

.feature-card h2,
.feature-card h3 {
    font-size: 26px;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.feature-card p,
.page-hero p,
.campus-strip p,
.admissions-panel p,
.map-panel p,
.program-row p {
    color: var(--muted);
    line-height: 1.7;
}

.icon-dot {
    display: block;
    width: 44px;
    height: 44px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--sky), var(--blue));
    box-shadow: 0 18px 42px rgba(31, 50, 146, 0.28);
}

.campus-strip {
    background: var(--white);
}

.visual-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 44px;
    box-shadow: var(--shadow);
}

.visual-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.glass-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 16px 18px;
    font-weight: 850;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.text-link {
    display: inline-flex;
    margin-top: 20px;
    color: var(--blue);
    font-weight: 900;
}

.text-link::after {
    content: " ->";
    margin-left: 6px;
}

.admissions-panel,
.map-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-radius: 44px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    box-shadow: var(--shadow);
    padding: 56px;
}

.admissions-panel .eyebrow,
.admissions-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.light-panel {
    background: var(--white);
    color: var(--text);
}

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

.light-panel .button-primary {
    background: var(--blue);
    color: var(--white);
}

.page-hero {
    padding-top: 180px;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 15%, rgba(143, 159, 230, 0.38), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--blue));
}

.compact-hero {
    min-height: 520px;
    display: grid;
    align-items: center;
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 20px;
}

.program-list {
    display: grid;
    gap: 18px;
}

.program-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 28px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: var(--white);
    padding: 34px;
    box-shadow: var(--shadow-soft);
}

.program-number {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 900;
}

.program-row h2 {
    margin-bottom: 14px;
    font-size: 34px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 52px;
}

.feature-list article {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 112px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    font-weight: 850;
}

.feature-list span {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: var(--blue);
}

.partner-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.partner-card {
    border-radius: 36px;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 36px;
}

.partner-card h2 {
    font-size: 36px;
}

.partner-card ul {
    margin: 0;
    padding-left: 18px;
}

.partner-card li {
    margin: 12px 0;
    color: var(--muted);
    line-height: 1.45;
}

.contact-tile a {
    color: var(--blue);
    font-weight: 750;
}

.map-panel {
    background: var(--white);
    color: var(--text);
}

.map-panel .eyebrow {
    color: var(--blue);
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
    padding: 78px 0 32px;
}

.footer-shape {
    position: absolute;
    width: 180px;
    height: 180px;
    transform: rotate(45deg);
    border-radius: 36px;
}

.footer-shape-one {
    left: -40px;
    top: 70px;
    background: rgba(31, 50, 146, 0.45);
}

.footer-shape-two {
    right: 10%;
    bottom: 80px;
    background: rgba(143, 159, 230, 0.12);
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 1fr;
    gap: 28px;
}

.footer-grid p {
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
}

.credential {
    display: inline-flex;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 12px;
}

.contact-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    padding: 26px;
}

.contact-card h2 {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-card a,
.contact-card p {
    display: block;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.56);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.reveal {
    animation: reveal 720ms ease both;
}

.delay-1 {
    animation-delay: 140ms;
}

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

@media (max-width: 980px) {
    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        padding: 10px 14px;
        font-weight: 850;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 78px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        background: rgba(8, 16, 58, 0.95);
        padding: 10px;
    }

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

    .hero-grid,
    .split,
    .split.reverse,
    .footer-grid,
    .partner-groups,
    .program-row {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding-top: 80px;
    }

    .card-grid.four,
    .card-grid.three,
    .feature-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom,
    .admissions-panel,
    .map-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section-pad {
        padding: 78px 0;
    }

    .card-grid.four,
    .card-grid.three,
    .feature-list,
    .stat-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-card {
        min-height: 540px;
    }

    .copy-panel,
    .admissions-panel,
    .map-panel {
        border-radius: 30px;
        padding: 28px;
    }

    .page-hero {
        padding-top: 138px;
    }
}

/* Revision: official Dornier Academy logo and embedded map */
.map-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
    align-items: stretch;
    gap: 24px;
    background: var(--white);
    color: var(--text);
    padding: 24px;
}

.map-copy {
    padding: 32px;
}

.map-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 5vw, 58px);
}

.map-actions {
    margin-top: 28px;
}

.map-embed {
    min-height: 390px;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--line);
    background: #e8ecff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 390px;
    border: 0;
    display: block;
}

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

@media (max-width: 980px) {
    .map-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .map-panel {
        padding: 16px;
    }

    .map-copy {
        padding: 16px;
    }
}
