/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #0F0F0F;
    background-color: #FAF8F5;
    overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BUTTONS */
button, .button {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    outline: none;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.3) 0%, rgba(15, 15, 15, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: heroFadeIn 2000ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-since {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    animation: heroFadeIn 1500ms cubic-bezier(0.19, 1, 0.22, 1) forwards 300ms;
    opacity: 0;
}

.hero-location {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C5A047;
    margin-bottom: 20px;
    animation: locationSlide 1500ms cubic-bezier(0.19, 1, 0.22, 1) forwards 500ms;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes locationSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 120px;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 32px;
    animation: titleScale 2000ms cubic-bezier(0.19, 1, 0.22, 1) forwards 800ms;
    opacity: 0;
    transform: scale(0.9);
}

@keyframes titleScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-line {
    width: 48px;
    height: 2px;
    background-color: #C5A047;
    margin: 0 auto 24px;
    animation: lineGrow 1000ms cubic-bezier(0.19, 1, 0.22, 1) forwards 1200ms;
    transform: scaleX(0);
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 64px;
    opacity: 0.9;
    animation: subtitleFade 1000ms cubic-bezier(0.19, 1, 0.22, 1) forwards 1500ms;
    opacity: 0;
}

@keyframes subtitleFade {
    to {
        opacity: 0.9;
    }
}

.hero-cta {
    padding: 18px 48px;
    background-color: transparent;
    border: 1px solid #C5A047;
    color: #C5A047;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: ctaFade 1000ms cubic-bezier(0.19, 1, 0.22, 1) forwards 1800ms;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes ctaFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta:hover {
    background-color: #C5A047;
    color: white;
    transform: translateY(-2px);
}

/* BRAND STATEMENT */
.brand-statement {
    background-color: #0F0F0F;
    padding: 200px 0;
    text-align: center;
}

.brand-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 300;
    font-style: italic;
    color: #C5A047;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
    quotes: """ """;
}

.brand-quote::before {
    content: open-quote;
}

.brand-quote::after {
    content: close-quote;
}

/* FULL-BLEED IMAGES */
.full-bleed-image {
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.full-bleed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.full-bleed-image img:hover {
    transform: scale(1.02);
}

/* SERVICES */
.services {
    background-color: #FAF8F5;
}

.service-item {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 55%;
    height: 80vh;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

.service-content {
    flex: 1;
    padding: 120px 80px;
    background-color: #F5F1EB;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-number {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #C5A047;
    margin-bottom: 24px;
    opacity: 0.8;
}

.service-title {
    font-size: 42px;
    font-weight: 300;
    color: #0F0F0F;
    margin-bottom: 32px;
    line-height: 1.3;
}

.service-description {
    font-size: 18px;
    font-weight: 300;
    color: #0F0F0F;
    line-height: 1.8;
    opacity: 0.9;
}

/* PORTFOLIO */
.portfolio {
    padding: 200px 0;
    background-color: #FAF8F5;
}

.portfolio-title {
    font-size: 72px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 120px;
    color: #0F0F0F;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.portfolio-item.tall {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

.portfolio-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* BOOKING */
.booking {
    padding: 200px 0;
    background-color: #0F0F0F;
    text-align: center;
}

.booking-header {
    max-width: 640px;
    margin: 0 auto 80px;
}

.booking-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C5A047;
    margin-bottom: 24px;
}

.booking-title {
    font-size: 72px;
    font-weight: 300;
    color: white;
    margin-bottom: 32px;
}

.booking-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.booking-calendar-container {
    max-width: 720px;
    margin: 0 auto;
}

.booking-status-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

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

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.gold {
    background-color: #C5A047;
    box-shadow: 0 0 8px rgba(197, 160, 71, 0.4);
}

.status-dot.reserved {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-dot.waitlist {
    background-color: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.status-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.booking-calendar {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding: 0 8px;
}

.calendar-month {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    color: white;
}

.calendar-nav {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #C5A047;
    font-size: 20px;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50%;
    transition: all 300ms ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover {
    background-color: rgba(197, 160, 71, 0.1);
    border-color: rgba(197, 160, 71, 0.3);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 32px;
}

.calendar-day-header {
    text-align: center;
    padding: 12px 4px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 300;
    cursor: default;
    border-radius: 8px;
    transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    color: rgba(255, 255, 255, 0.15);
}

.calendar-day.available {
    background: linear-gradient(135deg, #C5A047 0%, #D4B65E 100%);
    color: #0F0F0F;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(197, 160, 71, 0.25);
}

.calendar-day.available:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(197, 160, 71, 0.4);
}

.calendar-day.available.selected {
    background: linear-gradient(135deg, #D4B65E 0%, #E8CC72 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(197, 160, 71, 0.5);
}

.calendar-day.booked {
    background-color: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
}

.calendar-day.booked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-day.unavailable {
    color: rgba(255, 255, 255, 0.08);
    cursor: default;
}

.booking-scarcity {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    border: 1px solid rgba(197, 160, 71, 0.2);
    border-radius: 8px;
    background: rgba(197, 160, 71, 0.03);
}

.scarcity-icon {
    color: #C5A047;
    font-size: 10px;
    animation: pulse 2s ease-in-out infinite;
}

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

.scarcity-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C5A047;
}

.time-slots {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: slideIn 500ms ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.time-slot {
    display: inline-block;
    margin: 8px;
    padding: 14px 28px;
    background-color: transparent;
    border: 1px solid rgba(197, 160, 71, 0.4);
    color: #C5A047;
    border-radius: 32px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.time-slot:hover {
    background: linear-gradient(135deg, #C5A047 0%, #D4B65E 100%);
    color: #0F0F0F;
    border-color: #C5A047;
    box-shadow: 0 4px 16px rgba(197, 160, 71, 0.3);
}

.time-slot.booked {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slot.selected {
    background: linear-gradient(135deg, #C5A047 0%, #D4B65E 100%);
    color: #0F0F0F;
    border-color: #C5A047;
    box-shadow: 0 8px 24px rgba(197, 160, 71, 0.4);
}

.booking-form, .booking-confirmation {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 56px 48px;
    margin-top: 32px;
    animation: slideIn 500ms ease;
}

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

.booking-form h3, .booking-confirmation h3 {
    font-size: 36px;
    font-weight: 300;
    color: white;
    margin-bottom: 12px;
}

.form-note {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.booking-form label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    text-align: left;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
    background: transparent;
    transition: border-color 300ms ease;
    outline: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-bottom-color: #C5A047;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: transparent;
}

.booking-form .form-submit {
    margin-top: 16px;
    background: linear-gradient(135deg, #C5A047 0%, #D4B65E 100%);
    color: #0F0F0F;
    padding: 20px 56px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.booking-form .form-submit:hover {
    box-shadow: 0 8px 32px rgba(197, 160, 71, 0.4);
    transform: translateY(-2px);
}

.form-disclaimer {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    border: 2px solid #C5A047;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: #C5A047;
}

.booking-confirmation p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.8;
}

.hidden {
    display: none !important;
}

/* SERVICE AREAS */
.service-areas {
    padding: 200px 0;
    background-color: #0F0F0F;
    text-align: center;
}

.areas-title {
    font-size: 72px;
    font-weight: 300;
    color: white;
    margin-bottom: 24px;
}

.areas-subtitle {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C5A047;
    margin-bottom: 80px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 800px;
    margin: 0 auto;
}

.areas-column {
    text-align: left;
}

.area-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    transition: color 500ms ease;
}

.area-name:hover {
    color: #C5A047;
}

/* FORMS */
.form-group {
    margin-bottom: 24px;
}

.form-submit {
    background-color: #C5A047;
    color: white;
    padding: 18px 48px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 300ms ease;
    text-transform: uppercase;
}

.form-submit:hover {
    background-color: #B8944A;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 160, 71, 0.3);
}

/* FOOTER */
.footer {
    background-color: #0F0F0F;
    padding: 80px 0;
    text-align: center;
}

.footer-brand {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #C5A047;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-email {
    display: block;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 300ms ease;
}

.footer-email:hover {
    color: #C5A047;
}

.footer-tagline {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* ANIMATIONS */
[data-animate] {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */

/* Tablet */
@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 96px;
    }
    
    .brand-quote {
        font-size: 42px;
    }
    
    .service-content {
        padding: 80px 60px;
    }
    
    .service-title {
        font-size: 36px;
    }
    
    .portfolio-title,
    .booking-title,
    .areas-title {
        font-size: 64px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .brand-statement {
        padding: 120px 0;
    }
    
    .brand-quote {
        font-size: 28px;
    }
    
    .service-item {
        flex-direction: column !important;
        min-height: auto;
    }
    
    .service-item.reverse {
        flex-direction: column !important;
    }
    
    .service-image {
        flex: none;
        width: 100%;
        height: 50vh;
        min-height: 300px;
    }
    
    .service-content {
        flex: none;
        width: 100%;
        height: auto;
        padding: 60px 32px;
    }
    
    .service-title {
        font-size: 32px;
    }
    
    .portfolio {
        padding: 120px 0;
    }
    
    .portfolio-title,
    .booking-title,
    .areas-title {
        font-size: 48px;
        margin-bottom: 60px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .portfolio-item.wide {
        grid-column: span 2;
    }
    
    .booking {
        padding: 120px 0;
    }
    
    .booking-calendar,
    .booking-form,
    .booking-confirmation {
        padding: 32px 24px;
    }
    
    .booking-status-bar {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .areas-column {
        text-align: center;
    }
    
    .booking-form {
        padding: 32px 24px;
    }
}

/* Mobile */
@media (max-width: 375px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .brand-quote {
        font-size: 24px;
    }
    
    .service-content {
        padding: 48px 24px;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .portfolio-title,
    .booking-title,
    .areas-title {
        font-size: 40px;
    }
    
    .booking-calendar,
    .booking-form,
    .booking-confirmation {
        padding: 24px 20px;
    }
}