/* ============================================
   A Vivir's Cabin — Styles
   Classic & Elegant | Emerald + Cream
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-emerald: #1a5632;
    --color-emerald-dark: #134226;
    --color-emerald-light: #2a7a4a;
    --color-cream: #f5f0e8;
    --color-cream-light: #faf7f2;
    --color-cream-dark: #e8e0d0;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #7a7a7a;
    --color-white: #ffffff;
    --color-border: rgba(26, 86, 50, 0.12);

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1.5px;
    background: var(--color-emerald);
}

.section-label.light {
    color: var(--color-cream);
}

.section-label.light::before {
    background: var(--color-cream);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 24px;
}

.section-title.light {
    color: var(--color-cream);
}

.title-accent {
    font-style: italic;
    color: var(--color-emerald);
    font-weight: 400;
}

.section-title.light .title-accent {
    color: var(--color-cream);
    opacity: 0.85;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 540px;
    line-height: 1.8;
}

.section-desc.light {
    color: rgba(245, 240, 232, 0.75);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-emerald);
    color: var(--color-white);
    border: 1.5px solid var(--color-emerald);
}

.btn-primary:hover {
    background: var(--color-emerald-dark);
    border-color: var(--color-emerald-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
    transform: translateY(-1px);
}

.btn-cream {
    background: var(--color-cream);
    color: var(--color-emerald);
    border: 1.5px solid var(--color-cream);
}

.btn-cream:hover {
    background: var(--color-cream-dark);
    border-color: var(--color-cream-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

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

.nav.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--color-border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    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.15rem;
    font-weight: 500;
    color: var(--color-white);
    transition: color var(--transition);
}

.nav.scrolled .nav-logo {
    color: var(--color-emerald);
}

.nav-logo-icon {
    color: currentColor;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav.scrolled .nav-links a {
    color: var(--color-text-light);
}

.nav.scrolled .nav-links a:hover {
    color: var(--color-emerald);
}

.nav-cta {
    font-weight: 500 !important;
    color: var(--color-white) !important;
    background: var(--color-emerald);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    transition: all var(--transition) !important;
}

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

.nav-cta:hover {
    background: var(--color-emerald-dark) !important;
    transform: translateY(-1px);
}

.nav.scrolled .nav-cta {
    color: var(--color-white) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-white);
    transition: all var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--color-emerald);
}

.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 {
    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(
        135deg,
        rgba(10, 30, 16, 0.72) 0%,
        rgba(26, 86, 50, 0.55) 50%,
        rgba(10, 30, 16, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 120px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 28px;
    padding: 8px 16px;
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    color: #d4a84b;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-accent {
    font-style: italic;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.8);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.75);
    max-width: 560px;
    margin-bottom: 40px;
}

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

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    bottom: 60px;
    right: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition);
    animation: floatIn 0.8s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.3s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.5s; }
.stat-card:nth-child(4) { animation-delay: 0.6s; }

.stat-card:hover {
    transform: translateX(-4px);
}

.stat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald);
    border-radius: var(--radius-sm);
    color: var(--color-white);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

/* --- About --- */
.about {
    background: var(--color-cream-light);
}

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

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

.about-image-wrap img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--color-emerald);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.15;
}

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

.about-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-text);
}

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

/* --- Divider --- */
.section-divider {
    background: var(--color-emerald);
    line-height: 0;
}

/* --- Stay --- */
.stay {
    background: var(--color-cream-light);
    padding-top: 80px;
}

.stay-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 300px 260px;
    gap: 16px;
    margin-bottom: 60px;
}

.stay-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.stay-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stay-gallery-item:hover img {
    transform: scale(1.05);
}

.stay-gallery-item.large {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.stay-gallery-item.wide {
    grid-column: 7 / 13;
    grid-row: 2 / 3;
}

.stay-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0;
    transition: opacity var(--transition);
}

.stay-gallery-item:hover .stay-gallery-caption {
    opacity: 1;
}

/* Amenities */
.stay-amenities {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.amenity-group-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 24px;
}

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

.amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.amenity svg {
    color: var(--color-emerald);
    flex-shrink: 0;
}

.stay-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.stay-cta p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-text);
    font-style: italic;
}

/* --- Surroundings --- */
.surroundings {
    background: var(--color-white);
}

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

.surroundings-content {
    order: 1;
}

.surroundings-image-stack {
    order: 2;
    position: relative;
    height: 700px;
}

.stack-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.stack-img-1 {
    width: 300px;
    height: 400px;
    top: 0;
    right: 40px;
    z-index: 1;
}

.stack-img-2 {
    width: 280px;
    height: 320px;
    bottom: 40px;
    left: 0;
    z-index: 2;
}

.surroundings-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.surrounding-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    color: var(--color-emerald);
}

.surrounding-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.surrounding-item span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* --- Quote Section --- */
.quote-section {
    background: var(--color-emerald);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
}

.quote-wrap {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.quote-mark {
    color: var(--color-cream);
    margin-bottom: 24px;
}

.quote-wrap blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-cream);
    margin-bottom: 28px;
}

.quote-divider {
    display: flex;
    justify-content: center;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.quote-source {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-style: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
}

/* --- Contact --- */
.contact {
    background: var(--color-cream-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald);
    border-radius: var(--radius-sm);
    color: var(--color-white);
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.9375rem;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--color-emerald);
}

.contact-detail-value a:hover {
    text-decoration: underline;
}

.contact-map {
    margin-top: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    aspect-ratio: 2.14 / 1;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 86, 50, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background var(--transition);
}

.map-link:hover .map-overlay {
    background: rgba(26, 86, 50, 0.85);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-sub {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-cream-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-emerald);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-emerald);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* --- Footer --- */
.footer {
    background: var(--color-emerald-dark);
    color: var(--color-cream);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color var(--transition);
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.6);
}

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

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-emerald);
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-emerald-dark);
    transform: translateY(-2px);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 86, 50, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--color-cream);
    padding: 8px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-cream);
    padding: 12px 24px;
    transition: opacity var(--transition);
}

.mobile-menu-link:hover {
    opacity: 0.7;
}

.mobile-menu-cta {
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--color-cream);
    color: var(--color-emerald);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
}

.mobile-menu-footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.6;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 24px 60px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-content {
        padding-bottom: 0;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
    }

    .about-grid,
    .surroundings-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .surroundings-content {
        order: 2;
    }

    .surroundings-image-stack {
        order: 1;
        height: 450px;
    }

    .stack-img-1 {
        width: 220px;
        height: 300px;
        right: 20px;
    }

    .stack-img-2 {
        width: 200px;
        height: 260px;
        left: 0;
    }

    .stay-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 240px;
    }

    .stay-gallery-item.large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .stay-gallery-item.wide {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 72px 0;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-badge {
        font-size: 0.6875rem;
    }

    .about-image-wrap img {
        height: 360px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stay-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 260px 220px 200px;
    }

    .stay-gallery-item.large,
    .stay-gallery-item.wide {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .stay-amenities {
        padding: 32px 24px;
    }

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

    .stay-cta {
        flex-direction: column;
        text-align: center;
    }

    .surroundings-image-stack {
        height: 360px;
    }

    .stack-img-1 {
        width: 180px;
        height: 240px;
        right: 10px;
    }

    .stack-img-2 {
        width: 160px;
        height: 220px;
        left: 0;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .stat-card {
        flex: 1;
        min-width: 160px;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
        width: 100%;
    }

    .stay-gallery {
        grid-template-rows: 220px 200px 180px;
    }
}
