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

:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2a2a2a;
    --coral: #E8734A;
    --coral-light: #f08a66;
    --coral-pale: #fdf0ec;
    --white: #ffffff;
    --off-white: #faf8f6;
    --gray-50: #f7f7f7;
    --gray-100: #f0f0f0;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.5s var(--ease-out);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
}

.nav-container {
    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;
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.nav-logo-icon {
    color: var(--coral);
}

.nav-logo-text {
    letter-spacing: 0.08em;
}

.nav-logo-text .accent {
    color: var(--coral);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--charcoal);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--coral) !important;
    border: 1px solid var(--coral);
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--coral);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-title .serif-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--coral);
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 420px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
    font-family: var(--font-sans);
}

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

.btn-primary:hover {
    background: var(--coral);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 115, 74, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) 0.6s forwards;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--coral);
    z-index: -1;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--coral), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── Thin Divider ─── */
.thin-divider {
    padding: 0 24px;
}

.thin-divider .container {
    max-width: 1200px;
    margin: 0 auto;
}

.thin-line {
    height: 1px;
    background: var(--gray-100);
    width: 100%;
}

/* ─── Section Shared ─── */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--charcoal);
}

.section-title .serif-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--coral);
}

/* ─── Selection ─── */
.selection {
    padding: 100px 24px;
    background: var(--off-white);
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.selection-card {
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 2px;
    transition: all 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}

.selection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.selection-card:hover::before {
    transform: scaleX(1);
}

.selection-card-icon {
    color: var(--coral);
    margin-bottom: 24px;
    opacity: 0.85;
}

.selection-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.selection-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray-500);
}

/* ─── About ─── */
.about {
    padding: 100px 24px;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    overflow: hidden;
    aspect-ratio: 82/100;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-image-secondary img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 20px 0;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

/* ─── Visit ─── */
.visit {
    padding: 100px 24px;
    background: var(--off-white);
}

.visit-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.visit-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit-info-icon {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.visit-info-item h4 {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.visit-info-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-500);
}

.visit-info-item a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.visit-info-item a:hover {
    color: var(--coral);
}

.visit-map {
    position: relative;
    overflow: hidden;
}

.map-link {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.map-link:hover img {
    transform: scale(1.03);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

.map-link:hover .map-overlay {
    transform: translateY(0);
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 56px;
}

.footer-logo {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-right a {
    color: var(--coral);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-right a:hover {
    color: var(--coral-light);
}

.footer-right p {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 24px 0;
}

.footer-bottom .container {
    max-width: 1200px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-align: center;
    letter-spacing: 0.04em;
}

/* ─── Animations ─── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* ─── Scroll Reveal ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: right 0.5s var(--ease-out);
    }

    .nav-links.open {
        right: 0;
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: 120px 24px 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .selection {
        padding: 80px 24px;
    }

    .selection-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .selection-card {
        padding: 32px 24px;
    }

    .about {
        padding: 80px 24px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-secondary {
        right: 0;
        bottom: -20px;
    }

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

    .about-stats {
        justify-content: center;
    }

    .visit {
        padding: 80px 24px;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.75rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
