/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0A1628;
    --navy-light: #132240;
    --gold: #C8963E;
    --gold-light: #D4A84B;
    --gold-pale: #F5E6C8;
    --cream: #FAF6F0;
    --cream-dark: #F0E8DA;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

em {
    font-style: italic;
    color: var(--gold);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn--gold {
    background: var(--gold);
    color: var(--navy);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
}

.nav__logo-icon {
    flex-shrink: 0;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links a {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.nav__cta::after {
    display: none;
}

.nav__cta:hover {
    background: var(--gold);
    color: var(--navy) !important;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 24px;
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--gold);
}

.mobile-menu__cta {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 16px;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero__container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    gap: 60px;
    align-items: center;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__headline {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.05;
}

.hero__body {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.hero__info-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Hero Image */
.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero__image-wrapper:hover img {
    transform: scale(1.03);
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}

/* Hero Scroll */
.hero__scroll {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px 40px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* ===== About ===== */
.about {
    padding: 140px 40px;
    background: var(--cream);
}

.about__container {
    max-width: 1280px;
    margin: 0 auto;
}

.about__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 48px;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.1;
}

.about__text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__image {
    border-radius: 4px;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* ===== Sites ===== */
.sites {
    padding: 140px 40px;
    background: var(--navy);
}

.sites__container {
    max-width: 1280px;
    margin: 0 auto;
}

.sites__header {
    text-align: center;
    margin-bottom: 80px;
}

.sites__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.sites__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--white);
    line-height: 1.1;
}

.sites__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.site-card {
    background: var(--navy-light);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 150, 62, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.site-card__image {
    overflow: hidden;
    aspect-ratio: 500/340;
}

.site-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.site-card:hover .site-card__image img {
    transform: scale(1.05);
}

.site-card__body {
    padding: 32px;
}

.site-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.site-card__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.site-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.sites__note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
}

/* ===== Area ===== */
.area {
    padding: 140px 40px;
    background: var(--cream);
}

.area__container {
    max-width: 1280px;
    margin: 0 auto;
}

.area__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.area__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--navy);
    margin-bottom: 64px;
    line-height: 1.1;
}

.area__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.area__item {
    transition: var(--transition);
}

.area__item:hover {
    transform: translateY(-4px);
}

.area__item-img {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 500/400;
}

.area__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.area__item-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.area__item p {
    font-size: 0.9375rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ===== Gallery ===== */
.gallery {
    padding: 140px 40px;
    background: var(--cream-dark);
}

.gallery__container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery__header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.gallery__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--navy);
    line-height: 1.1;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery__item {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery__item--large {
    grid-column: span 7;
    aspect-ratio: 800/600;
}

.gallery__item:not(.gallery__item--large) {
    grid-column: span 5;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===== Contact ===== */
.contact {
    padding: 140px 40px;
    background: var(--navy);
}

.contact__container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact__headline {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.contact__body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 48px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.6;
}

.contact__detail-value a {
    color: var(--gold);
    transition: var(--transition);
}

.contact__detail-value a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Form */
.contact__form-wrapper {
    background: var(--navy-light);
    border-radius: 4px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    transition: var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form__input:focus,
.form__textarea:focus {
    border-bottom-color: var(--gold);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form__success {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--gold);
}

.form__success.show {
    display: flex;
}

/* ===== Map Section ===== */
.map-section {
    background: var(--cream-dark);
}

.map-section__container {
    max-width: 100%;
    overflow: hidden;
}

.map-section__container iframe {
    width: 100%;
    height: 400px;
    filter: saturate(0.6) contrast(1.1);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    padding: 80px 40px 40px;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 64px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo-icon {
    width: 32px;
    height: 32px;
}

.footer__name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer__contact a {
    color: var(--gold);
    transition: var(--transition);
}

.footer__contact a:hover {
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
        padding: 100px 32px 60px;
    }
    
    .hero__headline {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    
    .about__grid,
    .contact__split {
        gap: 48px;
    }
    
    .sites__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .site-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 40px;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__image-wrapper {
        aspect-ratio: 4/3;
        max-height: 400px;
    }
    
    .hero__image-accent {
        display: none;
    }
    
    .hero__scroll {
        display: none;
    }
    
    .about,
    .sites,
    .area,
    .gallery,
    .contact {
        padding: 80px 24px;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__image {
        order: -1;
    }
    
    .about__image img {
        aspect-ratio: 16/10;
    }
    
    .sites__grid {
        grid-template-columns: 1fr;
    }
    
    .site-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .area__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 2;
    }
    
    .gallery__item:not(.gallery__item--large) {
        grid-column: span 1;
    }
    
    .contact__split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact__form-wrapper {
        padding: 32px 24px;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--large {
        grid-column: span 1;
    }
    
    .gallery__item:not(.gallery__item--large) {
        grid-column: span 1;
    }
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
