:root {
    --red-900: #6f0b0b;
    --red-800: #8b1010;
    --red-700: #ae1515;
    --red-600: #c82121;
    --navy-950: #06182e;
    --navy-900: #0b2545;
    --navy-800: #11365f;
    --gold-500: #eeb902;
    --gold-400: #f5cb3d;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f5f7fa;
    --gray-200: #e5eaf1;
    --gray-300: #d1d8e2;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --text: #1f2937;
    --shadow-sm: 0 12px 32px rgba(11, 37, 69, 0.08);
    --shadow-md: 0 24px 70px rgba(11, 37, 69, 0.14);
    --shadow-lg: 0 34px 100px rgba(0, 0, 0, 0.24);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --container: 1240px;
    --header-height: 88px;
    --transition: 280ms cubic-bezier(.2, .75, .25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

button {
    border: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

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

h1,
h2,
h3 {
    line-height: 1.12;
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    background: rgba(174, 21, 21, 0.18);
    color: var(--navy-950);
}

:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 4px;
}

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

.section {
    position: relative;
    padding-block: clamp(76px, 9vw, 132px);
}

.section-soft {
    background:
        radial-gradient(circle at 12% 15%, rgba(174, 21, 21, 0.07), transparent 28%),
        radial-gradient(circle at 88% 82%, rgba(11, 37, 69, 0.08), transparent 28%),
        var(--gray-100);
}

.section-dark {
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(174, 21, 21, 0.35), transparent 30%),
        radial-gradient(circle at 12% 85%, rgba(238, 185, 2, 0.10), transparent 25%),
        linear-gradient(135deg, var(--navy-950), var(--navy-900) 58%, #081f3c);
    color: var(--white);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-150%);
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--navy-950);
    color: var(--white);
    font-weight: 700;
    transition: transform var(--transition);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--red-700);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.78);
}

.section-heading {
    width: min(100%, 790px);
    margin-bottom: clamp(42px, 6vw, 72px);
}

.section-heading h2,
.carousel-heading h2,
.contact-copy h2 {
    margin-bottom: 20px;
    color: var(--navy-950);
    font-size: clamp(2.1rem, 4.6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.055em;
}

.section-heading h2 span,
.carousel-heading h2 span,
.contact-copy h2 span {
    color: var(--red-700);
}

.section-heading > p:last-child,
.section-heading-row > p,
.contact-copy > p {
    margin-bottom: 0;
    color: var(--gray-500);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.section-heading-row {
    display: grid;
    gap: 24px;
    width: 100%;
}

/* Header and navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding-top: max(10px, env(safe-area-inset-top));
    transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
    padding-top: 0;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 40px rgba(11, 37, 69, 0.10);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.brand-logo-wrap {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    color: var(--white);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.brand-copy span {
    margin-top: 4px;
    color: var(--white);
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.site-header.is-scrolled .brand-copy strong {
    color: var(--gray-500);
}

.site-header.is-scrolled .brand-copy span {
    color: var(--navy-950);
}

.menu-toggle {
    position: relative;
    z-index: 1010;
    display: inline-grid;
    place-content: center;
    width: 48px;
    height: 48px;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.site-header.is-scrolled .menu-toggle {
    border-color: var(--gray-200);
    background: var(--white);
    color: var(--navy-950);
    box-shadow: var(--shadow-sm);
}

.nav-panel {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 110px 28px 42px;
    background:
        radial-gradient(circle at 20% 10%, rgba(174, 21, 21, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(6, 24, 46, 0.98), rgba(11, 37, 69, 0.985));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.nav-links a {
    display: block;
    padding: 10px 14px;
    color: var(--white);
    font-size: clamp(1.4rem, 7vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -.03em;
}

.nav-links a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    margin-top: 2px;
    border-radius: 999px;
    background: var(--gold-500);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    width: 100%;
}

.nav-cta {
    align-self: center;
}

/* Buttons */
.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 16px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.button svg,
.text-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform var(--transition);
}

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

.button:hover svg,
.text-link:hover svg {
    transform: translateX(4px);
}

.button-primary {
    background: linear-gradient(135deg, var(--red-700), var(--red-800));
    color: var(--white);
    box-shadow: 0 14px 34px rgba(174, 21, 21, 0.28);
}

.button-primary:hover {
    box-shadow: 0 20px 42px rgba(174, 21, 21, 0.36);
}

.button-light {
    background: var(--white);
    color: var(--navy-950);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.button-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-950);
    box-shadow: 0 16px 42px rgba(238, 185, 2, 0.26);
}

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: max(760px, 100svh);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    padding-block: calc(var(--header-height) + 78px) 90px;
    color: var(--white);
}

.hero-media,
.hero-overlay,
.hero-glow {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.hero-media {
    background-image: url("img/hero.jpg");
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
}

.hero-overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(6, 24, 46, 0.94) 0%, rgba(6, 24, 46, 0.79) 44%, rgba(6, 24, 46, 0.52) 70%, rgba(6, 24, 46, 0.66) 100%),
        linear-gradient(0deg, rgba(6, 24, 46, 0.80), transparent 55%);
}

.hero-glow {
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(45px);
    pointer-events: none;
}

.hero-glow-one {
    top: 12%;
    right: -200px;
    left: auto;
    background: rgba(174, 21, 21, 0.36);
}

.hero-glow-two {
    top: auto;
    right: auto;
    bottom: -260px;
    left: 8%;
    background: rgba(238, 185, 2, 0.18);
}

.hero-content {
    display: grid;
    align-items: end;
    gap: 46px;
}

.hero-copy {
    width: min(100%, 860px);
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(3.35rem, 13vw, 8.5rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: .87;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.28);
}

.hero h1 span {
    display: block;
    color: var(--gold-500);
}

.hero-lead {
    width: min(100%, 720px);
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.1rem, 2.5vw, 1.55rem);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px) saturate(135%);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.hero-card {
    width: min(100%, 360px);
    justify-self: start;
    padding: 24px;
    border-radius: var(--radius-lg);
}

.hero-card-icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(238, 185, 2, 0.16);
    color: var(--gold-500);
}

.hero-card-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.hero-card > p {
    margin-bottom: 14px;
    font-size: 1.18rem;
    font-weight: 800;
}

.hero-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.hero-card li {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: .76rem;
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    right: 50%;
    bottom: 22px;
    display: grid;
    width: 34px;
    height: 52px;
    place-items: start center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    transform: translateX(50%);
}

.scroll-indicator span {
    width: 5px;
    height: 5px;
    margin-top: 10px;
    border-radius: 50%;
    background: var(--gold-500);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: .35; }
    50% { transform: translateY(18px); opacity: 1; }
}

/* About */
.about {
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(174, 21, 21, 0.10);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(174, 21, 21, 0.025), 0 0 0 120px rgba(11, 37, 69, 0.025);
    pointer-events: none;
}

.value-grid {
    display: grid;
    gap: 18px;
}

.value-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card::after {
    content: "";
    position: absolute;
    right: -52px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(174, 21, 21, 0.05);
    transition: transform var(--transition), background var(--transition);
}

.value-card:hover {
    transform: translateY(-7px);
    border-color: rgba(174, 21, 21, 0.18);
    box-shadow: var(--shadow-md);
}

.value-card:hover::after {
    transform: scale(1.3);
    background: rgba(174, 21, 21, 0.09);
}

.value-card-featured {
    background: linear-gradient(145deg, var(--red-700), var(--red-800));
    color: var(--white);
}

.value-card-featured::after {
    background: rgba(255, 255, 255, 0.08);
}

.value-icon,
.contact-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 18px;
    background: rgba(174, 21, 21, 0.09);
    color: var(--red-700);
}

.value-icon svg,
.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.value-card-featured .value-icon {
    background: rgba(255, 255, 255, 0.14);
    color: var(--gold-500);
}

.value-card h3 {
    margin-bottom: 14px;
    color: var(--navy-950);
    font-size: 1.35rem;
    font-weight: 800;
}

.value-card-featured h3 {
    color: var(--white);
}

.value-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    color: var(--gray-500);
}

.value-card-featured p {
    color: rgba(255, 255, 255, 0.78);
}

/* Levels */
.levels-grid {
    display: grid;
    gap: 24px;
}

.level-card {
    overflow: hidden;
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.level-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.level-image-wrap {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.level-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 24, 46, 0.42), transparent 50%);
    pointer-events: none;
}

.level-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2, .75, .25, 1);
}

.level-card:hover .level-image-wrap img {
    transform: scale(1.055);
}

.level-number {
    position: absolute;
    right: 18px;
    bottom: 14px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.92);
    font-size: 2.15rem;
    font-weight: 800;
    letter-spacing: -.06em;
}

.level-content {
    padding: 28px;
}

.level-content h3 {
    margin-bottom: 12px;
    color: var(--navy-950);
    font-size: 1.55rem;
    font-weight: 800;
}

.level-content p {
    margin-bottom: 24px;
    color: var(--gray-500);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red-700);
    font-size: .9rem;
    font-weight: 800;
}

/* Carousels */
.photo-showcase {
    overflow: hidden;
}

.carousel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: clamp(34px, 5vw, 56px);
}

.carousel-heading h2 {
    margin-bottom: 0;
}

.carousel-heading-light h2 {
    color: var(--white);
}

.carousel-heading-light h2 span {
    color: var(--gold-500);
}

.carousel-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.carousel-button {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    background: var(--white);
    color: var(--navy-950);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.carousel-button:hover {
    transform: translateY(-3px);
    border-color: var(--red-700);
    background: var(--red-700);
    color: var(--white);
}

.carousel-button svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.carousel-button-light {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.gallery-carousel {
    position: relative;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

.carousel-viewport {
    overflow: visible;
    cursor: grab;
}

.carousel-viewport.is-dragging {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: clamp(14px, 2vw, 24px);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 min(82vw, 310px);
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: clamp(18px, 2vw, 26px);
    background: var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.carousel-slide:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    pointer-events: none;
    transition: transform 650ms cubic-bezier(.2, .75, .25, 1);
}

.carousel-slide:hover img {
    transform: scale(1.04);
}

.winners .carousel-slide {
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

/* Contact */
.contact-layout {
    display: grid;
    gap: 42px;
}

.contact-copy {
    width: min(100%, 660px);
}

.contact-copy .button {
    margin-top: 30px;
}

.contact-grid {
    display: grid;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(174, 21, 21, 0.18);
    box-shadow: var(--shadow-md);
}

.contact-card .contact-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
}

.contact-card h3 {
    margin-bottom: 6px;
    color: var(--navy-950);
    font-size: 1.05rem;
    font-weight: 800;
}

.contact-card p {
    margin-bottom: 5px;
    color: var(--gray-500);
    line-height: 1.55;
}

.contact-card a {
    color: var(--red-700);
    font-size: .86rem;
    font-weight: 800;
}

.contact-note {
    color: var(--gray-500);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.map-card {
    overflow: hidden;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    position: relative;
    display: grid;
    min-height: clamp(340px, 44vw, 520px);
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 48%, rgba(174, 21, 21, 0.12), transparent 22%),
        linear-gradient(145deg, #eef2f7, #e5ebf2);
}

.map-grid {
    position: absolute;
    inset: -20%;
    opacity: .75;
    background-image:
        linear-gradient(rgba(11, 37, 69, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 37, 69, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    transform: rotate(12deg) scale(1.3);
}

.map-grid::before,
.map-grid::after {
    content: "";
    position: absolute;
    width: 130%;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 0 0 1px rgba(11, 37, 69, 0.04);
}

.map-grid::before {
    top: 35%;
    left: -20%;
    transform: rotate(-25deg);
}

.map-grid::after {
    right: -20%;
    bottom: 28%;
    transform: rotate(35deg);
}

.map-pin {
    position: relative;
    z-index: 1;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border: 8px solid rgba(255, 255, 255, 0.80);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-700), var(--red-800));
    color: var(--white);
    box-shadow: 0 20px 50px rgba(174, 21, 21, 0.30);
}

.map-pin svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.map-copy {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.map-copy strong {
    color: var(--navy-950);
    font-size: 1rem;
}

.map-copy span {
    color: var(--gray-500);
    font-size: .82rem;
}

/* Footer */
.site-footer {
    padding-top: 76px;
    background: var(--navy-950);
    color: var(--white);
}

.footer-grid {
    display: grid;
    gap: 42px;
    padding-bottom: 56px;
}

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

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

.footer-brand > p {
    max-width: 440px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer-column h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.66);
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--gold-500);
}

.footer-column address {
    font-style: normal;
}

.footer-column address p {
    max-width: 270px;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    border-color: rgba(238, 185, 2, 0.35);
    background: rgba(238, 185, 2, 0.12);
    color: var(--gold-500);
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.social-links a:first-child svg {
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: space-between;
    padding-block: 24px calc(24px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.50);
    font-size: .84rem;
}

.footer-bottom a {
    font-weight: 700;
}

.noscript-message {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 9999;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--navy-950);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 760ms cubic-bezier(.2, .75, .25, 1), transform 760ms cubic-bezier(.2, .75, .25, 1);
}

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

/* Responsive */
@media (min-width: 560px) {
    .container {
        width: min(calc(100% - 48px), var(--container));
    }

    .hero-actions .button {
        min-width: 176px;
    }

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

    .carousel-slide {
        flex-basis: min(46vw, 320px);
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 768px) {
    :root {
        --header-height: 96px;
    }

    .brand-logo-wrap {
        width: 64px;
        height: 64px;
    }

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

    .brand-copy strong {
        font-size: .7rem;
    }

    .brand-copy span {
        font-size: 1.35rem;
    }

    .section-heading-row {
        grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
        align-items: end;
    }

    .section-heading-row > p {
        padding-bottom: 8px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    }

    .hero-card {
        justify-self: end;
    }

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

    .level-card:nth-child(2) {
        transform: translateY(32px);
    }

    .level-card:nth-child(2):hover {
        transform: translateY(24px);
    }

    .carousel-slide {
        flex-basis: min(31vw, 330px);
    }

    .contact-layout {
        grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
        align-items: start;
    }

    .contact-copy {
        position: sticky;
        top: calc(var(--header-height) + 32px);
    }

    .map-card {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, .65fr));
    }
}

@media (min-width: 1024px) {
    .site-header {
        padding-top: 14px;
    }

    .navbar {
        padding-inline: 18px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 24px;
        background: rgba(6, 24, 46, 0.20);
        backdrop-filter: blur(16px) saturate(130%);
        -webkit-backdrop-filter: blur(16px) saturate(130%);
        transition: background var(--transition), border-color var(--transition), border-radius var(--transition);
    }

    .site-header.is-scrolled .navbar {
        border-color: transparent;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .menu-toggle {
        display: none;
    }

    .nav-panel {
        position: static;
        inset: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        gap: clamp(18px, 2vw, 30px);
        padding: 0;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links {
        flex-direction: row;
        gap: clamp(0px, .45vw, 8px);
    }

    .nav-links a {
        padding: 10px clamp(7px, .8vw, 12px);
        color: rgba(255, 255, 255, 0.82);
        font-size: .82rem;
        font-weight: 700;
        letter-spacing: 0;
    }

    .site-header.is-scrolled .nav-links a {
        color: var(--gray-700);
    }

    .site-header.is-scrolled .nav-links a:hover,
    .site-header.is-scrolled .nav-links a.is-active {
        color: var(--red-700);
    }

    .nav-links a::after {
        height: 2px;
        margin-top: 7px;
    }

    .nav-cta {
        min-height: 48px;
        padding: 12px 17px;
        font-size: .8rem;
    }

    .hero {
        min-height: min(980px, 100svh);
    }

    .hero-content {
        gap: 70px;
    }

    .hero-card {
        margin-bottom: 34px;
    }

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

    .value-card {
        min-height: 310px;
        padding: 34px;
    }

    .carousel-slide {
        flex-basis: min(23vw, 342px);
    }

    .contact-grid {
        gap: 18px;
    }
}

@media (min-width: 1366px) {
    .container {
        width: min(calc(100% - 72px), var(--container));
    }

    .hero h1 {
        font-size: clamp(7.2rem, 8.1vw, 9rem);
    }

    .carousel-slide {
        flex-basis: 345px;
    }
}

@media (min-width: 1920px) {
    :root {
        --container: 1500px;
    }

    body {
        font-size: 1.08rem;
    }

    .hero {
        min-height: 980px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .hero-card {
        width: 390px;
        padding: 30px;
    }

    .carousel-slide {
        flex-basis: 370px;
    }
}

@media (min-width: 2800px) {
    :root {
        --container: 1900px;
        --header-height: 118px;
    }

    body {
        font-size: 1.26rem;
    }

    .brand-logo-wrap {
        width: 78px;
        height: 78px;
    }

    .brand-logo {
        width: 70px;
        height: 70px;
    }

    .nav-links a,
    .nav-cta {
        font-size: 1rem;
    }

    .hero {
        min-height: 1280px;
    }

    .hero h1 {
        font-size: 11.5rem;
    }

    .hero-lead {
        max-width: 900px;
        font-size: 1.9rem;
    }

    .section {
        padding-block: 170px;
    }

    .carousel-slide {
        flex-basis: 470px;
    }
}

@media (max-width: 420px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .carousel-heading {
        align-items: flex-start;
    }

    .carousel-heading h2 {
        font-size: 2rem;
    }

    .carousel-button {
        width: 46px;
        height: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
