/* ========================================
   OCEAN DECK — St Simons Island Lodging
   Custom Styles
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --navy-950: #0a1628;
    --navy-900: #0f2140;
    --navy-800: #152d56;
    --navy-700: #1a3a6e;
    --navy-600: #1e4d8f;
    --gold-500: #d4a853;
    --gold-400: #e0b86a;
    --gold-300: #e8c98a;
    --gold-600: #b8903f;
    --sand-50: #faf8f4;
    --sand-100: #f5f0e8;
    --sand-200: #ebe4d6;
    --sand-300: #ddd3c0;
    --warm-gray-50: #f9f8f6;
    --warm-gray-100: #f3f1ed;
    --warm-gray-200: #e8e4dc;
    --warm-gray-600: #6b6560;
    --warm-gray-700: #4a4540;
    --warm-gray-800: #2d2a27;
    --warm-gray-900: #1a1816;
    --white: #ffffff;
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08), 0 2px 6px rgba(10, 22, 40, 0.04);
    --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.12), 0 4px 12px rgba(10, 22, 40, 0.06);
    --shadow-xl: 0 24px 60px rgba(10, 22, 40, 0.16), 0 8px 20px rgba(10, 22, 40, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul {
    list-style: none;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--navy-900);
}

/* --- Section Label --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-600);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-label-light {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-950);
    border-color: var(--gold-500);
    box-shadow: 0 4px 16px rgba(212, 168, 83, 0.35);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
    border-color: var(--gold-400);
    box-shadow: 0 6px 24px rgba(212, 168, 83, 0.45);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

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

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.15);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 248, 244, 0.97);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-900);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: var(--radius-sm);
    color: var(--navy-950);
}

.navbar nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--warm-gray-700);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition);
}

.navbar nav ul li a:hover {
    color: var(--navy-900);
    background: rgba(212, 168, 83, 0.1);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    padding: 120px 0 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 80% 40%, rgba(212, 168, 83, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(30, 77, 143, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-400);
    background: rgba(212, 168, 83, 0.12);
    border: 1px solid rgba(212, 168, 83, 0.25);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

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

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 6/7;
}

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

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 260px;
}

.floating-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-600);
}

.floating-card-content p {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.5;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    color: var(--sand-50);
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* --- About Section --- */
.about {
    padding: 100px 0;
    background: var(--sand-50);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--sand-50);
}

.about-img-secondary img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about-accent {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    box-shadow: var(--shadow-md);
}

.about-content h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 24px;
}

.about-content > p {
    font-size: 17px;
    color: var(--warm-gray-700);
    margin-bottom: 16px;
}

.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
    border: 1px solid rgba(212, 168, 83, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-600);
}

.feature-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--warm-gray-600);
    line-height: 1.6;
}

/* --- Stay Section --- */
.stay {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 16px;
}

.section-header > p {
    font-size: 17px;
    color: var(--warm-gray-600);
}

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

.stay-card {
    background: var(--sand-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(212, 168, 83, 0.1);
}

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

.stay-card-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.stay-card-body {
    padding: 28px;
}

.stay-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.stay-card-body > p {
    font-size: 15px;
    color: var(--warm-gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.amenity-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.amenity-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--warm-gray-700);
}

.amenity-list li svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* --- Location Section --- */
.location {
    padding: 100px 0;
    background: var(--sand-50);
}

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

.location-content h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 24px;
}

.location-content > p {
    font-size: 17px;
    color: var(--warm-gray-700);
    margin-bottom: 16px;
}

.location-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.highlight-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--warm-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-image {
    position: relative;
}

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

.location-img-main img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.location-floating-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--navy-900);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.location-floating-badge svg {
    color: var(--gold-400);
    flex-shrink: 0;
}

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

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 20% 50%, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.75;
}

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

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

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

.contact-info h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--warm-gray-600);
    margin-bottom: 36px;
}

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

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

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
}

.contact-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 15px;
    color: var(--warm-gray-600);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--gold-600);
    font-weight: 600;
    transition: color var(--transition);
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--sand-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(212, 168, 83, 0.12);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.form-note {
    font-size: 14px;
    color: var(--warm-gray-600);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--warm-gray-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--warm-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--warm-gray-900);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-300);
}

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

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.15), rgba(212, 168, 83, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-500);
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--warm-gray-600);
    font-size: 15px;
}

/* --- Footer --- */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

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

.footer-brand p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a,
.footer-contact ul li a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-contact ul li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.footer-contact ul li svg {
    color: var(--gold-400);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }

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

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

    .about-grid,
    .location-grid,
    .contact-grid {
        gap: 60px;
    }

    .stay-grid {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-floating-card {
        left: auto;
        right: -10px;
        bottom: -10px;
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

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

    .navbar nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        border-bottom: 1px solid rgba(212, 168, 83, 0.15);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }

    .navbar nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .navbar nav ul li {
        width: 100%;
    }

    .navbar nav ul li a {
        display: block;
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        font-size: 16px;
    }

    .navbar nav ul li:last-child {
        margin-top: 8px;
    }

    .navbar nav ul li:last-child a {
        text-align: center;
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }

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

    .hero-title {
        font-size: clamp(28px, 7vw, 40px);
    }

    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 16px;
        max-width: 100%;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .about-img-main img {
        height: 300px;
    }

    .about-accent {
        top: -12px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .about-accent svg {
        width: 24px;
        height: 24px;
    }

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

    .location-img-main img {
        height: 400px;
    }

    .location-floating-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
        display: inline-flex;
    }

    .location-highlights {
        gap: 24px;
    }

    .highlight-number {
        font-size: 36px;
    }

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

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

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

    .hero-wave svg {
        height: 50px;
    }
}

@media (max-width: 380px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

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