/* ============================================
   The Barn At Bear Bottoms — Stylesheet
   Classic & Elegant · Burgundy + Blush
   ============================================ */

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

:root {
    --burgundy: #722F37;
    --burgundy-dark: #5A252C;
    --burgundy-light: #8B3A42;
    --blush: #F5E6D3;
    --blush-light: #FAF3EB;
    --blush-dark: #E8D5C0;
    --cream: #FDF9F4;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-gray: #8A7E78;
    --warm-gray-light: #B8ADA6;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-serif-body: 'Lora', 'Georgia', serif;
    --font-sans: 'Inter', 'Helvetica Neue', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s 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-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.nav.scrolled {
    background: rgba(253, 249, 244, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(114, 47, 55, 0.1);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav-brand {
    color: var(--burgundy);
}

.nav-brand-mark {
    display: flex;
    align-items: center;
}

.nav-brand-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

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

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

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

.nav.scrolled .nav-link {
    color: var(--charcoal-light);
}

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

.nav.scrolled .nav-link::after {
    background: var(--burgundy);
}

.nav-link--cta {
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link--cta:hover {
    background: var(--white);
    color: var(--burgundy) !important;
    border-color: var(--white);
}

.nav.scrolled .nav-link--cta {
    border-color: var(--burgundy);
    color: var(--burgundy) !important;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-slow);
}

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

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--charcoal);
    padding: 0.5rem;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    transition: var(--transition);
}

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

.mobile-menu-link--cta {
    margin-top: 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    border: 1px solid var(--burgundy);
    padding: 1rem 2rem;
    display: inline-block;
}

.mobile-menu-contact {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 2;
}

.mobile-menu-contact a {
    color: var(--burgundy);
    transition: var(--transition);
}

.mobile-menu-contact a:hover {
    color: var(--burgundy-dark);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(44, 36, 32, 0.85) 0%,
        rgba(44, 36, 32, 0.6) 50%,
        rgba(44, 36, 32, 0.3) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-aside {
    border-left: 1px solid rgba(245, 230, 211, 0.3);
    padding-left: 2rem;
}

.hero-aside-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--blush);
    opacity: 0.6;
}

.hero-aside-divider {
    width: 40px;
    height: 1px;
    background: rgba(245, 230, 211, 0.3);
    margin-bottom: 2rem;
}

.hero-aside-text {
    font-family: var(--font-serif-body);
    font-size: 1rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.8;
    max-width: 280px;
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--burgundy-light);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blush-dark);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title-em {
    font-style: italic;
    color: var(--blush);
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-serif-body);
    font-size: 1.1rem;
    color: rgba(245, 230, 211, 0.75);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
}

.hero-stat-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.5);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(245, 230, 211, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.5);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

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

.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(245, 230, 211, 0.4);
}

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

.btn--full {
    width: 100%;
}

/* ---------- Section Labels ---------- */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--burgundy);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--burgundy);
    font-weight: 400;
}

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

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

.section-subtitle {
    font-family: var(--font-serif-body);
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    max-width: 560px;
}

/* ---------- About ---------- */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

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

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

.about-image-main {
    position: relative;
    overflow: hidden;
}

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

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

.about-image-accent {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 55%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.15);
}

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

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-family: var(--font-serif-body);
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blush-dark);
    border-radius: 50%;
    color: var(--burgundy);
}

.about-value span:last-child {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--charcoal);
    padding-top: 0.25rem;
}

/* ---------- Stay ---------- */
.stay {
    padding: 8rem 0;
    background: var(--blush-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

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

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

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

.stay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stay-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.stay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(44, 36, 32, 0.12);
}

.stay-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

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

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

.stay-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--burgundy);
    color: var(--white);
    padding: 0.4rem 1rem;
}

.stay-card-content {
    padding: 2rem;
}

.stay-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.stay-card-desc {
    font-family: var(--font-serif-body);
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stay-card-amenities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stay-card-amenities li {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--charcoal-light);
    padding-left: 1.25rem;
    position: relative;
}

.stay-card-amenities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 1px;
    background: var(--burgundy);
}

/* ---------- Grounds ---------- */
.grounds {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.grounds-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.grounds-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 36, 32, 0.88) 0%,
        rgba(114, 47, 55, 0.82) 100%
    );
}

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

.grounds-label {
    color: var(--blush-dark);
    margin-bottom: 1.5rem;
}

.grounds-label::before {
    background: var(--blush-dark);
}

.grounds-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
}

.grounds-text {
    font-family: var(--font-serif-body);
    font-size: 1.1rem;
    color: rgba(245, 230, 211, 0.75);
    line-height: 1.9;
    margin-bottom: 3.5rem;
}

.grounds-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.grounds-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.grounds-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 230, 211, 0.3);
    border-radius: 50%;
    color: var(--blush);
    transition: var(--transition);
}

.grounds-feature:hover .grounds-feature-icon {
    background: rgba(245, 230, 211, 0.1);
    border-color: rgba(245, 230, 211, 0.5);
}

.grounds-feature div:first-child strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.grounds-feature div:last-child span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(245, 230, 211, 0.6);
}

/* ---------- Location ---------- */
.location {
    padding: 8rem 0;
    background: var(--cream);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.location-text {
    font-family: var(--font-serif-body);
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--blush-dark);
    border-radius: 50%;
    color: var(--burgundy);
}

.location-detail strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.25rem;
}

.location-detail span,
.location-detail a {
    font-family: var(--font-serif-body);
    font-size: 1rem;
    color: var(--charcoal);
    transition: var(--transition);
}

.location-detail a:hover {
    color: var(--burgundy);
}

.location-distances {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--blush-dark);
}

.distance-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.distance-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--burgundy);
}

.distance-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.distance-divider {
    width: 1px;
    height: 40px;
    background: var(--blush-dark);
}

.map-wrapper {
    border: 1px solid var(--blush-dark);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 36, 32, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    filter: saturate(0.6) contrast(1.05);
}

/* ---------- Contact ---------- */
.contact {
    padding: 8rem 0;
    background: var(--charcoal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-text {
    font-family: var(--font-serif-body);
    font-size: 1.05rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(245, 230, 211, 0.15);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: rgba(245, 230, 211, 0.4);
    background: rgba(245, 230, 211, 0.05);
}

.contact-method-icon {
    color: var(--blush);
}

.contact-method-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.5);
    margin-bottom: 0.25rem;
}

.contact-method-value {
    font-family: var(--font-serif-body);
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
}

.contact-method:hover .contact-method-value {
    color: var(--blush);
}

.contact-hours {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.8;
    padding: 1.5rem;
    border-top: 1px solid rgba(245, 230, 211, 0.1);
}

.contact-hours strong {
    color: var(--blush);
    font-weight: 500;
}

/* Contact Form */
.contact-form-col {
    position: relative;
}

.contact-form {
    background: rgba(245, 230, 211, 0.05);
    border: 1px solid rgba(245, 230, 211, 0.15);
    padding: 3rem;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.5);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245, 230, 211, 0.2);
    padding: 0.75rem 0;
    font-family: var(--font-serif-body);
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 230, 211, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--blush);
}

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

.form-note {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.4);
    margin-top: 1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    color: var(--white);
}

.form-success svg {
    color: var(--blush);
    margin-bottom: 1.5rem;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.form-success p {
    font-family: var(--font-serif-body);
    font-size: 1rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    padding: 5rem 0 2rem;
    background: var(--charcoal);
    border-top: 1px solid rgba(245, 230, 211, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo svg {
    color: var(--blush);
}

.footer-tagline {
    font-family: var(--font-serif-body);
    font-size: 0.95rem;
    color: rgba(245, 230, 211, 0.5);
    line-height: 1.8;
    max-width: 300px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links strong,
.footer-contact strong {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 230, 211, 0.4);
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.7);
    transition: var(--transition);
}

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

.footer-contact p,
.footer-contact a {
    font-family: var(--font-serif-body);
    font-size: 0.95rem;
    color: rgba(245, 230, 211, 0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 230, 211, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(245, 230, 211, 0.35);
}

/* ---------- Animations ---------- */
.fade-in {
    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);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-aside {
        display: none;
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1.5rem;
    }

    .about-image-main img {
        height: 400px;
    }

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

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-container {
        padding-top: 5rem;
    }

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

    .hero-stats {
        flex-wrap: wrap;
    }

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

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

    .location-distances {
        flex-wrap: wrap;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

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

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

    .container {
        padding: 0 1.25rem;
    }

    .about,
    .stay,
    .grounds,
    .location,
    .contact {
        padding: 5rem 0;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stat-number {
        font-size: 1.5rem;
    }
}
