/* ========================================
   Ystebøs Floridahus — Styles
   Emerald Green + Cream Palette
   ======================================== */

/* ---------- 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:   #fefdf8;
    --cream-100:  #fef9ec;
    --cream-200:  #fdf3d6;
    --cream-300:  #f5e6c0;
    --cream-400:  #e8d0a0;
    --cream-500:  #d4a574;
    --cream-600:  #b8864e;
    --cream-700:  #966835;

    --white:   #ffffff;
    --black:   #0f1a16;
    --gray-50:  #f8faf9;
    --gray-100: #f1f5f2;
    --gray-200: #e2e8e4;
    --gray-300: #c8d3cc;
    --gray-400: #94a398;
    --gray-500: #6b7c70;
    --gray-600: #4a5c50;
    --gray-700: #374840;
    --gray-800: #1e2e26;
    --gray-900: #0f1a16;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body:    'Nunito', 'Segoe UI', sans-serif;

    --shadow-sm:  0 1px 3px rgba(6, 79, 58, 0.06), 0 1px 2px rgba(6, 79, 58, 0.04);
    --shadow-md:  0 4px 16px rgba(6, 79, 58, 0.08), 0 2px 6px rgba(6, 79, 58, 0.04);
    --shadow-lg:  0 12px 40px rgba(6, 79, 58, 0.12), 0 4px 12px rgba(6, 79, 58, 0.06);
    --shadow-xl:  0 24px 60px rgba(6, 79, 58, 0.16), 0 8px 20px rgba(6, 79, 58, 0.08);
    --shadow-float: 0 20px 60px rgba(6, 79, 58, 0.18), 0 8px 20px rgba(6, 79, 58, 0.10);

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  32px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--cream-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

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

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

/* ---------- SECTION HEADER ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-600);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-200);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn--ghost {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: var(--white);
    color: var(--emerald-800);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

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

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

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav__brand {
    color: var(--gray-900);
}

.nav__logo-mark {
    width: 32px;
    height: 32px;
    background: var(--cream-400);
    border-radius: var(--radius-sm);
    display: block;
    position: relative;
}

.nav__logo-mark::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: var(--emerald-700);
    border-radius: 4px;
}

.nav__brand-text {
    font-weight: 600;
}

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav__link {
    color: var(--gray-600);
}

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

.nav__link--cta {
    background: var(--cream-400);
    color: var(--emerald-900) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--cream-500);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__hamburger {
    display: block;
    width: 22px;
    height: 14px;
    position: relative;
}

.nav__hamburger::before,
.nav__hamburger::after,
.nav__hamburger span {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    position: absolute;
    left: 0;
}

.nav__hamburger::before { top: 0; }
.nav__hamburger span { top: 6px; }
.nav__hamburger::after { bottom: 0; }

.nav.scrolled .nav__hamburger::before,
.nav.scrolled .nav__hamburger span,
.nav.scrolled .nav__hamburger::after {
    background: var(--gray-800);
}

.nav__toggle[aria-expanded="true"] .nav__hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}

.nav__toggle[aria-expanded="true"] .nav__hamburger span {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(145deg, var(--emerald-950) 0%, var(--emerald-800) 40%, var(--emerald-700) 100%);
    padding: 120px 24px 80px;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 25% 25%, var(--white) 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, var(--white) 1px, transparent 1px);
    background-size: 48px 48px, 32px 32px;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 100%;
}

.hero__card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: clamp(32px, 5vw, 56px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-float);
}

.hero__tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream-300);
    background: rgba(212, 165, 116, 0.2);
    border: 1px solid rgba(212, 165, 116, 0.35);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 20px;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 520px;
}

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

/* Floating Stat Cards */
.hero__stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    pointer-events: auto;
    animation: float 6s ease-in-out infinite;
}

.stat-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card__icon svg {
    width: 22px;
    height: 22px;
}

.stat-card__data {
    display: flex;
    flex-direction: column;
}

.stat-card__value {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.2;
}

.stat-card__label {
    font-size: 0.78rem;
    color: var(--gray-500);
    font-weight: 600;
}

.stat-card--1 {
    top: 18%;
    right: 5%;
    animation-delay: 0s;
}

.stat-card--1 .stat-card__icon {
    background: var(--emerald-100);
    color: var(--emerald-700);
}

.stat-card--2 {
    bottom: 22%;
    right: 12%;
    animation-delay: -2s;
}

.stat-card--2 .stat-card__icon {
    background: var(--cream-200);
    color: var(--cream-700);
}

.stat-card--3 {
    top: 35%;
    right: 0%;
    animation-delay: -4s;
}

.stat-card--3 .stat-card__icon {
    background: #dbeafe;
    color: #2563eb;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

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

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

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

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

.room-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.room-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.room-card__img-wrap 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-wrap img {
    transform: scale(1.06);
}

.room-card__body {
    padding: 28px;
}

.room-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.room-card__desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.room-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
}

.room-card__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald-400);
    flex-shrink: 0;
}

/* ========== AMENITIES ========== */
.amenities {
    padding: 100px 0;
    background: var(--white);
}

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

.amenities__media {
    position: relative;
    height: 600px;
}

.amenities__img-main {
    width: 75%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.amenities__img-float {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.amenities__content {
    max-width: 480px;
}

.amenities__content .section-tag {
    margin-bottom: 16px;
}

.amenities__content .section-title {
    margin-bottom: 16px;
}

.amenities__content .section-subtitle {
    margin-bottom: 40px;
}

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

.amenity-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.amenity-item__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--emerald-700);
    transition: var(--transition);
}

.amenity-item:hover .amenity-item__icon {
    background: var(--emerald-700);
    color: var(--white);
    border-color: var(--emerald-700);
}

.amenity-item__icon svg {
    width: 22px;
    height: 22px;
}

.amenity-item__title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.amenity-item__desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.65;
}

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

.location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

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

.location__info .section-tag {
    align-self: flex-start;
}

.location__distances {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.distance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.distance-item:last-child {
    border-bottom: none;
}

.distance-item:hover {
    background: var(--emerald-50);
}

.distance-item__name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--gray-800);
}

.distance-item__value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--emerald-700);
    background: var(--emerald-50);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-lg);
}

/* ========== ABOUT ========== */
.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about__content .section-tag {
    margin-bottom: 16px;
}

.about__content .section-title {
    margin-bottom: 24px;
}

.about__text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about__visual {
    position: relative;
    height: 580px;
}

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

.about__img-stack-main {
    width: 78%;
    height: 85%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: absolute;
    top: 0;
    left: 0;
}

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

.about__img-stack-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
    background: var(--cream-50);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-200);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 20px;
    color: var(--cream-500);
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
}

.testimonial-card__text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-600);
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__author-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--emerald-100);
    color: var(--emerald-800);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__name {
    display: block;
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--gray-900);
}

.testimonial-card__source {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
}

/* ========== CTA / CONTACT ========== */
.cta {
    padding: 100px 0;
    background: linear-gradient(145deg, var(--emerald-800) 0%, var(--emerald-950) 100%);
    position: relative;
    overflow: hidden;
}

.cta__bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

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

.cta__text .section-tag {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--emerald-200);
}

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

.cta__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
}

.cta__form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.cta__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-label {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--gray-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald-400);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.form-input::placeholder {
    color: var(--gray-400);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7c70' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.cta__success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 4px;
}

.cta__success-icon svg {
    width: 32px;
    height: 32px;
}

.cta__success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-900);
}

.cta__success-text {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-mark {
    width: 32px;
    height: 32px;
    background: var(--cream-500);
    border-radius: var(--radius-sm);
    display: block;
    position: relative;
    flex-shrink: 0;
}

.footer__logo-mark::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: var(--emerald-700);
    border-radius: 4px;
}

.footer__tagline {
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 320px;
}

.footer__links {
    display: flex;
    gap: 48px;
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.footer__link-group a {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__link-group a:hover {
    color: var(--emerald-400);
}

.footer__contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

.footer__address {
    font-size: 0.9rem;
    line-height: 1.65;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    font-weight: 600;
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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) {
    .amenities__layout,
    .about__layout,
    .cta__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .amenities__media {
        height: 400px;
        order: -1;
    }

    .about__visual {
        height: 400px;
        order: -1;
    }

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

    .location__map {
        min-height: 300px;
    }

    .hero__stats {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav__menu.open {
        right: 0;
    }

    .nav__link {
        color: var(--gray-700);
        padding: 14px 16px;
        border-radius: var(--radius-md);
        font-size: 1rem;
    }

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

    .nav__link--cta {
        background: var(--emerald-700) !important;
        color: var(--white) !important;
        text-align: center;
        margin-left: 0;
        margin-top: 12px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .nav__overlay.active {
        display: block;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }

    .hero__card {
        padding: 28px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

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

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

    .cta__form-wrap {
        padding: 28px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

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

    .amenities__media {
        height: 320px;
    }

    .about__visual {
        height: 300px;
    }
}

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

    .rooms,
    .amenities,
    .location,
    .about,
    .testimonials,
    .cta {
        padding: 72px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 24px;
    }
}
