/* ═══════════════════════════════════════
   THE HEALING MASSAGE — PREMIUM STYLESHEET
   ═══════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
    /* Brand Colors */
    --pink: #EC5FAF;
    --pink-hover: #d94d9d;
    --coral: #F4A698;
    --lilac: #C9B6E4;
    --blush-white: #FFF9FB;
    --light-pink-bg: #FFF2F6;
    --blush-bg: #FCECEF;
    --deep-plum: #2C1F28;
    --muted-text: #5A4751;
    --soft-text: #8A7580;

    /* Functional */
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(236, 95, 175, 0.08);
    --shadow-sm: 0 2px 12px rgba(44, 31, 40, 0.04);
    --shadow-md: 0 8px 32px rgba(44, 31, 40, 0.06);
    --shadow-lg: 0 16px 48px rgba(44, 31, 40, 0.08);
    --shadow-card: 0 4px 24px rgba(236, 95, 175, 0.06);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    /* Typography */
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-py: 120px;
    --container-px: 24px;
    --container-max: 1200px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 0.4s;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--deep-plum);
    background-color: var(--blush-white);
    overflow-x: hidden;
    padding-top: 100px; /* offset for fixed two-row navbar */
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration) var(--ease);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--deep-plum);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    color: var(--muted-text);
    line-height: 1.8;
}

/* ─── Container ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ─── Section Utils ─── */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 1.5px;
    background: var(--pink);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header .section-label {
    padding-left: 0;
}

.section-header .section-label::before {
    display: none;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--soft-text);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--pink), #e04a9a);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(236, 95, 175, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--pink-hover), #d0408e);
    box-shadow: 0 6px 28px rgba(236, 95, 175, 0.4);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--pink);
    border: 1.5px solid rgba(236, 95, 175, 0.3);
}

.btn--outline:hover {
    background: rgba(236, 95, 175, 0.06);
    border-color: var(--pink);
}

.btn--lg {
    padding: 16px 40px;
    font-size: 0.95rem;
}

.btn--full {
    width: 100%;
}

/* ─── Reveal Animation ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════
   1. NAVBAR
   ═══════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration) var(--ease);
    background: var(--white);
    border-bottom: 1px solid rgba(236, 95, 175, 0.08);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: 0 4px 32px rgba(44, 31, 40, 0.04);
}

/* ── Navbar two-row layout ── */
.navbar__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: relative;
}

/* Row 1 — brand centered */
.navbar__top {
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(44, 31, 40, 0.06);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar__brand {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--deep-plum);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Row 2 — links centered, Book Now right */
.navbar__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 10px;
}

.navbar__links {
    display: flex;
    gap: 36px;
    align-items: center;
}

.navbar__links li {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar__links a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--muted-text);
    position: relative;
    padding: 4px 0;
    transition: color var(--duration) var(--ease);
}

.navbar__links>li>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--pink);
    transition: width var(--duration) var(--ease);
}

.navbar__links a:hover {
    color: var(--pink);
}

.navbar__links>li>a:hover::after {
    width: 100%;
}

.nav-link--dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link--dropdown svg {
    transition: transform var(--duration) var(--ease);
    color: var(--pink);
}

.nav-item--dropdown:hover .nav-link--dropdown svg {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 940px;
    padding-top: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--duration) var(--ease);
    z-index: 100;
}

.nav-item--dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__inner {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(236, 95, 175, 0.12);
    box-shadow: 0 24px 54px rgba(44, 31, 40, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.nav-dropdown__header {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--deep-plum);
    text-align: center;
    margin-bottom: 2px;
}

.nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.nav-dropdown__footer {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--soft-text);
    text-align: center;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(236, 95, 175, 0.15);
}

.nav-dropdown__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--coral), var(--lilac));
}

.nav-dropdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
    text-decoration: none;
    border: 1px solid transparent;
}

.nav-dropdown__item:hover {
    background: var(--light-pink-bg);
    border-color: rgba(236, 95, 175, 0.08);
    transform: translateY(-4px);
}

.nav-dropdown__img-wrap {
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(44, 31, 40, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-dropdown__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.nav-dropdown__item:hover .nav-dropdown__img-wrap img {
    transform: scale(1.08);
}

.img--postsurgery {
    object-position: center 15%;
    transform: scale(1.0);
}

.nav-dropdown__item:hover .nav-dropdown__img-wrap .img--postsurgery {
    transform: scale(1.05); /* slightly smaller zoom since we want to see more */
}

.nav-dropdown__text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-dropdown__title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 6px;
    transition: color var(--duration) var(--ease);
}

.nav-dropdown__item:hover .nav-dropdown__title {
    color: var(--pink);
}

.nav-dropdown__desc {
    font-size: 0.82rem;
    color: var(--soft-text);
    line-height: 1.4;
    transition: color var(--duration) var(--ease);
}

.nav-dropdown__item:hover .nav-dropdown__desc {
    color: var(--muted-text);
}

.navbar__cta {
    background: var(--pink);
    color: var(--white);
    border: none;
    padding: 10px 26px;
    font-size: 0.82rem;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: 0 4px 20px rgba(236, 95, 175, 0.25);
    border-radius: var(--radius-full);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all var(--duration) var(--ease);
}

.navbar__cta:hover {
    background: var(--pink-hover);
    color: var(--white);
    transform: translateY(calc(-50% - 2px));
    box-shadow: 0 8px 28px rgba(236, 95, 175, 0.35);
}

.mobile-dropdown {
    display: none;
}

ul.navbar__links li.mobile-menu-cta-item {
    display: none;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--deep-plum);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.navbar__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════
   2. HERO
   ═══════════════════════ */
/* ── Hero full-width banner ── */
.hero {
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    /* Push below fixed navbar — will be offset by navbar height */
    margin-top: 0;
}

.hero__banner-wrap {
    width: 100%;
    display: block;
    line-height: 0; /* removes inline gap below img */
}

.hero__banner-img {
    width: 100%;
    height: auto; /* preserves original ~16:6 panoramic ratio */
    display: block;
    object-fit: cover;
}


/* ═══════════════════════
   3. INQUIRY FORM
   ═══════════════════════ */
.inquiry {
    padding: var(--section-py) 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.inquiry__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(236, 95, 175, 0.06);
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.inquiry__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--coral), var(--lilac));
}

.inquiry__header {
    text-align: center;
    margin-bottom: 40px;
}

.inquiry__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 10px;
}

.inquiry__subtitle {
    font-size: 0.95rem;
    color: var(--soft-text);
}

.form-row {
    margin-bottom: 20px;
}

.form-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--deep-plum);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.form-group .optional {
    color: var(--soft-text);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--deep-plum);
    background: var(--light-pink-bg);
    border: 1.5px solid rgba(236, 95, 175, 0.1);
    border-radius: var(--radius-md);
    outline: none;
    transition: all var(--duration) var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--soft-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(236, 95, 175, 0.08);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A7580' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

#submitBtn {
    margin-top: 8px;
}

.inquiry__success {
    text-align: center;
    padding: 40px 20px;
}

.inquiry__success h3 {
    font-size: 1.6rem;
    margin: 16px 0 10px;
    color: var(--pink);
}

.inquiry__success p {
    font-size: 1rem;
}

.form-error {
    margin-top: 16px;
    padding: 12px 18px;
    background: rgba(220, 53, 69, 0.06);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: var(--radius-md);
    color: #c0392b;
    font-size: 0.88rem;
    text-align: center;
}

/* ═══════════════════════
   4. BENEFITS
   ═══════════════════════ */
.benefits {
    padding: var(--section-py) 0 0;
    background: var(--blush-white);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(236, 95, 175, 0.08), rgba(201, 182, 228, 0.08));
    border-radius: var(--radius-md);
    color: var(--pink);
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══════════════════════
   5. SERVICES
   ═══════════════════════ */
.services {
    padding: 150px 0 var(--section-py);
    margin-top: 0;
    background: linear-gradient(180deg, var(--blush-white), var(--light-pink-bg));
    position: relative;
    z-index: 2;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.service-card__img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__img-wrap img {
    transform: scale(1.05);
}

/* Placeholder styles for missing service images */
.service-card__img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__img-placeholder--4 {
    background: linear-gradient(135deg, #FFF2F6, #f5e0f0, #eddaf5);
}

.service-card__img-placeholder--5 {
    background: linear-gradient(135deg, #FCECEF, #f8d5d0, #f0e5f5);
}

.service-card__img-placeholder--6 {
    background: linear-gradient(135deg, #FFF2F6, #f5e8e0, #fce8e4);
}

.service-card__img-placeholder--7 {
    background: linear-gradient(135deg, #f0e5f5, #FFF2F6, #f5e8e0);
}

.placeholder-icon {
    color: var(--pink);
    opacity: 0.3;
}

.service-card__body {
    padding: 28px 24px;
}

.service-card__body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card__body p {
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.65;
}

.service-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: rgba(236, 95, 175, 0.06);
    color: var(--pink);
    border: 1px solid rgba(236, 95, 175, 0.1);
}


/* Last card centered if 4 items in 3-col grid (Therapeutic section) */
.services__grid .service-card:last-child:nth-child(4) {
    grid-column: 2;
}

/* Relaxing Massage: 6 items — force all cards to auto placement, no centering */
#relaxing .services__grid .service-card:last-child {
    grid-column: auto;
}


/* ═══════════════════════
   6. ABOUT
   ═══════════════════════ */
.about {
    padding: var(--section-py) 0;
    background: var(--blush-white);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about__img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
    position: relative;
}

.about__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF2F6, #f5e0f0 30%, #eddaf5 60%, #FCECEF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    opacity: 0.4;
}

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

.about__content p {
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.about__stats {
    display: flex;
    gap: 48px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(236, 95, 175, 0.1);
}

.about__stat {
    display: flex;
    flex-direction: column;
}

.about__stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--pink);
}

.about__stat-label {
    font-size: 0.82rem;
    color: var(--soft-text);
    margin-top: 2px;
}

/* ═══════════════════════
   7. PROCESS
   ═══════════════════════ */
.process {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--blush-white), var(--light-pink-bg));
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    position: relative;
    transition: all var(--duration) var(--ease);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-step__num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--lilac);
    margin-bottom: 16px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══════════════════════
   8. SHOWCASE
   ═══════════════════════ */
.showcase {
    padding: var(--section-py) 0;
    background: var(--blush-white);
}

.showcase__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}

.showcase__item {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.showcase__placeholder {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--pink);
    opacity: 0.3;
    font-size: 0.85rem;
}

.showcase__placeholder--1 {
    background: linear-gradient(135deg, #FFF2F6, #f5e0f0 40%, #eddaf5 70%, #FCECEF);
}

.showcase__placeholder--2 {
    background: linear-gradient(135deg, #FCECEF, #f5e8e0 40%, #f0e5f5 70%, #FFF2F6);
}

/* ═══════════════════════
   9. TESTIMONIALS
   ═══════════════════════ */
.testimonials {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--light-pink-bg), var(--blush-bg));
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-card);
    transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    font-size: 0.9rem;
    color: var(--coral);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 24px;
    color: var(--muted-text);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--lilac));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--deep-plum);
}

.testimonial-card__author span {
    font-size: 0.78rem;
    color: var(--soft-text);
}

/* ═══════════════════════
   10. FAQ
   ═══════════════════════ */
.faq {
    padding: var(--section-py) 0;
    background: var(--blush-white);
}

.faq__list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(236, 95, 175, 0.08);
}

.faq-item__question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--deep-plum);
    text-align: left;
    transition: color var(--duration) var(--ease);
}

.faq-item__question:hover {
    color: var(--pink);
}

.faq-item__chevron {
    flex-shrink: 0;
    color: var(--pink);
    transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-item__chevron {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer p {
    padding-bottom: 24px;
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ═══════════════════════
   11. FINAL CTA
   ═══════════════════════ */
.cta-final {
    padding: var(--section-py) 0;
    background: linear-gradient(180deg, var(--blush-white), var(--light-pink-bg));
}

.cta-final__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 72px 56px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.cta-final__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lilac), var(--pink), var(--coral));
}

.cta-final__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 16px;
}

.cta-final__text {
    font-size: 1rem;
    margin-bottom: 36px;
}

.cta-final__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════
   12. READY SECTION
   ═══════════════════════ */
.ready-section {
    padding: var(--section-py) 0;
    background: var(--blush-white);
}

.ready__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(44, 31, 40, 0.14);
    min-height: 520px;
}

/* ── Left Panel ── */
.ready__left {
    background: #000;
    padding: 60px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ready__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ready__subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.ready__if {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.ready__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ready__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.ready__checklist li::before {
    content: '✓';
    color: var(--pink);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.ready__tagline {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    line-height: 1.6;
    margin-top: auto;
}

/* ── Right Panel ── */
.ready__right {
    background: var(--white);
    padding: 60px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ready__contact-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 28px;
}

.ready__contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ready__contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(44, 31, 40, 0.07);
    font-size: 0.92rem;
    color: var(--muted-text);
}

.ready__contact-list li:first-child {
    border-top: 1px solid rgba(44, 31, 40, 0.07);
}

.ready__contact-list li a {
    color: var(--muted-text);
    transition: color var(--duration) var(--ease);
}

.ready__contact-list li a:hover {
    color: var(--pink);
}

.ready__contact-icon {
    width: 38px;
    height: 38px;
    background: var(--blush-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--deep-plum);
}



.ready__hours {
    font-size: 0.82rem;
    color: var(--muted-text);
    line-height: 1.7;
    opacity: 0.75;
}

.ready__hours strong {
    color: var(--deep-plum);
    display: block;
    margin-bottom: 2px;
    font-size: 0.84rem;
}

/* ═══════════════════════
   13. FOOTER
   ═══════════════════════ */

.footer {
    background: #000;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

/* Brand text matching the header exactly */
.footer__brand {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer__tagline {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 14px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--duration) var(--ease);
}

.footer__social a:hover {
    background: var(--pink);
    color: var(--white);
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col ul li a,
.footer__col ul li {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--duration) var(--ease);
}

.footer__col ul li a:hover {
    color: var(--pink);
}

.footer__col ul li svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.footer__bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════
   RESPONSIVE
   ═══════════════════════ */

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
    :root {
        --section-py: 80px;
    }

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

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

    /* Override inline 3-col grids on tablet */
    .services__grid[style] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Fix Reiki inline placement on tablet */
    #relaxing .services__grid .service-card:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    .services__grid .service-card:last-child {
        grid-column: auto;
    }

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

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        justify-self: center;
    }

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

    .navbar__brand {
        font-size: 1.2rem;
    }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {
    :root {
        --section-py: 56px;
        --container-px: 20px;
    }

    /* ── Navbar Mobile ── */
    .navbar {
        padding: 0;
    }

    .navbar__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 14px 20px;
        gap: 0;
        position: relative;
    }

    /* Hide the two-row structure; collapse to single row */
    .navbar__top {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        /* center brand absolutely so hamburger doesn't push it */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    .navbar__logo {
        pointer-events: auto;
    }

    .navbar__bottom {
        display: contents;
    }

    .navbar__brand {
        font-size: 0.95rem;
        letter-spacing: 0.1em;
        white-space: nowrap;
    }

    /* Move toggle to the LEFT */
    .navbar__toggle {
        display: flex;
        z-index: 1001;
        order: -1; /* place before the top row in flex order */
    }

    /* Invisible spacer on the right to mirror the hamburger width and keep logo truly centered */
    .navbar__inner::after {
        content: '';
        width: 44px; /* same width as the toggle button */
        display: block;
    }

    /* Mobile slide-in menu */
    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 24px 40px;
        gap: 20px;
        box-shadow: -4px 0 40px rgba(0, 0, 0, 0.12);
        transition: right 0.4s var(--ease);
        z-index: 999;
        overflow-y: auto;
    }

    .navbar__links.open {
        right: 0;
    }

    .navbar__links a {
        font-size: 1rem;
    }

    .navbar__links li {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .navbar__cta {
        display: none;
    }

    .mobile-menu-cta-item {
        display: block !important;
        width: 100%;
        margin-top: auto; /* Push it towards the bottom if there is space */
        padding-top: 10px;
    }

    /* Force the button color/height inside the navbar__links */
    ul.navbar__links a.mobile-menu-cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding-top: 18px;
        padding-bottom: 18px;
        color: #ffffff !important;
        font-weight: 500;
    }


    /* ── Dropdown: show inline inside mobile panel ── */
    .nav-dropdown {
        display: none !important;
    }

    /* Hide the parent "Services" text link entirely on mobile, 
       since the mobile-dropdown now serves as the categories itself. */
    .nav-item--dropdown > .nav-link--dropdown {
        display: none !important;
    }

    /* ── Mobile Accordion Styles (Reference Match) ── */
    .mobile-dropdown {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .mobile-cat {
        width: 100%;
        border-bottom: 2px solid rgba(0, 0, 0, 0.04);
    }

    .mobile-cat:first-child {
        border-top: 2px solid rgba(0, 0, 0, 0.04);
    }

    .mobile-cat__btn {
        width: 100%;
        display: flex;
        align-items: center;
        background: none;
        border: none;
        padding: 16px 0;
        cursor: pointer;
        text-align: left;
        gap: 16px;
    }

    .mobile-cat__img {
        width: 55px;
        height: 55px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        background: #fdfdfd;
        box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    }

    .mobile-cat__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-cat__name {
        flex-grow: 1;
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 400;
        color: var(--muted-text);
    }

    .mobile-cat__icon {
        color: var(--deep-plum);
        transition: transform 0.3s var(--ease);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-cat.active .mobile-cat__icon {
        transform: rotate(45deg); /* Turns the + into an x */
    }

    .mobile-cat__content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s var(--ease);
    }

    .mobile-cat.active .mobile-cat__content {
        max-height: 400px; /* Big enough to show all links */
    }

    .mobile-cat__sublinks {
        list-style: none;
        padding: 0 0 20px 71px; /* indent so it lines up with text, 55px + 16px gap */
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .mobile-cat__sublinks a {
        font-size: 0.95rem;
        font-family: var(--font-body);
        font-weight: 500;
        color: var(--muted-text);
        text-decoration: none;
        transition: color 0.2s;
    }

    .mobile-cat__sublinks a:hover {
        color: var(--pink);
    }

    /* Body offset for single-row navbar */
    body {
        padding-top: 60px;
    }

    /* ── Hero Banner (mobile: portrait photo, show full) ── */
    .hero__banner-wrap picture,
    .hero__banner-wrap {
        width: 100%;
    }

    .hero__banner-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center top;
    }

    /* ── Section headers ── */
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.92rem;
    }

    /* ── Services ── */
    .services__grid,
    .services__grid[style] {
        grid-template-columns: 1fr !important;
        max-width: 460px;
        margin: 0 auto;
    }

    /* Reset Reiki forced placement */
    #relaxing .services__grid .service-card[style],
    .services__grid .service-card[style] {
        grid-row: auto !important;
        grid-column: auto !important;
    }

    .service-card__img-wrap {
        height: 220px;
    }

    /* ── About ── */
    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__img-wrap {
        max-width: 100%;
        margin: 0 auto;
    }

    .about__stats {
        gap: 28px;
        justify-content: center;
    }

    /* ── Process ── */
    .process__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* ── Benefits ── */
    .benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits__grid .benefit-card:last-child {
        grid-column: 1 / -1;
        max-width: 320px;
        justify-self: center;
    }

    /* ── Showcase ── */
    .showcase__grid {
        grid-template-columns: 1fr;
    }

    .showcase__placeholder {
        min-height: 240px;
    }

    /* ── Testimonials ── */
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    /* ── Form / Inquiry ── */
    .inquiry__card {
        padding: 36px 20px;
    }

    .form-row--2 {
        grid-template-columns: 1fr;
    }

    /* ── CTA ── */
    .cta-final__inner {
        padding: 48px 24px;
    }

    /* ── Ready Section ── */
    .ready__inner {
        grid-template-columns: 1fr;
        border-radius: 16px;
        min-height: auto;
    }

    .ready__left {
        padding: 48px 28px;
    }

    .ready__title {
        font-size: 1.9rem;
    }

    .ready__right {
        padding: 40px 28px;
    }

    /* ── Footer ── */

    .footer {
        padding: 60px 0 0;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__brand {
        font-size: 1.2rem;
    }
}

/* ── Small Mobile: 480px ── */
@media (max-width: 480px) {
    :root {
        --section-py: 48px;
    }

    .navbar__brand {
        font-size: 0.88rem;
        letter-spacing: 0.08em;
    }

    .hero-banner {
        height: 200px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

    .service-card__img-wrap {
        height: 195px;
    }

    .about__stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about__stat {
        align-items: center;
    }

    .cta-final__buttons {
        flex-direction: column;
    }

    .cta-final__buttons .btn {
        width: 100%;
        text-align: center;
    }

    .inquiry__card {
        padding: 28px 16px;
    }

    .inquiry__title {
        font-size: 1.25rem;
    }

    .footer__brand {
        font-size: 1rem;
    }

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

    .benefits__grid .benefit-card:last-child {
        max-width: none;
        grid-column: auto;
    }
}

/* ─── Mobile Menu Overlay ─── */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 31, 40, 0.35);
    z-index: 998;
    backdrop-filter: blur(4px);
}

.nav-overlay.active {
    display: block;
}
