:root {
    --black: #0b0b0b;
    --black-soft: #151515;
    --black-lighter: #1d1d1d;
    --gold: #d4af37;
    --gold-dark: #a98124;
    --ivory: #f8f5ef;
    --white: #ffffff;
    --text: #222222;
    --text-muted: #5d5d5d;
    --border-light: rgba(212, 175, 55, 0.28);
    --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.08);
    --header-offset: 106px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-offset);
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.5;
}

main {
    padding-top: var(--header-offset);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
}

section[id] {
    scroll-margin-top: var(--header-offset);
}

.container {
    width: min(90%, 1200px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: var(--gold);
    color: #111111;
    border-radius: 8px;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.section-label,
.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.primary-btn,
.secondary-btn,
.booking-btn,
.footer-booking-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.primary-btn,
.booking-btn,
.footer-booking-button {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: #111111;
}

.primary-btn:hover,
.booking-btn:hover,
.footer-booking-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.secondary-btn:hover {
    background: var(--gold);
    color: #111111;
    transform: translateY(-2px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.52);
    outline-offset: 3px;
}

/* =========================
   STICKY HEADER
========================= */

.header {
    position: fixed;
    z-index: 1100;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    background: rgba(11, 11, 11, 0.96);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(14px);
    transition:
        padding 0.2s ease,
        background 0.2s ease;
}

.header.is-scrolled {
    background: rgba(8, 8, 8, 0.98);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: auto;
    height: 88px;
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
}

.navigation a {
    position: relative;
    padding: 10px 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.navigation a::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.navigation a:hover,
.navigation a.is-active {
    color: var(--gold);
}

.navigation a:hover::after,
.navigation a.is-active::after {
    transform: scaleX(1);
}

.booking-btn {
    flex-shrink: 0;
    min-height: 44px;
    padding: 11px 20px;
    font-size: 13px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.52);
    border-radius: 10px;
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    background: var(--gold);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.hero {
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 64px;
}

.hero-content {
    max-width: 650px;
}

.hero .eyebrow {
    color: var(--gold);
}

.hero h1 {
    margin-bottom: 25px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.08;
}

.hero-description {
    max-width: 610px;
    margin-bottom: 34px;
    color: #dddddd;
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

/* =========================
   INTRO
========================= */

.intro-section {
    padding: 100px 0;
    background: var(--ivory);
}

.intro-container {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 70px;
}

.intro-content h2 {
    margin-bottom: 25px;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.18;
}

.intro-content > p:not(.section-label) {
    margin-bottom: 34px;
    color: #3f3f3f;
    font-size: 17px;
    line-height: 1.8;
}

.intro-cards {
    display: grid;
    gap: 18px;
}

.info-card {
    padding: 29px 30px;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    margin-bottom: 9px;
    color: var(--gold-dark);
    font-size: 25px;
}

.info-card p {
    color: #555555;
    line-height: 1.7;
}

/* =========================
   SHARED SECTION HEADING
========================= */

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

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.16;
}

.section-heading > p:last-child {
    font-size: 17px;
    line-height: 1.75;
}

/* =========================
   TREATMENTS
========================= */

.treatments-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.treatments-section .section-label {
    color: var(--gold);
}

.treatments-section .section-heading > p:last-child {
    color: #d2d2d2;
}

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

.treatment-card {
    display: flex;
    min-height: 440px;
    flex-direction: column;
    padding: 38px 30px;
    background: var(--black-soft);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.58);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.treatment-card.featured {
    border: 2px solid var(--gold);
}

.treatment-card h3 {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 30px;
}

.treatment-card p {
    margin-bottom: 23px;
    color: #d5d5d5;
    line-height: 1.75;
}

.treatment-card ul {
    margin-bottom: 29px;
    list-style: none;
}

.treatment-card li {
    margin-bottom: 11px;
    color: #eeeeee;
}

.treatment-card li::before {
    margin-right: 10px;
    color: var(--gold);
    content: "✓";
}

.treatment-card a {
    margin-top: auto;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
}

.treatment-card a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* =========================
   WHY CHOOSE
========================= */

.why-section {
    padding: 100px 0;
    background: var(--ivory);
}

.why-section .section-heading > p:last-child {
    color: #555555;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
}

.why-card {
    padding: 34px 24px;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
}

.icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: #111111;
    font-size: 16px;
    font-weight: 800;
}

.why-card h3 {
    margin-bottom: 14px;
    font-size: 23px;
    line-height: 1.25;
}

.why-card p {
    color: #555555;
    font-size: 14px;
    line-height: 1.75;
}

/* =========================
   JOURNEY
========================= */

.journey-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.journey-section .section-label {
    color: var(--gold);
}

.journey-heading > p:last-child {
    color: #d2d2d2;
}

.journey-wrapper {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) 48px
        minmax(0, 1fr) 48px
        minmax(0, 1fr) 48px
        minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.journey-step {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: #111111;
    font-size: 20px;
    font-weight: 800;
}

.journey-step h3 {
    margin-bottom: 13px;
    color: var(--gold);
    font-size: 23px;
}

.journey-step p {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.75;
}

.journey-line {
    height: 2px;
    margin-top: 34px;
    background: linear-gradient(
        90deg,
        rgba(212, 175, 55, 0.22),
        var(--gold),
        rgba(212, 175, 55, 0.22)
    );
}

/* =========================
   GALLERY
========================= */

.gallery-section {
    padding: 100px 0;
    background: var(--ivory);
}

.gallery-section .section-heading > p:last-child {
    color: #555555;
}

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

.gallery-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
}

.gallery-image {
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.08),
            rgba(212, 175, 55, 0)
        ),
        var(--black-soft);
    color: var(--gold);
    font-size: 21px;
    font-weight: 600;
}

.gallery-card:not(.gallery-result-card) .gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.gallery-card h3 {
    padding: 24px 25px 10px;
    font-size: 24px;
}

.gallery-card p {
    padding: 0 25px 28px;
    color: #555555;
    line-height: 1.7;
}

/* =========================
   HOMEPAGE RESULT CARD
========================= */

.gallery-result-card {
    display: flex;
    flex-direction: column;
}


.gallery-result-card .real-result-image {
    width: 100%;
    height: auto;

    display: block;

    background: #ffffff;
}


.gallery-result-card .real-result-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}


.gallery-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 24px 25px 28px;
}


.gallery-result-card .gallery-card-content h3 {
    margin: 0 0 10px;
    padding: 0;

    font-size: 24px;
    line-height: 1.35;
}


.gallery-result-card .gallery-card-content p {
    margin: 0 0 18px;
    padding: 0;

    color: #555555;

    line-height: 1.7;
}


.gallery-result-link {
    display: inline-block;

    margin-top: auto;

    color: var(--gold-dark);

    font-size: 13px;
    font-weight: 700;

    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =========================
   REAL RESULT IMAGE
========================= */

.real-result-image {
    overflow: hidden;
    height: auto;
    padding: 0;
    background: #111111;
}

.real-result-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.gallery-result-card h3 {
    margin-top: 22px;
}

.gallery-result-link {
    display: inline-block;
    margin-top: 14px;

    color: var(--gold-dark);

    font-size: 13px;
    font-weight: 700;

    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =========================
   PRACTITIONER
========================= */

.practitioner-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.practitioner-section .section-label {
    color: var(--gold);
}

.practitioner-container {
    display: grid;
    grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 68px;
}

.image-placeholder {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.11),
            transparent
        ),
        var(--black-soft);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    color: var(--gold);
    font-size: 23px;
}

.practitioner-content h2 {
    margin-bottom: 23px;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.18;
}

.practitioner-content > p:not(.section-label) {
    margin-bottom: 18px;
    color: #d3d3d3;
    line-height: 1.8;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 17px;
    margin: 35px 0;
}

.credential-item {
    padding: 23px;
    background: var(--black-soft);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 18px;
}

.credential-item h3 {
    margin-bottom: 9px;
    color: var(--gold);
    font-size: 19px;
}

.credential-item p {
    color: #c9c9c9;
    font-size: 13px;
    line-height: 1.65;
}

/* =========================
   REVIEWS
========================= */

.reviews-section {
    padding: 100px 0;
    background: var(--ivory);
}

.reviews-heading > p:last-child {
    color: #555555;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 27px;
}

.reviews-grid:has(> .review-card:only-child) {
    display: flex;
    justify-content: center;
}

.reviews-grid > .review-card:only-child {
    width: min(100%, 650px);
}

.review-card {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 23px;
}

.review-stars {
    color: var(--gold);
    font-size: 17px;
    letter-spacing: 2px;
}

.review-source {
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.review-card blockquote {
    flex-grow: 1;
    margin-bottom: 28px;
    color: #444444;
    font-family: "Playfair Display", serif;
    font-size: 19px;
    line-height: 1.65;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 20px;
    border-top: 1px solid #ece7dc;
}

.review-avatar {
    width: 47px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--black);
    border-radius: 50%;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
}

.review-author h3 {
    margin-bottom: 4px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

.review-author p {
    color: #777777;
    font-size: 12px;
}

.reviews-notice {
    max-width: 760px;
    margin: 32px auto 0;
    text-align: center;
}

.reviews-notice p {
    color: #666666;
    font-size: 12px;
    line-height: 1.7;
}

/* =========================
   FAQ
========================= */

.faq-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.faq-container {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
    align-items: start;
    gap: 75px;
}

.faq-introduction {
    position: sticky;
    top: 125px;
}

.faq-introduction .section-label {
    color: var(--gold);
}

.faq-introduction h2 {
    margin-bottom: 21px;
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.18;
}

.faq-introduction > p:not(.section-label) {
    margin-bottom: 32px;
    color: #d2d2d2;
    line-height: 1.78;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    overflow: hidden;
    background: var(--black-soft);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
}

.faq-item h3 {
    font-family: "Inter", sans-serif;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 26px;
    background: transparent;
    border: 0;
    color: var(--white);
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 650;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
    color: var(--gold);
}

.faq-icon {
    width: 33px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: var(--gold);
    color: #111111;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 26px 24px;
}

.faq-answer p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 100px 0;
    background: var(--ivory);
}

.contact-heading > p:last-child {
    color: #555555;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
    gap: 42px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.contact-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.contact-card h3 {
    margin-bottom: 24px;
    font-size: 26px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    font-style: normal;
}

.contact-item {
    padding-bottom: 19px;
    border-bottom: 1px solid #ece7dc;
}

.contact-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-label {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.contact-item p,
.contact-link {
    color: #333333;
    font-size: 15px;
    line-height: 1.7;
}

.contact-link:hover {
    color: var(--gold-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #ece7dc;
}

.hours-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.hours-row span {
    color: #555555;
}

.hours-row strong {
    font-size: 13px;
}

.map-wrapper {
    overflow: hidden;
    min-height: 340px;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
    width: 100%;
    height: 340px;
    display: block;
    border: 0;
}

.consultation-panel {
    padding: 42px;
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 27px;
    color: var(--white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.form-introduction {
    margin-bottom: 32px;
}

.form-introduction .section-label {
    color: var(--gold);
}

.form-introduction h3 {
    margin-bottom: 14px;
    font-size: 33px;
}

.form-introduction > p:last-child {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.75;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #f2f2f2;
    font-size: 13px;
    font-weight: 650;
}

.form-group label span {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    background: #171717;
    border: 1px solid #3b3b3b;
    border-radius: 11px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #858585;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.14);
}

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

.form-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--gold);
}

.checkbox-group label {
    color: #cccccc;
    font-size: 12px;
    line-height: 1.65;
}

.form-submit {
    width: 100%;
    min-height: 49px;
    padding: 14px 22px;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 999px;
    color: #111111;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.form-submit:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.form-notice,
.form-status {
    color: #999999;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}

.form-status {
    min-height: 18px;
    color: var(--gold);
}



/* =========================
   COMPATIBILITY UTILITIES
   Retained from the earlier stylesheet
========================= */

.temporary-note {
    margin-top: 22px;
    padding: 14px;
    background: var(--ivory);
    border-left: 3px solid var(--gold);
    color: #686868;
    font-size: 12px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
}

.form-submit:focus-visible {
    outline: 3px solid rgba(212, 175, 55, 0.4);
    outline-offset: 3px;
}

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

.site-footer {
    padding: 82px 0 27px;
    background: #080808;
    color: var(--white);
    border-top: 1px solid rgba(212, 175, 55, 0.24);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.38fr 0.8fr 0.9fr 1fr;
    align-items: start;
    gap: 50px;
    padding-bottom: 52px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 21px;
}

.footer-logo img {
    width: 168px;
}

.footer-tagline {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.7;
    text-transform: uppercase;
}

.footer-description {
    margin-bottom: 25px;
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.75;
}

.footer-column h2 {
    margin-bottom: 22px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
}

.footer-navigation {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
}

.footer-navigation a {
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.5;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-navigation a:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.footer-contact address {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-style: normal;
}

.footer-contact-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-contact-item p,
.footer-contact-item a {
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 25px 0;
    border-top: 1px solid #252525;
    border-bottom: 1px solid #252525;
}

.footer-bottom p {
    color: #888888;
    font-size: 11px;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-legal a {
    color: #999999;
    font-size: 11px;
}

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

.footer-disclaimer {
    max-width: 960px;
    padding-top: 23px;
}

.footer-disclaimer p {
    margin-bottom: 7px;
    color: #717171;
    font-size: 10px;
    line-height: 1.7;
}

/* =========================
   MOBILE ACTION BAR
========================= */

.mobile-action-bar {
    display: none;
}

/* =========================
   GOOGLE FORM EMBED
========================= */

.consultation-panel {
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px;
    color: #111111;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.form-introduction {
    padding: 8px 8px 24px;
    text-align: center;
}

.form-introduction .section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #9a7723;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.form-introduction p:last-child {
    max-width: 610px;
    margin: 0 auto;
    color: #555555;
    font-size: 14px;
    line-height: 1.75;
}

.google-form-wrapper {
    width: 100%;
    overflow: hidden;
    background: #f8f5ef;
    border: 1px solid #e5dcc6;
    border-radius: 20px;
}

.google-form-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 1300px;
    display: block;
    background: #f8f5ef;
    border: 0;
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    z-index: 1250;
    right: 24px;
    bottom: 24px;

    width: 60px;
    height: 60px;

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

    background: #25d366;
    border: 2px solid #ffffff;
    border-radius: 50%;

    color: #ffffff;

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.25),
        0 0 0 6px rgba(37, 211, 102, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.whatsapp-float:hover {
    background: #1fbd5a;

    transform: translateY(-4px) scale(1.04);

    box-shadow:
        0 15px 34px rgba(0, 0, 0, 0.3),
        0 0 0 8px rgba(37, 211, 102, 0.14);
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.4);
    outline-offset: 4px;
}

.whatsapp-icon {
    width: 33px;
    height: 33px;
    display: block;
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);

    width: max-content;
    max-width: 190px;

    padding: 8px 11px;

    background: #111111;
    border-radius: 8px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;

    opacity: 0;
    visibility: hidden;

    transform: translateX(6px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    pointer-events: none;
}

.whatsapp-tooltip::after {
    position: absolute;
    top: 50%;
    left: 100%;

    border-width: 6px;
    border-style: solid;
    border-color:
        transparent
        transparent
        transparent
        #111111;

    content: "";

    transform: translateY(-50%);
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus-visible .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* =========================
   RESPONSIVE: TABLET / MENU
========================= */

@media (max-width: 1080px) {
    :root {
        --header-offset: 94px;
    }

    .header {
        padding: 12px 0;
    }

    .nav-container {
        gap: 14px;
    }

    .logo img {
        width: auto;
        height: 76px;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .navigation {
        position: absolute;
        z-index: 1200;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        max-height: calc(100svh - 120px);
        overflow-y: auto;
        padding: 12px;
        background: #111111;
        border: 1px solid rgba(212, 175, 55, 0.32);
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    }

    .navigation.is-open {
        display: flex;
    }

    .navigation a {
        width: 100%;
        padding: 15px 16px;
        border-bottom: 1px solid #292929;
        font-size: 14px;
    }

    .navigation a:last-child {
        border-bottom: 0;
    }

    .navigation a::after {
        display: none;
    }

    .booking-btn {
        padding: 10px 17px;
        font-size: 12px;
    }

    .hero-container,
    .intro-container,
    .practitioner-container,
    .faq-container,
    .contact-layout {
        gap: 45px;
    }

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

    .journey-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }

    .journey-line {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 34px;
    }
}

/* =========================
   RESPONSIVE: SMALL TABLET
========================= */

@media (max-width: 820px) {
    .hero {
        min-height: auto;
        padding: 72px 0 82px;
    }

    .hero-container,
    .intro-container,
    .practitioner-container,
    .faq-container,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: none;
        text-align: center;
    }

    .hero .eyebrow {
        max-width: 620px;
    }

    .hero-description {
        margin-inline: auto;
    }

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

    .hero-image {
        max-width: 680px;
        margin-inline: auto;
    }

    .hero-image img {
        height: 430px;
    }

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

    .treatment-grid,
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        min-height: auto;
    }

    .journey-wrapper {
        grid-template-columns: 1fr;
    }

    .journey-step {
        max-width: 520px;
        margin-inline: auto;
    }

    .practitioner-image {
        max-width: 620px;
        margin-inline: auto;
    }

    .image-placeholder {
        min-height: 420px;
    }

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

    .credentials {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .faq-introduction {
        position: static;
        text-align: center;
    }

    .consultation-panel {
        padding: 36px 28px;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal {
        justify-content: flex-start;
    }
}

/* =========================
   RESPONSIVE: MOBILE
========================= */

@media (max-width: 700px) {

    :root {
        --header-offset: 78px;
    }

    body {
        padding-bottom: 70px;
    }

    /* Compact fixed header */

    .header {
        padding: 6px 0;
    }

    .logo img {
        width: auto;
        height: 64px;
        object-fit: contain;
    }

    .header .booking-btn {
        display: none;
    }

    /* Homepage section spacing */

    .hero,
    .intro-section,
    .treatments-section,
    .why-section,
    .journey-section,
    .gallery-section,
    .practitioner-section,
    .reviews-section,
    .faq-section,
    .contact-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    /* Hero */

    .hero h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .hero-image img {
        height: 360px;
    }

    /* Why choose section */

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

    /* Reviews */

    .review-top {
        align-items: flex-start;
        flex-direction: column;
    }

    /* Contact */

    .contact-card {
        padding: 27px 23px;
    }

    .hours-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .map-wrapper,
    .map-wrapper iframe {
        height: 300px;
        min-height: 300px;
    }

    .consultation-panel {
        padding: 31px 22px;
        border-radius: 22px;
    }

    /* Footer */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: none;
    }

    .site-footer {
        padding-bottom: 103px;
    }

    .footer-legal {
        display: grid;
        grid-template-columns: repeat(2, auto);
        gap: 13px 20px;
    }

    /* Fixed mobile action bar */

    .mobile-action-bar {
        position: fixed;
        z-index: 1300;
        right: 0;
        bottom: 0;
        left: 0;

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

        min-height: 68px;

        background: var(--black);
        border-top: 1px solid rgba(212, 175, 55, 0.45);
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.22);
    }

    .mobile-action {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;

        padding: 8px 5px;

        border-right: 1px solid #292929;

        color: var(--white);

        font-size: 10px;
        font-weight: 650;
        text-align: center;
    }

    .mobile-action:last-child {
        border-right: 0;
    }

    .mobile-action-icon {
        color: var(--gold);
        font-size: 18px;
        line-height: 1;
    }

    .mobile-action-primary {
        background: var(--gold);
        color: #111111;
    }

    .mobile-action-primary .mobile-action-icon {
        color: #111111;
    }

    .consultation-panel {
        padding: 14px;
        border-radius: 20px;
    }

    .form-introduction {
        padding: 10px 8px 20px;
    }

    .google-form-wrapper {
        border-radius: 14px;
    }

    .google-form-wrapper iframe {
        height: 1180px;
        min-height: 1000px;
    }

    .whatsapp-float {
    right: 16px;

    /* Keeps it above the fixed mobile call/email/book bar */
    bottom: 88px;

    width: 54px;
    height: 54px;
    }

    .whatsapp-icon {
        width: 29px;
        height: 29px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}

/* =========================
   RESPONSIVE: SMALL MOBILE
========================= */

@media (max-width: 480px) {

    :root {
        --header-offset: 72px;
    }

    .container {
        width: min(92%, 1200px);
    }

    /* Smaller fixed header logo */

    .header {
        padding: 6px 0;
    }

    .logo img {
        width: auto;
        height: 58px;
        object-fit: contain;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    /* Hero buttons */

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

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    /* Gallery */

    .gallery-image {
        height: 240px;
    }

    /* FAQ */

    .faq-question {
        gap: 13px;
        padding: 21px 19px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 19px 21px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    /* Footer */

    .footer-legal {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
    right: 13px;
    bottom: 84px;

    width: 51px;
    height: 51px;
    }

    .whatsapp-icon {
        width: 27px;
        height: 27px;
    }

}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

/* =========================
   PRACTITIONER PHOTO
========================= */

.practitioner-photo {
    width: 100%;
    height: 520px;

    display: block;

    object-fit: cover;
    object-position: center top;

    border-radius: 30px;
}


@media (max-width: 900px) {

    .practitioner-photo {
        height: 420px;
    }

}


@media (max-width: 500px) {

    .practitioner-photo {
        height: 360px;
    }

}

/* Homepage gallery card alignment */

.gallery-grid .gallery-image {
    width: 100%;
    height: 290px;
    overflow: hidden;
}

.gallery-grid .gallery-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Keep the complete before-and-after image visible */

.gallery-grid .real-result-image {
    height: 290px;
    background: #ffffff;
}

.gallery-grid .real-result-image img {
    height: 100%;
    object-fit: contain;
}

/* Fill the result frame without cropping the original image */

.gallery-grid .real-result-image {
    position: relative;
    isolation: isolate;
    background: #f3f0e9;
}

.gallery-grid .real-result-image::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: 0;

    background-image: url("../images/hair-restoration-before-after.webp");
    background-position: center;
    background-size: cover;

    filter: blur(18px);
    opacity: 0.22;
    transform: scale(1.08);
}

.gallery-grid .real-result-image img {
    position: relative;
    z-index: 1;
    object-fit: contain;
}

/* Mobile image height */

@media (max-width: 600px) {
    .gallery-grid .gallery-image,
    .gallery-grid .real-result-image {
        height: 240px;
    }
}

/* ===================================================
   REVIEWS GRID 2-CARD CENTERING & PROPORTIONS
=================================================== */

/* Center and widen the grid when there are exactly 2 cards */
.reviews-grid:has(> .review-card:nth-child(2):last-child) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 520px));
    justify-content: center;
    gap: 32px;
}

/* Adjust typography and spacing inside review cards */
.review-card {
    min-height: auto;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
}

.review-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.review-author {
    margin-top: auto;
}

@media (max-width: 820px) {
    .reviews-grid:has(> .review-card:nth-child(2):last-child) {
        grid-template-columns: 1fr;
    }
}

/* =========================
   SOCIAL MEDIA ICON BUTTONS
========================= */

.social-links-grid {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #181818;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-btn:hover {
    background: var(--gold);
    color: #111111;
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Light background variant for the Contact Page Card */
.contact-card .social-btn,
.contact-page-card .social-btn {
    background: #f8f5ef;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #8f6e1f;
}

.contact-card .social-btn:hover,
.contact-page-card .social-btn:hover {
    background: var(--gold);
    color: #111111;
    border-color: var(--gold);
}