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

:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2d2d2d;
    --coral: #FF6B4F;
    --coral-soft: #FF8A72;
    --coral-glow: rgba(255, 107, 79, 0.15);
    --white: #ffffff;
    --off-white: #faf9f7;
    --gray-50: #f7f7f5;
    --gray-100: #efefed;
    --gray-200: #e0e0dc;
    --gray-400: #9e9e9a;
    --gray-600: #6b6b68;
    --gray-800: #3a3a38;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal);
    background: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ─── */
.label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.heading {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
}

.heading--lg {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.heading em {
    font-style: italic;
    color: var(--coral);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn--primary:hover {
    background: var(--coral-soft);
    border-color: var(--coral-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 79, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 0.85rem;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.4s var(--ease-out);
}

.nav.scrolled .nav__logo {
    color: var(--charcoal);
}

.nav__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid currentColor;
    border-radius: 2px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--coral);
    border-color: var(--coral);
}

.nav__logo-text {
    letter-spacing: 0.02em;
}

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

.nav__link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s var(--ease-out);
    position: relative;
}

.nav.scrolled .nav__link {
    color: var(--gray-600);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
    color: var(--coral);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(255, 107, 79, 0.5);
    border-radius: 2px;
    color: var(--coral);
    transition: all 0.3s var(--ease-out);
}

.nav.scrolled .nav__link--cta {
    border-color: var(--coral);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--coral);
    color: var(--white);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 4px;
    transition: color 0.4s var(--ease-out);
}

.nav.scrolled .nav__toggle {
    color: var(--charcoal);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #1a1a1a 0%, 
            #2d1f1a 25%, 
            #3d2218 40%, 
            #FF6B4F 70%, 
            #FF8A72 85%, 
            #ffb09a 100%
        );
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(26, 26, 26, 0.4) 100%),
        linear-gradient(to bottom, transparent 60%, rgba(26, 26, 26, 0.3) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 0 24px;
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
}

.hero__headline {
    font-size: clamp(2.6rem, 6.5vw, 5.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
}

.hero__em {
    font-style: italic;
    color: var(--coral-soft);
}

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 44px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Divider ─── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
}

.divider__line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: var(--gray-200);
}

.divider__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
}

/* ─── Section ─── */
.section {
    padding: 120px 0;
}

.section__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 72px;
}

.section__desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-top: 20px;
}

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

.about__image-wrap {
    position: relative;
}

.about__image-wrap::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--coral);
    border-radius: 2px;
    z-index: 0;
    opacity: 0.3;
}

.about__image-wrap img {
    position: relative;
    z-index: 1;
    border-radius: 2px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about__text {
    padding: 20px 0;
}

.about__text p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 32px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--charcoal);
}

.feature svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* ─── Selection ─── */
.selection {
    background: var(--white);
}

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

.card {
    display: block;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease-out);
    background: var(--off-white);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.08);
    border-color: transparent;
}

.card__img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.card:hover .card__img-wrap img {
    transform: scale(1.04);
}

.card__body {
    padding: 28px 28px 32px;
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.card__desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ─── Visit ─── */
.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit__info {
    padding: 20px 0;
}

.visit__details {
    margin: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.detail {
    display: flex;
    gap: 16px;
}

.detail svg {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail__label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.detail__value {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
}

.detail__link {
    color: var(--coral);
    transition: color 0.3s var(--ease-out);
}

.detail__link:hover {
    color: var(--coral-soft);
}

.visit__map {
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--gray-100);
}

.visit__map iframe {
    width: 100%;
    height: 100%;
}

/* ─── Footer ─── */
.footer {
    background: var(--charcoal);
    padding: 56px 0;
}

.footer__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

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

.footer__name {
    font-weight: 400;
    letter-spacing: 0.02em;
}

.footer__copy {
    font-size: 0.78rem;
    color: var(--gray-400);
    letter-spacing: 0.04em;
}

.footer__tagline {
    font-size: 0.78rem;
    color: var(--gray-600);
    letter-spacing: 0.04em;
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Mobile Menu ─── */
.nav__menu.open {
    display: flex;
}

@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 249, 247, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.4s var(--ease-out);
    }

    .nav__menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav__link {
        color: var(--charcoal);
        font-size: 0.9rem;
    }

    .nav__link--cta {
        border-color: var(--coral);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image-wrap img {
        height: 360px;
    }

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

    .visit__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visit__map {
        aspect-ratio: 16/9;
    }

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

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

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 240px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero__headline {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
}
