/* ============================================
   SERENITY COTTAGE — Premium Coastal Retreat
   Color Palette: Deep Forest / Gold / Off-White
   ============================================ */

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

:root {
    --color-bg-dark: #070E07;
    --color-bg-deeper: #040904;
    --color-bg-card: #0C1A0C;
    --color-bg-card-hover: #102010;
    --color-forest: #1A3A1A;
    --color-forest-mid: #2D5A2D;
    --color-forest-light: #3D7A3D;
    --color-gold: #C9A84C;
    --color-gold-light: #E0C068;
    --color-gold-dark: #A07830;
    --color-off-white: #F0EDE4;
    --color-cream: #E8E4D8;
    --color-text-muted: #8A9A8A;
    --color-text-dim: #5A6A5A;
    --color-border: rgba(201, 168, 76, 0.15);
    --color-border-light: rgba(201, 168, 76, 0.08);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    --gold-line-height: 3px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-off-white);
    line-height: 1.7;
    font-weight: 400;
    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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- GOLD LINE ---------- */
.gold-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--gold-line-height);
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 20%, var(--color-gold-light) 50%, var(--color-gold) 80%, transparent 100%);
    z-index: 10001;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: var(--gold-line-height);
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0 24px;
    transition: background 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.header.scrolled {
    background: rgba(7, 14, 7, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-icon {
    display: flex;
    align-items: center;
}

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

/* ---------- NAV ---------- */
.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-cream);
    transition: color 0.3s var(--transition-smooth);
    position: relative;
}

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

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

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

.nav-link--gold {
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 8px 20px;
    transition: background 0.3s var(--transition-smooth), color 0.3s var(--transition-smooth);
}

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

.nav-link--gold:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

/* ---------- MOBILE TOGGLE ---------- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10002;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-gold);
    transition: transform 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    top: var(--gold-line-height);
    background: rgba(4, 9, 4, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-smooth);
}

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

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
}

.mobile-menu nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-cream);
    transition: color 0.3s var(--transition-smooth);
}

.mobile-link:hover,
.mobile-link:focus {
    color: var(--color-gold);
}

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

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

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(4, 9, 4, 0.7) 0%, 
            rgba(10, 26, 10, 0.5) 40%,
            rgba(13, 31, 13, 0.6) 70%,
            rgba(7, 14, 7, 0.95) 100%
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 60%, transparent 0%, var(--color-bg-dark) 120%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-smooth) 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-off-white);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-smooth) 0.4s forwards;
}

.hero-title-accent {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--color-gold);
    font-size: 0.85em;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-cream);
    max-width: 560px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-smooth) 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-smooth) 0.8s forwards;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-smooth) 1s forwards;
}

.hero-divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero-divider-diamond {
    color: var(--color-gold);
    opacity: 0.6;
}

.hero-tagline {
    margin-top: 20px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-smooth) 1.1s forwards;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    border-radius: 2px;
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

.btn--primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--color-off-white);
    border: 1px solid rgba(240, 237, 228, 0.3);
}

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

.btn--gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-bg-dark);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

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

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-gold);
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* ---------- SECTION COMMON ---------- */
section {
    padding: 120px 0;
}

.section-eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-off-white);
    margin-bottom: 24px;
}

.section-title--center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 560px;
}

.section-title--center + .section-subtitle,
.amenities-header .section-subtitle,
.experience-header .section-subtitle {
    margin: 0 auto;
}

/* ---------- INTRO ---------- */
.intro {
    background: var(--color-bg-dark);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.intro-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2px;
}

.intro-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--color-gold);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.4;
}

.intro-content {
    padding: 16px 0;
}

.intro-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-cream);
    margin-bottom: 20px;
    font-weight: 300;
}

.intro-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.stat {
    text-align: left;
}

.stat--divider {
    padding-left: 32px;
    border-left: 1px solid var(--color-border);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 6px;
}

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

/* ---------- AMENITIES ---------- */
.amenities {
    background: var(--color-bg-deeper);
}

.amenities-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.amenity-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 2px;
    padding: 40px 32px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.amenity-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border);
    transform: translateY(-4px);
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-icon {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.amenity-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-off-white);
    margin-bottom: 12px;
}

.amenity-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ---------- EXPERIENCE ---------- */
.experience {
    background: var(--color-bg-dark);
}

.experience-header {
    text-align: center;
    margin-bottom: 80px;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.experience-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.experience-item--reverse {
    direction: rtl;
}

.experience-item--reverse > * {
    direction: ltr;
}

.experience-item-image {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.experience-item-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

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

.experience-item-content {
    padding: 16px 0;
}

.experience-item-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-off-white);
    margin-bottom: 16px;
}

.experience-item-content p {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* ---------- GALLERY ---------- */
.gallery {
    background: var(--color-bg-deeper);
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4, 9, 4, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-gold);
}

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

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

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

.gallery-item--wide img {
    height: 250px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
    height: 250px;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-strip-bg {
    position: absolute;
    inset: 0;
}

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

.cta-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 9, 4, 0.92) 0%, rgba(13, 31, 13, 0.88) 100%);
}

.cta-strip-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-strip-eyebrow {
    text-align: center;
    margin-bottom: 16px;
}

.cta-strip-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--color-off-white);
    margin-bottom: 20px;
}

.cta-strip-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 32px;
}

/* ---------- CONTACT ---------- */
.contact {
    background: var(--color-bg-dark);
}

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

.contact-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.9375rem;
    color: var(--color-cream);
    font-weight: 400;
    line-height: 1.6;
}

.contact-detail-value a {
    transition: color 0.3s var(--transition-smooth);
}

.contact-detail-value a:hover {
    color: var(--color-gold);
}

/* ---------- FORM ---------- */
.contact-form-wrap {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 2px;
    padding: 48px;
}

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

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

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

.form-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-off-white);
    transition: border-color 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--color-text-dim);
}

.form-input:focus {
    border-color: var(--color-gold);
    background: rgba(201, 168, 76, 0.04);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    color: var(--color-gold);
    font-size: 0.9375rem;
    font-weight: 500;
}

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

.form-success svg {
    flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--color-bg-deeper);
    border-top: 1px solid var(--color-border-light);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
}

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

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 16px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 300;
    transition: color 0.3s var(--transition-smooth);
}

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

.footer-contact p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer-contact a {
    transition: color 0.3s var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border-light);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.8125rem;
    color: var(--color-text-dim);
    font-weight: 300;
}

.footer-location {
    font-size: 0.8125rem;
    color: var(--color-text-dim);
    font-weight: 300;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-forest);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.4s var(--transition-smooth);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--color-forest-mid);
    transform: translateY(-2px);
}

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

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

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

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

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

    .intro-grid {
        gap: 48px;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .intro-image {
        height: 350px;
    }

    .intro-image-accent {
        top: -12px;
        left: -12px;
        right: 12px;
        bottom: 12px;
    }

    .intro-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat--divider {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding-top: 20px;
        margin-top: 8px;
        flex: 1;
    }

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

    .experience-item {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .experience-item--reverse {
        direction: ltr;
    }

    .experience-item-image img {
        height: 250px;
    }

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

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

    .gallery-item--large img,
    .gallery-item--wide img {
        min-height: 200px;
        height: 200px;
    }

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

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .scroll-indicator {
        bottom: 24px;
    }
}

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

    .hero-content {
        padding: 0 16px;
    }

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

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