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

:root {
    --charcoal: #2C2C2C;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #E8734A;
    --coral-light: #F09070;
    --coral-dark: #D4613A;
    --cream: #FAF6F1;
    --cream-dark: #F0E9DF;
    --warm-white: #FFFDF9;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A8A;
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
    --shadow-md: 0 8px 30px rgba(44, 44, 44, 0.1);
    --shadow-lg: 0 20px 60px rgba(44, 44, 44, 0.15);
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--sans);
    color: var(--text-primary);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--charcoal);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

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

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.75;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 115, 74, 0.35);
}

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 115, 74, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid rgba(44, 44, 44, 0.2);
}

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

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(250, 246, 241, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 0;
    box-shadow: 0 1px 0 rgba(44, 44, 44, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    z-index: 101;
}

.nav-logo-mark {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--coral);
    border-radius: 50%;
    transition: all var(--transition);
}

.nav-logo-text {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.nav.scrolled .nav-logo-text {
    color: var(--charcoal);
}

.nav-logo-text {
    color: rgba(255, 255, 255, 0.9);
}

.nav.scrolled .nav-logo-text {
    color: var(--charcoal);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--coral);
    transition: width var(--transition);
}

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

.nav-menu a:hover {
    color: #fff;
}

.nav.scrolled .nav-menu a {
    color: var(--text-secondary);
}

.nav.scrolled .nav-menu a:hover {
    color: var(--charcoal);
}

.nav-cta {
    background: var(--coral) !important;
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--coral-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 101;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.nav.scrolled .nav-toggle-line {
    background: var(--charcoal);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.72) 0%,
        rgba(44, 44, 44, 0.55) 50%,
        rgba(26, 26, 26, 0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    width: 100%;
}

.hero-card {
    max-width: 640px;
    background: rgba(250, 246, 241, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 3rem 3rem 2.75rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-headline em {
    font-style: italic;
    color: var(--coral-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-actions .btn-ghost:hover {
    border-color: var(--coral-light);
    color: var(--coral-light);
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    right: 2rem;
    bottom: 6rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(250, 246, 241, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    transition: all var(--transition);
}

.stat-card:hover {
    background: rgba(250, 246, 241, 0.16);
    transform: translateX(-4px);
}

.stat-icon {
    color: var(--coral-light);
    flex-shrink: 0;
}

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

.stat-value {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

/* ===== Rooms ===== */
.rooms {
    padding: 7rem 0;
    background: var(--warm-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.room-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(44, 44, 44, 0.06);
}

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

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

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.room-info {
    padding: 1.75rem;
}

.room-name {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.room-info > p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.room-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.room-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
}

.room-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}

.rooms-cta {
    text-align: center;
}

/* ===== Experience ===== */
.experience {
    padding: 7rem 0;
    background: var(--charcoal);
    overflow: hidden;
}

.experience .section-eyebrow {
    color: var(--coral-light);
}

.experience .section-title {
    color: #fff;
}

.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-images {
    position: relative;
}

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

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

.exp-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--charcoal);
}

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

.exp-pattern {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--coral) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.4;
    z-index: -1;
}

.experience-content {
    padding: 1rem 0;
}

.exp-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.exp-text em {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-family: var(--serif);
    font-size: 1.1em;
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.exp-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.exp-feature-icon {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.exp-feature h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.35rem;
}

.exp-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

/* ===== Location ===== */
.location {
    padding: 7rem 0;
    background: var(--cream);
}

.location .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.loc-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.loc-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.loc-icon {
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.loc-detail strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.loc-detail span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.location-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 500px;
    border: 1px solid rgba(44, 44, 44, 0.08);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 7rem 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(26, 26, 26, 0.82) 0%,
        rgba(44, 44, 44, 0.7) 100%
    );
}

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

.cta-content .section-eyebrow {
    color: var(--coral-light);
}

.cta-content .section-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-actions .btn-ghost:hover {
    border-color: var(--coral-light);
    color: var(--coral-light);
}

/* ===== Contact ===== */
.contact {
    padding: 7rem 0;
    background: var(--warm-white);
}

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

.contact-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-direct-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(44, 44, 44, 0.06);
    transition: all var(--transition);
}

.contact-direct-item:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-sm);
}

.contact-direct-item a:hover {
    color: var(--coral);
}

.contact-direct-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
}

.contact-direct-value {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.4;
}

/* Form */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(44, 44, 44, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group input,
.form-group textarea {
    font-family: var(--sans);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(44, 44, 44, 0.12);
    border-radius: var(--radius-sm);
    background: var(--warm-white);
    color: var(--text-primary);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 115, 74, 0.1);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(232, 115, 74, 0.08);
    border: 1px solid rgba(232, 115, 74, 0.2);
    border-radius: var(--radius-sm);
    color: var(--coral-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success svg {
    color: var(--coral);
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal-deep);
    padding: 4rem 0 0;
}

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

.footer-logo-mark {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--coral);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-logo-text {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

.footer-contact span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

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

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 2rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 2rem;
    }

    .stat-card {
        flex: 1;
        min-width: 160px;
    }

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

    .experience-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .experience-images {
        max-width: 500px;
    }

    .location .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-map {
        min-height: 350px;
    }

    .location-map iframe {
        min-height: 350px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal-deep);
        flex-direction: column;
        justify-content: center;
        gap: 1.75rem;
        padding: 2rem;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

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

    .nav-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1.05rem;
    }

    .nav-menu a:hover {
        color: #fff !important;
    }

    .hero-card {
        padding: 2rem;
    }

    .hero-stats {
        flex-direction: column;
    }

    .stat-card:hover {
        transform: none;
    }

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

    .exp-img-secondary {
        width: 65%;
        bottom: -1.5rem;
        right: -1rem;
    }

    .exp-pattern {
        width: 80px;
        height: 80px;
        top: -1rem;
        left: -1rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

    .hero-content {
        padding: 7rem 1.25rem 4rem;
    }

    .hero-card {
        padding: 1.75rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        padding: 0 1.25rem;
    }

    .rooms, .experience, .location, .cta-section, .contact {
        padding: 5rem 0;
    }

    .contact-form-wrap {
        padding: 1.75rem;
    }
}
