/* ========================================
   Highland Lodge — Classic Elegant Hotel
   Charcoal + Coral Palette
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --charcoal: #36454F;
    --charcoal-deep: #2A353D;
    --charcoal-light: #4A5A64;
    --coral: #E2725B;
    --coral-light: #E8896F;
    --coral-dark: #C95D4A;
    --cream: #F5F0EB;
    --cream-light: #FAF7F4;
    --cream-dark: #EDE6DF;
    --warm-gray: #8C8279;
    --warm-gray-light: #B8AFA7;
    --white: #FFFFFF;
    --black: #1A1A1A;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Raleway', 'Helvetica Neue', Arial, 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.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream-light);
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

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

/* --- Section Utilities --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-sm);
}

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

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

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

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

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--warm-gray);
    max-width: 600px;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background-color: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226, 114, 91, 0.3);
}

.btn--outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline:hover {
    background-color: var(--white);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn--dark {
    background-color: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.btn--dark:hover {
    background-color: var(--charcoal-deep);
    border-color: var(--charcoal-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(54, 69, 79, 0.3);
}

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

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

.nav.scrolled {
    background-color: rgba(54, 69, 79, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-logo-icon {
    color: var(--coral);
}

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

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

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

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

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

.nav-link--cta {
    background-color: var(--coral);
    color: var(--white) !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.08em;
}

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

.nav-link--cta:hover {
    background-color: var(--coral-dark);
    transform: translateY(-1px);
}

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

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: 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(
        to bottom,
        rgba(26, 26, 26, 0.45) 0%,
        rgba(54, 69, 79, 0.55) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 0 var(--space-md);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--coral-light);
    display: block;
    font-size: 0.7em;
}

.hero-subtitle {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.6875rem;
    font-family: var(--font-sans);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeUp 0.8s 1.2s forwards;
    opacity: 0;
}

.hero-scroll svg {
    animation: bounce 2s infinite;
}

/* --- Animations --- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* --- Intro Bar --- */
.intro-bar {
    background-color: var(--charcoal);
    padding: var(--space-md) 0;
}

.intro-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.intro-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.intro-item svg {
    color: var(--coral);
}

.intro-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- Rooms Section --- */
.rooms {
    padding: var(--space-2xl) 0;
    background-color: var(--cream-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

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

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

.room-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(54, 69, 79, 0.08);
    transition: all var(--transition);
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(54, 69, 79, 0.15);
}

.room-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

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

.room-card-title {
    font-family: var(--font-serif);
    font-size: 1.625rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

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

.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.room-card-amenities li {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    background-color: var(--cream);
    color: var(--charcoal);
    border-radius: 100px;
}

.room-card-body .btn {
    width: 100%;
}

/* --- Experience Section --- */
.experience {
    padding: var(--space-2xl) 0;
    background-color: var(--cream);
}

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

.experience-content .section-subtitle {
    margin-bottom: var(--space-lg);
}

.experience-text {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.85;
    margin-bottom: var(--space-lg);
}

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

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

.experience-feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: var(--radius-md);
    color: var(--coral);
    box-shadow: 0 4px 16px rgba(54, 69, 79, 0.1);
}

.experience-feature-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--charcoal);
}

.experience-feature-desc {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.experience-images {
    position: relative;
}

.experience-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(54, 69, 79, 0.2);
}

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

.experience-img-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(54, 69, 79, 0.25);
    border: 4px solid var(--cream);
}

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

/* --- History Section --- */
.history {
    position: relative;
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

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

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

.history .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(42, 53, 61, 0.75) 60%,
        rgba(42, 53, 61, 0.4) 100%
    );
}

.history .container {
    position: relative;
    z-index: 1;
}

.history-content {
    max-width: 720px;
}

.history-text {
    margin-bottom: var(--space-xl);
}

.history-paragraph {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    margin-bottom: var(--space-md);
}

.history-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.history-stat {
    text-align: center;
}

.history-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--coral-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.history-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.history-stat-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- Location Section --- */
.location {
    padding: var(--space-2xl) 0;
    background-color: var(--cream-light);
}

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

.location-text {
    font-size: 1.0625rem;
    color: var(--warm-gray);
    line-height: 1.85;
    margin-bottom: var(--space-lg);
}

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

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

.location-detail svg {
    flex-shrink: 0;
    color: var(--coral);
    margin-top: 0.125rem;
}

.location-detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.125rem;
}

.location-detail span,
.location-detail a {
    font-size: 0.9375rem;
    color: var(--warm-gray);
}

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

.location-attractions {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: 0 4px 24px rgba(54, 69, 79, 0.08);
}

.location-attractions h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--charcoal);
}

.location-attractions ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-attractions li {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    padding-left: 1.25rem;
    position: relative;
}

.location-attractions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background-color: var(--coral);
    border-radius: 50%;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(54, 69, 79, 0.15);
    min-height: 480px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* --- Contact Section --- */
.contact {
    padding: var(--space-2xl) 0;
    background-color: var(--charcoal);
}

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

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

.contact-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-bottom: var(--space-lg);
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.contact-direct-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
}

.contact-direct-value {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--white);
    font-weight: 400;
}

.contact-direct-value a {
    color: var(--white);
    transition: color var(--transition);
}

.contact-direct-value a:hover {
    color: var(--coral-light);
}

/* --- Contact Form --- */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.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: 0.5rem;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(226, 114, 91, 0.12);
}

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

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

.form-note a {
    color: var(--coral);
    font-weight: 600;
}

/* Form Success State */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-sm);
}

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

.form-success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(226, 114, 91, 0.1);
    border-radius: 50%;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-success-text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.75;
    max-width: 360px;
}

/* --- Footer --- */
.footer {
    background-color: var(--charcoal-deep);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

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

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-sm);
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-md);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

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

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

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rooms-grid .room-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .experience-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .experience-img-accent {
        left: var(--space-md);
        bottom: -24px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background-color: rgba(42, 53, 61, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.125rem;
    }

    .nav-link--cta {
        padding: 0.875rem 2rem;
    }

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

    .hero-title-accent {
        font-size: 0.75em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .rooms-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .rooms-grid .room-card:last-child {
        max-width: 100%;
    }

    .experience-img-accent {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: var(--space-sm);
    }

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

    .experience-img-main {
        aspect-ratio: auto;
        height: 300px;
    }

    .experience-img-main img {
        height: 100%;
    }

    .history-stats {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .history-stat-divider {
        width: 48px;
        height: 1px;
    }

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

    .location-map,
    .map-placeholder {
        min-height: 320px;
    }

    .map-placeholder iframe {
        min-height: 320px;
    }

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

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .intro-bar-inner {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .intro-divider {
        display: none;
    }

    .rooms,
    .experience,
    .history,
    .location,
    .contact {
        padding: var(--space-xl) 0;
    }

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

    .experience-images {
        grid-template-columns: 1fr;
    }

    .experience-img-main {
        height: 260px;
    }
}
