/* ============================================
   THE WILDWOOD COTTAGE — Premium Dark Luxury
   Color Palette: Terracotta + Sand on Deep Dark
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --bg-primary: #1A1410;
    --bg-secondary: #2A1F1A;
    --bg-tertiary: #332820;
    --bg-card: #231A15;
    
    --terracotta: #C46A4A;
    --terracotta-light: #D4896E;
    --terracotta-dark: #A0523A;
    
    --sand: #C8A97E;
    --sand-light: #DDC4A0;
    --sand-dark: #A8895E;
    
    --gold: #C8A97E;
    --gold-light: #E0C9A0;
    --gold-metallic: linear-gradient(135deg, #C8A97E 0%, #E0C9A0 50%, #C8A97E 100%);
    
    --text-primary: #F5EDE4;
    --text-secondary: #B8A898;
    --text-muted: #7A6A5E;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none !important; }
}

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

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

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

@media (max-width: 768px) {
    button { cursor: pointer; }
}

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

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--sand);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid var(--sand);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    opacity: 0.5;
}

.cursor.hover {
    width: 12px;
    height: 12px;
    background: var(--terracotta-light);
}

.cursor-follower.hover {
    width: 48px;
    height: 48px;
    border-color: var(--terracotta-light);
    opacity: 0.3;
}

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

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: var(--space-md);
}

.section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--sand);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.text-accent {
    color: var(--sand);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--text-primary);
    border: 1px solid var(--terracotta);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(196, 106, 74, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(200, 169, 126, 0.4);
}

.btn-outline:hover {
    border-color: var(--sand);
    color: var(--sand);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--sand);
    border: 1px solid rgba(200, 169, 126, 0.3);
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.btn-ghost:hover {
    border-color: var(--sand);
    background: rgba(200, 169, 126, 0.08);
}

.btn-full {
    width: 100%;
}

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

.header.scrolled {
    background: rgba(26, 20, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sand);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200, 169, 126, 0.4);
    border-radius: var(--radius-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sand);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--sand);
}

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

.nav-cta {
    color: var(--sand);
    border: 1px solid rgba(200, 169, 126, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.nav-cta:hover {
    background: rgba(200, 169, 126, 0.1);
    border-color: var(--sand);
}

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

.mobile-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-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(26, 20, 16, 0.85) 0%,
        rgba(26, 20, 16, 0.6) 40%,
        rgba(26, 20, 16, 0.4) 70%,
        rgba(26, 20, 16, 0.7) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 780px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.hero-eyebrow .line {
    width: 48px;
    height: 1px;
    background: var(--sand);
}

.hero-eyebrow span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
}

.hero-headline {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    max-width: 680px;
}

.hero-headline .accent {
    color: var(--sand);
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--sand);
    font-weight: 400;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 169, 126, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--sand), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 48px; }
    50% { opacity: 0.5; height: 32px; }
}

/* --- About --- */
.about {
    padding: var(--space-2xl) 0;
    background: var(--bg-primary);
}

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

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

.about-image-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--bg-primary);
    aspect-ratio: 4/5;
}

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

.about-badge {
    position: absolute;
    top: -20px;
    right: 30%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--sand);
    border-radius: 50%;
    animation: badgeSpin 20s linear infinite;
}

@keyframes badgeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.badge-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--sand);
    letter-spacing: 0.1em;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

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

.about-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

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

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

.feature-item svg {
    flex-shrink: 0;
    color: var(--sand);
    margin-top: 2px;
}

.feature-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Rooms --- */
.rooms {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

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

.section-header .section-eyebrow {
    justify-content: center;
}

.section-header .section-eyebrow::before {
    display: none;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.room-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(200, 169, 126, 0.08);
}

.room-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 126, 0.2);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.room-image {
    position: relative;
    aspect-ratio: 7/5;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.room-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 20, 16, 0.85);
    backdrop-filter: blur(8px);
    color: var(--sand);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(200, 169, 126, 0.2);
}

.room-info {
    padding: var(--space-md);
}

.room-name {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.room-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
    list-style: none;
}

.room-amenities li {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(200, 169, 126, 0.15);
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

/* --- Experience --- */
.experience {
    padding: var(--space-2xl) 0;
    background: var(--bg-primary);
}

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

.exp-content {
    padding-top: var(--space-md);
}

.exp-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.exp-feature {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}

.exp-feature:last-child {
    border-bottom: none;
}

.exp-feature-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--sand);
    opacity: 0.5;
    line-height: 1;
    padding-top: 4px;
}

.exp-feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.exp-feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Visual Break --- */
.visual-break {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.visual-break-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.visual-break-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.visual-break-overlay blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 300;
    color: var(--text-primary);
    text-align: center;
    max-width: 700px;
    line-height: 1.4;
}

/* --- Location --- */
.location {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

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

.location-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

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

.loc-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.loc-detail svg {
    flex-shrink: 0;
    color: var(--sand);
    margin-top: 4px;
}

.loc-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.loc-detail span,
.loc-detail a {
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.loc-detail a:hover {
    color: var(--sand);
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(200, 169, 126, 0.15);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.6) contrast(1.1) brightness(0.8);
    transition: filter var(--transition);
}

.location-map:hover iframe {
    filter: grayscale(0.3) contrast(1.05) brightness(0.9);
}

/* --- Contact --- */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--bg-primary);
}

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

.contact-body {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-item-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--sand);
    transition: var(--transition-fast);
}

.contact-item-value:hover {
    color: var(--sand-light);
}

.contact-form-wrap {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid rgba(200, 169, 126, 0.1);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-primary);
    border: 1px solid rgba(200, 169, 126, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
    outline: none;
    width: 100%;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sand);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C8A97E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.6;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-sm);
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sand);
    margin-bottom: var(--space-sm);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-primary);
}

.form-success p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 360px;
}

/* --- Footer --- */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--bg-secondary);
    border-top: 1px solid rgba(200, 169, 126, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: var(--space-sm);
    max-width: 320px;
}

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

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--sand);
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-bottom: 1px solid rgba(200, 169, 126, 0.08);
    margin-bottom: var(--space-md);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 20, 16, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

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

.mobile-cta {
    margin-top: var(--space-sm);
    color: var(--sand) !important;
    font-size: 1.2rem !important;
    font-family: var(--font-body) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(200, 169, 126, 0.3);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-sm);
}

.mobile-contact {
    margin-top: var(--space-lg);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 2;
}

.mobile-contact a {
    color: var(--sand);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid,
    .exp-layout,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image-accent {
        right: 0;
        bottom: -20px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .nav { display: none; }
    .mobile-toggle { display: flex; }

    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .stat-divider { display: none; }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }

    .visual-break {
        height: 40vh;
    }
}

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

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

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

    .contact-form-wrap {
        padding: var(--space-md);
    }
}
