
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream: #F7F2E8;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --deep: #1A1208;
    --brown: #3D2B1F;
    --muted: #7A6A55;
    --white: #FDFAF4;
}

html { scroll-behavior: smooth; }

body {
    background: var(--cream);
    color: var(--deep);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 5vw;
    background: rgba(247,242,232,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    animation: fadeDown .8s ease both;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600; letter-spacing: .04em;
    color: var(--deep);
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    font-size: .8rem; font-weight: 400; letter-spacing: .14em;
    text-transform: uppercase; text-decoration: none;
    color: var(--brown); transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold); color: var(--deep);
    border: none; padding: .6rem 1.6rem;
    font-family: 'Jost', sans-serif; font-size: .78rem;
    letter-spacing: .12em; text-transform: uppercase;
    cursor: pointer; transition: background .3s, transform .2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 10rem 5vw 5rem 8vw;
    position: relative; z-index: 2;
}

.hero-tag {
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.4rem;
    animation: fadeUp .8s .3s ease both;
}
.hero-tag::before {
    content: ''; display: inline-block;
    width: 2.5rem; height: 1px;
    background: var(--gold); margin-right: .8rem; vertical-align: middle;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300; line-height: 1.08; letter-spacing: -.01em;
    color: var(--deep);
    animation: fadeUp .8s .45s ease both;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
    margin-top: 1.8rem;
    font-size: 1rem; line-height: 1.8; color: var(--muted);
    max-width: 38ch;
    animation: fadeUp .8s .6s ease both;
}

.hero-actions {
    display: flex; gap: 1.2rem; align-items: center;
    margin-top: 3rem;
    animation: fadeUp .8s .75s ease both;
}
.btn-primary {
    background: var(--deep); color: var(--cream);
    padding: 1rem 2.4rem; border: none;
    font-family: 'Jost', sans-serif; font-size: .82rem;
    letter-spacing: .12em; text-transform: uppercase;
    cursor: pointer; transition: background .3s, transform .2s;
    text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-2px); }
.btn-ghost {
    background: transparent; color: var(--deep);
    padding: 1rem 2rem; border: 1px solid var(--deep);
    font-family: 'Jost', sans-serif; font-size: .82rem;
    letter-spacing: .12em; text-transform: uppercase;
    cursor: pointer; transition: all .3s;
    text-decoration: none; display: inline-block;
}
.btn-ghost:hover { background: var(--deep); color: var(--cream); }

.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 4rem;
    animation: fadeUp .8s .9s ease both;
}
.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 600; color: var(--deep);
}
.stat-label {
    font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted); margin-top: .2rem;
}

.hero-right {
    position: relative; overflow: hidden;
}
.hero-img-wrap {
    position: absolute; inset: 0;
    animation: scaleIn 1.2s .2s ease both;
}
.hero-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(.92) saturate(1.1);
}
.hero-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
}

.hero-badge {
    position: absolute; bottom: 3rem; left: -2rem;
    background: var(--gold); color: var(--deep);
    width: 130px; height: 130px; border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; z-index: 5;
    animation: rotateBadge 20s linear infinite;
    box-shadow: 0 8px 32px rgba(201,168,76,.4);
}
.hero-badge .badge-inner {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600; line-height: 1.2;
}
.hero-badge .badge-sub { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .3rem; }

/* ── MARQUEE ── */
.marquee-bar {
    background: var(--deep); color: var(--gold);
    padding: .9rem 0; overflow: hidden;
    font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
.marquee-track {
    display: flex; width: max-content;
    animation: marquee 25s linear infinite;
}
.marquee-item { padding: 0 2.5rem; white-space: nowrap; }
.marquee-dot { color: var(--gold-light); }

/* ── SERVICES ── */
.section { padding: 7rem 8vw; }
.section-tag {
    font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.section-tag::before {
    content: ''; display: inline-block;
    width: 2rem; height: 1px; background: var(--gold);
    margin-right: .7rem; vertical-align: middle;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 300; line-height: 1.15;
    max-width: 18ch;
}
.section-title em { font-style: italic; color: var(--gold); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.service-card {
    background: var(--white);
    padding: 2.8rem 2.2rem;
    border: 1px solid rgba(201,168,76,0.15);
    position: relative; overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    cursor: default;
}
.service-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,18,8,.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    font-size: 2.2rem; margin-bottom: 1.5rem;
}
.service-num {
    position: absolute; top: 1.5rem; right: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 600;
    color: rgba(201,168,76,.1); line-height: 1;
}
.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 400;
    margin-bottom: .8rem;
}
.service-desc {
    font-size: .88rem; line-height: 1.8;
    color: var(--muted);
}

/* ── ABOUT / STORY ── */
.about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6rem; align-items: center;
    padding: 7rem 8vw;
    background: var(--deep);
    color: var(--cream);
}
.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: .8rem;
}
.about-img {
    overflow: hidden; position: relative;
}
.about-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
    filter: saturate(1.15);
}
.about-img:hover img { transform: scale(1.07); }
.about-img.tall { grid-row: span 2; }

.about-content .section-tag { color: var(--gold); }
.about-content .section-title { color: var(--cream); max-width: 22ch; }
.about-content p {
    margin-top: 1.5rem; font-size: .93rem; line-height: 1.9;
    color: rgba(247,242,232,.65); max-width: 44ch;
}
.about-features {
    display: flex; flex-direction: column; gap: .9rem;
    margin-top: 2rem;
}
.about-feature {
    display: flex; align-items: center; gap: .9rem;
    font-size: .85rem; letter-spacing: .04em;
}
.about-feature-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
}

/* ── MENU PREVIEW ── */
.menu-section { padding: 7rem 8vw; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 4rem;
}
.menu-card {
    position: relative; overflow: hidden;
    aspect-ratio: 3/4; cursor: pointer;
}
.menu-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
    filter: brightness(.85) saturate(1.1);
}
.menu-card:hover img { transform: scale(1.08); }
.menu-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,18,8,.9) 0%, transparent 60%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 1.5rem;
}
.menu-cat {
    font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .4rem;
}
.menu-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 400; color: var(--cream);
}

/* ── PROCESS ── */
.process {
    background: var(--white);
    padding: 7rem 8vw;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 5rem;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
}
.process-step {
    text-align: center; padding: 0 1.5rem;
    position: relative;
}
.step-num {
    width: 5rem; height: 5rem; border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-weight: 600; color: var(--gold);
    position: relative; z-index: 2;
    transition: background .3s, color .3s;
}
.process-step:hover .step-num { background: var(--gold); color: var(--deep); }
.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 400;
    margin-bottom: .6rem;
}
.step-desc { font-size: .82rem; line-height: 1.8; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 7rem 8vw; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(201,168,76,.15);
    position: relative;
}
.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; font-weight: 300;
    color: var(--gold); line-height: .7;
    margin-bottom: 1rem; display: block;
}
.testimonial-text {
    font-size: .9rem; line-height: 1.9;
    color: var(--brown); font-style: italic;
}
.testimonial-author {
    margin-top: 1.8rem; display: flex; align-items: center; gap: 1rem;
}
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 600; color: var(--deep);
}
.author-name {
    font-size: .85rem; font-weight: 500; letter-spacing: .04em;
}
.author-role { font-size: .72rem; color: var(--muted); margin-top: .15rem; }
.stars { color: var(--gold); font-size: .8rem; letter-spacing: .1em; margin-bottom: 1rem; }

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--deep);
    padding: 7rem 8vw;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
}
.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 300; color: var(--cream); line-height: 1.2;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-sub { font-size: .9rem; color: rgba(247,242,232,.55); margin-top: 1rem; max-width: 50ch; }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
.btn-gold {
    background: var(--gold); color: var(--deep);
    padding: 1.1rem 2.8rem; border: none;
    font-family: 'Jost', sans-serif; font-size: .82rem;
    letter-spacing: .12em; text-transform: uppercase;
    cursor: pointer; transition: background .3s, transform .2s;
    white-space: nowrap; text-decoration: none; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.cta-phone {
    font-size: .82rem; color: rgba(247,242,232,.5);
    letter-spacing: .06em;
}
.cta-phone a { color: var(--gold); text-decoration: none; }

/* ── FOOTER ── */
footer {
    background: #120D05;
    padding: 4rem 8vw 2.5rem;
    color: rgba(247,242,232,.5);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .82rem; line-height: 1.8; max-width: 28ch; }
.footer-col h4 {
    font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
    font-size: .82rem; color: rgba(247,242,232,.5);
    text-decoration: none; transition: color .3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(247,242,232,.08);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .75rem;
}
.social-links { display: flex; gap: 1.2rem; }
.social-links a {
    color: rgba(247,242,232,.5); text-decoration: none;
    font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
    transition: color .3s;
}
.social-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { transform: scale(1.08); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.social-links {
    display: flex;
    gap: 15px; /* space between icons */
}

.social-links a {
    font-size: 28px;       /* icon size */
    color: #333;           /* default icon color */
    transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
    transform: scale(1.2); /* slightly grow icon on hover */
}

.social-links a:nth-child(1):hover { color: #E1306C; } /* Instagram pink */
.social-links a:nth-child(2):hover { color: #3b5998; } /* Facebook blue */
.social-links a:nth-child(3):hover { color: #fa9090; } /* TikTok black */
.social-links a:nth-child(4):hover { color: #0077b5; } /* LinkedIn blue */

/* Scroll reveal */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1.2rem;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    box-shadow: 0 12px 20px rgba(0,0,0,0.24);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(0,0,0,0.30);
}

.whatsapp-float i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 0.8rem;
        bottom: 0.9rem;
        padding: 0.62rem 0.9rem;
        font-size: 0.9rem;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { height: 55vw; }
    .hero-left { padding: 8rem 6vw 4rem; }
    .hero-badge { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .about { grid-template-columns: 1fr; padding: 5rem 6vw; }
    .menu-grid { grid-template-columns: repeat(2,1fr); }
    .process-steps { grid-template-columns: repeat(2,1fr); gap: 3rem; }
    .process-steps::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-banner { grid-template-columns: 1fr; }
    .cta-actions { align-items: flex-start; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    nav { padding: 1rem 5vw; }
    .nav-links { display: none; }
}