/* ============================================
   Sunset Point at Smith Lake — Stylesheet
   Classic & Elegant | Teal + Slate Grey
   ============================================ */

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

:root {
    --teal-900: #042f2e;
    --teal-800: #0a3d3b;
    --teal-700: #0d5c58;
    --teal-600: #0f766e;
    --teal-500: #14a098;
    --teal-400: #2dd4bf;
    --teal-300: #5eead4;
    --teal-100: #ccfbf1;
    --teal-50:  #f0fdfa;

    --slate-950: #0c1522;
    --slate-900: #0f1c2e;
    --slate-800: #1a2d45;
    --slate-700: #2c4158;
    --slate-600: #3d5670;
    --slate-500: #5a738d;
    --slate-400: #7f96a8;
    --slate-300: #a8b8c7;
    --slate-200: #cdd8e2;
    --slate-100: #e8edf2;
    --slate-50:  #f4f7fa;

    --warm-900: #3d2b1f;
    --warm-700: #6b4c3b;
    --warm-500: #a0725a;
    --warm-300: #d4a88c;
    --warm-100: #f0dcc8;
    --warm-50:  #faf3ec;

    --cream: #f9f6f1;
    --cream-dark: #f0ebe3;
    --white: #ffffff;

    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Segoe UI', system-ui, sans-serif;

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

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

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

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

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--teal-500);
}

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

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

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--slate-900);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 600px;
    line-height: 1.7;
}

.lead {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--teal-800);
    border-color: var(--teal-800);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

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

.btn--outline:hover {
    background: var(--teal-700);
    color: var(--white);
    transform: translateY(-1px);
}

.btn--light {
    background: var(--white);
    color: var(--teal-800);
    border-color: var(--white);
}

.btn--light:hover {
    background: var(--cream);
    color: var(--teal-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

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

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--teal-600);
    transition: gap var(--transition);
}

.link-arrow:hover {
    gap: 14px;
    color: var(--teal-500);
}

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

.site-header.scrolled {
    background: rgba(249, 246, 241, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .logo {
    color: var(--slate-900);
}

.site-header.scrolled .nav-link {
    color: var(--slate-700);
}

.site-header.scrolled .nav-link:hover {
    color: var(--teal-600);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.logo-text {
    font-style: italic;
}

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

.logo-icon {
    color: var(--teal-300);
    flex-shrink: 0;
}

/* ---------- Navigation ---------- */
.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}

.site-header.scrolled .nav-toggle-bar {
    background: var(--slate-800);
}

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

.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: translateY(-6.5px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

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

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

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

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

.nav-link--cta {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

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

.nav-link--cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 47, 46, 0.82) 0%,
        rgba(15, 28, 46, 0.70) 50%,
        rgba(12, 21, 34, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-300);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 560px;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.trust-item svg {
    color: var(--teal-400);
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--slate-800);
}

.hero-badge svg {
    color: var(--warm-500);
}

/* ---------- Intro ---------- */
.intro {
    padding: 120px 0;
    background: var(--cream);
}

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

.intro-image-col img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text-col .section-title {
    margin-bottom: 24px;
}

.intro-text-col p {
    color: var(--slate-600);
    margin-bottom: 16px;
}

.intro-stats {
    display: flex;
    gap: 24px;
    align-items: center;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--teal-700);
    line-height: 1;
    margin-bottom: 8px;
}

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

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--slate-200);
}

/* ---------- Accommodations ---------- */
.accommodations {
    padding: 120px 0;
    background: var(--white);
}

.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: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

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

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

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

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

.room-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--teal-700);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
}

.room-card-body {
    padding: 32px;
}

.room-name {
    font-size: 1.625rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--slate-900);
}

.room-desc {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--slate-600);
}

.room-features svg {
    color: var(--teal-500);
    flex-shrink: 0;
}

/* ---------- Amenities ---------- */
.amenities {
    padding: 120px 0;
    background: var(--slate-50);
}

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

.amenities-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
}

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

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

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

.amenity-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.amenity-desc {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.amenities-image-col {
    position: relative;
}

.amenities-image-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.amenities-image-stack img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ---------- Experience ---------- */
.experience {
    padding: 120px 0;
    background: var(--cream);
}

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

.experience-image-col img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.timeline-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--slate-200);
    position: relative;
}

.timeline-item:first-child {
    border-top: 1px solid var(--slate-200);
}

.timeline-time {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 8px;
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 0.9375rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ---------- Location ---------- */
.location {
    padding: 120px 0;
    background: var(--white);
}

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

.location-details {
    margin: 32px 0;
    padding: 32px;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

.location-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    color: var(--slate-700);
    font-size: 0.9375rem;
}

.location-row svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

.location-row a {
    color: var(--slate-700);
}

.location-row a:hover {
    color: var(--teal-600);
}

.location-distances {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.distance-item {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-500);
    letter-spacing: 0.03em;
}

.distance-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--slate-300);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    background: var(--slate-100);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--slate-500);
}

.map-placeholder svg {
    color: var(--teal-500);
}

.map-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--slate-600);
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
    aspect-ratio: 4/3;
}

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

.gallery-item--tall {
    grid-column: 8 / 13;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
    grid-column: 5 / 8;
    grid-row: 2 / 3;
}

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

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

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 47, 46, 0.85) 0%,
        rgba(15, 28, 46, 0.78) 100%
    );
}

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

.cta-eyebrow {
    color: var(--teal-300);
}

.cta-title {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--slate-700);
    font-size: 0.9375rem;
}

.contact-row svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

.contact-row a {
    color: var(--slate-700);
}

.contact-row a:hover {
    color: var(--teal-600);
}

/* ---------- Form ---------- */
.contact-form {
    background: var(--cream);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--slate-800);
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 160, 152, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

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

.form-success {
    text-align: center;
    padding: 48px 40px;
}

.form-success svg {
    color: var(--teal-500);
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--slate-500);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--slate-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

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

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

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

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

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

.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

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

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .intro-grid,
    .amenities-layout,
    .experience-grid,
    .location-content,
    .contact-layout {
        gap: 48px;
    }

    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item--large {
        grid-column: 1 / 7;
    }

    .gallery-item--tall {
        grid-column: 7 / 13;
        grid-row: 1 / 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: 1 / 5;
        grid-row: 2 / 3;
    }

    .gallery-item:nth-child(5) {
        grid-column: 5 / 9;
        grid-row: 2 / 3;
    }

    .gallery-item:nth-child(6) {
        grid-column: 9 / 13;
        grid-row: 2 / 3;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--slate-900);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
    }

    .nav-link--cta {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 120px;
        text-align: center;
    }

    .hero-headline {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .intro-grid,
    .amenities-layout,
    .experience-grid,
    .location-content,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-image-col {
        order: -1;
    }

    .amenities-image-col {
        order: -1;
    }

    .experience-image-col {
        order: -1;
    }

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

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

    .gallery-item--large,
    .gallery-item--tall,
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4/3;
    }

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

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

    .intro-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

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

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

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

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

    .contact-form {
        padding: 24px;
    }

    .room-card-body {
        padding: 24px;
    }

    .room-features {
        grid-template-columns: 1fr;
    }
}
