/* ============================================================
   Casa Taormina of Bisbee — Stylesheet
   Palette: Forest Green (#1B4332) / Off-White (#F8F5F0) / Gold (#C9A96E)
   Fonts: Playfair Display, Lora, Cormorant Garamond
   ============================================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lora', Georgia, serif;
    color: #2C2C2C;
    background-color: #F8F5F0;
    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;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #1B4332;
    color: #F8F5F0;
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #1B4332;
}

.section-eyebrow {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #5A5A5A;
    max-width: 600px;
    line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.35s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #1B4332;
    color: #F8F5F0;
    border: 1.5px solid #1B4332;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: #2D5A3F;
    border-color: #2D5A3F;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.2);
}

.btn--secondary {
    background: transparent;
    color: #1B4332;
    border: 1.5px solid #1B4332;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    background: #1B4332;
    color: #F8F5F0;
    transform: translateY(-1px);
}

.btn--outline-light {
    background: transparent;
    color: #F8F5F0;
    border: 1.5px solid rgba(248, 245, 240, 0.6);
}

.btn--outline-light:hover,
.btn--outline-light:focus-visible {
    background: #F8F5F0;
    color: #1B4332;
    transform: translateY(-1px);
}

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

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: #1B4332;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(248, 245, 240, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #F8F5F0;
    transition: color 0.3s ease;
}

.site-header.scrolled .logo {
    color: #1B4332;
}

.logo-mark {
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-secondary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.75;
}

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

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #F8F5F0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.site-header.scrolled .nav-toggle-bar {
    background: #1B4332;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(27, 67, 50, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.main-nav.open {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F8F5F0;
    padding: 12px 24px;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: rgba(248, 245, 240, 0.3);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link--cta {
    margin-top: 16px;
    border: 1.5px solid rgba(248, 245, 240, 0.5);
    padding: 14px 36px;
}

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

.nav-link--cta:hover {
    background: rgba(248, 245, 240, 0.1);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/14334049/pexels-photo-14334049.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 35, 25, 0.55) 0%,
        rgba(15, 35, 25, 0.4) 40%,
        rgba(15, 35, 25, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 140px 24px 100px;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: #F8F5F0;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-headline em {
    font-style: italic;
    color: #C9A96E;
}

.hero-subheadline {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(248, 245, 240, 0.85);
    max-width: 560px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(248, 245, 240, 0.6);
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
    opacity: 0.6;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Intro Strip ---------- */
.intro-strip {
    background: #1B4332;
    padding: 80px 0;
}

.intro-strip-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 48px;
}

.intro-strip-text {
    max-width: 480px;
}

.intro-strip-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 16px;
}

.intro-strip-body {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(248, 245, 240, 0.8);
}

.intro-strip-divider {
    color: rgba(248, 245, 240, 0.3);
}

.intro-strip-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #C9A96E;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(248, 245, 240, 0.6);
}

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

/* ---------- Rooms ---------- */
.rooms {
    padding: 120px 0;
    background: #F8F5F0;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

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

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.room-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(27, 67, 50, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(27, 67, 50, 0.12);
}

.room-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 6/4;
}

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

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

.room-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #C9A96E;
    color: #1B4332;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
}

.room-card-content {
    padding: 32px 28px;
}

.room-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #1B4332;
}

.room-card-description {
    font-size: 0.95rem;
    color: #5A5A5A;
    line-height: 1.75;
    margin-bottom: 20px;
}

.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.room-card-amenities li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1B4332;
    background: rgba(27, 67, 50, 0.06);
    padding: 6px 12px;
    border-radius: 2px;
}

.room-card-content .btn {
    font-size: 0.85rem;
    padding: 12px 24px;
}

/* ---------- Features ---------- */
.features {
    padding: 120px 0;
    background: #F0EDE6;
}

.features-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.features-content {
    position: sticky;
    top: 120px;
}

.features-text {
    font-size: 1.05rem;
    color: #5A5A5A;
    line-height: 1.85;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-item {
    padding-top: 24px;
    border-top: 1px solid rgba(27, 67, 50, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A96E;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1B4332;
}

.feature-text-short {
    font-size: 0.9rem;
    color: #6A6A6A;
    line-height: 1.7;
}

/* ---------- Location ---------- */
.location {
    padding: 120px 0;
    background: #F8F5F0;
}

.location-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-content {
    max-width: 480px;
}

.location-text {
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.85;
    margin-bottom: 20px;
}

.location-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location-detail-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A96E;
}

.location-detail-value {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #2C2C2C;
}

.location-detail-value a:hover {
    color: #1B4332;
    text-decoration: underline;
}

.location-image {
    position: relative;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.location-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 4px;
    z-index: -1;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item--large {
    grid-column: span 7;
    aspect-ratio: 4/3;
}

.gallery-item--wide {
    grid-column: span 8;
    aspect-ratio: 12/5;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    aspect-ratio: 5/4;
}

/* ---------- CTA / Contact ---------- */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/7746084/pexels-photo-7746084.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 35, 25, 0.88);
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cta-title {
    color: #F8F5F0;
}

.cta-description {
    font-size: 1.05rem;
    color: rgba(248, 245, 240, 0.75);
    line-height: 1.85;
    margin-top: 20px;
}

.cta-form-wrapper {
    background: rgba(248, 245, 240, 0.06);
    border: 1px solid rgba(248, 245, 240, 0.12);
    border-radius: 4px;
    padding: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A96E;
}

.form-input {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #F8F5F0;
    background: rgba(248, 245, 240, 0.08);
    border: 1px solid rgba(248, 245, 240, 0.2);
    border-radius: 2px;
    padding: 14px 16px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: rgba(248, 245, 240, 0.4);
}

.form-input:focus {
    border-color: #C9A96E;
    background: rgba(248, 245, 240, 0.12);
}

.form-select {
    cursor: pointer;
    color: rgba(248, 245, 240, 0.6);
}

.form-select option {
    background: #1B4332;
    color: #F8F5F0;
}

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

.form-note {
    font-size: 0.8rem;
    color: rgba(248, 245, 240, 0.5);
    text-align: center;
    line-height: 1.6;
}

.form-note a {
    color: #C9A96E;
    text-decoration: underline;
}

.form-note a:hover {
    color: #D4B87A;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
    color: #C9A96E;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    animation: fadeIn 0.4s ease;
}

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

.form-success svg {
    color: #C9A96E;
}

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

/* ---------- Footer ---------- */
.site-footer {
    background: #143024;
    padding: 80px 0 0;
    color: rgba(248, 245, 240, 0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.logo--footer {
    color: #F8F5F0;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(248, 245, 240, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 20px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: rgba(248, 245, 240, 0.65);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #F8F5F0;
}

.footer-address {
    font-style: normal;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(248, 245, 240, 0.65);
}

.footer-phone a,
.footer-email a {
    color: rgba(248, 245, 240, 0.65);
    transition: color 0.3s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: #C9A96E;
}

.footer-bottom {
    border-top: 1px solid rgba(248, 245, 240, 0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: rgba(248, 245, 240, 0.4);
}

.footer-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    color: rgba(248, 245, 240, 0.3) !important;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: #1B4332;
    color: #F8F5F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2D5A3F;
    transform: translateY(-2px);
}

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

.reveal.revealed {
    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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .features-inner {
        gap: 48px;
    }

    .features-content {
        position: static;
    }

    .location-split {
        gap: 48px;
    }

    .cta-inner {
        gap: 48px;
    }

    .footer-inner {
        gap: 48px;
    }
}

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

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

    .gallery-item--wide {
        grid-column: span 6;
    }

    .location-split {
        grid-template-columns: 1fr;
    }

    .location-image {
        order: -1;
        max-width: 500px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        padding: 0 24px;
    }

    .intro-strip {
        padding: 60px 0;
    }

    .intro-strip-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-strip-stats {
        flex-direction: row;
        justify-content: center;
    }

    .intro-strip-divider {
        display: none;
    }

    .rooms {
        padding: 80px 0;
    }

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

    .features {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery-item--wide {
        grid-column: span 12;
    }

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 6;
    }

    .cta {
        padding: 80px 0;
    }

    .cta-form-wrapper {
        padding: 28px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .hero-content {
        padding: 120px 20px 80px;
    }

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

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

    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        grid-column: span 12;
    }

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

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}
