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

:root {
    --green-900: #1a2e25;
    --green-800: #2D4A3E;
    --green-700: #3d6352;
    --green-600: #4a7a63;
    --green-500: #5c9476;
    --cream: #E8E4D9;
    --cream-light: #F2EFE6;
    --cream-white: #FAF8F3;
    --text-dark: #1a1f1c;
    --text-mid: #3d4440;
    --text-light: #6b7570;
    --line: rgba(45, 74, 62, 0.15);
    --line-strong: rgba(45, 74, 62, 0.3);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --max-width: 1200px;
    --header-h: 72px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream-white);
    line-height: 1.7;
    font-size: 15px;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: var(--cream-light);
    padding: 8px 16px;
    z-index: 100;
    font-size: 13px;
    border-radius: 0 0 4px 4px;
}
.skip-link:focus {
    top: 0;
}

/* ===== Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 50;
    background: rgba(250, 248, 243, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(26, 46, 37, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--green-800);
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.logo:hover { color: var(--green-700); }
.logo-mark { color: var(--green-700); }

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
}
.site-nav a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
}
.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green-700);
    transition: width 0.3s ease;
}
.site-nav a:hover { color: var(--green-800); }
.site-nav a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--green-800);
    padding: 8px;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(45, 74, 62, 0.85) 0%, rgba(26, 46, 37, 0.92) 50%, rgba(18, 32, 26, 0.97) 100%),
        url('https://images.pexels.com/photos/18651505/pexels-photo-18651505.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    z-index: 0;
}
.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 46, 37, 0.3) 100%);
}

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

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232, 228, 217, 0.7);
    margin-bottom: 28px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5.5vw, 64px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--cream-light);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.hero-headline em {
    font-style: italic;
    font-weight: 300;
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 17px);
    color: rgba(232, 228, 217, 0.75);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(232, 228, 217, 0.5);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
}
.btn-primary {
    background: var(--cream-light);
    color: var(--green-800);
    border-color: var(--cream-light);
}
.btn-primary:hover {
    background: transparent;
    color: var(--cream-light);
    border-color: var(--cream-light);
}
.btn-ghost {
    background: transparent;
    color: var(--cream-light);
    border-color: rgba(232, 228, 217, 0.4);
}
.btn-ghost:hover {
    border-color: var(--cream-light);
    color: var(--cream-light);
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.btn-dark {
    background: var(--green-800);
    color: var(--cream-light);
    border-color: var(--green-800);
}
.btn-dark:hover {
    background: var(--green-700);
    border-color: var(--green-700);
}

/* ===== Section Labels ===== */
.section-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--green-900);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* ===== Intro ===== */
.intro {
    padding: 120px 0;
}
.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.intro-text .section-heading { margin-bottom: 24px; }
.intro-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 15px;
}
.intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

/* ===== Divider ===== */
.divider {
    padding: 40px 0;
    text-align: center;
    color: var(--green-700);
    opacity: 0.5;
}

/* ===== Rooms ===== */
.rooms {
    padding: 80px 0 120px;
}
.rooms .section-heading {
    margin-bottom: 56px;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}
.room-card {
    border-radius: 2px;
    overflow: hidden;
}
.room-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-image img {
    transform: scale(1.03);
}
.room-body {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}
.room-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--green-900);
    margin-bottom: 10px;
}
.room-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}
.room-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.room-features li {
    font-size: 12px;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    padding: 4px 0;
}
.room-features li::before {
    content: '·';
    margin-right: 6px;
    color: var(--green-600);
}
.rooms-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 16px;
}

/* ===== Experience ===== */
.experience {
    padding: 120px 0;
    background: var(--cream);
}
.experience .section-heading {
    margin-bottom: 56px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
}
.feature-card {
    padding-top: 24px;
    border-top: 1px solid var(--line-strong);
}
.feature-icon {
    color: var(--green-700);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--green-900);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Location ===== */
.location {
    padding: 120px 0;
}
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.location-text .section-heading { margin-bottom: 20px; }
.location-text p {
    color: var(--text-mid);
    font-size: 15px;
    margin-bottom: 16px;
}
.location-address {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--green-800);
    line-height: 1.6;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.location-address svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--green-600);
}
.location-links {
    margin-top: 28px;
}
.location-links .btn-ghost {
    color: var(--green-800);
    border-color: var(--line-strong);
}
.location-links .btn-ghost:hover {
    border-color: var(--green-800);
    background: var(--green-800);
    color: var(--cream-light);
}
.location-map iframe {
    width: 100%;
    height: 420px;
    border-radius: 2px;
    filter: saturate(0.7) contrast(1.05);
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--green-900);
    color: var(--cream-light);
}
.contact .section-label { color: var(--green-500); }
.contact .section-heading {
    color: var(--cream-light);
    margin-bottom: 16px;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info p {
    color: rgba(232, 228, 217, 0.7);
    font-size: 15px;
    margin-bottom: 36px;
}
.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-item dt {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-500);
}
.contact-item dd a {
    font-size: 15px;
    color: var(--cream-light);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.contact-item dd a:hover { color: var(--cream); }
.contact-item dd a svg { color: var(--green-500); flex-shrink: 0; }

/* Form */
.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    padding: 40px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232, 228, 217, 0.6);
    margin-bottom: 8px;
}
.optional {
    font-size: 10px;
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0.02em;
    opacity: 0.6;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--cream-light);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 228, 217, 0.3);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-note {
    font-size: 12px;
    color: rgba(232, 228, 217, 0.4);
    margin-top: 12px;
    text-align: center;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
    color: var(--cream-light);
}
.form-success svg {
    color: var(--green-500);
    margin: 0 auto 16px;
}
.form-success h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
}
.form-success p {
    color: rgba(232, 228, 217, 0.7);
    font-size: 14px;
}

/* ===== Footer ===== */
.site-footer {
    padding: 64px 0 32px;
    background: var(--green-900);
    border-top: 1px solid var(--line-strong);
    color: var(--cream-light);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
}
.footer-brand .logo {
    color: var(--cream-light);
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 13px;
    color: rgba(232, 228, 217, 0.5);
    font-style: italic;
    font-family: var(--font-serif);
    font-size: 15px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.footer-links a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(232, 228, 217, 0.6);
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream-light); }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
}
.footer-contact a {
    font-size: 13px;
    color: rgba(232, 228, 217, 0.6);
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--cream-light); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 12px;
    color: rgba(232, 228, 217, 0.35);
}

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .intro-layout,
    .location-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .intro-image { order: -1; }
    .intro-image img { height: 360px; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 560px; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-links { flex-direction: row; justify-content: center; }
    .footer-contact { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 640px) {
    :root { --header-h: 64px; }
    .site-nav { 
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--line);
        padding: 20px 24px;
    }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; gap: 16px; }
    .nav-toggle { display: block; }
    .hero { min-height: 90vh; padding: 100px 20px 60px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 260px; justify-content: center; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .location-map iframe { height: 280px; }
    .intro { padding: 80px 0; }
    .experience { padding: 80px 0; }
    .rooms { padding: 60px 0 80px; }
    .location { padding: 80px 0; }
    .contact { padding: 80px 0; }
}
