/* =========================================================================
   Jentayu Spa — Custom Theme
   Design tokens: dark chocolate + rose gold + Playfair Display
   ========================================================================= */

:root {
    --chocolate: #3E2723;
    --chocolate-50: #F5EFE6;
    --chocolate-100: #E8DDD0;
    --chocolate-200: #C9A89C;
    --chocolate-300: #8D5E52;
    --chocolate-400: #5D4037;
    --chocolate-500: #3E2723;
    --chocolate-600: #2A1A17;
    --chocolate-700: #1F1310;

    --rose: #B76E79;
    --rose-50: #FBF3F4;
    --rose-100: #F2D9DC;
    --rose-200: #E5B9BF;
    --rose-300: #D4A5AC;
    --rose-400: #C98A93;
    --rose-500: #B76E79;
    --rose-600: #9C5662;
    --rose-700: #7A424C;

    --cream: #F5EFE6;
    --ink: #2A1A17;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;

    --container-max: 1280px;
    --section-pad-y: clamp(48px, 7vw, 80px);
    --section-pad-x: clamp(24px, 6vw, 64px);
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.005em;
}

::selection {
    background: var(--rose);
    color: var(--cream);
}

*:focus-visible {
    outline: 2px solid var(--rose);
    outline-offset: 4px;
}

/* =========================================================================
   Layout
   ========================================================================= */
.container-luxury {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--section-pad-x);
    padding-right: var(--section-pad-x);
    width: 100%;
}

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

.section-header .eyebrow {
    margin-bottom: 14px;
}

.section-header .heading-display {
    margin-bottom: 16px;
}

.section-header .divider-rose {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--chocolate-400);
    line-height: 1.75;
    font-weight: 300;
    font-size: 1.02rem;
}

.section-subtitle-light {
    color: rgba(245, 239, 230, 0.7);
}

/* =========================================================================
   Typography utilities
   ========================================================================= */
.eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--rose-500);
}

.eyebrow-light {
    color: var(--rose-300);
}

.heading-display {
    font-family: var(--font-serif);
    color: var(--chocolate-500);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: 0.005em;
    text-wrap: balance;
}

.heading-light {
    color: var(--cream);
}

.divider-rose {
    width: 40px;
    height: 1px;
    background: var(--rose-500);
    margin: 0 auto;
    position: relative;
}

.divider-rose::before, .divider-rose::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 5px;
    height: 5px;
    background: var(--rose-500);
    border-radius: 50%;
    transform: translateY(-50%);
}

.divider-rose::before { left: -7px; }
.divider-rose::after { right: -7px; }

.about-content .divider-rose {
    margin: 16px 0;
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn-luxury,
.btn-luxury-light,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1.5px solid;
    background: transparent;
}

.btn-luxury {
    border-color: var(--rose-500);
    color: var(--rose-500);
}

.btn-luxury:hover {
    background: var(--rose-500);
    color: var(--cream);
}

.btn-luxury-light {
    border-color: var(--cream-100, var(--cream));
    color: var(--cream);
}

.btn-luxury-light:hover {
    background: var(--cream);
    color: var(--chocolate-500);
}

.btn-whatsapp {
    border-color: var(--rose-500);
    background: var(--rose-500);
    color: var(--cream);
}

.btn-whatsapp:hover {
    background: var(--rose-600);
    border-color: var(--rose-600);
}

.btn-whatsapp svg {
    transition: transform 0.3s;
}

.btn-whatsapp:hover svg {
    transform: scale(1.1);
}

/* =========================================================================
   Skip link
   ========================================================================= */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--chocolate-500);
    color: var(--cream);
    padding: 8px 16px;
    z-index: 1000;
}

.skip-link:focus {
    top: 0;
}

/* =========================================================================
   Header / Nav
   ========================================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(245, 239, 230, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(62, 39, 35, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    ring: 1px solid rgba(183, 110, 121, 0.3);
    box-shadow: 0 0 0 1px rgba(183, 110, 121, 0.3);
    transition: box-shadow 0.3s;
}

.site-logo:hover .logo-img {
    box-shadow: 0 0 0 1px var(--rose-500);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--chocolate-500);
}

@media (max-width: 640px) {
    .logo-text {
        display: none;
    }
}

.primary-nav ul {
    display: flex;
    gap: 32px;
}

.primary-nav a {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--chocolate-400);
    transition: color 0.3s;
}

.primary-nav a:hover {
    color: var(--rose-500);
}

@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        transform: translateY(-16px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.5s;
    }
    .primary-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 40px var(--section-pad-x);
    }
    .primary-nav li {
        border-bottom: 1px solid var(--chocolate-100);
    }
    .primary-nav a {
        display: block;
        padding: 16px 0;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        letter-spacing: 0;
        text-transform: none;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.locale-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--chocolate-400);
    transition: color 0.3s;
}

.locale-toggle:hover {
    color: var(--rose-500);
}

.locale-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 60px;
    background: white;
    border: 1px solid var(--chocolate-100);
    box-shadow: 0 20px 40px -10px rgba(62, 39, 35, 0.18);
    min-width: 180px;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: all 0.2s;
    transform-origin: top right;
    z-index: 60;
}

.locale-menu.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.locale-menu li a {
    display: block;
    padding: 12px 16px;
    font-size: 0.875rem;
    color: var(--chocolate-500);
    transition: background 0.2s;
}

.locale-menu li a:hover {
    background: var(--cream);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--chocolate-500);
    transition: all 0.3s;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1023px) {
    .menu-toggle {
        display: flex;
    }
}

/* =========================================================================
   Hero — slideshow v2
   ========================================================================= */
.section-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.hero {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================================
   Hero — single image
   ========================================================================= */
.hero-single {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    animation: kenburns 18s ease-in-out infinite alternate;
}

@keyframes kenburns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-2%, -1%); }
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: kenburns 18s ease-in-out infinite alternate;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-bg.active {
    opacity: 1;
}

@keyframes kenburns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-2%, -1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(62, 39, 35, 0.65) 0%, rgba(62, 39, 35, 0.30) 50%, rgba(62, 39, 35, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 880px;
    padding: 20vh 24px 0;
}

.hero-logo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 1px rgba(183, 110, 121, 0.4), 0 0 0 4px rgba(183, 110, 121, 0.12);
}

.hero-eyebrow {
    color: var(--rose-300);
    margin-bottom: 12px;
}

.hero-title {
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 400;
    text-wrap: balance;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--rose-300);
}

.hero-subtitle {
    color: rgba(245, 239, 230, 0.85);
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 24px;
    letter-spacing: 0.02em;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(245, 239, 230, 0.6);
    transition: color 0.3s;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll:hover {
    color: var(--rose-300);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Slide indicators (dots) */
.hero-dots {
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(245, 239, 230, 0.3);
    transition: all 0.4s;
    cursor: pointer;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--rose-300);
    width: 24px;
    border-radius: 4px;
}

/* =========================================================================
   About
   ========================================================================= */

/* =========================================================================
   About
   ========================================================================= */
.section-about {
    padding: var(--section-pad-y) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    gap: 48px 80px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 60fr 40fr;
    }
}

.about-images {
    position: relative;
    padding-right: 60px;
}

@media (max-width: 1023px) {
    .about-images {
        padding-right: 0;
    }
}

/* Featured large image (1:1 square, 80px clip-path corners) */
.about-featured {
    position: relative;
    overflow: hidden;
    background: var(--chocolate-100);
    aspect-ratio: 1 / 1;
    box-shadow: 0 30px 60px -20px rgba(62, 39, 35, 0.4);
    clip-path: polygon(
        80px 0,
        100% 0,
        100% calc(100% - 80px),
        calc(100% - 80px) 100%,
        0 100%,
        0 80px
    );
}

.about-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(62, 39, 35, 0.55) 0%,
        rgba(62, 39, 35, 0.15) 30%,
        rgba(42, 26, 23, 0.85) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.about-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 0.9s ease;
    animation: aboutFeaturedKenBurns 10s ease-in-out infinite;
    transform-origin: center center;
}

.about-featured-img.swap-out {
    opacity: 0;
}

@keyframes aboutFeaturedKenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    50%  { transform: scale(1.06) translate(-1%, -1%); }
    100% { transform: scale(1) translate(0, 0); }
}

.about-featured:hover .about-featured-img {
    animation-play-state: paused;
    transform: scale(1.04);
}

.about-featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    z-index: 2;
    pointer-events: none;
}

.about-featured-tag {
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    background: var(--rose-500);
    color: var(--cream);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-featured-title {
    font-family: var(--font-serif);
    color: var(--cream);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.1;
    margin-bottom: 4px;
}

.about-featured-sub {
    color: var(--rose-300);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* Thumbnail wrapper (vertical floating column, overlapping top 10%) */
.about-thumbs-wrapper {
    position: absolute;
    top: 10%;
    right: -36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    z-index: 3;
    background: rgba(245, 239, 230, 0.96);
    padding: 8px 5px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.22);
}

@media (max-width: 1023px) {
    .about-thumbs-wrapper {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: nowrap;
        margin-top: 16px;
        width: 100%;
        justify-content: center;
        padding: 8px;
    }
}

.about-thumbs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

@media (max-width: 1023px) {
    .about-thumbs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
}

.about-thumbs-nav {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--chocolate-200);
    background: var(--cream);
    color: var(--chocolate-500);
    border-radius: 50%;
    transition: all 0.3s;
    cursor: pointer;
}

@media (max-width: 1023px) {
    .about-thumbs-nav {
        width: 32px;
        height: 32px;
    }
}

.about-thumbs-nav:hover:not(:disabled) {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: var(--cream);
}

.about-thumbs-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.about-thumb {
    position: relative;
    overflow: hidden;
    background: var(--chocolate-100);
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s, outline 0.3s;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .about-thumb {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 1280px) {
    .about-thumb {
        width: 60px;
        height: 60px;
    }
}

.about-thumb:hover {
    transform: scale(1.05);
}

.about-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-thumb:hover img {
    transform: scale(1.1);
}

.about-thumb.active {
    outline: 2px solid var(--rose-500);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--rose-500);
}

.about-thumb.hidden {
    display: none;
}

.about-deco-tl,
.about-deco-br {
    position: absolute;
    width: 64px;
    height: 64px;
    display: none;
    z-index: 2;
    pointer-events: none;
}

.about-deco-tl {
    top: -16px;
    left: -16px;
    border-top: 1px solid rgba(183, 110, 121, 0.4);
    border-left: 1px solid rgba(183, 110, 121, 0.4);
}

.about-deco-br {
    bottom: -16px;
    right: -16px;
    border-bottom: 1px solid rgba(183, 110, 121, 0.4);
    border-right: 1px solid rgba(183, 110, 121, 0.4);
}

@media (min-width: 1024px) {
    .about-deco-tl,
    .about-deco-br {
        display: block;
    }
}

.about-content .eyebrow {
    margin-bottom: 20px;
}

.about-content .heading-display {
    text-wrap: balance;
}

.about-content .divider-rose {
    margin: 24px 0;
}

.about-body {
    color: var(--chocolate-400);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1.02rem;
    margin-bottom: 32px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    flex-shrink: 0;
    margin-top: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rose-500);
    color: var(--rose-500);
    transition: all 0.3s;
}

.highlight:hover .highlight-icon {
    background: var(--rose-500);
    color: var(--cream);
}

.highlight h3 {
    font-size: 1.125rem;
    color: var(--chocolate-500);
    margin-bottom: 4px;
    font-weight: 400;
}

.highlight p {
    font-size: 0.875rem;
    color: var(--chocolate-400);
    line-height: 1.6;
    font-weight: 300;
}

/* Stats strip (in About section) */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 28px 0;
    margin: 0 0 32px 0;
    border-top: 1px solid var(--chocolate-100);
    border-bottom: 1px solid var(--chocolate-100);
}

@media (min-width: 640px) {
    .stats-strip {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    color: var(--chocolate-500);
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 500;
}

.stat-value .stat-suffix {
    color: var(--rose-500);
    font-size: 0.7em;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--chocolate-400);
    font-weight: 400;
}

/* =========================================================================
   Services — 2 category cards
   ========================================================================= */
.section-services {
    padding: var(--section-pad-y) 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.service-card {
    position: relative;
    padding: 40px 36px;
    background: white;
    border: 1px solid var(--chocolate-100);
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
}

.service-card-with-image {
    padding: 0;
    overflow: hidden;
}

.service-card-with-image .service-card-body {
    padding: 32px 36px 40px;
}

.service-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--cream-50);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-card-with-image:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card:hover {
    border-color: var(--rose-500);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(62, 39, 35, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rose-500);
    color: var(--rose-500);
    border-radius: 50%;
    margin-bottom: 24px;
    transition: all 0.5s;
}

.service-card:hover .service-icon {
    background: var(--rose-500);
    color: var(--cream);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--chocolate-500);
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--chocolate-400);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.service-list {
    list-style: none;
    border-top: 1px solid var(--chocolate-100);
    padding-top: 16px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--chocolate-400);
    border-bottom: 1px solid rgba(215, 204, 200, 0.4);
}

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

.service-list .list-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose-500);
}

/* =========================================================================
   Why Choose Us
   ========================================================================= */
.section-why {
    padding: var(--section-pad-y) 0;
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

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

.why-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--cream);
    border: 1px solid transparent;
    transition: all 0.4s;
}

.why-card:hover {
    border-color: var(--rose-500);
    transform: translateY(-4px);
    background: white;
    box-shadow: 0 20px 40px -20px rgba(62, 39, 35, 0.15);
}

.why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-500);
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--chocolate-500);
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 500;
}

.why-desc {
    font-size: 0.8rem;
    color: var(--chocolate-400);
    line-height: 1.6;
    font-weight: 300;
}

/* =========================================================================
   Gallery
   ========================================================================= */
.section-gallery {
    padding: var(--section-pad-y) 0;
    background: var(--chocolate-500);
    position: relative;
    overflow: hidden;
}

/* ====== Gallery v2 — unified masonry + lightbox ====== */

.gallery-masonry {
    columns: 2;
    column-gap: 12px;
}

@media (min-width: 768px) {
    .gallery-masonry {
        columns: 3;
        column-gap: 16px;
    }
}

@media (min-width: 1024px) {
    .gallery-masonry {
        columns: 4;
        column-gap: 16px;
    }
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 12px;
    break-inside: avoid;
    overflow: hidden;
    background: var(--chocolate-600);
    cursor: pointer;
    transition: transform 0.4s;
}

@media (min-width: 768px) {
    .gallery-item {
        margin-bottom: 16px;
    }
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(62, 39, 35, 0.85), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay p {
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 0.875rem;
}

/* Video item badge overlay */
.gallery-item .video-label {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(62, 39, 35, 0.85);
    color: var(--cream);
    padding: 4px 10px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(4px);
}

.gallery-item .play-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(183, 110, 121, 0.9);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover .play-badge {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--rose-500);
}

.gallery-item .play-badge svg {
    margin-left: 3px;
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(42, 26, 23, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.gallery-lightbox[aria-hidden="false"] {
    display: flex;
}

.gallery-lightbox[aria-hidden="true"] .lightbox-btn,
.gallery-lightbox[aria-hidden="true"] .lightbox-counter,
.gallery-lightbox[aria-hidden="true"] .lightbox-title {
    pointer-events: none;
}

.gallery-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-content img,
.gallery-lightbox-content video {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-content video {
    width: 100%;
    max-width: 1100px;
}

.lightbox-btn {
    position: fixed;
    z-index: 1010;
    color: var(--cream);
    background: rgba(62, 39, 35, 0.6);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 239, 230, 0.1);
    cursor: pointer;
}

.lightbox-btn:hover {
    background: var(--rose-500);
    transform: scale(1.1);
    border-color: var(--rose-500);
}

.lightbox-btn-close {
    top: 24px;
    right: 24px;
}

.lightbox-btn-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-btn-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-btn-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-btn-next:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: fixed;
    z-index: 1010;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 8px 16px;
    background: rgba(62, 39, 35, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.lightbox-title {
    position: fixed;
    z-index: 1010;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: center;
    max-width: 80%;
}

@media (max-width: 640px) {
    .lightbox-btn {
        width: 40px;
        height: 40px;
    }
    .lightbox-btn-close {
        top: 12px;
        right: 12px;
    }
    .lightbox-btn-prev { left: 8px; }
    .lightbox-btn-next { right: 8px; }
    .gallery-item .play-badge {
        width: 48px;
        height: 48px;
    }
}

/* =========================================================================
   Pricing — packages + ala carte senarai
   ========================================================================= */
.section-pricing {
    padding: var(--section-pad-y) 0;
    background: var(--cream);
}

.pricing-group {
    margin-bottom: 80px;
}

.pricing-group:last-child {
    margin-bottom: 0;
}

.pricing-group-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--chocolate-500);
    margin-bottom: 8px;
    font-weight: 500;
}

.pricing-group-sub {
    text-align: center;
    font-size: 0.8rem;
    color: var(--chocolate-400);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.pricing-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.package-card {
    position: relative;
    padding: 32px 28px;
    background: white;
    border: 1px solid var(--chocolate-100);
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
}

.package-card.package-featured {
    border-color: rgba(183, 110, 121, 0.4);
    background: linear-gradient(180deg, white 0%, var(--rose-100, #F5E3E6) 100%);
}

@media (min-width: 1024px) {
    .package-card.package-featured {
        transform: scale(1.02);
    }
}

.package-card:hover {
    border-color: var(--rose-500);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(62, 39, 35, 0.25);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--rose-500);
    color: var(--cream);
    padding: 4px 12px;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.package-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--chocolate-500);
    margin-bottom: 4px;
    line-height: 1.3;
}

.package-tag {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--rose-500);
    margin-bottom: 16px;
}

.package-includes {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.package-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--chocolate-400);
    line-height: 1.5;
}

.package-includes .check {
    flex-shrink: 0;
    color: var(--rose-500);
    margin-top: 4px;
}

.package-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.package-from {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--chocolate-400);
}

.package-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--chocolate-500);
    font-weight: 500;
}

.package-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 500;
    color: var(--rose-500);
    transition: color 0.3s;
    margin-top: auto;
}

.package-book:hover {
    color: var(--rose-600);
}

/* --- Ala Carte list --- */
.ala-carte-block {
    background: white;
    border: 1px solid var(--chocolate-100);
    padding: 32px;
}

@media (min-width: 640px) {
    .ala-carte-block { padding: 40px; }
}

.ala-carte-subcategory {
    margin-bottom: 32px;
}

.ala-carte-subcategory:last-child {
    margin-bottom: 0;
}

.ala-carte-subtitle {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--chocolate-500);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--chocolate-100);
    font-weight: 500;
}

.ala-carte-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .ala-carte-list { grid-template-columns: 1fr 1fr; gap: 0 40px; }
}

.ala-carte-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dotted rgba(215, 204, 200, 0.6);
    font-size: 0.875rem;
}

.ala-carte-item:last-child {
    border-bottom: none;
}

.ala-carte-name {
    color: var(--chocolate-400);
    flex: 1;
}

.ala-carte-price {
    font-family: var(--font-serif);
    color: var(--chocolate-500);
    font-weight: 500;
    white-space: nowrap;
    font-size: 0.9rem;
}

.package-book svg {
    transition: transform 0.3s;
}

.package-book:hover svg {
    transform: scale(1.1);
}

/* =========================================================================
   Location
   ========================================================================= */
.section-location {
    padding: clamp(40px, 6vw, 64px) 0;
    background: var(--cream-50);
    border-top: 1px solid rgba(232, 221, 208, 0.6);
}

.heading-display.heading-mix {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 0.75rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.heading-display .heading-word {
    color: var(--chocolate-500);
}
.heading-display .heading-heart {
    display: inline-flex;
    align-items: center;
    color: var(--rose-500);
    flex-shrink: 0;
}
.heading-display .heart-logo {
    height: 1em;
    width: 1.1em;
    margin: 0 0.15em;
    transform-origin: center;
    animation: jt-heartbeat 1.8s ease-in-out infinite;
}
@keyframes jt-heartbeat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.12); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.08); }
    70%      { transform: scale(1); }
}

.branches-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

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

.branch-card {
    background: white;
    border: 1px solid var(--chocolate-100);
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
}

@media (min-width: 640px) {
    .branch-card {
        padding: 28px;
    }
}

.branch-card:hover {
    border-color: var(--rose-500);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -20px rgba(62, 39, 35, 0.18);
}

.branch-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.branch-title-block {
    flex: 1;
    min-width: 0;
}

.branch-name {
    font-size: 1.4rem;
    color: var(--chocolate-500);
    margin-bottom: 6px;
    line-height: 1.2;
}

.branch-tag {
    flex-shrink: 0;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
    color: var(--rose-500);
    border: 1px solid rgba(183, 110, 121, 0.55);
    padding: 2px 8px;
}

/* Status pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: #065F46;
}
.status-pill.is-closed {
    color: rgba(93, 64, 55, 0.6);
}
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.15);
    animation: jt-pulse-soft 2.4s ease-in-out infinite;
    flex-shrink: 0;
}
.status-pill.is-closed .status-dot {
    background: rgba(93, 64, 55, 0.4);
    box-shadow: 0 0 0 3px rgba(141, 126, 120, 0.15);
    animation: none;
}
@keyframes jt-pulse-soft {
    0%, 100% { box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.15); }
    50%      { box-shadow: 0 0 0 6px rgba(6, 95, 70, 0.05); }
}
.status-hint {
    font-size: 0.72rem;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(93, 64, 55, 0.6);
    font-weight: 300;
}

/* Info block with left border */
.branch-info {
    border-left: 2px solid rgba(183, 110, 121, 0.3);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--chocolate-400);
    font-weight: 300;
    margin-bottom: 20px;
}

.branch-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.55;
}

.branch-info-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--rose-500);
}

.branch-info-item a {
    color: inherit;
    transition: color 0.2s;
}
.branch-info-item a:hover {
    color: var(--rose-500);
}

/* Footer row: socials + directions */
.branch-foot {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--chocolate-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.branch-socials {
    display: flex;
    gap: 6px;
}

.branch-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rose-50);
    border: 1px solid var(--rose-100);
    color: var(--rose-500);
    transition: all 0.25s;
}
.branch-social-link:hover {
    background: var(--rose-500);
    color: white;
    border-color: var(--rose-500);
    transform: translateY(-2px);
}
.branch-social-link.branch-social-wa {
    background: #F0F5F1;
    border-color: rgba(92, 138, 106, 0.3);
    color: #5C8A6A;
}
.branch-social-link.branch-social-wa:hover {
    background: #5C8A6A;
    border-color: #5C8A6A;
    color: white;
}

.branch-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 500;
    color: var(--rose-500);
    transition: color 0.2s;
}
.branch-directions:hover {
    color: var(--rose-600);
}
.branch-directions svg {
    transition: transform 0.2s;
}
.branch-directions:hover svg {
    transform: translate(2px, -2px);
}

/* =========================================================================
   Contact
   ========================================================================= */
.section-contact {
    padding: var(--section-pad-y) 0;
    background: var(--chocolate-500);
    position: relative;
    overflow: hidden;
}

.section-contact::before,
.section-contact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(183, 110, 121, 0.05);
    pointer-events: none;
}

.section-contact::before {
    top: 0;
    left: 0;
    width: 256px;
    height: 256px;
    transform: translate(-50%, -50%);
}

.section-contact::after {
    bottom: 0;
    right: 0;
    width: 384px;
    height: 384px;
    transform: translate(33%, 33%);
}

.contact-grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
        gap: 48px;
    }
}

.contact-ctas {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--chocolate-400);
    border: 1px solid rgba(245, 239, 230, 0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--rose-500);
}

.contact-card-rose {
    border-color: rgba(183, 110, 121, 0.3);
}

.contact-card-rose:hover {
    border-color: var(--rose-500);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rose-500);
    color: var(--cream);
    transition: all 0.3s;
}

.contact-card:not(.contact-card-rose) .contact-icon {
    background: transparent;
    border: 1px solid rgba(245, 239, 230, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: var(--rose-500);
    border-color: var(--rose-500);
}

.contact-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--rose-300);
    margin-bottom: 4px;
}

.contact-value {
    font-family: var(--font-serif);
    color: var(--cream);
}

.contact-card .contact-value {
    font-size: 1.125rem;
}

.contact-card:last-child .contact-value {
    font-size: 1rem;
    word-break: break-all;
}

.contact-form {
    background: var(--chocolate-400);
    border: 1px solid rgba(245, 239, 230, 0.1);
    padding: 32px 40px;
}

@media (min-width: 640px) {
    .contact-form {
        padding: 40px;
    }
}

@media (min-width: 1024px) {
    .contact-form {
        padding: 40px 48px;
    }
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

.form-group label {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--rose-300);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--chocolate-600);
    border: 1px solid rgba(245, 239, 230, 0.15);
    color: var(--cream);
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-500);
}

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

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--rose-500);
    color: var(--cream);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.form-submit:hover {
    background: var(--rose-600);
}

/* =========================================================================
   Sticky WhatsApp
   ========================================================================= */
.sticky-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 40;
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.5s;
}

.sticky-whatsapp.show {
    opacity: 1;
    transform: translateY(0);
}

.wa-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--rose-500);
    color: var(--cream);
    padding: 16px 24px;
    box-shadow: 0 10px 30px -5px rgba(183, 110, 121, 0.5);
    transition: all 0.3s;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.wa-button:hover {
    background: var(--rose-600);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .wa-text {
        display: none;
    }
    .wa-button {
        padding: 16px;
    }
    .sticky-whatsapp {
        bottom: 16px;
        right: 16px;
    }
}

/* =========================================================================
   Contact section hidden (deactivated via CSS, code kept for easy restore)
   ========================================================================= */
.section-contact { display: none !important; }
.site-header a[href="#contact"] { display: none; }

/* =========================================================================
   Footer — compact minimalist
   ========================================================================= */
.site-footer {
    background: var(--chocolate-600);
    color: rgba(245, 239, 230, 0.8);
    font-weight: 300;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-brand img {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(183, 110, 121, 0.4);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: rgba(245, 239, 230, 0.6);
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--rose-300);
}

.social-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-link:hover .social-icon {
    background: rgba(183, 110, 121, 0.15);
}

.social-label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.social-link:hover .social-label {
    opacity: 1;
}

.footer-sep {
    height: 1px;
    background: rgba(245, 239, 230, 0.06);
    margin: 0 24px;
}

.footer-copy {
    font-size: 0.6rem;
    color: rgba(245, 239, 230, 0.25);
    letter-spacing: 0.15em;
}

/* =========================================================================
   AOS overrides
   ========================================================================= */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* =========================================================================
   Print & reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .site-header,
    .sticky-whatsapp,
    .section-contact,
    .site-footer {
        display: none;
    }
}

/* =========================================================================
   About - Branch tabs (gallery filter)
   ========================================================================= */
.about-branch-tabs {
    display: flex;
    gap: 8px;
    margin: 0 auto 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.branch-tab {
    background: transparent;
    border: 1px solid var(--chocolate-200);
    color: var(--chocolate-400);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}
.branch-tab:hover {
    border-color: var(--rose-500);
    color: var(--rose-500);
}
.branch-tab.active {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: var(--cream);
}

.about-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--chocolate-400);
    font-size: 0.9rem;
}

/* =========================================================================
   Promo Section
   ========================================================================= */
.section-promo {
    padding: var(--section-pad-y) 0;
    background: var(--cream-50);
    position: relative;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    justify-items: center;
}

@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.promo-branch-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 24px auto 32px;
    flex-wrap: wrap;
}

.promo-branch-tab {
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--chocolate-100);
    border-radius: 24px;
    color: var(--chocolate-500);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.promo-branch-tab:hover {
    border-color: var(--rose-500);
    color: var(--rose-500);
}

.promo-branch-tab.active {
    background: var(--rose-500);
    border-color: var(--rose-500);
    color: white;
}

.promo-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #888;
    padding: 40px 16px;
    font-style: italic;
}

.promo-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    height: 500px;
    background: var(--chocolate-100);
    border-radius: 6px;
    box-shadow: 0 10px 30px -15px rgba(62, 39, 35, 0.25);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    justify-self: center;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: promoEntry 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    pointer-events: auto;
    cursor: pointer;
    z-index: 1;
}

.promo-card:nth-child(1) { animation-delay: 0.1s; }
.promo-card:nth-child(2) { animation-delay: 0.2s; }
.promo-card:nth-child(3) { animation-delay: 0.3s; }
.promo-card:nth-child(4) { animation-delay: 0.4s; }
.promo-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes promoEntry {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95) rotate(-2deg);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02) rotate(0.5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

@media (max-width: 600px) {
    .promo-card {
        height: 400px;
    }
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px -12px rgba(183, 110, 121, 0.5);
    animation-play-state: paused;
}

/* Shine sweep effect on hover */
.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    transition: left 0s;
    z-index: 2;
    pointer-events: none;
}

.promo-card:hover::after {
    left: 150%;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Rose gradient overlay on hover */
.promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    animation: promoImgZoom 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes promoImgZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.promo-card:hover img {
    transform: scale(1.12);
    filter: brightness(1.05) saturate(1.1);
    animation-play-state: paused;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card:hover img {
    transform: scale(1.08);
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 26, 23, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.promo-card:hover .promo-overlay {
    opacity: 1;
}

.promo-overlay p {
    color: var(--cream);
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    line-height: 1.3;
}

/* Promo Lightbox */
.promo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(42, 26, 23, 0.96);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.promo-lightbox[aria-hidden="false"] {
    display: flex;
}

.promo-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.promo-lightbox-content p {
    color: var(--cream);
    margin: 16px 0 0 0;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    text-align: center;
}

.promo-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(245, 239, 230, 0.1);
    color: var(--cream);
    border: 1px solid rgba(245, 239, 230, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-lightbox-close:hover {
    background: var(--rose-500);
    border-color: var(--rose-500);
}

@media (max-width: 640px) {
    .promo-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
}

/* ==========================================================================
   SECTION DECO (header ornament)
   ========================================================================== */

.section-deco {
    margin: 28px auto 36px;
    text-align: center;
    max-width: 1200px;
    padding: 0 24px;
}

.section-deco img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .section-deco img { height: 200px; }
}

/* ==========================================================================
   SERVICES SLIDE STRIP
   ========================================================================== */

.services-slide-strip {
    margin: 24px 0 32px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 16px;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.services-slide-strip::-webkit-scrollbar {
    height: 6px;
}

.services-slide-strip::-webkit-scrollbar-thumb {
    background: rgba(168, 124, 90, 0.3);
    border-radius: 3px;
}

.services-slide-strip img {
    height: 50px;
    width: auto;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.services-slide-mockup img {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .services-slide-strip img { height: 40px; }
}
