/* ============ VARIABLES ============ */
:root {
    --navy: #0e2c46;
    --navy-deep: #0a2238;
    --blue: #1ca9e0;
    --blue-soft: #eaf6fc;
    --brown: #7a4a24;
    --text: #2b3a47;
    --muted: #6b7c8a;
    --white: #ffffff;
    --bg-soft: #f6fafd;
    --shadow: 0 18px 45px rgba(14, 44, 70, 0.10);
    --shadow-sm: 0 8px 24px rgba(14, 44, 70, 0.08);
    --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(14, 44, 70, 0.06);
    transition: box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.brand-logo {
    height: 62px; width: 62px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    object-fit: contain;
    box-shadow: 0 4px 14px rgba(14, 44, 70, 0.12);
}

.main-nav {
    display: flex;
    gap: 34px;
}
.main-nav a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .8px;
    color: var(--navy);
    position: relative;
    padding: 6px 0;
    transition: color .25s ease;
}
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--blue);
    transition: width .3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a.active::after, .main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.ig-link {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border: 1.5px solid rgba(14, 44, 70, 0.15);
    border-radius: 50%;
    color: var(--navy);
    font-size: 18px;
    transition: all .3s ease;
}
.ig-link:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff; border-color: transparent;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none; border: none;
    font-size: 24px; color: var(--navy);
    cursor: pointer;
}

/* ============ HERO ============ */
.hero {
    padding: 150px 0 70px;
    background:
        radial-gradient(circle at 85% 15%, var(--blue-soft), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 50px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(48px, 6.5vw, 86px);
    line-height: .98;
    color: var(--navy);
    letter-spacing: -1px;
}
.hero-title .script {
    display: block;
    font-family: 'Sacramento', cursive;
    font-weight: 400;
    color: var(--blue);
    font-size: clamp(56px, 7vw, 96px);
    margin-top: -6px;
    letter-spacing: 1px;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 26px 0 22px;
    color: var(--brown);
}
.hero-divider .line {
    height: 2px; width: 60px;
    background: linear-gradient(90deg, transparent, var(--brown));
}
.hero-divider .line:last-child {
    background: linear-gradient(90deg, var(--brown), transparent);
}
.hero-divider i { font-size: 20px; }

.hero-sub {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}
.hero-sub .script-sub {
    display: block;
    font-family: 'Sacramento', cursive;
    font-weight: 400;
    color: var(--blue);
    font-size: clamp(30px, 3.6vw, 42px);
}

.hero-desc {
    margin: 22px 0 32px;
    color: var(--muted);
    font-size: 15.5px;
    max-width: 480px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: #fff;
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .8px;
    font-size: 14px;
    box-shadow: 0 14px 30px rgba(14, 44, 70, 0.28);
    transition: all .3s ease;
}
.btn-primary:hover {
    background: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(28, 169, 224, 0.38);
}

.hero-image {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3.4;
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.hero-image:hover img { transform: scale(1.08); }

/* ============ INFO CARDS ============ */
.info-cards { padding: 10px 0 30px; }
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: -50px;
}
.info-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(14, 44, 70, 0.04);
    transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(14,44,70,.14); }
.card-icon {
    flex-shrink: 0;
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid; place-items: center;
    font-size: 20px;
}
.card-label { font-size: 13px; color: var(--muted); display: block; }
.card-value {
    display: block;
    font-size: 19px;
    color: var(--navy);
    font-weight: 700;
    margin: 2px 0 8px;
}
.card-value.small { font-size: 14.5px; font-weight: 600; line-height: 1.4; }
.card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .25s ease;
}
.card-link:hover { gap: 11px; }

/* ============ SECTION HEAD ============ */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head > i { color: var(--brown); font-size: 24px; }
.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 44px);
    color: var(--navy);
    margin: 8px 0 4px;
}
.section-head p { color: var(--muted); font-size: 15px; }

/* ============ ABOUT ============ */
.about { padding: 80px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3.2;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 16px;
}
.about-text p { color: var(--muted); margin-bottom: 22px; }
.about-list { list-style: none; margin-bottom: 28px; }
.about-list li {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 0;
    font-weight: 500; color: var(--text);
}
.about-list li i {
    color: var(--blue);
    background: var(--blue-soft);
    width: 36px; height: 36px;
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 14px;
}
.btn-outline {
    display: inline-block;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s ease;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ============ MENU ============ */
.menu { padding: 80px 0; background: var(--bg-soft); }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.menu-item {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
    padding-bottom: 22px;
}
.menu-item:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.menu-img {
    height: 170px;
    background-size: cover;
    background-position: center;
}
.menu-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--navy);
    margin: 18px 22px 8px;
}
.menu-item p { color: var(--muted); font-size: 14px; margin: 0 22px; }

/* ============ GALLERY ============ */
.gallery { padding: 80px 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.g-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.g-item:hover img { transform: scale(1.1); }

/* ============ MAP ============ */
.map-section { padding: 70px 0 90px; background: var(--bg-soft); }
.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 8px solid #fff;
}
.map-wrap iframe { display: block; }

/* ============ FOOTER ============ */
.site-footer {
    position: relative;
    background: var(--navy-deep);
    color: #cdd9e3;
    padding-top: 70px;
}
.footer-wave {
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 28px;
    background:
        radial-gradient(circle at 12px -6px, transparent 12px, var(--navy-deep) 13px) repeat-x;
    background-size: 24px 28px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-logo {
    height: 90px; width: 90px;
    border-radius: 50%;
    background: #fff;
    padding: 6px;
    object-fit: contain;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}
.footer-name em {
    font-family: 'Sacramento', cursive;
    font-style: normal;
    color: var(--blue);
    font-size: 26px;
}
.footer-about p { font-size: 14.5px; line-height: 1.8; }
.footer-contact h4, .footer-social h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 18px;
    font-family: 'Playfair Display', serif;
}
.footer-contact a, .footer-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
    color: #cdd9e3;
    transition: color .25s ease;
}
.footer-contact a:hover { color: var(--blue); }
.footer-contact i { color: var(--blue); width: 18px; }
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.06);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease;
}
.social-pill i { font-size: 20px; }
.social-pill:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-2px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    text-align: center;
    font-size: 13.5px;
    color: #8ea3b4;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    right: 26px; bottom: 26px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 12px 22px 12px 16px;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    transition: all .3s ease;
    animation: wa-pulse 2.4s infinite;
}
.whatsapp-float i { font-size: 30px; }
.wa-text { display: flex; flex-direction: column; line-height: 1.2; }
.wa-text small { font-size: 11px; opacity: .9; }
.wa-text strong { font-size: 15px; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); background: #1ebe5b; }

@keyframes wa-pulse {
    0% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image { order: -1; aspect-ratio: 16/10; }
    .cards-grid { grid-template-columns: 1fr; margin-top: 30px; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { order: -1; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .main-nav {
        position: fixed;
        top: 84px; right: 0;
        width: 250px;
        height: calc(100vh - 84px);
        background: #fff;
        flex-direction: column;
        padding: 30px 26px;
        gap: 8px;
        box-shadow: -10px 0 40px rgba(0,0,0,.12);
        transform: translateX(100%);
        transition: transform .35s ease;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav a { padding: 12px 0; border-bottom: 1px solid #eef3f7; }
    .nav-toggle { display: block; }
}
@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .wa-text { display: none; }
    .whatsapp-float { padding: 16px; }
    .whatsapp-float i { font-size: 26px; }
    .hero { padding-top: 130px; }
}
