:root {
    --ink: #16202a;
    --navy: #203040;
    --sage: #7f9b8f;
    --gold: #c9a76a;
    --cream: #f6f2eb;
    --mist: #edf2ef;
    --white: #ffffff;
    --muted: #6d7772;
    --shadow: 0 18px 50px rgba(25, 41, 35, .10);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
}

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

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

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* TOP BAR */
.topbar {
    background: var(--navy);
    color: white;
    font-size: .92rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    flex-wrap: wrap;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e8ece9;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 88px;
}

nav a:not(.btn):hover {
    color: var(--sage);
}

.logo {
    width: 250px;
    max-width: 44vw;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0;
    padding: 0;
}

nav a {
    font-weight: 700;
    font-size: .95rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--sage);
    color: white;
    font-weight: 700;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(.96);
}

.btn.gold {
    background: var(--gold);
    color: #18201e;
}

.btn.outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid #c9d2cd;
}

/* HERO */
.hero {
    background: linear-gradient(90deg, rgba(20, 31, 42, .82), rgba(20, 31, 42, .18)), url("assets/spa lady lying down.jpeg") center/cover;
    min-height: 650px;
    display: flex;
    align-items: center;
    color: white;
}

.hero-inner {
    max-width: 690px;
    padding: 80px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    font-weight: 800;
    color: var(--gold);
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 1.02;
    margin: .3em 0;
}

.hero p {
    font-size: 1.18rem;
    max-width: 630px;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* SECTIONS */
.section {
    padding: 50px 0;
}

.section.alt {
    background: var(--cream);
}

.section.mist {
    background: var(--mist);
}

.section h2 {
    font-family: Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin: .2em 0 .45em;
}

.lead {
    font-size: 1.12rem;
    color: var(--muted);
    max-width: 100%;
}

/* GRIDS */
.grid {
    display: grid;
    gap: 28px;
}

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

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

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

/* CARDS - Fix for equal height */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid #e7ece8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card .copy {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card .copy p {
    flex: 1;
    color: var(--muted);
    margin-bottom: 16px;
}

.card h3 {
    font-family: Georgia, serif;
    font-size: 1.55rem;
    margin: .1em 0 .5em;
}

.card a:last-child {
    margin-top: auto;
}

/* Service cards - image fix */
.service-card img {
    height: 150px;
	margin-top: 14px;
    width: 100%;
    object-fit: contain;
}

.small-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 800;
    color: var(--sage);
}

/* SPLIT LAYOUT */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
}

.split img {
    border-radius: 28px;
    box-shadow: var(--shadow);
}

/* PILLS */
.pill-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pill {
    background: #fff;
    border: 1px solid #dce4df;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
    font-size: .9rem;
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat {
    background: white;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e2e7e4;
}

.stat strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.7rem;
    color: var(--navy);
}

/* TEAM */
.team-card img {
    height: 360px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

/* CTA */
.cta {
    background: linear-gradient(130deg, var(--navy), #344a59);
    border-radius: 30px;
    color: white;
    padding: 54px;
}

.cta h2 {
    color: white;
    margin-top: 0;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.contact-box {
    padding: 28px;
    border-radius: 22px;
    background: white;
    border: 1px solid #e4e9e6;
}

/* FOOTER */
footer {
    background: #142029;
    color: #dbe3df;
    padding: 54px 0 26px;
}

footer .logo {
    filter: brightness(0) invert(1);
    opacity: .92;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 36px;
}

footer h4 {
    color: white;
}

footer a {
    color: #dbe3df;
}

.copyline {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .85rem;
    color: #aebcb5;
}

/* PAGE HERO */
.page-hero {
    background: var(--cream);
    padding: 90px 0 70px;
}

.page-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    margin: .2em 0;
}

/* SERVICE LIST (for services.html if used) */
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-row {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e3e9e5;
    background: white;
}

.service-row img {
    width: 150px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
}

.price {
    font-weight: 800;
    color: var(--sage);
}

.formbox {
    background: white;
    border: 1px solid #e1e7e3;
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.notice {
    background: #fff8e8;
    border: 1px solid #edd8a8;
    padding: 16px 18px;
    border-radius: 14px;
    color: #68522a;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    user-select: none;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .split,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    nav ul {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero {
        min-height: 560px;
    }
}

@media (max-width: 620px) {
    .grid-4,
    .grid-2,
    .stats,
    .service-list {
        grid-template-columns: 1fr;
    }
    .hero-inner {
        padding: 62px 0;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .section {
        padding: 64px 0;
    }
    .service-row {
        flex-direction: column;
    }
    .service-row img {
        width: 100%;
        height: 190px;
    }
    .topbar .container {
        justify-content: center;
        text-align: center;
    }
}