/* =========================================================
   MOBI LEX THERAPY
   Main Visual Design System
   ========================================================= */


/* -------------------------
   01. BRAND VARIABLES
   ------------------------- */

:root {
    --ivory: #F5EEE7;
    --espresso: #30231F;
    --mocha: #6D5544;
    --gold: #A78655;
    --sage: #AEB2A0;
    --white: #FFFFFF;
    --black: #171311;

    --serif: Georgia, "Times New Roman", serif;
    --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

    --max-width: 1200px;
    --section-padding: 100px 24px;
}


/* -------------------------
   02. RESET
   ------------------------- */

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

html {
    scroll-behavior: smooth;
}

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

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* -------------------------
   03. TYPOGRAPHY
   ------------------------- */

h1,
h2,
h3 {
    font-weight: 400;
}

h1,
h2 {
    font-family: var(--serif);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3.2rem, 13vw, 8rem);
    line-height: 0.9;
}

h2 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 0.95;
}

h3 {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    font-weight: 600;
}

p {
    font-size: 1rem;
}

.eyebrow {
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* -------------------------
   04. HEADER
   ------------------------- */

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 24px;
    color: var(--white);
}

.logo {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

nav {
    display: none;
}

.book-button {
    border: 1px solid rgba(255,255,255,0.7);
    padding: 12px 16px;

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;

    transition: 0.3s ease;
}

.book-button:hover {
    background: var(--white);
    color: var(--espresso);
}


/* -------------------------
   05. HERO
   ------------------------- */

.hero {
    min-height: 100svh;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 140px 24px 60px;

    background:
        linear-gradient(
            180deg,
            rgba(48,35,31,0.3),
            rgba(48,35,31,0.92)
        );

    color: var(--white);
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 32px;
}

.hero-text {
    max-width: 560px;
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 22px;

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;

    transition: 0.3s ease;
}

.primary-button {
    background: var(--gold);
    color: var(--white);
}

.primary-button:hover {
    background: var(--white);
    color: var(--espresso);
}

.secondary-button {
    border: 1px solid rgba(255,255,255,0.6);
    color: var(--white);
}

.secondary-button:hover {
    background: var(--white);
    color: var(--espresso);
}

.mobile-message {
    margin-top: 42px;

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
}


/* -------------------------
   06. GENERAL SECTIONS
   ------------------------- */

.experience,
.services,
.treatments,
.process,
.athletes,
.about,
.pricing,
.booking,
.contact {
    padding: var(--section-padding);
}

.experience > *,
.services > *,
.treatments > *,
.process > *,
.athletes > *,
.about > *,
.pricing > *,
.booking > *,
.contact > * {
    max-width: var(--max-width);
}


/* -------------------------
   07. EXPERIENCE
   ------------------------- */

.experience {
    background: var(--ivory);
}

.experience h2 {
    margin-bottom: 28px;
}

.experience > p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 60px;
    color: var(--mocha);
}

.locations {
    display: grid;
    gap: 1px;
    background: rgba(48,35,31,0.18);
}

.locations > div {
    padding: 32px 24px;
    background: var(--ivory);
}

.locations h3 {
    margin-bottom: 12px;
}

.locations p {
    color: var(--mocha);
}


/* -------------------------
   08. SERVICES
   ------------------------- */

.services {
    background: var(--espresso);
    color: var(--white);
}

.services h2 {
    margin-bottom: 60px;
}

.service-grid {
    display: grid;
    gap: 1px;
    background: rgba(255,255,255,0.2);
}

.service-grid article {
    padding: 32px 24px;
    background: var(--espresso);
}

.service-grid span,
.treatment-list span,
.process-grid span {
    display: block;
    margin-bottom: 28px;

    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.service-grid h3 {
    margin-bottom: 16px;
}

.service-grid p {
    color: rgba(255,255,255,0.7);
}


/* -------------------------
   09. TREATMENTS
   ------------------------- */

.treatments {
    background: var(--white);
}

.treatments h2 {
    margin-bottom: 60px;
}

.treatment-list {
    display: grid;
    gap: 0;
}

.treatment-list article {
    padding: 36px 0;
    border-top: 1px solid rgba(48,35,31,0.2);
}

.treatment-list article:last-child {
    border-bottom: 1px solid rgba(48,35,31,0.2);
}

.treatment-list h3 {
    margin-bottom: 14px;
}

.treatment-list p {
    max-width: 600px;
    color: var(--mocha);
}


/* -------------------------
   10. PROCESS
   ------------------------- */

.process {
    background: var(--sage);
}

.process h2 {
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    gap: 1px;
    background: rgba(48,35,31,0.2);
}

.process-grid > div {
    padding: 32px 24px;
    background: var(--sage);
}

.process-grid h3 {
    margin-bottom: 14px;
}

.process-grid p {
    color: var(--mocha);
}


/* -------------------------
   11. ATHLETES
   ------------------------- */

.athletes {
    background: var(--espresso);
    color: var(--white);
}

.athletes h2 {
    margin-bottom: 30px;
}

.athletes > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.75);
}


/* -------------------------
   12. ABOUT
   ------------------------- */

.about {
    background: var(--ivory);
}

.about h2 {
    margin-bottom: 30px;
}

.about > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 60px;
    color: var(--mocha);
}

.timeline {
    border-top: 1px solid rgba(48,35,31,0.2);
}

.timeline > div {
    padding: 28px 0;
    border-bottom: 1px solid rgba(48,35,31,0.2);
}

.timeline span {
    display: block;
    margin-bottom: 8px;

    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.timeline p {
    color: var(--mocha);
}


/* -------------------------
   13. PRICING
   ------------------------- */

.pricing {
    background: var(--white);
}

.pricing h2 {
    margin-bottom: 50px;
}

.price-list {
    border-top: 1px solid rgba(48,35,31,0.2);
}

.price-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;

    border-bottom: 1px solid rgba(48,35,31,0.2);
}

.price-list span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}

.price-list strong {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
}

.pricing-note {
    margin-top: 24px;
    color: var(--mocha);
    font-size: 0.8rem;
}


/* -------------------------
   14. BOOKING
   ------------------------- */

.booking {
    background: var(--gold);
    color: var(--white);
}

.booking h2 {
    margin-bottom: 30px;
}

.booking > p:not(.eyebrow) {
    max-width: 600px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.85);
}

.booking .primary-button {
    background: var(--espresso);
}


/* -------------------------
   15. CONTACT
   ------------------------- */

.contact {
    background: var(--espresso);
    color: var(--white);
}

.contact h2 {
    margin-bottom: 24px;
}

.contact > p:not(.eyebrow) {
    margin-bottom: 32px;
    color: rgba(255,255,255,0.7);
}


/* -------------------------
   16. FOOTER
   ------------------------- */

footer {
    padding: 40px 24px;

    background: var(--black);
    color: var(--white);

    text-align: center;
}

footer .logo {
    margin-bottom: 18px;
}

footer p {
    margin-top: 8px;
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}


/* -------------------------
   17. TABLET
   ------------------------- */

@media (min-width: 700px) {

    :root {
        --section-padding: 130px 50px;
    }

    header {
        padding: 30px 50px;
    }

    .hero {
        padding: 180px 50px 80px;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .primary-button,
    .secondary-button {
        width: auto;
        min-width: 190px;
    }

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

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


/* -------------------------
   18. DESKTOP
   ------------------------- */

@media (min-width: 1000px) {

    :root {
        --section-padding: 150px 70px;
    }

    header {
        padding: 30px 70px;
    }

    nav {
        display: flex;
        gap: 30px;
        margin-left: auto;
        margin-right: 40px;
    }

    nav a {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        opacity: 0.8;
        transition: 0.3s ease;
    }

    nav a:hover {
        opacity: 1;
    }

    .hero {
        padding: 200px 70px 100px;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .locations > div,
    .service-grid article,
    .process-grid > div {
        padding: 45px 35px;
    }

    .treatment-list {
        max-width: 1000px;
    }

    .treatment-list article {
        display: grid;
        grid-template-columns: 80px 260px 1fr;
        gap: 30px;
        align-items: start;
    }

    .treatment-list span {
        margin: 0;
    }

    .treatment-list h3 {
        margin: 0;
    }

    .timeline {
        max-width: 900px;
    }

    .timeline > div {
        display: grid;
        grid-template-columns: 150px 1fr;
        gap: 30px;
    }

    .timeline span {
        margin: 0;
    }

    .price-list {
        max-width: 850px;
    }

    .booking,
    .contact {
        min-height: 70vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}


/* -------------------------
   19. ACCESSIBILITY
   ------------------------- */

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}


/* -------------------------
   20. REDUCED MOTION
   ------------------------- */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
    }
}css/style.css