/* ===================================
   ACAZA Farm House - Luxury Website
   Style: Luxury & Sophisticated
   =================================== */

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

:root {
    /* Colors - Warm Gold Palette */
    --primary-50: #FDF8E8;
    --primary-500: #B8860B;
    --primary-600: #9A7209;
    --primary-900: #6B5006;
    
    /* Neutrals - Warm Ivory Undertones */
    --neutral-50: #FAFAF8;
    --neutral-100: #F5F4F0;
    --neutral-200: #E8E6E0;
    --neutral-500: #9B9A94;
    --neutral-700: #4A4A45;
    --neutral-900: #1C1C19;
    
    /* Semantic */
    --success: #6B8E6B;
    --accent: #8B6B4A;
    
    /* Typography */
    --font-headline: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, sans-serif;
    
    /* Spacing - 8pt Grid with Luxury Extensions */
    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-96: 96px;
    --space-128: 128px;
    --space-160: 160px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-card: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-card-hover: 0 12px 24px rgba(0,0,0,0.12), 0 6px 12px rgba(0,0,0,0.06);
    --shadow-modal: 0 24px 48px rgba(0,0,0,0.15), 0 12px 24px rgba(0,0,0,0.08);
    --shadow-nav: 0 2px 8px rgba(0,0,0,0.06);
    
    /* Animation Timing */
    --duration-fast: 300ms;
    --duration-base: 400ms;
    --duration-slow: 500ms;
    --duration-luxury: 600ms;
    --easing-elegance: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Gradient */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4B5 50%, #C9A961 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-900);
    background-color: var(--neutral-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.section {
    padding: var(--space-96) 0;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-headline);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 72px;
    color: var(--neutral-900);
    margin-bottom: var(--space-24);
    letter-spacing: -0.01em;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: var(--neutral-700);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto var(--space-64);
}

.section-subtitle.centered {
    text-align: center;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--neutral-50);
    z-index: 1000;
    transition: box-shadow var(--duration-base) var(--easing-elegance);
}

#navbar.scrolled {
    box-shadow: var(--shadow-nav);
    border-bottom: 1px solid var(--neutral-200);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-48);
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-900);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-8);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--neutral-900);
    transition: all var(--duration-fast) var(--easing-elegance);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-48);
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--neutral-700);
    text-decoration: none;
    transition: color var(--duration-fast) var(--easing-elegance);
}

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

.nav-links a.nav-cta {
    background: var(--gradient-gold);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all var(--duration-fast) var(--easing-elegance);
}

.nav-links a.nav-cta:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Hero Section */
.hero {
    height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('public/images/WhatsApp Image 2025-10-31 at 09.43.22.jpeg');
    background-size: cover;
    background-position: center;
    margin-top: 96px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--space-32);
    animation: heroFadeIn var(--duration-luxury) var(--easing-elegance);
}

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

.hero-title {
    font-size: 96px;
    color: white;
    margin-bottom: var(--space-24);
    letter-spacing: -0.01em;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: white;
    line-height: 1.7;
    margin-bottom: var(--space-48);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp {
    display: inline-block;
    padding: 18px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    transition: all var(--duration-fast) var(--easing-elegance);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: var(--shadow-card);
}

.btn-primary:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
    box-shadow: var(--shadow-card-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--neutral-700);
    border: 1.5px solid var(--neutral-200);
}

.btn-secondary:hover {
    background: var(--neutral-50);
    border-color: var(--primary-500);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Overview Section */
.overview-section {
    background-color: var(--neutral-50);
}

.overview-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: var(--space-64);
    align-items: center;
}

.overview-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--neutral-700);
    margin-bottom: var(--space-48);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-32);
}

.stat-item {
    text-align: center;
    padding: var(--space-24);
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.stat-value {
    font-family: var(--font-headline);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--space-8);
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-700);
    letter-spacing: 0.02em;
}

/* Rating Badge */
.rating-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-circle {
    background: white;
    padding: var(--space-48);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
    border: 2px solid var(--primary-50);
}

.rating-number {
    font-family: var(--font-headline);
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--space-16);
}

.rating-stars {
    display: flex;
    gap: var(--space-8);
    justify-content: center;
    margin-bottom: var(--space-16);
}

.star-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-500);
}

.star-icon.filled {
    color: var(--primary-500);
}

.star-icon.half-filled {
    color: var(--primary-500);
}

.rating-text {
    font-size: 14px;
    color: var(--neutral-700);
    margin-bottom: var(--space-8);
}

.rating-source {
    font-size: 12px;
    color: var(--neutral-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Amenities Section */
.amenities-section {
    background-color: var(--neutral-100);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-32);
}

.feature-card {
    background: var(--neutral-50);
    padding: var(--space-48);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-card);
    transition: all var(--duration-base) var(--easing-elegance);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--primary-500);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-600);
    margin-bottom: var(--space-16);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--neutral-900);
    margin-bottom: var(--space-16);
}

.feature-description {
    font-size: 18px;
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Farm Section */
.farm-section {
    background-color: var(--neutral-50);
}

.farm-content {
    max-width: 1000px;
}

.farm-intro {
    font-size: 20px;
    line-height: 1.7;
    color: var(--neutral-700);
    margin-bottom: var(--space-48);
}

.farm-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-48);
}

.farm-feature h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--neutral-900);
    margin-bottom: var(--space-24);
}

.farm-list {
    list-style: none;
    padding: 0;
}

.farm-list li {
    font-size: 18px;
    color: var(--neutral-700);
    padding: var(--space-12) 0;
    padding-left: var(--space-24);
    position: relative;
}

.farm-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-weight: 700;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--neutral-100);
}

.masonry-gallery {
    column-count: 3;
    column-gap: var(--space-32);
}

.masonry-gallery img {
    width: 100%;
    margin-bottom: var(--space-32);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all var(--duration-fast) var(--easing-elegance);
    display: block;
}

.masonry-gallery img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-card-hover);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    padding: var(--space-16);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--easing-elegance);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: var(--space-24);
    right: var(--space-24);
}

.lightbox-prev {
    left: var(--space-24);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: var(--space-24);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-24);
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: var(--space-12) var(--space-24);
    border-radius: var(--radius-full);
}

/* Reviews Section */
.reviews-section {
    background-color: var(--neutral-50);
}

.rating-summary {
    text-align: center;
    margin-bottom: var(--space-64);
}

.rating-summary-score {
    display: inline-block;
    background: white;
    padding: var(--space-48);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--primary-50);
}

.rating-large {
    font-family: var(--font-headline);
    font-size: 96px;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: var(--space-16);
}

.rating-stars-large {
    display: flex;
    gap: var(--space-12);
    justify-content: center;
    margin-bottom: var(--space-16);
}

.rating-stars-large .star-icon {
    width: 40px;
    height: 40px;
}

.rating-summary-text {
    font-size: 18px;
    color: var(--neutral-700);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-32);
    margin-bottom: var(--space-64);
}

.review-card {
    background: white;
    padding: var(--space-48);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-card);
    transition: all var(--duration-base) var(--easing-elegance);
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.review-stars {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.review-stars .star-icon {
    width: 24px;
    height: 24px;
}

.review-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--neutral-900);
    margin-bottom: var(--space-24);
}

.review-author {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-900);
    margin-bottom: var(--space-8);
}

.review-meta {
    font-size: 12px;
    color: var(--neutral-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.review-highlights {
    background: var(--neutral-100);
    padding: var(--space-48);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-48);
}

.review-highlights h3 {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 500;
    color: var(--neutral-900);
    margin-bottom: var(--space-24);
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
    list-style: none;
}

.highlights-list li {
    font-size: 18px;
    color: var(--neutral-700);
    padding-left: var(--space-32);
    position: relative;
}

.highlights-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

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

/* Location Section */
.location-section {
    background-color: var(--neutral-100);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
}

.location-map iframe {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
}

.location-info h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--neutral-900);
    margin-bottom: var(--space-16);
}

.location-info p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-700);
}

/* Booking Section */
.booking-section {
    background-color: var(--neutral-50);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
}

.booking-form-container {
    background: white;
    padding: var(--space-48);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-900);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-16);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--neutral-900);
    transition: all var(--duration-fast) var(--easing-elegance);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-50);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-24);
}

.form-message {
    padding: var(--space-16);
    border-radius: var(--radius-sm);
    font-size: 16px;
    text-align: center;
    margin-top: var(--space-16);
    display: none;
}

.form-message.success {
    display: block;
    background: var(--success);
    color: white;
}

.form-message.error {
    display: block;
    background: #D8504D;
    color: white;
}

.whatsapp-option {
    margin-top: var(--space-32);
}

.divider {
    text-align: center;
    margin: var(--space-32) 0;
    position: relative;
}

.divider span {
    background: white;
    padding: 0 var(--space-16);
    color: var(--neutral-500);
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--neutral-200);
}

/* Host Information */
.host-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
}

.host-card {
    background: white;
    padding: var(--space-48);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.host-image {
    width: 280px;
    height: 280px;
    margin: 0 auto var(--space-24);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-50);
    box-shadow: var(--shadow-card);
}

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

.host-card h3 {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: var(--space-8);
}

.host-name {
    font-family: var(--font-headline);
    font-size: 36px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-8);
}

.host-role {
    font-size: 16px;
    color: var(--primary-600);
    font-weight: 500;
    margin-bottom: var(--space-24);
}

.host-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--neutral-700);
    margin-bottom: var(--space-32);
}

.host-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.host-detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-12);
    font-size: 16px;
    color: var(--neutral-700);
}

.host-detail-item a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
}

.host-detail-item a:hover {
    text-decoration: underline;
}

.detail-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-500);
    flex-shrink: 0;
}

/* Booking Policies */
.booking-policies {
    background: var(--neutral-100);
    padding: var(--space-48);
    border-radius: var(--radius-md);
}

.booking-policies h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--neutral-900);
    margin-bottom: var(--space-24);
}

.policies-list {
    list-style: none;
    padding: 0;
}

.policies-list li {
    font-size: 16px;
    color: var(--neutral-700);
    padding: var(--space-12) 0;
    padding-left: var(--space-24);
    position: relative;
}

.policies-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: var(--neutral-900);
    color: var(--neutral-200);
    padding: var(--space-64) 0 var(--space-32);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-48);
    margin-bottom: var(--space-48);
}

.footer-section h3 {
    font-family: var(--font-headline);
    font-size: 24px;
    color: white;
    margin-bottom: var(--space-24);
}

.footer-section h4 {
    font-size: 18px;
    color: white;
    margin-bottom: var(--space-16);
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-500);
}

.footer-social {
    margin-top: var(--space-16);
}

.footer-social a {
    color: var(--primary-500);
    text-decoration: none;
    font-weight: 500;
}

.footer-links,
.footer-contact,
.footer-info {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li,
.footer-info li {
    margin-bottom: var(--space-12);
}

.footer-links a {
    color: var(--neutral-200);
    text-decoration: none;
    font-size: 16px;
    transition: color var(--duration-fast) var(--easing-elegance);
}

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

.footer-contact li,
.footer-info li {
    font-size: 16px;
    color: var(--neutral-500);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-32);
    border-top: 1px solid var(--neutral-700);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--neutral-500);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 56px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .overview-grid,
    .location-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid,
    .farm-features,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .masonry-gallery {
        column-count: 2;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 72px;
        padding: 0 var(--space-24);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--neutral-50);
        flex-direction: column;
        padding: var(--space-32);
        box-shadow: var(--shadow-card);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--duration-base) var(--easing-elegance);
        gap: var(--space-24);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hero {
        height: 500px;
        margin-top: 72px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .section {
        padding: var(--space-64) 0;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .rating-large {
        font-size: 72px;
    }
    
    .amenities-grid,
    .farm-features,
    .reviews-grid,
    .highlights-list,
    .quick-stats {
        grid-template-columns: 1fr;
    }
    
    .masonry-gallery {
        column-count: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .host-image {
        width: 200px;
        height: 200px;
    }
    
    .container {
        padding: 0 var(--space-24);
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
