:root {
    --bg-light: #fdfbf7;
    --bg-mint: #eef5f3;
    --primary-dark: #003b30;
    --accent: #d4a373;
    --text-main: #2b2b2b;
    --text-muted: #5e5e5e;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.domain-banner {
    background: var(--bg-mint);
    color: var(--primary-dark);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,59,48,0.1);
}

.domain-banner a {
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-dark);
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 6%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1;
    color: var(--primary-dark);
    font-weight: 600;
}

.logo span {
    font-style: italic;
    color: var(--accent);
}

nav {
    display: flex;
    gap: 3rem;
    align-items: center;
}

nav a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.6;
}

.btn-primary {
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: background 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent);
}

/* Hero Section */
.hero {
    display: flex;
    padding: 4rem 6% 8rem;
    min-height: 80vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding-right: 5rem;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 450px;
}

/* Abstract Images */
.hero-images {
    flex: 1;
    position: relative;
    height: 600px;
}

.img-frame {
    position: absolute;
    background-size: cover;
    background-position: center;
}

.frame-1 {
    width: 70%;
    height: 80%;
    background-color: var(--bg-mint);
    right: 0;
    top: 0;
    border-radius: 200px 200px 0 0;
}

.frame-2 {
    width: 50%;
    height: 60%;
    background-color: #dbe4df;
    left: 10%;
    bottom: 0;
    box-shadow: 20px 20px 60px rgba(0,59,48,0.05);
}

/* Philosophy */
.philosophy {
    background: var(--primary-dark);
    color: var(--bg-light);
    padding: 8rem 6%;
    text-align: center;
}

.philosophy-text {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--bg-mint);
}

.philosophy p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(253,251,247,0.8);
}

/* Treatments */
.treatments {
    padding: 8rem 6%;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.treatment-card {
    padding: 3rem;
    background: #fff;
    border: 1px solid rgba(0,59,48,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.treatment-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 400;
}

.treatment-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Booking */
.booking-section {
    padding: 6rem 6%;
    background: var(--bg-mint);
}

.booking-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,59,48,0.05);
}

.booking-info {
    flex: 1;
    padding: 4rem;
    background: var(--primary-dark);
    color: #fff;
}

.booking-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.booking-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.booking-form {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input, select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,59,48,0.1);
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent);
}

/* Footer */
footer {
    padding: 4rem 6% 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,59,48,0.1);
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .hero { flex-direction: column; }
    .hero-images { display: none; }
    .booking-container { flex-direction: column; }
    nav { display: none; }
}