/* ============================================
   ERTH FARM — Boutique Lodging
   Burgundy + Blush · Editorial Design
   ============================================ */

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

:root {
    --burgundy: #7B2D30;
    --burgundy-deep: #5C1F22;
    --burgundy-light: #9A3F42;
    --blush: #F5E6D3;
    --blush-light: #FBF5EE;
    --blush-mid: #EDD5C0;
    --cream: #FFFCF8;
    --charcoal: #1A1412;
    --charcoal-soft: #2D2420;
    --warm-gray: #6B5E58;
    --warm-gray-light: #9E8E86;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: var(--space-sm);
}

.section-eyebrow--light {
    color: var(--blush);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-heading--light {
    color: var(--white);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: var(--warm-gray);
    line-height: 1.5;
    max-width: 540px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 48, 0.3);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn-sm {
    padding: 0.625rem 1.375rem;
    font-size: 0.8125rem;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 252, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(123, 45, 48, 0.08);
    padding: var(--space-sm) 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    background: var(--burgundy);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.site-header.scrolled .logo-mark {
    color: var(--white);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    transition: var(--transition);
}

.site-header.scrolled .logo-text {
    color: var(--charcoal);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.main-nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

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

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

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

.site-header.scrolled .main-nav a {
    color: var(--warm-gray);
}

.site-header.scrolled .main-nav a::after {
    background: var(--burgundy);
}

.site-header.scrolled .main-nav a:hover {
    color: var(--burgundy);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ============================================
   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(26, 20, 18, 0.72) 0%,
        rgba(123, 45, 48, 0.55) 50%,
        rgba(26, 20, 18, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    width: 100%;
}

.hero-card {
    max-width: 720px;
    padding: var(--space-xl) var(--space-xl);
    background: rgba(255, 252, 248, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.hero-sub {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(245, 230, 211, 0.85);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* Stat Cards */
.stat-cards {
    position: absolute;
    bottom: var(--space-xl);
    right: var(--space-lg);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.stat-card {
    background: rgba(255, 252, 248, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    text-align: right;
    min-width: 180px;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

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

/* ============================================
   ABOUT
   ============================================ */

.about {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-content {
    padding: var(--space-lg) 0;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: var(--space-md);
}

.about-values {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.value-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--burgundy);
    margin-top: 2px;
}

.value-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* ============================================
   LODGING
   ============================================ */

.lodging {
    padding: var(--space-3xl) 0;
    background: var(--blush-light);
}

.lodging .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(26, 20, 18, 0.06);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 20, 18, 0.12);
}

.room-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/11;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
}

.room-content {
    padding: var(--space-lg);
}

.room-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-sm);
}

.room-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--warm-gray);
    margin-bottom: var(--space-md);
}

.room-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: var(--space-md);
}

.room-features li {
    font-size: 0.875rem;
    color: var(--warm-gray-light);
    padding-left: 1.25rem;
    position: relative;
}

.room-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--burgundy);
    border-radius: 50%;
}

/* ============================================
   EXPERIENCES
   ============================================ */

.experiences {
    padding: var(--space-3xl) 0;
    background: var(--charcoal);
}

.experiences-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.exp-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--charcoal-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.exp-card:hover {
    border-color: rgba(123, 45, 48, 0.4);
    transform: translateY(-4px);
}

.exp-image {
    overflow: hidden;
    aspect-ratio: 1;
}

.exp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.exp-card:hover .exp-image img {
    transform: scale(1.05);
}

.exp-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.exp-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.exp-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 230, 211, 0.65);
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.gallery .section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-md);
}

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

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

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

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item--large img {
    height: 100%;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / span 3;
    grid-row: 1;
}

.gallery-item:nth-child(3) {
    grid-column: 11 / span 2;
    grid-row: 1;
}

.gallery-item:nth-child(4) {
    grid-column: 8 / span 5;
    grid-row: 2;
}

.gallery-item:nth-child(5) {
    grid-column: 2 / span 3;
    grid-row: 2;
}

/* ============================================
   CTA
   ============================================ */

.cta {
    padding: var(--space-3xl) 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 230, 211, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
}

.cta .section-heading {
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(245, 230, 211, 0.8);
    margin-bottom: var(--space-lg);
}

.cta .btn-primary {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.cta .btn-primary:hover {
    background: var(--blush);
    border-color: var(--blush);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
    padding: var(--space-3xl) 0;
    background: var(--blush-light);
}

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

.contact-details {
    font-style: normal;
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--burgundy);
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--burgundy);
    text-decoration: underline;
}

.contact-map {
    margin-top: var(--space-lg);
    overflow: hidden;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--space-lg);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--blush-mid);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 48, 0.1);
}

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

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

.form-success {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(123, 45, 48, 0.06);
    border: 1px solid rgba(123, 45, 48, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.form-success svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--burgundy);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--burgundy-deep);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--charcoal);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-mark {
    margin-bottom: var(--space-sm);
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.125rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(245, 230, 211, 0.5);
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 230, 211, 0.3);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */

.main-nav.mobile-open {
    position: fixed;
    inset: 0;
    background: rgba(26, 20, 18, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.main-nav.mobile-open ul {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.main-nav.mobile-open a {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .lodging-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lodging-grid .room-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 240px);
    }

    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .gallery-item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        aspect-ratio: 16/10;
    }

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

    .exp-card {
        grid-template-columns: 1fr;
    }

    .exp-image {
        aspect-ratio: 16/9;
    }

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

    .stat-cards {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: var(--space-lg);
        gap: var(--space-sm);
    }

    .stat-card {
        text-align: center;
        flex: 1;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(26, 20, 18, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }

    .main-nav a {
        font-size: 1.5rem;
        font-family: var(--font-serif);
        font-weight: 700;
        color: var(--white);
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: block;
    }

    .hero-card {
        padding: var(--space-lg);
    }

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

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

    .lodging-grid .room-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item {
        aspect-ratio: 16/10;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: auto;
    }
}

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

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .stat-cards {
        flex-direction: column;
    }

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

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
