:root {
    --teal: #2A7B7B;
    --teal-dark: #1F5F5F;
    --teal-light: #3D9B9B;
    --slate: #4A5568;
    --slate-dark: #2D3748;
    --slate-light: #718096;
    --cream: #F7F5F2;
    --cream-dark: #EDE8E0;
    --white: #FFFFFF;
    --text: #1A202C;
    --text-light: #4A5568;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--slate-dark);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-outline:hover {
    background-color: var(--teal);
    color: var(--white);
}

.btn-text {
    background-color: transparent;
    color: var(--teal);
    padding: 1rem 0;
    border: none;
}

.btn-text:hover {
    color: var(--teal-dark);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(247, 245, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(42, 123, 123, 0.1);
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--slate);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--slate-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    min-height: 100vh;
    background-color: var(--cream);
    overflow: hidden;
}

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

.hero-content {
    padding-right: 2rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--slate-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-image-wrap {
    position: relative;
    height: 700px;
}

.hero-image {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.main-img {
    width: 75%;
    height: 85%;
    top: 0;
    right: 0;
}

.secondary-img {
    width: 50%;
    height: 45%;
    bottom: 5%;
    left: 0;
    border: 8px solid var(--cream);
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--white);
}

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

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

/* Rooms Section */
.rooms {
    padding: 8rem 0;
    background-color: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.room-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.room-image {
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.room-info {
    padding: 2rem;
}

.room-info h3 {
    font-size: 1.5rem;
    color: var(--slate-dark);
    margin-bottom: 0.75rem;
}

.room-info p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Amenities Section */
.amenities {
    padding: 8rem 0;
    background-color: var(--white);
}

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

.amenities-text p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.amenities-list {
    list-style: none;
}

.amenities-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 1rem;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amenities-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.amenities-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 600px;
}

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

/* Location Section */
.location {
    padding: 8rem 0;
    background-color: var(--cream);
}

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

.location-content p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.location-details {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.location-details p {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 0;
    line-height: 1.8;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--white);
}

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

.contact-info p {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
}

.contact-item a {
    font-size: 1.0625rem;
    color: var(--slate);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-form-wrap {
    background-color: var(--cream);
    padding: 3rem;
    border-radius: 8px;
}

.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.875rem;
    font-weight: 700;
    color: var(--slate);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text);
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(42, 123, 123, 0.1);
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.form-success p {
    font-size: 1.125rem;
    color: var(--teal);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--slate-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--slate-light);
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--slate-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--slate-light);
}

.footer-contact a {
    color: var(--slate-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--slate-light);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-text {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--teal);
    letter-spacing: 0.1em;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .amenities-content,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-wrap {
        height: 500px;
        order: -1;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 1rem 1.5rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(247, 245, 242, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-image-wrap {
        height: 400px;
    }
    
    .main-img {
        width: 85%;
        height: 75%;
    }
    
    .secondary-img {
        width: 55%;
        height: 40%;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-image {
        height: 400px;
    }
    
    .contact-form-wrap {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
