﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriadpro-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriadpro-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriadpro-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/myriadpro-boldit.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    /* Breakpoints - easily configurable */
    --breakpoint-mobile: 768px;
    --breakpoint-tablet: 1024px;

    /* Colors - Strict Minimalist Palette */
    --color-primary: #a0896a;
    --color-secondary: #a0896a;
    /* Unified */
    --color-accent: #a0896a;
    /* Unified */
    --color-light: #ffffff;
    --color-ocean: #a0896a;
    --color-ocean-light: #a0896a;
    --color-white: #ffffff;
    --color-dark: #262626;
    /* Strict Dark */
    --color-dark-alpha: rgba(38, 38, 38, 0.4);
    --color-overlay: rgba(160, 137, 106, 0.85);

    /* Spacing */
    --header-height: 64px;
    --header-height-mobile: 64px;
    --container-padding: 2rem;
    --container-padding-mobile: 1rem;

    /* Transitions */
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Montserrat', 'Myriad Pro', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: #f5f5f5;
    overflow-x: hidden;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.contact-copy .contact-highlight {
    color: #ffc857;
    font-weight: 700;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    z-index: 1002;
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.55s ease, transform var(--transition-speed) ease;
}

.logo.logo-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: opacity var(--transition-speed) ease;
}

.logo-rectangular {
    display: block;
}

.logo-square {
    display: none;
    height: 38px;
    width: 38px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.nav-link:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: transform var(--transition-speed) ease;
}

.hamburger {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-speed) ease;
}

.menu-toggle.active .hamburger:nth-child(1) {
    transform: translateY(8px) rotate(45deg) scale(0.8);
}

.menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) scale(0.8);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: var(--color-dark-alpha);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
    pointer-events: none;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.hero {
    position: relative;
    left: 0;
    margin-left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-dark);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 101%;
    min-height: 101%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 1024px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-logo-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
}

.hero-logo-image {
    width: 280px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.35));
}

.hero-tagline {
    padding-top: 32px;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}


.hero-bottom-group {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 4;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    cursor: pointer;
    border: 2px solid transparent;
    appearance: none;
    -webkit-appearance: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(160, 137, 106, 0.2);
}

.btn-primary:hover {
    background: var(--color-white);
    transform: translateY(-3px);
    color: var(--color-dark);
    box-shadow: 0 4px 12px rgba(38, 38, 38, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.about-section .btn-secondary {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.about-section .btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(160, 137, 106, 0.3);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-section {
    padding: 10rem 0;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.1) 100%),
        url('../images/section1-bg.jpg');

    background-size: 100% 100%, cover;
    background-position: 0 0, center;
    background-repeat: no-repeat, no-repeat;
    min-height: 100vh;
}

.about-section .container {
    display: flex;
    gap: 6rem;
    align-items: stretch;
    flex-wrap: nowrap;
}

.about-section .left,
.about-section .right {
    flex: 1 1 calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
}

.about-section .left {
    display: flex;
    flex-direction: column;
}

.about-section .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-section .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.about-section .section-divider {
    margin-left: 0;
    margin-right: 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.units-section .section-title {
    color: var(--color-primary);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    margin: 0 auto;
    border-radius: 2px;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-section .intro-text {
    margin: 0;
    text-align: left;
}

.intro-text p {
    font-size: 1.28rem;
    line-height: 1.8;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

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

.highlight-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 0px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-card::before {
    display: none;
}

.highlight-card:hover,
.amenity-item:hover {
    transform: translateY(-8px);
    border: 0px solid var(--color-secondary);
    box-shadow: 0 10px 30px rgba(160, 137, 106, 0.2);
}

.highlight-card:hover::before {
    display: none;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-speed) ease;
}

.highlight-card:hover .highlight-icon,
.amenity-item:hover .amenity-icon {
    transform: scale(1.1);
    background: var(--color-dark);
    box-shadow: 0 5px 20px rgba(38, 38, 38, 0.3);
}

.highlight-icon svg {
    width: 35px;
    height: 35px;
}

.highlight-title {
    display: none;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
}

.amenities-section {
    width: 100%;
    padding: 6rem 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.amenities-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.amenities-container {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.section-title-small {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.amenity-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 0px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.amenity-icon svg {
    width: 35px;
    height: 35px;
}

.amenity-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.amenity-item p {
    font-size: 1.05rem;
    color: var(--color-dark);
    line-height: 1.5;
    font-weight: 600;
}

.features-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    margin-bottom: 4rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-ocean-light);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    font-size: 1.05rem;
    color: var(--color-white);
    font-weight: 500;
}

.section-cta {
    width: 100%;
    margin-top: 5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
}

.units-section {
    padding: 6rem 0;
    background: #fff;
}

.units-section .container {
    max-width: 1366px;
    padding: 0 var(--container-padding);
}

.units-section .section-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 3rem;
}

.units-section .section-title {
    font-size: 2.8rem;
    color: var(--color-primary);
}

.units-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-top: 0.75rem;
}

.unit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 4rem;
    justify-items: center;
}

.unit-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 18px 45px rgba(10, 77, 104, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    width: 100%;
    max-width: 760px;
}

.unit-media {
    position: relative;
    margin: -3rem -3rem 2rem;
    height: 280px;
    overflow: hidden;
}

.unit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.unit-type {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    padding: 0.4rem 1.5rem;
    border-radius: 64px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.unit-details p {
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-bottom: 1.4rem;
}

.unit-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.unit-highlights li {
    padding-left: 1.25rem;
    position: relative;
    color: var(--color-dark);
}

.unit-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-dark);
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.unit-download {
    width: 100%;
    margin-top: 6rem;
    display: flex;
    justify-content: center;
}

.unit-plan-link {
    color: rgba(10, 77, 104, 0.75);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted rgba(8, 131, 149, 0.5);
    padding-bottom: 0.15rem;
    transition: color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.unit-plan-link:hover {
    color: var(--color-primary);
    border-color: var(--color-accent);
}

@media screen and (max-width: 768px) {
    .units-section {
        padding: 4rem 0 3rem;
    }

    .units-section .section-title {
        font-size: 2.2rem;
    }

    .unit-card {
        padding: 2rem;
    }

    .unit-media {
        margin: -2rem -2rem 1.5rem;
    }

    .unit-type {
        left: 1rem;
        bottom: 1rem;
        font-size: 0.85rem;
        padding: 0.3rem 1.2rem;
    }

}

@media screen and (max-width: 390px) {
    .unit-type {
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        max-width: 90%;
        text-align: center;
    }
}

.gallery-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    background: #000;
    color: var(--color-white);
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - var(--header-height));
}

.gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 1;
}

.gallery-caption {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4rem;
    width: min(640px, calc(100% - (var(--container-padding) * 2)));
    background: rgba(0, 0, 0, 0.35);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.gallery-title {
    font-size: 1.2em;
    margin-bottom: 1rem;
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    margin-bottom: 0.9rem;
}

.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.45);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 3;
    transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.gallery-control:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.gallery-control-prev {
    left: 2rem;
}

.gallery-control-next {
    right: 2rem;
}

.gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.gallery-dot.active {
    width: 28px;
    background: var(--color-accent);
}

@media screen and (max-width: 1024px) {
    .gallery-caption {
        padding: 2rem;
    }
}

@media screen and (max-width: 920px) {

    .gallery-section,
    .gallery-slider {
        min-height: calc(100vh - var(--header-height-mobile));
    }

    .gallery-caption {
        text-align: left;
        max-width: 520px;
        bottom: 3rem;
    }

    .gallery-control {
        width: 46px;
        height: 46px;
    }
}

@media screen and (max-width: 640px) {


    .gallery-caption {
        padding: 1.8rem;
        bottom: 2rem;
    }
}

.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1 1 320px;
    color: var(--color-white);
    padding-right: 1rem;
}

.contact-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: var(--color-light);
    margin-bottom: 0.75rem;
}

.contact-title {
    font-size: 2.2rem;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.contact-copy {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-details span {
    font-weight: 600;
    color: var(--color-light);
    margin-right: 0.5rem;
}

.contact-details a {
    color: var(--color-white);
    text-decoration: none;
}

.contact-form-block {
    flex: 1 1 380px;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    padding-bottom: 0;
    box-shadow: 0 18px 45px rgba(10, 77, 104, 0.08);
    color: var(--color-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form label {
    font-size: 0.95rem;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.contact-turnstile {
    margin-top: 0.35rem;
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-status {
    min-height: 14px;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--color-dark);
}

.contact-form-status.is-success {
    color: #318200;
}

.contact-form-status.is-error {
    color: #b00020;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(10, 77, 104, 0.2);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(5, 191, 219, 0.2);
}

.contact-submit {
    align-self: flex-start;
    margin-top: 0.3rem;
}

.contact-submit:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.contact-submit:disabled,
.contact-submit[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

@media screen and (max-width: 842px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-block {
        padding: 0;
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-form-block {
        padding: 2rem;
    }
}

.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 1.4rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto auto;
    justify-content: center;
    column-gap: 5rem;
    row-gap: 2rem;
    align-items: flex-start;
    width: 100%;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    height: 42px;
    margin-bottom: 0.8rem;
}

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

.footer-project-link {
    margin-top: 1rem;
}

.footer-project-link a {
    color: #ffc857;
    text-decoration: none;
}

.footer-project-link a:hover {
    color: #ffc857;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--color-accent);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact a,
.footer-social a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
    color: var(--color-light);
}

.footer-social {
    min-width: 160px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease, background var(--transition-speed) ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-link:hover {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
}

@media screen and (max-width: 900px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        width: 100%;
    }

    .footer-links ul,
    .footer-contact ul {
        align-items: flex-start;
    }
}

.location-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
    background: #000;
}

.location-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.location-map iframe {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 100%;
    border: 0;
    filter: saturate(0.95) contrast(1.05);
}

.location-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.01) 40%, rgba(0, 0, 0, 0.01) 100%);
}

.location-overlay .container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
}

.location-card {
    max-width: 512px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.location-marker {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(calc(-50% + 90px), calc(-50% + 64px));
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.marker-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 4px solid #ffffff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
    animation: pulse 2.5s infinite ease-in-out;
}

.marker-label {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.25);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.location-eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.location-title {
    font-size: 2.3rem;
    line-height: 1.2;
    color: var(--color-primary);
    margin-top: 1.5rem;
}

.location-description {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    margin-top: 2.6rem;
    margin-bottom: 2.6rem;
}

.location-details {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--color-dark);
    font-size: 1rem;
    line-height: 1.7;
}

.location-details li+li {
    margin-top: 0.5rem;
}

@media screen and (max-width: 920px) {
    .location-overlay .container {
        justify-content: center;
        padding: 0 2rem;
    }

    .location-card {
        max-width: 640px;
    }

    .location-marker {
        display: none;
    }

}

@media screen and (max-width: 980px) {
    .unit-grid {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .about-section .container {
        flex-direction: column;
    }

    .about-section .left,
    .about-section .right {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .about-section .section-header,
    .about-section .intro-text {
        text-align: center;
    }

    .about-section .section-divider {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1024px) {
    .logo-rectangular {
        display: none;
    }

    .about-section {
        background-color: rgba(0, 0, 0, 0.3);
        background-blend-mode: multiply;
    }

    .logo-square {
        display: block;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .intro-text p {
        font-size: 1.4rem;
    }

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

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

}

@media screen and (max-width: 800px) {
    html {
        scroll-padding-top: var(--header-height-mobile);
    }

    :root {
        --container-padding: var(--container-padding-mobile);
    }

    .header {
        height: var(--header-height-mobile);
    }

    .header-container {
        height: var(--header-height-mobile);
        justify-content: flex-start;
        position: relative;
    }

    /* Center the logo */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo:hover {
        transform: translateX(-50%) scale(1.05);
    }

    .logo img {
        height: 45px;
    }

    /* Show hamburger menu */
    .menu-toggle {
        display: flex;
        position: absolute;
        left: var(--container-padding-mobile);
    }

    /* Mobile navigation */
    .nav {
        position: fixed;
        top: var(--header-height-mobile);
        left: -100%;
        width: 280px;
        height: calc(100vh - var(--header-height-mobile));
        background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
        padding: 2rem 1rem;
        transition: left var(--transition-speed) ease;
        overflow-y: auto;
        z-index: 999;
    }

    .nav.active {
        left: 0;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 0.5rem;
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: var(--color-white);
        color: var(--color-primary);
        padding-left: 1rem;
    }

    .nav-overlay {
        display: block;
    }

    .location-section,
    .location-overlay {
        min-height: calc(100vh - var(--header-height-mobile));
    }

    .location-map iframe {
        left: 0;
        width: 100%;
    }

    .location-marker {
        display: none;
    }

    .hero-tagline {
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        margin-bottom: 1.25rem;
    }

    .hero-footer {
        font-size: 1.1rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .about-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-text {
        margin-bottom: 3rem;
    }

    .intro-text p {
        font-size: 1.1rem;
        text-align: center;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        justify-items: center;
    }

    .highlight-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 490px;
    }

    .features-section {
        padding: 2.5rem 1.5rem;
        margin-bottom: 3rem;
    }

    .features-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

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

    .section-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .location-overlay {
        padding: 3rem 0;
        background: rgba(0, 0, 0, 0.1);
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.01) 40%, rgba(0, 0, 0, 0.01) 100%);
    }

    .location-overlay .container {
        justify-content: flex-start;
    }

    .location-card {
        width: 100%;
        max-width: none;
        padding: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 0.08em;
    }

    .hero-footer {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        letter-spacing: 1px;
    }
}
