/* ============================================
   Woodland Hills Enterprises — Styles
   Palette: Emerald Green + Cream
   ============================================ */

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

:root {
    --emerald-50:  #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;

    --cream-50:  #fefcf3;
    --cream-100: #fef9e8;
    --cream-200: #fdf3d1;
    --cream-300: #fae8b0;
    --cream-400: #f5d88a;

    --stone-50:  #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Outfit', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06), 0 1px 2px rgba(6, 78, 59, 0.04);
    --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.08), 0 2px 6px rgba(6, 78, 59, 0.05);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12), 0 4px 12px rgba(6, 78, 59, 0.06);
    --shadow-xl: 0 24px 60px rgba(6, 78, 59, 0.14);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--stone-800);
    background-color: var(--cream-50);
    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 {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    color: var(--emerald-900);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-700);
    color: #fff;
    box-shadow: 0 4px 14px rgba(4, 120, 87, 0.3);
}

.btn--primary:hover {
    background: var(--emerald-800);
    box-shadow: 0 6px 20px rgba(4, 120, 87, 0.4);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--emerald-700);
    border: 1.5px solid var(--emerald-300);
}

.btn--outline:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-500);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 17px 34px;
    font-size: 1rem;
}

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

/* --- Section Header --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header__eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 14px;
}

.section-header__eyebrow--dark {
    color: var(--emerald-700);
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 18px;
    color: var(--emerald-900);
}

.section-header__title--light {
    color: var(--cream-50);
}

.section-header__desc {
    font-size: 1.063rem;
    color: var(--stone-600);
    line-height: 1.7;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.35s ease;
}

.nav.scrolled {
    background: rgba(254, 252, 243, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald-800);
    transition: color 0.3s;
}

.nav__logo-icon {
    color: var(--emerald-600);
    transition: color 0.3s;
}

.nav.scrolled .nav__logo-icon {
    color: var(--emerald-700);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.938rem;
    font-weight: 400;
    color: var(--stone-700);
    border-radius: 50px;
    transition: all 0.25s;
}

.nav__link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav__link--cta {
    background: var(--emerald-700);
    color: #fff;
    margin-left: 8px;
    font-weight: 500;
}

.nav__link--cta:hover {
    background: var(--emerald-800);
    color: #fff;
}

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

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--emerald-800);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 44, 34, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-900) 50%, var(--emerald-950) 100%);
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero__bg-art {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero__circle--1 {
    width: 800px;
    height: 800px;
    background: var(--emerald-400);
    top: -300px;
    right: -200px;
}

.hero__circle--2 {
    width: 500px;
    height: 500px;
    background: var(--cream-300);
    bottom: -150px;
    left: -100px;
    opacity: 0.06;
}

.hero__circle--3 {
    width: 200px;
    height: 200px;
    background: var(--emerald-300);
    top: 40%;
    left: 45%;
    opacity: 0.05;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 540px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--emerald-300);
    margin-bottom: 28px;
}

.hero__eyebrow-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--emerald-400);
    border-radius: 2px;
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--cream-50);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero__headline-accent {
    color: var(--emerald-300);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--emerald-200);
    margin-bottom: 36px;
    max-width: 460px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--emerald-200);
}

.hero__trust-item svg {
    color: var(--emerald-400);
    flex-shrink: 0;
}

/* Hero visual */
.hero__visual {
    position: relative;
    height: 600px;
}

.hero__image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image--main {
    width: 72%;
    height: 82%;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero__image--float {
    width: 55%;
    height: 38%;
    bottom: 12%;
    left: 0;
    z-index: 3;
    border: 4px solid rgba(254, 252, 243, 0.3);
}

.hero__image--accent {
    width: 38%;
    height: 26%;
    bottom: 0;
    right: 10%;
    z-index: 4;
    border: 4px solid rgba(254, 252, 243, 0.4);
    border-radius: var(--radius-md);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--emerald-400);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   ROOMS
   ============================================ */
.rooms {
    padding: 110px 0;
    background: var(--cream-50);
}

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

.room-card {
    position: relative;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.room-card--featured {
    border: 2px solid var(--emerald-200);
}

.room-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--emerald-700);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 50px;
}

.room-card__img {
    height: 240px;
    overflow: hidden;
}

.room-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.room-card__body {
    padding: 28px;
}

.room-card__title {
    font-size: 1.375rem;
    margin-bottom: 10px;
    color: var(--emerald-900);
}

.room-card__desc {
    font-size: 0.938rem;
    color: var(--stone-600);
    line-height: 1.65;
    margin-bottom: 18px;
}

.room-card__amenities {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.room-card__amenities li {
    position: relative;
    padding-left: 18px;
    font-size: 0.875rem;
    color: var(--stone-700);
}

.room-card__amenities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: var(--emerald-400);
    border-radius: 50%;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
    padding: 110px 0;
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.experience__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(110, 231, 183, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(253, 243, 209, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.experience__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience__image-group {
    position: relative;
    height: 600px;
}

.experience__exp-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience__exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience__exp-img--1 {
    width: 65%;
    height: 75%;
    top: 0;
    left: 0;
    z-index: 2;
}

.experience__exp-img--2 {
    width: 55%;
    height: 45%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 4px solid rgba(254, 252, 243, 0.2);
}

.experience__content {
    padding: 20px 0;
}

.experience__lead {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-style: italic;
    color: var(--emerald-200);
    line-height: 1.5;
    margin-bottom: 40px;
}

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

.exp-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.exp-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(110, 231, 183, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.2);
    border-radius: var(--radius-sm);
    color: var(--emerald-300);
}

.exp-feature__text {
    padding-top: 4px;
}

.exp-feature__title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-50);
    margin-bottom: 4px;
}

.exp-feature__desc {
    font-size: 0.938rem;
    color: var(--emerald-200);
    line-height: 1.6;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
    padding: 110px 0;
    background: var(--cream-100);
}

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

.location__info {
    max-width: 480px;
}

.location__desc {
    font-size: 1.063rem;
    color: var(--stone-600);
    line-height: 1.75;
    margin-bottom: 36px;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.loc-detail__icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--emerald-600);
}

.loc-detail strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 3px;
}

.loc-detail span,
.loc-detail a {
    font-size: 1rem;
    color: var(--stone-700);
    line-height: 1.5;
}

.loc-detail a:hover {
    color: var(--emerald-700);
    text-decoration: underline;
}

/* Map placeholder */
.location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location__map-placeholder {
    background: linear-gradient(135deg, var(--emerald-700), var(--emerald-900));
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    min-height: 380px;
    justify-content: center;
}

.location__map-art {
    color: var(--emerald-400);
    margin-bottom: 8px;
    opacity: 0.7;
}

.location__map-label {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream-50);
}

.location__map-sublabel {
    font-size: 0.938rem;
    color: var(--emerald-300);
    margin-bottom: 8px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-200) 100%);
    position: relative;
    overflow: hidden;
}

.cta__bg-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta__circle {
    position: absolute;
    border-radius: 50%;
}

.cta__circle--1 {
    width: 500px;
    height: 500px;
    background: var(--emerald-200);
    opacity: 0.3;
    top: -200px;
    right: -100px;
}

.cta__circle--2 {
    width: 300px;
    height: 300px;
    background: var(--cream-300);
    opacity: 0.5;
    bottom: -100px;
    left: -50px;
}

.cta__inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 18px;
    color: var(--emerald-900);
}

.cta__title-accent {
    color: var(--emerald-600);
    font-style: italic;
}

.cta__desc {
    font-size: 1.063rem;
    color: var(--stone-600);
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 110px 0;
    background: var(--cream-50);
}

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

.contact__info {
    max-width: 440px;
}

.contact__desc {
    font-size: 1.063rem;
    color: var(--stone-600);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact__channels {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact__channel {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--stone-700);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    transition: all 0.25s;
    border: 1px solid transparent;
}

.contact__channel:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-100);
    color: var(--emerald-800);
}

.contact__channel--static {
    cursor: default;
    color: var(--stone-600);
}

.contact__channel-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    color: var(--emerald-700);
}

/* Form */
.contact__form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--stone-100);
}

.form__group {
    margin-bottom: 22px;
}

.form__label {
    display: block;
    font-size: 0.813rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--stone-600);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--stone-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.938rem;
    color: var(--stone-800);
    background: var(--cream-50);
    transition: all 0.25s;
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--stone-400);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--emerald-400);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.form__success {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    border-radius: var(--radius-sm);
    font-size: 0.938rem;
    color: var(--emerald-800);
}

.form__success svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--emerald-950);
    padding: 64px 0 32px;
    color: var(--emerald-200);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(110, 231, 183, 0.12);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.188rem;
    font-weight: 600;
    color: var(--cream-50);
    margin-bottom: 12px;
}

.footer__logo-icon {
    color: var(--emerald-400);
}

.footer__tagline {
    font-size: 0.938rem;
    color: var(--emerald-400);
    opacity: 0.7;
    max-width: 260px;
}

.footer__links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer__link {
    padding: 8px 16px;
    font-size: 0.875rem;
    color: var(--emerald-300);
    border-radius: 50px;
    transition: all 0.25s;
}

.footer__link:hover {
    background: rgba(110, 231, 183, 0.1);
    color: var(--emerald-200);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 32px;
    font-size: 0.813rem;
    color: var(--emerald-400);
    opacity: 0.6;
}

.footer__bottom a {
    color: var(--emerald-300);
    transition: color 0.25s;
}

.footer__bottom a:hover {
    color: var(--emerald-200);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .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; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__visual {
        height: 420px;
        max-width: 480px;
    }

    .hero__content {
        max-width: 100%;
    }

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

    .experience__image-group {
        height: 400px;
        max-width: 480px;
    }

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

    .location__info {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--cream-50);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 28px 40px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav__menu.open {
        transform: translateX(0);
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 1.063rem;
        border-radius: var(--radius-sm);
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero__visual {
        height: 340px;
        max-width: 360px;
    }

    .hero__image--main {
        width: 70%;
        height: 78%;
    }

    .hero__image--float {
        width: 58%;
        height: 36%;
    }

    .hero__image--accent {
        width: 42%;
        height: 26%;
    }

    .hero__trust {
        gap: 16px;
    }

    .hero__scroll {
        display: none;
    }

    .rooms {
        padding: 80px 0;
    }

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

    .experience {
        padding: 80px 0;
    }

    .experience__image-group {
        height: 320px;
    }

    .location {
        padding: 80px 0;
    }

    .cta {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    .footer__top {
        flex-direction: column;
        gap: 28px;
    }

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

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.125rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        gap: 12px;
    }

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

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