/* =========================================
   ARAVEL
   Main Stylesheet
   ========================================= */


/* =========================================
   VARIABLES
   ========================================= */

:root {

    --cream: #FBF1EB;
    --lavender: #958093;
    --lavender-dark: #756375;
    --gold: #C9A15B;

    --white: #fffaf7;
    --dark: #3f3740;

    --serif: "Cormorant Garamond", serif;
    --sans: "Manrope", sans-serif;

    --container: 1240px;

    --transition: 0.4s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================
   RESET
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--dark);
    font-family: var(--sans);
    font-weight: 400;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}


/* =========================================
   GENERAL
   ========================================= */

.container {
    width: min(100% - 80px, var(--container));
    margin-inline: auto;
}

.section-padding {
    padding: 140px 0;
}

.eyebrow {
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    line-height: 1.5;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
}

h2 {
    color: var(--lavender-dark);
    font-size: clamp(48px, 5vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.035em;
}

h2 em {
    font-weight: 400;
}

p {
    line-height: 1.8;
}


/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease,
        backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(251, 241, 235, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(149, 128, 147, 0.08);
}

.nav-container {
    width: min(100% - 80px, var(--container));
    height: 90px;
    margin-inline: auto;

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

.brand-name {
    color: var(--lavender-dark);
    font-family: var(--serif);
    font-size: 34px;
    letter-spacing: -0.04em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-link {
    position: relative;

    color: var(--lavender-dark);
    font-size: 12px;
    letter-spacing: 0.03em;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-button,
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    min-height: 48px;
    padding: 0 24px;

    border: 1px solid var(--gold);

    color: var(--lavender-dark);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.nav-button:hover,
.primary-button:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-2px);
}

.nav-button {
    min-height: 42px;
}

.nav-button:hover {
    color: white;
}


/* Mobile menu button */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 1px;

    margin: 6px auto;

    background: var(--lavender-dark);

    transition: transform var(--transition);
}


/* Mobile navigation */

.mobile-menu {
    display: none;

    position: absolute;
    top: 90px;
    left: 0;

    width: 100%;

    padding: 30px 40px 40px;

    background: rgba(251, 241, 235, 0.97);
    backdrop-filter: blur(20px);

    border-top: 1px solid rgba(149, 128, 147, 0.1);
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    color: var(--lavender-dark);
    font-family: var(--serif);
    font-size: 28px;
}

.mobile-menu .mobile-book {
    width: fit-content;

    padding: 14px 22px;

    background: var(--gold);

    color: white;

    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.08em;
}


/* =========================================
   HERO
   ========================================= */

.hero {
    position: relative;

    min-height: 100vh;
    min-height: 100svh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;

    width: min(100% - 80px, var(--container));
    margin: 80px auto 0;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 5;

    padding-bottom: 40px;
}

.hero-title {
    max-width: 620px;

    margin-top: 25px;

    color: var(--lavender-dark);

    font-size: clamp(76px, 8vw, 70px);
    line-height: 0.82;

    letter-spacing: -0.055em;
}

.hero-title span {
    display: block;

    margin-left: 80px;

    color: var(--gold);

    font-style: italic;
    font-weight: 400;
}

.hero-title span-1 {
    display: block;

    margin-left: 80px;

    color: var(--lavender-dark);

    font-style: italic;
    font-weight: 400;
}

.hero-description {
    max-width: 410px;

    margin-top: 38px;

    color: var(--lavender-dark);

    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
}

.hero-actions {
    margin-top: 38px;
}

.primary-button {
    min-height: 54px;

    background: transparent;
}

.primary-button span {
    font-size: 16px;

    transition: transform var(--transition);
}

.primary-button:hover span {
    transform: translate(3px, -3px);
}


/* Hero artwork */

.hero-artwork {
    position: relative;
    top: -40px;
    width: 100%;
    max-width: 700px;
    justify-self: end;
    margin-right: -30px;
}

.hero-artwork img {
    position: relative;

    width: 100%;

    mix-blend-mode: multiply;

    filter: saturate(0.88);

    animation: gentleFloat 7s ease-in-out infinite;
}

.artwork-glow {
    position: absolute;

    top: 28%;
    left: 50%;

    width: 430px;
    height: 430px;

    transform: translate(-50%, -50%);

    background: rgba(149, 128, 147, 0.08);

    border-radius: 50%;

    filter: blur(60px);
}


/* Decorative dots */

.hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.hero-decoration-one {
    top: 24%;
    left: 5%;

    width: 8px;
    height: 8px;

    background: var(--gold);

    opacity: 0.7;
}

.hero-decoration-two {
    right: 8%;
    bottom: 18%;

    width: 5px;
    height: 5px;

    background: var(--lavender);

    opacity: 0.6;
}


/* Scroll indicator */

.scroll-indicator {
    position: absolute;

    z-index: 5;

    bottom: 40px;
    left: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    transform: translateX(-50%);

    color: var(--lavender);

    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 42px;

    background: linear-gradient(
        to bottom,
        var(--gold),
        transparent
    );
}


/* =========================================
   INTRODUCTION
   ========================================= */

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

.section-heading {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    margin-top: 25px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;

    margin-top: 50px;

    place-items: center;
    text-align: center;
    align-items: center;
}

.intro-text {
    padding-left: 0px;
}

.large-text {
    color: var(--lavender-dark);

    font-family: var(--serif);
    font-size: 34px;
    line-height: 1.25;
}

.intro-text > p:not(.large-text) {
    max-width: 500px;

    margin-top: 28px;

    color: #756a72;

    font-size: 18px;
    font-weight: 300;

    margin-left: auto;
    margin-right: auto;
}

.gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    width: 220px;

    margin: 50px auto 0;

    margin-top: 50px;

    color: var(--gold);
}

.gold-divider::before,
.gold-divider::after {
    content: "";

    height: 1px;

    background: rgba(201, 161, 91, 0.55);
}

.gold-divider::before {
    width: 70px;
}

.gold-divider::after {
    width: 110px;
}

.gold-divider span {
    font-size: 11px;
}

/* =========================================
   ARAVEL APPROACH
   ========================================= */

.aravel-approach {
    position: relative;

    background: var(--white);

    overflow: hidden;
}


/* =========================================
   APPROACH HEADING
   ========================================= */

.approach-heading {
    max-width: 900px;

    margin: 0 auto 70px;

    text-align: center;
}

.approach-heading h2 {
    margin-top: 22px;

    color: var(--lavender-dark);

    font-size: clamp(50px, 6vw, 82px);

    line-height: 0.95;
}

.approach-subtitle {
    margin-top: 18px;

    color: #756a72;

    font-family: var(--serif);

    font-size: 25px;

    font-style: italic;

    line-height: 1.4;
}


/* =========================================
   FOUR-COLUMN GRID
   ========================================= */

.approach-grid {
    display: grid;

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

    width: 100%;

    border-top: 1px solid rgba(149, 128, 147, 0.16);
    border-left: 1px solid rgba(149, 128, 147, 0.16);
}


/* =========================================
   INDIVIDUAL CARD
   ========================================= */

.approach-card {
    position: relative;

    min-height: 480px;

    padding: 30px 30px 45px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    border-right: 1px solid rgba(149, 128, 147, 0.16);
    border-bottom: 1px solid rgba(149, 128, 147, 0.16);

    background: rgba(251, 241, 235, 0.25);

    transition:
        background 0.5s ease,
        transform 0.5s cubic-bezier(.22, 1, .36, 1);
}

.approach-card:hover {
    background: var(--cream);

    transform: translateY(-5px);
}


/* =========================================
   NUMBER
   ========================================= */

.approach-number {
    align-self: flex-start;

    color: var(--gold);

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 0.15em;
}


/* =========================================
   ANIMAL IMAGE
   ========================================= */

.approach-image {
    width: 100%;

    height: 230px;

    margin-top: 18px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.approach-image img {
    width: 90%;

    height: 100%;

    object-fit: contain;

    mix-blend-mode: multiply;

    transition:
        transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.approach-card:hover .approach-image img {
    transform: translateY(-7px) scale(1.03);
}


/* =========================================
   ANIMAL NAME
   ========================================= */

.approach-card h3 {
    margin-top: 10px;

    color: var(--lavender-dark);

    font-family: var(--serif);

    font-size: 48px;

    font-weight: 500;

    line-height: 1;
}


/* =========================================
   GOLD DIVIDER
   ========================================= */

.approach-divider {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: 100%;

    margin-top: 18px;
}

.approach-divider::before,
.approach-divider::after {
    content: "";

    width: 45px;

    height: 1px;

    background: var(--gold);

    opacity: 0.75;
}

.approach-divider span {
    color: var(--gold);

    font-size: 10px;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.approach-card p {
    max-width: 220px;

    margin-top: 20px;

    color: #756a72;

    font-size: 13px;

    font-weight: 300;

    line-height: 1.7;
}


/* =========================================
   RESPONSIVE — TABLET
   ========================================= */

@media (max-width: 1000px) {

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

    .approach-card {
        min-height: 450px;
    }

}


/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */

@media (max-width: 600px) {

    .approach-heading {
        margin-bottom: 50px;
    }

    .approach-heading h2 {
        font-size: 50px;
    }

    .approach-subtitle {
        font-size: 21px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        min-height: 430px;

        padding: 28px 25px 40px;
    }

    .approach-image {
        height: 220px;
    }

    .approach-card h3 {
        font-size: 44px;
    }

}


/* =========================================
   STATEMENT
   ========================================= */

.statement {
    position: relative;

    min-height: 650px;

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

    overflow: hidden;

    background: var(--lavender);
}

.statement-content {
    position: relative;
    z-index: 3;

    max-width: 950px;

    padding: 80px 30px;

    text-align: center;
}

.statement-star {
    display: block;

    margin-bottom: 30px;

    color: var(--gold);

    font-size: 18px;
}

.statement h2 {
    color: var(--cream);

    font-size: clamp(55px, 7vw, 105px);
}

.statement h2 em {
    color: #e4d9e1;
}

.statement p {
    margin-top: 35px;

    color: rgba(251, 241, 235, 0.8);

    font-size: 14px;
    font-weight: 300;
}


/* Organic background decorations */

.statement-decoration {
    position: absolute;

    width: 380px;
    height: 380px;

    border: 1px solid rgba(251, 241, 235, 0.1);

    border-radius: 50%;
}

.statement-decoration::before,
.statement-decoration::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(251, 241, 235, 0.08);

    border-radius: 50%;
}

.statement-decoration::before {
    inset: 35px;
}

.statement-decoration::after {
    inset: 75px;
}

.statement-decoration.left {
    left: -180px;
    top: 50%;

    transform: translateY(-50%);
}

.statement-decoration.right {
    right: -180px;
    bottom: -100px;
}


/* =========================================
   SERVICES
   ========================================= */

.services {
    background: var(--cream);
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 0.7fr;

    gap: 100px;

    align-items: end;
}

.services-header h2 {
    max-width: 720px;

    margin-top: 25px;
}

.services-intro {
    max-width: 360px;

    color: #756a72;

    font-size: 13px;
    font-weight: 300;
}

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

    margin-top: 90px;

    border-top: 1px solid rgba(149, 128, 147, 0.2);
    border-left: 1px solid rgba(149, 128, 147, 0.2);
}

.service-card {
    position: relative;

    min-height: 350px;

    padding: 45px;

    border-right: 1px solid rgba(149, 128, 147, 0.2);
    border-bottom: 1px solid rgba(149, 128, 147, 0.2);

    transition:
        background var(--transition),
        transform var(--transition);
}

.service-card:hover {
    background: var(--white);
}

.service-symbol {
    margin-top: 55px;

    color: var(--gold);

    font-family: var(--serif);
    font-size: 28px;
}

.service-card h3 {
    margin-top: 14px;

    color: var(--lavender-dark);

    font-size: 38px;
}

.service-card p {
    max-width: 400px;

    margin-top: 12px;

    color: #776d75;

    font-size: 16px;
    font-weight: 300;
}

.card-arrow {
    position: absolute;

    right: 45px;
    bottom: 40px;

    color: var(--gold);

    font-size: 18px;

    transition: transform var(--transition);
}

.service-card:hover .card-arrow {
    transform: translate(4px, -4px);
}


/* =========================================
   WHY ARAVEL
   ========================================= */

.why-aravel {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 120px;
}

.why-visual {
    position: relative;

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

    min-height: 500px;
}

.why-circle {
    position: relative;

    width: 390px;
    height: 390px;

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

    border: 1px solid rgba(201, 161, 91, 0.5);

    border-radius: 50%;

    color: var(--lavender);

    font-family: var(--serif);
    font-size: 72px;
    font-style: italic;
}

.why-circle::before {
    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(149, 128, 147, 0.2);

    border-radius: 50%;
}

.why-circle::after {
    content: "";

    position: absolute;

    inset: 55px;

    border: 1px dashed rgba(201, 161, 91, 0.25);

    border-radius: 50%;
}

.circle-star {
    position: absolute;

    right: 35px;
    top: 70px;

    z-index: 2;

    color: var(--gold);

    font-family: var(--sans);
    font-size: 18px;
}

.why-content h2 {
    margin-top: 25px;

    max-width: 700px;
}

.why-content > p {
    max-width: 580px;

    margin-top: 30px;

    color: #756a72;

    font-size: 18px;
    font-weight: 300;
}

.why-content > p + p {
    margin-top: 15px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 35px;

    color: var(--lavender-dark);

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 8px;

    transition: gap var(--transition);
}

.text-link:hover {
    gap: 22px;
}


/* =========================================
   THERAPIST
   ========================================= */

.therapist {
    background: var(--cream);
}

.therapist-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 120px;
}

.therapist-image {
    position: relative;

    max-width: 480px;
}

.photo-placeholder {
    position: relative;
    z-index: 2;

    aspect-ratio: 4 / 5;

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

    background: var(--lavender);

    color: var(--cream);

    font-family: var(--serif);
    font-size: 26px;
    font-style: italic;
}

.image-accent {
    position: absolute;

    z-index: 1;

    right: -25px;
    bottom: -25px;

    width: 100%;
    height: 100%;

    border: 1px solid var(--gold);
}

.therapist-content h2 {
    max-width: 700px;

    margin-top: 25px;
}

.therapist-content > p {
    max-width: 570px;

    margin-top: 35px;

    color: #756a72;

    font-size: 18px;
    font-weight: 300;
}

.therapist-name {
    display: flex;
    flex-direction: column;

    margin-top: 35px;
}

.therapist-name strong {
    color: var(--lavender-dark);

    font-family: var(--serif);
    font-size: 27px;
    font-weight: 500;
}

.therapist-name span {
    margin-top: 2px;

    color: var(--gold);

    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* =========================================
   FINAL CTA
   ========================================= */

.final-cta {
    position: relative;

    min-height: 650px;

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

    overflow: hidden;

    background: var(--white);
}

.cta-content {
    position: relative;
    z-index: 3;

    max-width: 900px;

    padding: 80px 30px;

    text-align: center;
}

.cta-content .eyebrow {
    margin-top: 10px;
}

.cta-content h2 {
    margin-top: 25px;

    font-size: clamp(60px, 7vw, 105px);
}

.cta-content > p:not(.eyebrow) {
    max-width: 500px;

    margin: 35px auto;

    color: #756a72;

    font-size: 18px;
    font-weight: 300;
}

.cta-content .primary-button {
    margin-top: 10px;
}

.cta-email {
    display: block;

    margin-top: 28px;

    color: var(--lavender);

    font-size: 18px;
}

.cta-decoration {
    position: absolute;

    width: 450px;
    height: 450px;

    border: 1px solid rgba(149, 128, 147, 0.1);

    border-radius: 50%;
}

.cta-decoration::before,
.cta-decoration::after {
    content: "";

    position: absolute;

    border: 1px solid rgba(201, 161, 91, 0.12);

    border-radius: 50%;
}

.cta-decoration::before {
    inset: 50px;
}

.cta-decoration::after {
    inset: 110px;
}

.cta-decoration-left {
    left: -230px;
    top: 50%;

    transform: translateY(-50%);
}

.cta-decoration-right {
    right: -230px;
    bottom: -120px;
}


/* =========================================
   FOOTER
   ========================================= */

.footer {
    padding: 75px 0 30px;

    background: var(--lavender-dark);

    color: var(--cream);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 70px;

    border-bottom: 1px solid rgba(251, 241, 235, 0.15);
}

.footer-logo {
    font-family: var(--serif);
    font-size: 52px;
}

.footer-brand p {
    max-width: 260px;

    margin-top: 15px;

    color: rgba(251, 241, 235, 0.65);

    font-size: 18px;
    font-weight: 300;
}

.footer-navigation,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-navigation a {
    color: rgba(251, 241, 235, 0.75);

    font-size: 18px;

    transition: color var(--transition);
}

.footer-navigation a:hover {
    color: var(--gold);
}

.footer-contact > span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.footer-contact a {
    color: var(--cream);

    font-family: var(--serif);
    font-size: 23px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    color: rgba(251, 241, 235, 0.45);

    font-size: 9px;
    letter-spacing: 0.03em;
}


/* =========================================
   SCROLL REVEAL
   ========================================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 1s ease,
        transform 1s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}


/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1000px) {

    .container,
    .nav-container,
    .hero-container {
        width: min(100% - 50px, var(--container));
    }

    .desktop-nav {
        gap: 20px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: clamp(65px, 8vw, 95px);
    }

    .hero-title span {
        margin-left: 40px;
    }

    .intro-text {
        padding-left: 40px;
    }

    .why-grid,
    .therapist-grid {
        gap: 70px;
    }

    .why-circle {
        width: 320px;
        height: 320px;

        font-size: 58px;
    }

}


@media (max-width: 768px) {

    .container,
    .nav-container,
    .hero-container {
        width: min(100% - 40px, var(--container));
    }

    .section-padding {
        padding: 95px 0;
    }


    /* Navigation */

    .nav-container {
        height: 76px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        top: 76px;
        padding-left: 30px;
        padding-right: 30px;
    }


    /* Hero */

    .hero {
        min-height: auto;

        padding-top: 130px;
        padding-bottom: 90px;
    }

    .hero-container {
        grid-template-columns: 1fr;

        margin-top: 0;
    }

    .hero-content {
        padding-bottom: 0;

        text-align: center;
    }

    .hero-title {
        max-width: 600px;

        margin: 22px auto 0;

        font-size: clamp(66px, 17vw, 100px);
    }

    .hero-title span {
        margin-left: 0;
    }

    .hero-description {
        margin: 30px auto 0;
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .hero-artwork {
        width: 100%;

        max-width: 580px;

        margin: 20px auto 0;
    }

    .scroll-indicator {
        display: none;
    }


    /* Introduction */

    .section-heading {
        text-align: center;
    }

    .section-heading h2 {
        margin-inline: auto;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        margin-top: 55px;
    }

    .intro-spacer {
        display: none;
    }

    .intro-text {
        padding-left: 0;

        text-align: center;
    }

    .intro-text > p:not(.large-text) {
        margin-inline: auto;
    }

    .gold-divider {
        margin-inline: auto;
    }


    /* Principles */

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-card,
    .principle-card:first-child {
        min-height: auto;

        padding: 45px 30px;

        border-left: 1px solid rgba(149, 128, 147, 0.15);
        border-right: 1px solid rgba(149, 128, 147, 0.15);
        border-bottom: 1px solid rgba(149, 128, 147, 0.15);
    }

    .principle-icon {
        margin-top: 35px;
    }


    /* Statement */

    .statement {
        min-height: 500px;
    }


    /* Services */

    .services-header {
        grid-template-columns: 1fr;

        gap: 35px;

        text-align: center;
    }

    .services-header h2 {
        margin-inline: auto;
    }

    .services-intro {
        margin-inline: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;

        margin-top: 60px;
    }

    .service-card {
        min-height: 310px;

        padding: 35px 30px;
    }


    /* Why Aravel */

    .why-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .why-visual {
        min-height: 360px;
    }

    .why-circle {
        width: 300px;
        height: 300px;
    }

    .why-content {
        text-align: center;
    }

    .why-content h2 {
        margin-inline: auto;
    }

    .why-content > p {
        margin-inline: auto;
    }


    /* Therapist */

    .therapist-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .therapist-image {
        width: min(100%, 450px);

        margin-inline: auto;
    }

    .therapist-content {
        text-align: center;
    }

    .therapist-content h2 {
        margin-inline: auto;
    }

    .therapist-content > p {
        margin-inline: auto;
    }

    .therapist-name {
        align-items: center;
    }


    /* CTA */

    .final-cta {
        min-height: 550px;
    }


    /* Footer */

    .footer-top {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 50px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 10px;
    }

}


@media (max-width: 480px) {

    .container,
    .nav-container,
    .hero-container {
        width: min(100% - 30px, var(--container));
    }

    .brand-name {
        font-size: 30px;
    }

    .hero-title {
        font-size: 64px;
    }

    h2 {
        font-size: 50px;
    }

    .large-text {
        font-size: 29px;
    }

    .statement h2 {
        font-size: 52px;
    }

    .service-card h3 {
        font-size: 34px;
    }

    .why-circle {
        width: 270px;
        height: 270px;

        font-size: 50px;
    }

    .image-accent {
        right: -12px;
        bottom: -12px;
    }

}


/* =========================================================
   ARAVEL — RESPONSIVE / ACCESSIBILITY / FOOLPROOF LAYER
   Added after the original stylesheet so the existing design
   remains intact while edge cases are normalized.
   ========================================================= */

:root {
    --content-max: 1240px;
    --gutter: clamp(20px, 4vw, 40px);
    --section-y: clamp(60px, 6vw, 90px);
    --page-bg: var(--cream);
    --body-size: 15px;
    --body-leading: 1.8;
    --focus: rgba(201, 161, 91, .75);
}

html {
    scroll-padding-top: 90px;
    -webkit-text-size-adjust: 100%;
}

body {
    min-width: 320px;
    font-size: var(--body-size);
    line-height: var(--body-leading);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

main {
    overflow: clip;
}

section[id] {
    scroll-margin-top: 90px;
}

.container,
.nav-container,
.hero-container,
.about-hero-inner,
.about-profile-grid,
.about-philosophy-grid,
.services-hero-inner,
.why-hero-inner,
.name-origin-inner,
.unveiling-inner,
.journey-heading,
.journey-grid,
.here-now-inner,
.expressive-inner,
.service-inner {
    width: min(calc(100% - (2 * var(--gutter))), var(--content-max));
}

.section-padding {
    padding-block: var(--section-y);
}

p {
    overflow-wrap: break-word;
}

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

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

img {
    height: auto;
}

.image-error {
    opacity: .15;
}

/* Keep all interactive controls comfortably tappable. */
.nav-button,
.primary-button,
.mobile-book,
.menu-toggle,
.contact-option {
    min-height: 44px;
}

/* Homepage fixes */
.hero-title {
    font-size: clamp(68px, 7vw, 118px);
}

.hero-title .final-word {
    display: block;
    margin-left: 80px;
    color: var(--lavender-dark);
    font-style: italic;
    font-weight: 400;
}

.hero-description:empty {
    display: none;
}

/* Consistent desktop rhythm across homepage sections. */
.introduction,
.aravel-approach,
.services,
.why-aravel,
.therapist {
    padding-block: clamp(50px, 5vw, 70px);
}

.statement {
    min-height: clamp(500px, 55vw, 650px);
}

.final-cta {
    min-height: clamp(520px, 55vw, 650px);
}

/* Prevent decorative elements from creating accidental horizontal overflow. */
.hero,
.statement,
.final-cta,
.about-hero,
.about-closing,
.services-hero,
.why-hero,
.unveiling,
.why-closing,
.contact-hero {
    isolation: isolate;
}

/* Desktop/tablet grid safety */
@media (max-width: 1100px) {
    .desktop-nav {
        gap: 22px;
    }

    .nav-link {
        font-size: 11px;
    }

    .nav-button {
        padding-inline: 18px;
    }

    .hero-container {
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
        gap: 25px;
    }

    .hero-artwork {
        margin-right: 0;
        transform: translateY(-25px);
    }

    .about-profile-grid,
    .about-philosophy-grid,
    .service-inner,
    .why-grid,
    .therapist-grid,
    .here-now-inner,
    .expressive-inner {
        gap: 65px;
    }

    .service-orbit,
    .here-now-mark {
        width: min(360px, 34vw);
        height: min(360px, 34vw);
    }
}

/* Tablet */
@media (max-width: 900px) {
    :root {
        --gutter: 28px;
    }

    .nav-container {
        height: 82px;
    }

    .desktop-nav {
        gap: 15px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: clamp(62px, 8.2vw, 88px);
    }

    .hero-title span,
    .hero-title .final-word {
        margin-left: 40px;
    }

    .about-profile-grid,
    .about-philosophy-grid,
    .service-inner,
    .why-grid,
    .therapist-grid,
    .here-now-inner,
    .expressive-inner {
        gap: 48px;
    }

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

    .contact-options {
        width: min(100%, 820px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --gutter: 20px;
        --section-y: 78px;
        --body-size: 15px;
    }

    html {
        scroll-padding-top: 76px;
    }

    section[id] {
        scroll-margin-top: 76px;
    }

    .container,
    .nav-container,
    .hero-container,
    .about-hero-inner,
    .about-profile-grid,
    .about-philosophy-grid,
    .services-hero-inner,
    .why-hero-inner,
    .name-origin-inner,
    .unveiling-inner,
    .journey-heading,
    .journey-grid,
    .here-now-inner,
    .expressive-inner,
    .service-inner {
        width: min(calc(100% - 40px), var(--content-max));
    }

    .nav-container {
        height: 76px;
    }

    .navbar {
        background: rgba(251, 241, 235, .72);
        backdrop-filter: blur(14px);
    }

    .navbar.scrolled {
        background: rgba(251, 241, 235, .94);
    }

    .mobile-menu {
        top: 76px;
        max-height: calc(100svh - 76px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 24px 20px 30px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu a {
        padding-block: 3px;
    }

    .hero {
        min-height: auto;
        padding-block: 116px 76px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        max-width: 620px;
        font-size: clamp(58px, 17vw, 92px);
        line-height: .84;
    }

    .hero-title span,
    .hero-title .final-word {
        margin-left: 0;
    }

    .hero-description {
        max-width: 480px;
        margin-inline: auto;
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-artwork {
        max-width: 560px;
        margin: 4px auto 0;
        transform: none;
    }

    .artwork-glow {
        width: min(80vw, 360px);
        height: min(80vw, 360px);
    }

    .introduction,
    .aravel-approach,
    .services,
    .why-aravel,
    .therapist {
        padding-block: var(--section-y);
    }

    .intro-grid {
        margin-top: 48px;
    }

    .large-text {
        font-size: clamp(27px, 7vw, 34px);
    }

    .approach-grid,
    .journey-grid,
    .services-grid,
    .name-breakdown {
        grid-template-columns: 1fr;
    }

    .approach-card,
    .journey-card {
        min-height: auto;
    }

    .approach-image {
        height: 210px;
    }

    .approach-card h3,
    .journey-card h3 {
        font-size: clamp(38px, 11vw, 48px);
    }

    .statement {
        min-height: 470px;
    }

    .statement-content {
        padding: 70px 20px;
    }

    .statement h2,
    .final-cta h2,
    .about-closing h2,
    .why-closing h2 {
        font-size: clamp(46px, 13vw, 76px);
    }

    .why-grid,
    .therapist-grid,
    .here-now-inner,
    .expressive-inner,
    .service-inner {
        grid-template-columns: 1fr;
    }

    .why-visual {
        min-height: 320px;
    }

    .why-circle,
    .here-now-mark,
    .expressive-visual,
    .service-orbit {
        width: min(320px, 78vw);
        height: min(320px, 78vw);
    }

    .why-circle {
        font-size: clamp(48px, 14vw, 68px);
    }

    .here-now-mark span,
    .expressive-word {
        font-size: clamp(40px, 12vw, 55px);
    }

    .service-visual {
        min-height: 360px;
    }

    .service-number-large {
        font-size: clamp(120px, 28vw, 180px);
    }

    .service-content h2 {
        font-size: clamp(46px, 12vw, 70px);
    }

    .service-content .service-lead,
    .about-profile-content .lead {
        font-size: clamp(25px, 6.5vw, 30px);
    }

    .service-focus {
        grid-template-columns: 1fr;
    }

    .service-focus-item + .service-focus-item {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(149, 128, 147, .18);
        padding-top: 20px;
        margin-top: 20px;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-contact a {
        font-size: clamp(20px, 6vw, 23px);
        overflow-wrap: anywhere;
    }

    .contact-hero {
        min-height: auto;
        padding-block: 116px 70px;
    }

    .contact-content h1 {
        font-size: clamp(64px, 18vw, 110px);
    }

    .contact-options {
        flex-direction: column;
        width: min(100%, 420px);
        gap: 10px;
        border: 0;
        background: transparent;
    }

    .contact-option {
        min-height: 118px;
        border: 1px solid rgba(149, 128, 147, .18);
    }

    .contact-orbit {
        width: min(620px, 150vw);
        height: min(620px, 150vw);
    }

    .contact-orbit::before {
        inset: 12%;
    }

    .contact-orbit::after {
        inset: 24%;
    }

    .contact-bottom {
        white-space: normal;
        text-align: center;
        font-size: 8px;
    }

    .about-hero,
    .services-hero,
    .why-hero {
        min-height: auto;
        padding-block: 130px 75px;
    }

    .about-hero h1,
    .services-hero h1,
    .why-hero h1 {
        font-size: clamp(58px, 16.5vw, 100px);
        line-height: .84;
    }

    .about-intro-line,
    .services-hero-description,
    .why-hero-description {
        margin-top: 34px;
    }

    .about-profile,
    .about-philosophy,
    .name-origin,
    .unveiling,
    .journey,
    .here-now,
    .expressive,
    .service-section {
        padding-block: var(--section-y);
    }

    .about-profile-grid,
    .about-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .about-photo,
    .about-second-photo,
    .therapist-image {
        width: min(100%, 470px);
        margin-inline: auto;
    }

    .about-profile-content,
    .about-philosophy-content,
    .therapist-content {
        text-align: center;
    }

    .philosophy-quote {
        text-align: left;
    }

    .name-statement {
        margin-top: 55px;
    }

    .name-part {
        padding: 35px 25px;
        border-right: 0;
        border-bottom: 1px solid rgba(149, 128, 147, .18);
    }

    .name-part:last-child {
        border-bottom: 0;
    }

    .unveiling-text {
        font-size: clamp(23px, 6vw, 32px);
    }

    .journey {
        padding-bottom: 0;
    }

    .journey-grid {
        margin-top: 55px;
    }

    .expressive-visual {
        margin-inline: auto;
    }

    .why-closing {
        min-height: 500px;
        padding-block: 80px;
    }

    .final-cta {
        min-height: 500px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    :root {
        --gutter: 15px;
        --section-y: 68px;
    }

    .container,
    .nav-container,
    .hero-container,
    .about-hero-inner,
    .about-profile-grid,
    .about-philosophy-grid,
    .services-hero-inner,
    .why-hero-inner,
    .name-origin-inner,
    .unveiling-inner,
    .journey-heading,
    .journey-grid,
    .here-now-inner,
    .expressive-inner,
    .service-inner {
        width: min(calc(100% - 30px), var(--content-max));
    }

    .brand-name {
        font-size: 29px;
    }

    .hero-title {
        font-size: 58px;
    }

    h2 {
        font-size: clamp(44px, 13vw, 56px);
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: .22em;
    }

    .primary-button {
        width: min(100%, 280px);
    }

    .contact-option strong {
        font-size: 23px;
        text-align: center;
    }

    .contact-bottom::before,
    .contact-bottom::after {
        width: 20px;
    }

    .about-closing,
    .why-closing {
        min-height: 440px;
    }

    .footer-bottom {
        font-size: 8px;
    }
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================
   COMPLETED REVEAL ANIMATIONS
   ========================================= */
.reveal-delay-3 {
    transition-delay: 0.36s;
}

/* =========================================
   GLOBAL TYPOGRAPHY ENHANCEMENTS
   ========================================= */
p {
    font-size: 16px; /* Enhanced readability */
    line-height: 1.8;
    color: #6a5f67; /* Slightly darker for better contrast */
}

/* =========================================
   TABLET RESPONSIVENESS (Max 1000px)
   ========================================= */
@media (max-width: 1000px) {
    /* Adjust grid gaps to prevent overflow */
    .hero-container,
    .intro-grid,
    .services-header,
    .why-grid,
    .therapist-grid {
        gap: 60px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

/* =========================================
   MOBILE RESPONSIVENESS (Max 768px)
   ========================================= */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-title span {
        margin-left: 0;
    }
    .hero-artwork {
        justify-self: center;
        margin-right: 0;
        max-width: 450px;
    }
    .hero-actions {
        display: flex;
        justify-content: center;
    }

    /* Introduction Section */
    .intro-grid {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
    .intro-spacer {
        display: none;
    }
    .intro-text {
        padding-left: 0;
        text-align: center;
    }
    .gold-divider {
        margin: 40px auto 0;
    }

    /* Services Section */
    .services-header {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .services-intro {
        margin: 0 auto;
        max-width: 100%;
    }
    .services-grid {
        grid-template-columns: 1fr;
        border-left: none;
        border-top: none;
        margin-top: 50px;
    }
    .service-card {
        border: 1px solid rgba(149, 128, 147, 0.2);
        margin-bottom: 20px;
    }

    /* Why Aravel & Therapist Sections */
    .why-grid, .therapist-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 70px;
    }
    .why-visual {
        order: -1; /* Brings visual to top on mobile */
        min-height: 350px;
    }
    .why-circle {
        width: 300px;
        height: 300px;
        font-size: 50px;
    }
    .why-circle::before { inset: 15px; }
    .why-circle::after { inset: 35px; }
    .circle-star { right: 25px; top: 40px; }

    .therapist-image {
        order: -1;
        margin: 0 auto;
    }
    
    .text-link {
        justify-content: center;
    }

    /* Statement / CTA Adjustments */
    .statement-decoration,
    .cta-decoration {
        display: none; /* Hide complex organic shapes on small mobile to save processing and prevent horizontal scrolling */
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        margin: 15px auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}