/* ===================================
   Design Tokens
   =================================== */
:root {
    /* Wellness & Professional Palette */
    --ivory: #FDFBFA;
    --beige: #F5F1ED;
    --taupe: #D8D2CB;
    --charcoal: #2D3436;
    --grey-text: #636E72;
    --white: #FFFFFF;
    --accent: #B2967D;
    /* Soft bronze/warm taupe */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --sp-md: 2rem;
    --sp-lg: 4rem;
    --sp-xl: 6rem;

    /* Transitions & Shadows */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ===================================
   Reset & Base
   =================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: var(--sp-lg);
    position: relative;
    text-align: center;
}

.section-title.text-left {
    text-align: left;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 1.5rem auto 0;
}

.section-title.text-left::after {
    margin-left: 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    font-size: 0.85rem;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-block {
    width: 100%;
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--accent);
    margin-left: 5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
}

/* ===================================
   Hero
   =================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ===================================
   About
   =================================== */
.about {
    padding: var(--sp-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--grey-text);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.highlight-card {
    background: var(--beige);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    border-bottom: 4px solid var(--accent);
}

.highlight-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.highlight-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.img-styled {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--taupe);
}

/* ===================================
   Services
   =================================== */
.services {
    padding: var(--sp-xl) 0;
    background: var(--white);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-item {
    background: var(--ivory);
    padding: 3rem;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--beige);
}

.service-item:hover {
    box-shadow: var(--shadow);
    transform: scale(1.02);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-tag {
    font-size: 1.5rem;
}

.service-item h3 {
    font-size: 1.6rem;
    color: var(--accent);
}

.service-footer {
    text-align: center;
    margin-top: 4rem;
    font-style: italic;
    color: var(--grey-text);
}

/* ===================================
   Booking
   =================================== */
.booking {
    padding: var(--sp-xl) 0;
    background: var(--beige);
}

.booking-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--taupe);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--ivory);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    outline: none;
    background: var(--white);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--grey-text);
}

/* ===================================
   Contact
   =================================== */
.contact {
    padding: var(--sp-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.info-list p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-hours {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--white);
    border-left: 5px solid var(--accent);
}

.contact-hours h4 {
    margin-bottom: 1rem;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 5rem 0 2.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    font-size: 1.5rem;
    opacity: 0.7;
}

.footer-social a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ===================================
   Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 992px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        order: -1;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .booking-card {
        padding: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}