 :root {
    --revival-gold: #bfa07d;
    --revival-gold-light: #c4ae94;
    --revival-beige: #f5f1ed;
    --tabby-teal: #00ffbc;
    --transition-main: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    background-color: white;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* --- Modal (WhatsApp popup) --- */
.rc-modal[hidden] { display: none; }

.rc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.rc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
}

.rc-modal__dialog {
    position: relative;
    width: min(560px, calc(100% - 32px));
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    padding: 22px 20px 18px;
}

.rc-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.6);
}

.rc-modal__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0 30px 8px 0;
    color: #1a1a1a;
    font-size: 28px;
}

.rc-modal__text {
    margin: 0 0 16px 0;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.rc-modal__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.rc-modal__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rc-modal__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.65);
}

.rc-modal__input {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 14px 14px;
    font-size: 16px;
    outline: none;
    transition: var(--transition-main);
}

.rc-modal__input:focus {
    border-color: rgba(191, 160, 125, 0.8);
    box-shadow: 0 0 0 4px rgba(191, 160, 125, 0.18);
}

.rc-modal__primary {
    box-shadow: none;
}

.rc-modal__secondary {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: rgba(0, 0, 0, 0.75);
    padding: 14px 20px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-main);
}

.rc-modal__secondary:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.rc-modal-open {
    overflow: hidden;
}

img.h-16.mb-8 {
    height: 4rem;
}


        .font-serif-elegant {
            font-family: 'Cormorant Garamond', serif;
        }
        .bg-gold-soft {
            background-color: #C1A98F;
        }
        .text-gold-soft {
            color: #C1A98F;
        }
        .border-gold-soft {
            border-color: #C1A98F;
        }
        .hero-gradient {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
        }
        .btn-gold {
            background-color: #C1A98F;
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.375rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-size: 0.75rem;
            transition: all 0.30s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }
        .btn-gold:hover {
            background-color: #b59a7d;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        .btn-gold:active {
            transform: translateY(0);
        }
        .tabby-logo {
            font-family: system-ui, -apple-system, sans-serif;
        }

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

/* --- ANIMATION SYSTEM (BEM) --- */
.a-reveal {
    opacity: 0;
    transition: opacity 1.2s var(--anim-ease), transform 1.2s var(--anim-ease);
    will-change: opacity, transform;
}

.a-reveal--fade-up {
    transform: translateY(30px);
}

.a-reveal--fade-in {
    transform: translateY(0);
}

.a-reveal--scale-in {
    transform: scale(0.95);
}

.a-reveal--active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger Logic */
.a-reveal--stagger-group > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--anim-ease), transform 0.8s var(--anim-ease);
}

.a-reveal--stagger-group.a-reveal--active > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.a-reveal--stagger-group.a-reveal--active > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* --- Components --- */
.whatsapp-btn {
    background-color: var(--revival-gold-light);
    color: white;
    transition: var(--transition-main);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 2px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.whatsapp-btn:hover {
    background-color: #b39b7e;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(196, 174, 148, 0.3);
}

/* --- Modal (WhatsApp popup) --- */
.rc-modal[hidden] { display: none; }

.rc-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.rc-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
}

.rc-modal__dialog {
    position: relative;
    width: min(560px, calc(100% - 32px));
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    padding: 22px 20px 18px;
}

.treatment-card-img {
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.8s ease;
    filter: grayscale(10%);
}

.treatment-card:hover .treatment-card-img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.tabby-pill {
    background-color: var(--tabby-teal);
    color: black;
    font-weight: 900;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    text-transform: lowercase;
    transition: transform 0.3s ease;
}
.tabby-pill:hover {
    transform: scale(1.1);
}

.h-screen {
	height: 80vh;
}

.aspect-video {
    aspect-ratio: 1 / 1!important;
}

.brightness-\[0\.25\] {
    --tw-brightness: brightness(0.45)!important;
}

section.bg-white.py-20.px-4.md\:px-8.max-w-7xl.mx-auto.overflow-hidden {
	background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('../img/about.jpg');
	background-position: center center;
    background-size: cover;
}

img.rounded-xl.shadow-2xl.w-full.object-cover.transform.hover\:scale-\[1\.02\].transition-transform.duration-500 {
    border-radius: 200px 0 0 0;
}

section.bg-\[\#F9F9F9\].py-24.px-4 {
    background-image: url(../img/treat-bg.jpg);
    background-position: center center;
    background-size: cover;
}

.parallax {
  background-image: url('../img/hero-bg.jpg');
  --tw-brightness: brightness(0.85);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 165vh;
}

.parallax-reservation {
  background-image: url('../img/Reservation.jpg');
  --tw-brightness: brightness(0.45);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

/* Added styles for new blocks */
.benefit-card {
    background-color: #d3beab;
    border-radius: 20px;
    padding: 3rem 1.5rem;
    transition: transform 0.4s var(--anim-ease), box-shadow 0.4s var(--anim-ease);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.faq-header {
    padding: 2rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
}
.faq-header h4 {
    font-size: 1.5rem;
    font-weight: 300;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--anim-ease);
}
.faq-content div {
    padding: 0 1rem 2rem 1rem;
    color: #4b5563;
    line-height: 1.6;
}
.faq-item.active {
    background-color: #ffffff;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media (max-width: 600px) {
	.rc-modal__dialog { width: 90vw; }
	.rc-modal__input { font-size: 16px; }
	.parallax { background-attachment: unset; }
	.parallax-reservation { background-attachment: unset; }
}