@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    /* Colors from design.md */
    --vibrant-purple: #703875;
    --sage-green: #a1b199;
    --pale-cream: #f6f4eb;
    --pale-lilac: #e7e4f1;
    --dark-grey: #333333;

    /* Accents */
    --white: #ffffff;
    --wood-brown: #b19a7a;
    --pale-pink: #f6e8e7;

    --header-height: 100px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FCFBFA;
    /* Stark, elegant off-white */
    color: var(--dark-grey);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 120px 0;
}

/* Header */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease, height 0.3s ease, border-bottom 0.3s ease;
}

header.sticky {
    height: 85px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(112, 56, 117, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

header.sticky .nav-links a {
    color: var(--vibrant-purple);
}

header.sticky .logo-text {
    color: var(--vibrant-purple);
}

header.sticky .lang-btn {
    border-color: var(--vibrant-purple);
    color: var(--vibrant-purple);
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    gap: 2rem;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--white);
    color: var(--sage-green);
}

.nav-cta-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    background: var(--vibrant-purple);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    background: var(--dark-grey);
    color: var(--white);
    transform: translateY(-2px);
}

header.sticky .nav-cta-btn {
    box-shadow: none;
}

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
    padding-right: 2rem;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

header.sticky .logo-img {
    height: 55px;
    filter: none;
    /* In case we want to invert it on transparent */
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--vibrant-purple);
}

.nav-links {
    justify-self: center;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
}

.nav-links a:hover {
    color: var(--vibrant-purple);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

header.sticky .mobile-menu-btn {
    color: var(--vibrant-purple);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../assets/hero.png') center/cover no-repeat;
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    display: none;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--vibrant-purple);
    color: var(--white);
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    background: var(--dark-grey);
    color: var(--white);
    transform: translateY(-3px);
}



.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-grey);
}

/* Purpose Section */
.purpose {
    text-align: center;
    background-color: var(--white);
}

/* Services Section */
#servicios {
    background-color: var(--pale-cream);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--dark-grey);
    text-align: center;
}

.section-subtitle {
    color: var(--dark-grey);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img img {
    scale: 1.1;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--vibrant-purple);
}

/* Value Props */
.values {
    background-color: var(--sage-green);
    color: var(--white);
}

.values .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--vibrant-purple);
    margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.faq {
    background-color: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vibrant-purple);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--dark-grey);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/* About Section */
#nosotros {
    background-color: var(--white);
}

/* ── Owner / Meet the Founder Section ─────────────────────────────────── */
.owner-section {
    background-color: var(--pale-cream);
}

.owner-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 6rem;
    align-items: center;
}

/* Photo column */
.owner-photo-wrap {
    position: relative;
}

.owner-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(112, 56, 117, 0.15);
}

/* Decorative offset accent behind the photo */
.owner-photo-accent {
    position: absolute;
    top: 24px;
    left: -24px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--vibrant-purple);
    border-radius: 4px;
    opacity: 0.35;
    z-index: 0;
}

/* Bio column */
.owner-bio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.owner-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vibrant-purple);
    margin-bottom: 1.2rem;
}

.owner-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.05;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.owner-name em {
    font-style: italic;
    color: var(--vibrant-purple);
}

.owner-divider {
    width: 56px;
    height: 2px;
    background: var(--vibrant-purple);
    margin-bottom: 2rem;
}

.owner-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-grey);
    max-width: 480px;
}

.owner-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    border: 1.5px solid var(--vibrant-purple);
    color: var(--vibrant-purple);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.owner-cta:hover {
    background: var(--vibrant-purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    background-color: var(--pale-cream);
}

/* Contact Section */
#contacto {
    background-color: var(--pale-lilac);
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 5rem 4rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info p {
    font-size: 1.25rem;
    color: var(--dark-grey);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: var(--dark-grey);
}

.contact-details i {
    color: var(--vibrant-purple);
}

.contact-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
}

.wa-btn {
    background-color: #25D366;
    color: white;
    border: 1px solid #25D366;
}

.wa-btn:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
}

.im-btn {
    background-color: transparent;
    border: 1px solid var(--dark-grey);
    color: var(--dark-grey);
}

.im-btn:hover {
    background-color: var(--dark-grey);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #111111;
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h2 {
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--vibrant-purple);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--vibrant-purple);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ── Packages Include Section ──────────────────────────────────── */
.packages-section {
    background-color: var(--white);
}

.packages-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.packages-intro p {
    max-width: 550px;
    margin: 0 auto;
    color: var(--dark-grey);
    font-size: 1.05rem;
    line-height: 1.7;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.package-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
    background: var(--pale-cream);
    border: 1px solid transparent;
}

.package-item:hover {
    border-color: var(--vibrant-purple);
    background: var(--white);
}

.package-item i {
    color: var(--vibrant-purple);
    flex-shrink: 0;
}

.package-item p {
    font-size: 0.95rem;
    color: var(--dark-grey);
    line-height: 1.4;
}

/* ── Themed Cards Section ──────────────────────────────────────── */
.themed-section {
    background-color: var(--pale-cream);
}

.themed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.themed-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.themed-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(112, 56, 117, 0.1);
}

.themed-card i {
    color: var(--vibrant-purple);
    margin-bottom: 1.2rem;
}

.themed-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.featured-banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--vibrant-purple) 0%, #8B4789 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    border: 2px solid var(--wood-brown);
    box-shadow: 0 8px 30px rgba(112, 56, 117, 0.15);
}

.featured-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.featured-banner p {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

.featured-banner .featured-cta {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: var(--wood-brown);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
}

.featured-banner .featured-cta:hover {
    background: var(--pale-pink);
    color: var(--dark-grey);
    transform: translateY(-2px);
}

/* ── Bento Grid Events Section ─────────────────────────────────── */
.events-bento-section {
    background-color: var(--pale-cream);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(112, 56, 117, 0.12);
}

.bento-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
}

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

.bento-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
    color: var(--white);
}

.bento-content i {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--white);
    opacity: 0.9;
}

.bento-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.bento-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    display: none;
}

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

.bento-card.bento-large .bento-content p,
.bento-card.bento-wide .bento-content p {
    display: block;
}

/* ── How It Works Section ──────────────────────────────────────── */
.how-it-works-section {
    background-color: var(--white);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--pale-lilac), var(--vibrant-purple), var(--pale-lilac));
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--vibrant-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(112, 56, 117, 0.2);
    border: 4px solid var(--white);
}

.timeline-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--vibrant-purple);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.timeline-step p {
    font-size: 0.95rem;
    color: var(--dark-grey);
    line-height: 1.7;
    max-width: 220px;
}

/* ── Booking Form Section ──────────────────────────────────────── */
.booking-section {
    background: linear-gradient(180deg, var(--pale-lilac) 0%, var(--white) 100%);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(112, 56, 117, 0.08);
    border: 1px solid rgba(112, 56, 117, 0.06);
}

.booking-container h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.booking-container > p {
    text-align: center;
    color: var(--dark-grey);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-grey);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group label .optional {
    font-weight: 400;
    text-transform: none;
    opacity: 0.6;
    font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--dark-grey);
    background: var(--pale-cream);
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--vibrant-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(112, 56, 117, 0.08);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--vibrant-purple);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: #5a2d63;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 56, 117, 0.2);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Hide header initially on mobile — appears on scroll */
    header {
        --header-height: 70px;
        height: var(--header-height);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
    }

    header.sticky {
        height: 60px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    header.sticky .logo-img {
        height: 32px;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Logo — left side */
    .logo {
        padding: 0;
        margin: 0;
    }

    .logo-img {
        height: 40px;
        max-width: 160px;
        width: auto;
        margin: 0;
        object-fit: contain;
    }

    /* Right column: lang-btn + hamburger side by side */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin: 0;
        padding: 0;
    }

    .header-actions .nav-cta-btn {
        display: none;
        /* Hide WhatsApp button on mobile */
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-links a {
        color: var(--dark-grey);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-logo {
        display: block;
        width: 75vw;
        max-width: 75vw;
        height: auto;
        max-height: 35vh;
        object-fit: contain;
        margin: 0 auto 2.5rem;
        padding: 0;
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }

    .hero h1 {
        font-size: 2.2rem;
        padding-top: 0;
        margin-bottom: 0.5rem;
    }

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

    .hero-btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .hero-btns .btn {
        width: 80%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }

    .hero-btns .btn-secondary {
        margin-left: 0;
    }

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

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

    .contact-container {
        padding: 3rem 1.5rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .contact-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

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

    .footer-info img {
        margin: 0 auto 1.5rem;
        padding: 2%;
    }
}

@media (max-width: 768px) {
    .footer-info img {
        filter: none;
    }

    /* Owner section mobile */
    .owner-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .owner-photo-wrap {
        padding-left: 24px;
        max-width: 340px;
        margin: 0 auto;
    }

    .owner-name {
        font-size: 2.6rem;
    }

    .owner-bio p {
        max-width: 100%;
    }
}

/* Mobile Responsive - New Sections */
@media (max-width: 768px) {
    .packages-section {
        padding: 80px 0 60px;
    }

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

    .themed-section {
        padding: 80px 0 60px;
    }

    .themed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .themed-card {
        padding: 2rem 1.5rem;
    }

    .featured-banner {
        padding: 2rem 1.5rem;
    }

    .how-it-works-section {
        padding: 80px 0 60px;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .timeline::before {
        display: none;
    }

    .booking-section {
        padding: 80px 0 60px;
    }

    .booking-container {
        padding: 2rem 1.25rem;
        border-radius: 12px;
    }

    .booking-container h2 {
        font-size: 1.8rem;
    }

    .booking-container > p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .booking-form {
        gap: 1.25rem;
    }

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

    .form-group label {
        font-size: 0.75rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.85rem 1rem;
        font-size: 16px;
    }

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

    .submit-btn {
        padding: 1rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

/* Bento Grid Mobile Responsive */
@media (max-width: 768px) {
    .events-bento-section {
        padding: 80px 0 60px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }

    .bento-card {
        height: 220px;
    }

    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 1;
        height: 280px;
    }

    .bento-content h3 {
        font-size: 1rem;
    }

    .bento-content p {
        font-size: 0.85rem;
    }
}
