/* ========================================================================
   Dra. Nathalia Araújo — Main Stylesheet
   Conversion from Tailwind/React to vanilla CSS
   ======================================================================== */

/* ── CSS Custom Properties (Design Tokens) ────────────────────────────── */
:root {
    /* Core palette */
    --background: hsl(39, 90%, 95%);
    --foreground: hsl(30, 18%, 20%);
    --primary: hsl(11, 40%, 59%);
    --primary-foreground: hsl(39, 90%, 95%);
    --secondary: hsl(28, 46%, 86%);
    --secondary-foreground: hsl(30, 18%, 20%);
    --muted: hsl(28, 46%, 86%);
    --muted-foreground: hsl(27, 18%, 46%);
    --border: hsl(28, 30%, 80%);

    /* Named colours */
    --terracotta: hsl(11, 40%, 59%);
    --sand: hsl(28, 46%, 86%);
    --warm-brown: hsl(27, 18%, 46%);
    --cream: hsl(39, 90%, 95%);

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Raleway', system-ui, sans-serif;

    /* Sizing */
    --container-max: 1400px;
    --radius: 0.25rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
}

/* ── Container ────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

/* ── Utility Classes ──────────────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Animations ───────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.98) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        max-height: 500px;
    }

    to {
        opacity: 0;
        max-height: 0;
    }
}

/* Animate-on-scroll base */
.animate-on-scroll {
    opacity: 0;
    transition: none;
}

.animate-on-scroll.fade-up {
    transform: translateY(15px);
}

.animate-on-scroll.fade-left {
    transform: translateX(-20px);
}

.animate-on-scroll.fade-right {
    transform: translateX(20px);
}

.animate-on-scroll.fade-in {
    opacity: 0;
}

.animate-on-scroll.is-visible {
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.animate-on-scroll.fade-up.is-visible {
    animation-name: fadeUp;
}

.animate-on-scroll.fade-left.is-visible {
    animation-name: fadeLeft;
}

.animate-on-scroll.fade-right.is-visible {
    animation-name: fadeRight;
}

.animate-on-scroll.fade-in.is-visible {
    animation-name: fadeIn;
}


/* ========================================================================
   NAVBAR
   ======================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: background 0.5s, box-shadow 0.5s;
}

.site-header.scrolled {
    background: hsla(39, 90%, 95%, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .navbar__logo {
    color: var(--foreground);
    text-shadow: none;
}

.site-header.scrolled .navbar__link {
    color: var(--muted-foreground);
    text-shadow: none;
}

.site-header.scrolled .navbar__link:hover {
    color: var(--foreground);
}

.site-header.scrolled .navbar__toggle {
    color: var(--foreground);
    text-shadow: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
    transition: filter 0.5s;
}

.navbar__logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.5s;
}

.site-header.scrolled .navbar__logo-img {
    filter: none;
}

.navbar__links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .navbar__links {
        display: flex;
    }
}

.navbar__link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.5s, text-shadow 0.5s;
}

.navbar__link:hover {
    color: #fff;
}

.navbar__cta {
    margin-left: 1rem;
    padding: 0.625rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.navbar__cta:hover {
    opacity: 0.9;
}

/* Mobile toggle */
.navbar__toggle {
    display: block;
    color: #fff;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
    transition: color 0.5s, filter 0.5s;
}

@media (min-width: 1024px) {
    .navbar__toggle {
        display: none;
    }
}

.navbar__toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background: hsla(39, 90%, 95%, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu.is-open {
    display: block;
    animation: slideDown 0.35s ease-out forwards;
}

.mobile-menu.is-closing {
    animation: slideUp 0.25s ease-in forwards;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.mobile-menu__link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: var(--foreground);
}

.mobile-menu__cta {
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* ========================================================================
   HERO
   ======================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            hsla(30, 18%, 20%, 0.7),
            hsla(30, 18%, 20%, 0.4),
            transparent);
}

.hero__container {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.hero__content {
    max-width: 42rem;
}


.hero__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero__title em {
    font-style: italic;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero__title {
        font-size: 4.5rem;
    }
}

.hero__subtitle {
    font-size: 1rem;
    color: hsla(28, 46%, 86%, 0.9);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 32rem;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: 1.125rem;
    }
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--terracotta);
    color: var(--cream);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.hero__cta:hover {
    opacity: 0.9;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    margin-top: 4rem;
}

.hero__feature {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: hsla(28, 46%, 86%, 0.7);
    font-weight: 300;
}


/* ========================================================================
   ABOUT
   ======================================================================== */
.about {
    padding: 6rem 0;
    background: var(--background);
}

@media (min-width: 1024px) {
    .about {
        padding: 8rem 0;
    }
}

.about__grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
    }
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about__image-decor {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 12rem;
    height: 12rem;
    border: 1px solid hsla(11, 40%, 59%, 0.3);
}

.about__badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
    display: block;
}

.about__title {
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-size: 1.875rem;
}

@media (min-width: 768px) {
    .about__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .about__title {
        font-size: 3rem;
    }
}

.about__role {
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about__text p {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.about__diff-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about__diff-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 1.25rem;
}

.about__diff-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about__diff-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.about__diff-icon {
    color: var(--terracotta);
    margin-top: 0.125rem;
    flex-shrink: 0;
}


/* ========================================================================
   TREATMENTS
   ======================================================================== */
.treatments {
    padding: 6rem 0;
    background: hsla(28, 46%, 86%, 0.5);
}

@media (min-width: 1024px) {
    .treatments {
        padding: 8rem 0;
    }
}

.treatments__header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 4rem;
}

.treatments__badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
    display: block;
}

.treatments__title {
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--foreground);
    line-height: 1.15;
    font-size: 1.875rem;
}

.treatments__title em {
    font-style: italic;
}

@media (min-width: 768px) {
    .treatments__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .treatments__title {
        font-size: 3rem;
    }
}

/* Cards grid */
.treatments__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .treatments__grid {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .treatments__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card */
.treatment-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

@media (min-width: 480px) {
    .treatment-card {
        height: 350px;
    }
}

@media (min-width: 768px) {
    .treatment-card {
        height: 480px;
    }
}

.treatment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.treatment-card:hover img {
    transform: scale(1.05);
}

.treatment-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            hsla(30, 10%, 18%, 0.9),
            hsla(30, 10%, 18%, 0.3),
            transparent);
}

.treatment-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .treatment-card__content {
        padding: 2rem;
    }
}

.treatment-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .treatment-card__title {
        font-size: 1.5rem;
    }
}

.treatment-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    transition: gap 0.3s;
}

.treatment-card:hover .treatment-card__link {
    gap: 0.75rem;
}

.treatment-card__link svg {
    width: 16px;
    height: 16px;
}

/* Bottom CTA */
.treatments__bottom {
    margin-top: 5rem;
    text-align: center;
}

.treatments__bottom-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.treatments__bottom-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.treatments__bottom-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.treatments__bottom-cta:hover {
    opacity: 0.9;
}


/* ========================================================================
   TREATMENT MODAL
   ======================================================================== */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-backdrop.is-open {
    display: flex;
    animation: fadeIn 0.25s ease-out;
}

.modal-backdrop__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal {
    position: relative;
    background: var(--background);
    max-width: 32rem;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: scaleIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.modal__image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

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

.modal__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), transparent, transparent);
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
    z-index: 2;
}

.modal__close:hover {
    background: rgba(0, 0, 0, 0.6);
}

.modal__close svg {
    width: 16px;
    height: 16px;
}

.modal__body {
    padding: 2rem;
    margin-top: -1.5rem;
    position: relative;
}

.modal__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .modal__title {
        font-size: 1.875rem;
    }
}

.modal__desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.modal__list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

.modal__list-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    flex-shrink: 0;
}

.modal__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 0.5rem;
    transition: opacity 0.3s;
}

.modal__cta:hover {
    opacity: 0.9;
}


/* ========================================================================
   EXPERIENCE
   ======================================================================== */
.experience {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

@media (min-width: 1024px) {
    .experience {
        padding: 0;
    }
}

.experience__grid {
    display: grid;
}

@media (min-width: 1024px) {
    .experience__grid {
        grid-template-columns: 1fr 1fr;
        min-height: 50vh;
    }
}

.experience__image {
    position: relative;
    aspect-ratio: 4/3;
}

@media (min-width: 1024px) {
    .experience__image {
        aspect-ratio: auto;
    }
}

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

.experience__text {
    display: flex;
    align-items: center;
    background: var(--primary);
    padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
    .experience__text {
        padding: 3rem 4rem;
    }
}

@media (min-width: 1280px) {
    .experience__text {
        padding: 6rem;
    }
}

.experience__badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 1rem;
    display: block;
}

.experience__title {
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--primary-foreground);
    margin-bottom: 2rem;
    line-height: 1.15;
    font-size: 1.875rem;
}

.experience__title em {
    font-style: italic;
}

@media (min-width: 768px) {
    .experience__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .experience__title {
        font-size: 3rem;
    }
}

.experience__desc {
    color: hsla(39, 90%, 95%, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.experience__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .experience__tags {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
}

.experience__tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    transition: background 0.3s, transform 0.3s;
}

.experience__tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}


/* ========================================================================
   CONTACT
   ======================================================================== */
.contact {
    padding: 6rem 0;
    background: var(--background);
}

@media (min-width: 1024px) {
    .contact {
        padding: 8rem 0;
    }
}

.contact__inner {
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.contact__badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
    display: block;
}

.contact__title {
    font-family: var(--font-serif);
    font-weight: 300;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-size: 1.875rem;
}

.contact__title em {
    font-style: italic;
}

@media (min-width: 768px) {
    .contact__title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .contact__title {
        font-size: 3rem;
    }
}

.contact__desc {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: opacity 0.3s;
    max-width: 100%;
}

@media (min-width: 768px) {
    .contact__cta {
        padding: 1rem 2.5rem;
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
}

.contact__cta:hover {
    opacity: 0.9;
}

.contact__cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.contact__location {
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-align: center;
    line-height: 1.5;
}

.contact__location svg {
    margin-top: 0.15rem;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--terracotta);
}

@media (min-width: 768px) {
    .contact__location {
        align-items: center;
        font-size: 0.875rem;
    }
}

.contact__map {
    margin-top: 3rem;
    width: 100%;
    height: 300px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
    .contact__map {
        height: 400px;
    }
}

.contact__map iframe {
    display: block;
}

/* Native Contact Form */
.contact__form {
    text-align: left;
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 140, 105, 0.15);
}

.contact__form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__form-radio {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.contact__form-radio legend {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.contact__form-radio label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
    font-size: 0.875rem;
    cursor: pointer;
}

.contact__form-radio input[type="radio"] {
    accent-color: var(--primary);
}

.contact__form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity 0.3s;
}

.contact__form-submit:hover {
    opacity: 0.9;
}

.contact__form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.contact__form-message {
    margin-bottom: 1rem;
}

.contact__form-message .contact__form-success,
.contact__form-message .contact__form-error {
    padding: 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    text-align: center;
    animation: fadeUp 0.4s ease-out;
}

.contact__form-message .contact__form-success {
    background: #def7ec;
    color: #03543f;
}

.contact__form-message .contact__form-error {
    background: #fde8e8;
    color: #9b1c1c;
}

.contact__form-submit.is-sending {
    opacity: 0.6;
    pointer-events: none;
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.site-footer {
    background: var(--foreground);
    padding: 5rem 0 0;
}

.footer__grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
}

/* Brand column */
.footer__logo {
    display: inline-block;
    margin-bottom: 1rem;
    transition: opacity 0.3s;
}

.footer__logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer__logo:hover {
    opacity: 0.8;
}

.footer__desc {
    font-size: 0.875rem;
    color: hsla(39, 90%, 95%, 0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 20rem;
}

/* Social icons */
.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid hsla(39, 90%, 95%, 0.15);
    color: hsla(39, 90%, 95%, 0.7);
    transition: all 0.3s;
}

.footer__social a:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: #fff;
    transform: translateY(-2px);
}

/* Columns */
.footer__heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: hsla(39, 90%, 95%, 0.9);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    font-size: 0.875rem;
    color: hsla(39, 90%, 95%, 0.5);
    transition: color 0.3s, padding-left 0.3s;
}

.footer__link:hover {
    color: var(--terracotta);
    padding-left: 0.25rem;
}

/* Contact list */
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: hsla(39, 90%, 95%, 0.5);
    line-height: 1.5;
}

.footer__contact-item svg {
    margin-top: 0.15rem;
    flex-shrink: 0;
    color: var(--terracotta);
}

@media (min-width: 768px) {
    .footer__contact-item {
        align-items: center;
        font-size: 0.875rem;
    }
}

.footer__contact-item a {
    color: hsla(39, 90%, 95%, 0.5);
    transition: color 0.3s;
}

.footer__contact-item a:hover {
    color: var(--terracotta);
}

/* Bottom bar */
.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid hsla(39, 90%, 95%, 0.1);
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
    }
}

.footer__copy {
    font-size: 0.75rem;
    color: hsla(39, 90%, 95%, 0.4);
    letter-spacing: 0.05em;
}

.footer__credits {
    font-size: 0.75rem;
    color: hsla(39, 90%, 95%, 0.3);
    letter-spacing: 0.05em;
}


/* ========================================================================
   MOBILE RESPONSIVE OVERRIDES
   ======================================================================== */

/* ── Small screens (up to 480px) ────────────────────────────────────── */
@media (max-width: 480px) {

    /* Logo */
    .navbar__logo-img {
        height: 45px;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
    }

    .hero__container {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero__badge {
        font-size: 0.625rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }

    .hero__title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .hero__cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        width: 100%;
    }

    .hero__features {
        margin-top: 2rem;
        gap: 0.5rem 1rem;
    }

    .hero__feature {
        font-size: 0.625rem;
    }

    /* About */
    .about {
        padding: 3.5rem 0;
    }

    .about__grid {
        gap: 2rem;
    }

    .about__image-wrap img {
        aspect-ratio: 4/3;
    }

    .about__image-decor {
        display: none;
    }

    .about__badge {
        font-size: 0.65rem;
    }

    .about__title {
        font-size: 1.5rem;
    }

    .about__role {
        font-size: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .about__text p {
        font-size: 0.875rem;
    }

    .about__diff-section {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }

    .about__diff-title {
        font-size: 1.125rem;
    }

    .about__diff-item {
        font-size: 0.8125rem;
    }

    /* Treatments */
    .treatments {
        padding: 3.5rem 0;
    }

    .treatments__header {
        margin-bottom: 2rem;
    }

    .treatments__title {
        font-size: 1.5rem;
    }

    .treatments__grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .treatment-card {
        height: 220px;
        border-radius: 0.75rem;
    }

    .treatment-card__content {
        padding: 1rem;
    }

    .treatment-card__title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }

    .treatment-card__link {
        font-size: 0.65rem;
    }

    .treatments__bottom {
        margin-top: 2.5rem;
    }

    .treatments__bottom-title {
        font-size: 1.25rem;
    }

    .treatments__bottom-text {
        font-size: 0.8125rem;
    }

    .treatments__bottom-cta {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    /* Experience */
    .experience {
        padding: 0;
    }

    .experience__image {
        aspect-ratio: 16/9;
    }

    .experience__text {
        padding: 2rem 1.25rem;
    }

    .experience__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .experience__desc {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .experience__tags {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }

    .experience__tag {
        font-size: 0.625rem;
        padding: 0.5rem 1rem;
    }

    /* Contact */
    .contact {
        padding: 3.5rem 0;
    }

    .contact__title {
        font-size: 1.5rem;
    }

    .contact__desc {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .contact__cta {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 0.65rem;
    }

    .contact__location {
        margin-top: 2rem;
        font-size: 0.75rem;
    }

    .contact__map {
        margin-top: 2rem;
        height: 220px;
        border-radius: 0.75rem;
    }

    /* Footer */
    .site-footer {
        padding: 3rem 0 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .footer__desc {
        text-align: center;
        max-width: 100%;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__heading {
        font-size: 0.9375rem;
    }

    .footer__nav {
        align-items: center;
    }

    .footer__contact-list {
        align-items: center;
    }

    .footer__contact-item {
        justify-content: center;
        text-align: center;
    }

    .footer__bottom {
        margin-top: 2rem;
        padding: 1.5rem 0;
        text-align: center;
    }

    /* Modal */
    .modal {
        max-width: 100%;
        margin: 0 0.75rem;
        border-radius: 0.75rem;
    }

    .modal__image {
        height: 10rem;
    }

    .modal__body {
        padding: 1.5rem;
    }

    .modal__title {
        font-size: 1.25rem;
    }
}

/* ── Medium screens (481px to 767px) ────────────────────────────────── */
@media (min-width: 481px) and (max-width: 767px) {

    .navbar__logo-img {
        height: 55px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .about {
        padding: 4rem 0;
    }

    .about__image-decor {
        width: 8rem;
        height: 8rem;
        bottom: -1rem;
        right: -1rem;
    }

    .treatments {
        padding: 4rem 0;
    }

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

    .experience {
        padding: 0;
    }

    .experience__text {
        padding: 2.5rem 1.5rem;
    }

    .contact {
        padding: 4rem 0;
    }

    .footer__grid {
        text-align: left;
    }
}