/* ==========================================================================
   Beautysalon Ellen - Enhanced 2025 Design
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --warm-white: #FFFFFF;
    --plum: #6B4C5A;
    --plum-light: #8A6B7A;
    --plum-dark: #4A3540;
    --gold: #C9A962;
    --gold-soft: #D4BC84;
    --gold-dark: #A68B4B;
    --text-dark: #2D2A28;
    --text-body: #4A4744;
    --text-muted: #5C5752;
    --glass: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    --whatsapp: #25D366;
    --whatsapp-dark: #1DA851;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    --container-max: 1200px;
    --container-padding: clamp(1rem, 5vw, 2rem);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 4px 20px rgba(45, 42, 40, 0.08);
    --shadow-medium: 0 8px 30px rgba(45, 42, 40, 0.12);
    --shadow-strong: 0 16px 50px rgba(45, 42, 40, 0.16);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* --------------------------------------------------------------------------
   Skip Link (a11y)
   -------------------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--plum);
    color: var(--warm-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-sm);
}

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
    transition-delay: var(--delay, 0s);
}

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
}

.btn:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--plum);
    color: var(--warm-white);
}

.btn-primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--plum-light);
}

.btn-secondary:hover {
    background: var(--plum);
    color: var(--warm-white);
    border-color: var(--plum);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--plum);
    color: var(--plum);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--warm-white);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-smooth);
}

.nav.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.logo-accent {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum);
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-fast);
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a.active:not(.nav-cta)::after {
    width: 100%;
}

.nav-cta {
    background: var(--plum);
    color: var(--warm-white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
}

.nav-cta:hover {
    background: var(--plum-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(250, 248, 245, 0.82) 0%,
        rgba(240, 237, 232, 0.75) 50%,
        rgba(250, 248, 245, 0.85) 100%
    );
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--gold-soft) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--plum-light) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation-delay: -7s;
    opacity: 0.3;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation-delay: -14s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: var(--space-lg);
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.hero-title {
    margin-bottom: var(--space-md);
}

.hero-title .title-line {
    display: block;
    font-size: clamp(1rem, 3vw, 1.4rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-title .title-accent {
    display: block;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 500;
    font-style: italic;
    color: var(--plum);
    line-height: 1;
    margin-top: -0.1em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-body);
    margin-bottom: var(--space-xl);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--plum-light), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* --------------------------------------------------------------------------
   Services (Bento Grid)
   -------------------------------------------------------------------------- */
.services {
    padding: var(--space-3xl) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.bento-item {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.bento-large {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

.bento-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.bento-large .bento-image {
    aspect-ratio: 3/4;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.bento-item:hover .bento-image img {
    transform: scale(1.05);
}

.bento-content {
    padding: var(--space-md);
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.bento-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.bento-features {
    margin-top: var(--space-md);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.bento-features li {
    background: var(--cream);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-body);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 76, 90, 0.2), transparent 50%);
}

.about-badge {
    position: absolute;
    bottom: var(--space-lg);
    right: calc(var(--space-lg) * -1);
    background: var(--gold);
    color: var(--warm-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content .section-tag {
    margin-bottom: var(--space-xs);
}

.about-content .section-title {
    margin-bottom: var(--space-md);
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-content p {
    margin-bottom: var(--space-sm);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
}

.feature-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Results Gallery
   -------------------------------------------------------------------------- */
.results {
    padding: var(--space-3xl) 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-item:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.08);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl) var(--space-md) var(--space-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--warm-white);
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform var(--transition-fast);
}

.gallery-item:hover figcaption,
.gallery-item:focus-visible figcaption {
    transform: translateY(0);
}

.gallery-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

.gallery-cta p {
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Reviews Section
   -------------------------------------------------------------------------- */
.reviews {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.review-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: none;
    position: relative;
    transition: all var(--transition-smooth);
}

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

.review-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    font-style: italic;
    margin-bottom: var(--space-md);
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: normal;
}

.review-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
}

.reviews-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq {
    padding: var(--space-3xl) 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--cream-dark);
    transition: background var(--transition-fast);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--plum);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    color: var(--plum);
}

.faq-item p {
    padding: 0 var(--space-sm) var(--space-md);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.pricing-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    transition: all var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.pricing-featured {
    background: var(--plum);
    color: var(--warm-white);
}

.pricing-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gold);
    color: var(--warm-white);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: var(--space-md);
}

.pricing-featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
    font-size: 1.5rem;
}

.pricing-featured .pricing-header h3 {
    color: var(--warm-white);
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.pricing-featured .pricing-list li {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.treatment {
    font-size: 0.95rem;
}

.price {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--plum);
    white-space: nowrap;
}

.pricing-featured .price {
    color: var(--gold);
}

.pricing-footnote {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.pricing-featured .pricing-footnote {
    border-top-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Booking CTA Section
   -------------------------------------------------------------------------- */
.booking {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.booking-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.blob-4 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--plum-light) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    opacity: 0.15;
}

.blob-5 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    opacity: 0.2;
}

.booking-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.booking-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--space-sm);
}

.booking-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

/* Booking Form */
.booking-form {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    background: var(--warm-white);
    color: var(--text-dark);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum-light);
}

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

.booking-form .btn {
    width: 100%;
    margin-top: var(--space-xs);
}

.form-reassurance {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    text-align: center;
}

.form-status {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.95rem;
    display: none;
}

.form-status-success,
.form-status-error {
    display: block;
    animation: fadeInDown 0.4s ease-out;
}

.form-status-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-status-error {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.thank-you-banner {
    background: var(--plum);
    color: var(--warm-white);
    text-align: center;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: var(--space-lg) auto;
    animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Booking Alternatives */
.booking-alternatives {
    margin-bottom: var(--space-xl);
}

.booking-alternatives > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.booking-alt-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Booking Hours */
.booking-hours {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.booking-hours h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.booking-hours ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.booking-hours li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    font-size: 0.95rem;
}

.booking-hours li span:first-child {
    color: var(--text-muted);
}

.booking-hours li span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   Location / Map Section
   -------------------------------------------------------------------------- */
.location {
    padding: var(--space-3xl) 0;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-lg);
}

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

.location-info {
    display: flex;
    justify-content: center;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: var(--warm-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    max-width: 500px;
}

.location-card svg {
    flex-shrink: 0;
    stroke: var(--plum);
    margin-top: 2px;
}

.location-card strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.location-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--plum-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-logo .logo-text {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo .logo-accent {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--warm-white);
    margin-bottom: var(--space-md);
}

.footer-contact address p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--gold);
}

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

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.social-links svg {
    stroke: var(--warm-white);
}

/* Footer Privacy Details */
.footer-privacy {
    margin-top: var(--space-sm);
}

.footer-privacy summary {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    list-style: none;
    transition: color var(--transition-fast);
}

.footer-privacy summary::-webkit-details-marker {
    display: none;
}

.footer-privacy summary:hover {
    color: var(--gold);
}

.privacy-content {
    margin-top: var(--space-sm);
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.privacy-content ul {
    margin: var(--space-xs) 0;
    padding-left: var(--space-md);
    list-style: disc;
}

.privacy-content li {
    margin-bottom: 0.25rem;
}

.privacy-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom {
    padding-top: var(--space-lg);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --------------------------------------------------------------------------
   Floating WhatsApp FAB (mobile only)
   -------------------------------------------------------------------------- */
.whatsapp-fab {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-fast);
}

.whatsapp-fab:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1rem;
    font-size: 1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: opacity var(--transition-fast);
    z-index: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.7;
}

.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-large .bento-image {
        aspect-ratio: 4/3;
    }

    .about-grid {
        gap: var(--space-xl);
    }

    .about-badge {
        right: var(--space-md);
        bottom: calc(var(--space-md) * -1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--warm-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        padding: var(--space-xl);
        transition: right var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

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

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

    .bento-wide {
        grid-column: span 1;
    }

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

    .about-image {
        order: -1;
    }

    .about-badge {
        bottom: var(--space-md);
        right: var(--space-md);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-contact address p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }
}

@media (min-width: 769px) {
    .whatsapp-fab {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .booking-hours li {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .booking-alt-buttons {
        flex-direction: column;
    }

    .booking-alt-buttons .btn {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   Reduced Motion (a11y)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .blob {
        animation: none;
    }

    .scroll-line {
        animation: none;
    }

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

/* --------------------------------------------------------------------------
   Print Styles
   -------------------------------------------------------------------------- */
@media print {
    .nav,
    .hero-scroll,
    .booking,
    .social-links,
    .whatsapp-fab,
    .lightbox,
    .map-wrapper {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }

    .blob,
    .hero-bg-image,
    .hero-bg-overlay {
        display: none;
    }
}
