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

:root {
    --green-dark:   #1a3a2a;
    --green-mid:    #2d5a3f;
    --green-light:  #4a7c5c;
    --green-pale:   #e8f0ea;
    --cream:        #f7f5f0;
    --cream-dark:   #ede9e0;
    --warm:         #c8b49a;
    --warm-light:   #e8dcc8;
    --text:         #1a1a18;
    --text-muted:   #6b6b66;
    --text-light:   #9a9a94;
    --white:        #ffffff;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', -apple-system, sans-serif;
    --ease:         cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:     cubic-bezier(0, 0, 0.2, 1);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

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

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.accent {
    color: var(--green-mid);
}

.section-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green-light);
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--cream);
    border: 1px solid var(--green-dark);
}

.btn-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 58, 42, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(247, 245, 240, 0.35);
}

.btn-ghost:hover {
    border-color: var(--cream);
    background: rgba(247, 245, 240, 0.08);
}

.btn-outline {
    background: transparent;
    color: var(--green-dark);
    border: 1px solid var(--green-dark);
}

.btn-outline:hover {
    background: var(--green-dark);
    color: var(--cream);
}

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

/* ── Header ───────────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 24px;
    transition: all 0.4s var(--ease);
}

#site-header.scrolled {
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 58, 42, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cream);
    transition: color 0.3s var(--ease);
}

#site-header.scrolled .logo { color: var(--green-dark); }

.logo-mark svg { opacity: 0.85; }

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

#main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

#main-nav a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 245, 240, 0.75);
    transition: color 0.3s var(--ease);
    position: relative;
}

#main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease);
}

#main-nav a:hover { color: var(--cream); }
#main-nav a:hover::after { width: 100%; }

#site-header.scrolled #main-nav a { color: var(--text-muted); }
#site-header.scrolled #main-nav a:hover { color: var(--green-dark); }

.nav-cta {
    border: 1px solid rgba(247, 245, 240, 0.35) !important;
    padding: 8px 20px !important;
    border-radius: 2px;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: rgba(247, 245, 240, 0.1) !important; border-color: rgba(247, 245, 240, 0.6) !important; }

#site-header.scrolled .nav-cta {
    border-color: var(--green-dark) !important;
    color: var(--green-dark) !important;
}

#site-header.scrolled .nav-cta:hover {
    background: var(--green-dark) !important;
    color: var(--cream) !important;
}

.nav-toggle, .nav-close {
    display: none;
    color: var(--cream);
    transition: color 0.3s var(--ease);
}

#site-header.scrolled .nav-toggle,
#site-header.scrolled .nav-close { color: var(--green-dark); }

/* ── Mobile Menu ──────────────────────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu ul { list-style: none; text-align: center; }

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--green-dark);
    padding: 12px 24px;
    transition: color 0.3s var(--ease);
}

.mobile-link:hover { color: var(--green-light); }

.nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
}

/* ── Hero ─────────────────────────────────────────── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 58, 42, 0.45) 0%,
        rgba(26, 58, 42, 0.35) 50%,
        rgba(26, 58, 42, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 72px;
    max-width: 720px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(247, 245, 240, 0.7);
    margin-bottom: 28px;
}

.tag-line {
    width: 32px;
    height: 1px;
    background: rgba(247, 245, 240, 0.4);
    flex-shrink: 0;
}

#hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: var(--cream);
    margin-bottom: 24px;
}

.headline-line {
    display: block;
    font-weight: 300;
}

.headline-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(247, 245, 240, 0.7);
    max-width: 520px;
    margin-top: 16px;
    letter-spacing: 0.01em;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

/* ── Hero Stats ───────────────────────────────────── */
.hero-stats {
    position: absolute;
    right: 24px;
    bottom: 60px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.stat-card {
    background: rgba(247, 245, 240, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(247, 245, 240, 0.15);
    padding: 20px 24px;
    min-width: 140px;
    transition: background 0.3s var(--ease);
}

.stat-card:hover {
    background: rgba(247, 245, 240, 0.16);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.stat-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(247, 245, 240, 0.55);
    margin-top: 4px;
}

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

/* ── About ────────────────────────────────────────── */
#about { background: var(--cream); }

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

.about-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 28px;
    color: var(--text);
}

.about-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: 480px;
}

.about-divider {
    width: 48px;
    height: 1px;
    background: var(--warm);
    margin: 28px 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.value {
    display: flex;
    align-items: center;
    gap: 14px;
}

.value-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--warm-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    flex-shrink: 0;
}

.value-icon svg { width: 16px; height: 16px; }

.value-text {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text);
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.6s var(--ease);
}

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

/* ── Stay ─────────────────────────────────────────── */
#stay {
    background: var(--green-dark);
    color: var(--cream);
}

#stay .section-label { color: var(--warm); }
#stay .section-label::before { background: var(--warm); }

#stay > .container > h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    max-width: 600px;
    margin-bottom: 64px;
    color: var(--cream);
}

.stay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.stay-card {
    background: rgba(247, 245, 240, 0.05);
    border: 1px solid rgba(247, 245, 240, 0.08);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.stay-card:hover {
    background: rgba(247, 245, 240, 0.08);
    border-color: rgba(247, 245, 240, 0.15);
    transform: translateY(-4px);
}

.stay-card-img {
    overflow: hidden;
    aspect-ratio: 16/11;
}

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

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

.stay-card-body {
    padding: 28px 24px;
}

.stay-card-body h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 10px;
}

.stay-card-body p {
    font-size: 0.88rem;
    color: rgba(247, 245, 240, 0.6);
    line-height: 1.75;
}

.stay-cta { text-align: center; }

/* ── Location ─────────────────────────────────────── */
#location { background: var(--cream); }

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

.location-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
}

.location-info > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 32px;
    max-width: 440px;
}

.location-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.loc-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.9rem;
    color: var(--text);
}

.loc-row svg {
    color: var(--green-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.loc-row a {
    color: var(--green-mid);
    transition: color 0.3s var(--ease);
}

.loc-row a:hover { color: var(--green-dark); }

.location-note {
    padding: 16px 20px;
    background: var(--green-pale);
    border-left: 2px solid var(--green-light);
    border-radius: 0 2px 2px 0;
}

.location-note p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.location-map {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-placeholder {
    background: var(--green-pale);
    border: 1px solid var(--warm-light);
    border-radius: 2px;
    padding: 48px;
    text-align: center;
}

.map-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-pin-icon {
    color: var(--green-mid);
    opacity: 0.6;
}

.map-label {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
}

.map-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.map-btn { margin-top: 8px; }

.map-image {
    overflow: hidden;
    border-radius: 2px;
}

.map-image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

/* ── Contact ──────────────────────────────────────── */
#contact {
    background: var(--cream-dark);
}

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

.contact-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 420px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--warm-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    flex-shrink: 0;
}

.contact-item-icon svg { width: 18px; height: 18px; }

.contact-item-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-item a {
    font-size: 1rem;
    color: var(--green-dark);
    transition: color 0.3s var(--ease);
}

.contact-item a:hover { color: var(--green-light); }

/* ── Form ─────────────────────────────────────────── */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid rgba(26, 58, 42, 0.08);
    border-radius: 2px;
    padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.3s var(--ease);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.success-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    margin-bottom: 4px;
}

.form-success h3 {
    font-size: 1.4rem;
    color: var(--green-dark);
}

.form-success p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── Footer ───────────────────────────────────────── */
#footer {
    background: var(--green-dark);
    color: var(--cream);
    padding: 56px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(247, 245, 240, 0.1);
}

.footer-brand .logo { color: var(--cream); margin-bottom: 12px; }

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(247, 245, 240, 0.5);
    letter-spacing: 0.04em;
}

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

.footer-links a {
    font-size: 0.82rem;
    color: rgba(247, 245, 240, 0.6);
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ease);
}

.footer-links a:hover { color: var(--cream); }

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

.footer-contact a {
    font-size: 0.88rem;
    color: rgba(247, 245, 240, 0.6);
    transition: color 0.3s var(--ease);
}

.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.75rem;
    color: rgba(247, 245, 240, 0.35);
}

.footer-legal { letter-spacing: 0.02em; }

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

.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; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid,
    .location-grid,
    .contact-grid { gap: 40px; }

    .stay-grid { grid-template-columns: repeat(2, 1fr); }
    .stay-card:last-child { grid-column: span 2; }
    .stay-card:last-child .stay-card-img { aspect-ratio: 16/7; }
}

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

    #main-nav { display: none; }
    .nav-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
    .nav-close { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }

    .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        margin-top: 48px;
        flex-wrap: wrap;
    }

    .stat-card { flex: 1; min-width: 0; padding: 16px 20px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; aspect-ratio: 16/9; }

    .stay-grid { grid-template-columns: 1fr; }
    .stay-card:last-child { grid-column: auto; }
    .stay-card:last-child .stay-card-img { aspect-ratio: 16/11; }

    .location-grid { grid-template-columns: 1fr; }
    .location-map { order: -1; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px; }

    .form-row { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .hero-content { padding-top: 64px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { justify-content: center; }
    .hero-stats { flex-direction: column; }
    .stat-card { min-width: auto; }
}
