:root {
    --wine: #7a1f2b;
    --wine-2: #9c2c3a;
    --cream: #fbf3e6;
    --cream-2: #f2e6d2;
    --olive: #4a5d3a;
    --ink: #2c211a;
    --muted: #8a7c6c;
    --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink); line-height: 1.65; background: var(--cream);
}
h1, h2, h3, .logo { font-family: 'Fraunces', Georgia, serif; }
.accent-italic { font-style: italic; font-weight: 500; color: var(--wine); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- header ---------- */
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251,243,230,.94); backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(122,31,43,.12);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 25px; color: var(--wine); text-decoration: none; }
.logo i { color: var(--olive); font-size: 20px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 14.5px; font-weight: 600; transition: color .15s ease; }
.nav-links a:hover { color: var(--wine); }
.nav-toggle { display: none; background: none; border: none; color: var(--wine); font-size: 20px; cursor: pointer; }

.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 28px; border-radius: 999px;
    font-weight: 700; font-size: 14px;
    text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn-small { padding: 9px 18px; font-size: 13px; }
.btn-wine { background: linear-gradient(135deg, var(--wine), var(--wine-2)); color: #fff; box-shadow: 0 10px 24px -8px rgba(122,31,43,.55); }
.btn-wine:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(122,31,43,.7); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-outline-wine { background: transparent; color: var(--wine); border-color: rgba(122,31,43,.4); }
.btn-outline-wine:hover { border-color: var(--wine); background: rgba(122,31,43,.06); }

/* ---------- hero slider ---------- */
.hero { position: relative; height: 90vh; min-height: 540px; overflow: hidden; color: #fff; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
    background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(45,10,15,.35) 0%, rgba(45,10,15,.55) 55%, rgba(45,10,15,.9) 100%);
}
.hero-inner {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 0 24px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
    padding: 7px 18px; border-radius: 999px;
    font-weight: 600; font-size: 13px; margin-bottom: 22px;
}
.hero h1 { font-size: 62px; line-height: 1.08; max-width: 760px; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: #f3c98a; font-weight: 500; }
.hero p { max-width: 520px; color: #f2e6d8; font-size: 16.5px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-dots { position: absolute; z-index: 2; bottom: 26px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: background .2s ease, transform .2s ease; padding: 0; }
.hero-dot.active { background: #f3c98a; transform: scale(1.25); }

/* ---------- seções gerais ---------- */
.section { padding: 100px 0; }
.section-wine { background: var(--wine); color: #fff; }
.section-cream2 { background: var(--cream-2); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--olive); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.section-wine .eyebrow { color: #f3c98a; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section h2 { font-size: 40px; line-height: 1.1; margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 16px; }
.section-wine .section-lead { color: #e9d4c4; }

/* ---------- cardápio ---------- */
.menu-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.menu-tab {
    background: #fff; border: 1.5px solid var(--cream-2); color: var(--ink);
    padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 13.5px;
    cursor: pointer; transition: all .18s ease;
}
.menu-tab.active, .menu-tab:hover { background: var(--wine); border-color: var(--wine); color: #fff; }
.menu-grid { display: none; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; }
.menu-grid.active { display: grid; }
.menu-item { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding-bottom: 14px; border-bottom: 1px dashed rgba(122,31,43,.25); }
.menu-item-name { font-weight: 700; font-size: 16px; }
.menu-item-desc { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.menu-item-price { color: var(--wine); font-weight: 800; font-size: 16px; white-space: nowrap; }

/* ---------- galeria ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ---------- sobre ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px -24px rgba(122,31,43,.35); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 13px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; }
.about-list i { color: var(--olive); margin-top: 3px; }

/* ---------- depoimentos ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { background: #fff; border: 1px solid var(--cream-2); border-radius: var(--radius); padding: 28px; text-align: left; }
.testimonial .stars { color: #d9a441; font-size: 13px; margin-bottom: 14px; }
.testimonial p { color: #5a4d3f; font-size: 14.5px; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 700; font-size: 13.5px; color: var(--wine); }

/* ---------- contato / mapa ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.contact-card { background: #fff; border-radius: var(--radius); padding: 36px 32px; box-shadow: 0 20px 40px -24px rgba(122,31,43,.2); }
.contact-card h3 { font-size: 26px; margin-bottom: 18px; color: var(--wine); }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 15px; font-size: 14.5px; color: var(--ink); }
.contact-row i { color: var(--olive); margin-top: 3px; width: 16px; }
.contact-card .btn { margin-top: 14px; width: 100%; justify-content: center; }
.map-frame { border-radius: var(--radius); overflow: hidden; min-height: 320px; box-shadow: 0 20px 40px -24px rgba(122,31,43,.2); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ---------- footer ---------- */
.footer { background: #2c211a; color: #b8a892; padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer .logo { font-size: 19px; color: #fff; }
.footer .logo i { color: #f3c98a; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.footer-social a:hover { background: var(--wine); transform: translateY(-3px); }
.footer p { width: 100%; text-align: center; font-size: 12px; margin-top: 6px; color: #786b5a; }

@media (max-width: 960px) {
    .hero h1 { font-size: 46px; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 1; }
    .about-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .hero h1 { font-size: 36px; }
    .section { padding: 72px 0; }
    .section h2 { font-size: 30px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item.wide { grid-column: span 1; }
}
