:root {
    --cream: #FFFDF9;
    --warm-white: #FFFDF9;
    --charcoal: #1E1E1E;
    --soft-charcoal: #2D2A26;
    --amber-accent: #D97706;
    --amber-deep: #B45309;
    --amber-light: #FDF6E2;
    --amber-border: #F7E7C4;
    --text-body: #3A3530;
    --text-muted: #6E665E;
    --border-soft: #F1E9DB;
    --shadow-sm: 0 1px 2px rgba(30, 30, 30, 0.03);
    --shadow-md: 0 4px 20px rgba(30, 30, 30, 0.05);
    --shadow-lg: 0 12px 40px rgba(30, 30, 30, 0.08);
    --shadow-xl: 0 20px 60px rgba(30, 30, 30, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --transition-smooth: 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--warm-white);
    color: var(--text-body);
    line-height: 1.7;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
.serif {
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: 0.015em;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.1;
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
    color: #f8dbad(0 51% 42% / 0.945);
}
h2 {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    line-height: 1.2;
    font-weight: 500;
}
h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    line-height: 1.3;
    font-weight: 500;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(235, 222, 195, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-smooth);
    padding: 0 1.5rem;
}
.nav.scrolled {
    border-bottom-color: var(--border-soft);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--transition-smooth), transform 0.3s ease;
}
.logo-img {
    height: 85px;          /* adjust to fit your logo proportionally */
    width: auto;
    display: block;
}
.nav-logo span {
    color: var(--amber-accent);
}
.nav-logo:hover {
    transform: scale(1.01);
}
.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color var(--transition-smooth);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber-accent);
    transition: width var(--transition-smooth);
    border-radius: 1px;
}
.nav-links a:hover {
    color: var(--amber-accent);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    background: var(--charcoal);
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: all var(--transition-smooth) !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.03em !important;
}
.nav-cta:hover {
    background: var(--amber-accent) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.nav-cta::after {
    display: none !important;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition-smooth);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        padding: 7rem 2rem 2rem;
        gap: 1.8rem;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-smooth);
        z-index: 100;
    }
    .nav-links.active {
        right: 0;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-links a {
        font-size: 1.05rem;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 1.5rem 4rem;
    background-color: var(--charcoal);
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1563729784474-d77dbb933a9e?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    z-index: 0;
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--charcoal) 0%, rgba(30, 30, 30, 0.6) 50%, transparent 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-accent);
    margin-bottom: 1.4rem;
    border: 1px solid rgba(217, 119, 6, 0.4);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease forwards 0.1s;
}
.hero h1 em {
    font-style: italic;
    color: var(--amber-accent);
    font-weight: 500;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: #E8E2D9;
    margin-bottom: 2.6rem;
    font-weight: 300;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.5s;
}
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition-smooth);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.btn-primary {
    background: var(--amber-accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--amber-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}
.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
}
.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.section {
    padding: 6rem 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 0.6rem;
    display: block;
}
.section h2 {
    margin-bottom: 1.2rem;
}
.section-intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 3.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text p {
    margin-bottom: 1.4rem;
    color: var(--text-body);
    line-height: 1.75;
}
.about-text .highlight {
    color: var(--amber-deep);
    font-weight: 500;
}
.about-visual {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber-border) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(247, 231, 196, 0.4);
}
.about-visual-inner {
    text-align: center;
    padding: 2.5rem;
}
.big-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6.5rem;
    font-weight: 500;
    color: var(--amber-deep);
    line-height: 1;
    opacity: 0.85;
    display: inline-block;
}
.big-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.6rem;
    font-weight: 500;
}
.about-visual .decorative-line {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--amber-accent);
    border-radius: 1px;
}
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-visual {
        aspect-ratio: 3/2;
        order: -1;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.service-card {
    background: var(--warm-white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.service-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--amber-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
    z-index: 2;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #EFE7DA;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.08);
}
.service-card-content {
    padding: 2.2rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.map-section {
    background: #FAF5EB;
    padding: 6rem 1.5rem;
}
.map-section-inner {
    max-width: 1140px;
    margin: 0 auto;
}
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    aspect-ratio: 16/8;
    position: relative;
    background: #EFE7DA;
}
@media (max-width: 768px) {
    .map-container { aspect-ratio: 4/3; }
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.map-info-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    align-items: flex-start;
}
.map-info-card {
    flex: 1;
    min-width: 240px;
    background: var(--warm-white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    text-align: center;
    transition: all var(--transition-smooth);
}
.map-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.map-info-card .info-icon {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    transition: transform 0.3s ease;
    display: inline-block;
}
.map-info-card:hover .info-icon {
    transform: scale(1.15);
}
.map-info-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}
.map-info-card p,
.map-info-card a {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-smooth);
}
.map-info-card a:hover {
    color: var(--amber-accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.contact-item .ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--amber-light);
    border: 1px solid var(--amber-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}
.contact-item .ci-text strong {
    display: block;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.contact-item .ci-text a,
.contact-item .ci-text span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color var(--transition-smooth);
}
.contact-item .ci-text a:hover {
    color: var(--amber-accent);
}

.events-box {
    background: var(--amber-light);
    border: 1px solid var(--amber-border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    margin-top: 1rem;
}
.events-box h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.events-list {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.events-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.events-list li::before {
    content: '✦';
    color: var(--amber-accent);
    font-size: 0.7rem;
}

.contact-visual {
    background: linear-gradient(150deg, var(--amber-light) 0%, #FAF3E3 100%);
    border: 1px solid var(--amber-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: 100%;
}
.contact-visual .ornament {
    font-size: 3.2rem;
    opacity: 0.7;
}
.contact-visual p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.65;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer {
    background: var(--charcoal);
    color: #A39E98;
    text-align: center;
    padding: 3rem 1.5rem;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}
.footer .footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    color: #FFFDF9;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.footer .footer-name span {
    color: var(--amber-accent);
}
.footer a {
    color: #D6CEC4;
    text-decoration: none;
    transition: color var(--transition-smooth);
}
.footer a:hover {
    color: var(--amber-accent);
}

/* Social icons container */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #D6CEC4;
    transition: all var(--transition-smooth);
}
.footer-social a:hover {
    background: var(--amber-accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.footer-social svg {
    width: 20px;
    height: 20px;
}

.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #1e1e1e;
    color: #fff;
    padding: 0.75rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.16);
    transition: all var(--transition-bounce);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: floatIn 0.6s ease forwards 1.4s;
}
@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    background: #25D366;
}
.floating-whatsapp .fw-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.floating-whatsapp .fw-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulseRing 2.6s ease-out infinite;
    pointer-events: none;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.16); opacity: 0; }
}
@media (max-width: 600px) {
    .floating-whatsapp {
        bottom: 18px;
        right: 14px;
        padding: 0.65rem 1.15rem;
        font-size: 0.82rem;
        gap: 0.45rem;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    max-width: 320px;
    margin: 0 auto;
}
.section-divider .line {
    flex: 1;
    height: 1px;
    background: var(--border-soft);
}
.section-divider .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--amber-accent);
    flex-shrink: 0;
    animation: breathe 3s ease-in-out infinite;
}
@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}
