/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream:   #faf8f2;
    --white:   #ffffff;
    --border:  #e4ddd0;
    --gold:    #b8872a;
    --gold-lt: #d4a845;
    --blue:    #6b8fa3;
    --dark:    #1a1917;
    --darker:  #111110;
    --text:    #2c2a27;
    --muted:   #7a7268;

    --font-script: 'Dancing Script', cursive;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Inter', system-ui, sans-serif;

    --container: 1100px;
    --nav-h: 70px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Nav ── */
#nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    height: var(--nav-h);
    transition: background .3s, box-shadow .3s;
}

#nav.scrolled {
    background: rgba(26,25,23,.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-script);
    font-size: 1.7rem;
    color: var(--gold-lt);
    letter-spacing: .02em;
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: .55rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: -2px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    font-size: .75rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    transition: color .2s;
}

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

.nav-cta {
    padding: .45rem 1.2rem;
    border: 1px solid rgba(184,135,42,.6) !important;
    color: var(--gold-lt) !important;
    border-radius: 2px;
    transition: background .2s, border-color .2s !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--white);
    transition: transform .25s, opacity .25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--nav-h) 2rem 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--darker);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17,17,16,.5) 0%,
        rgba(17,17,16,.65) 60%,
        rgba(17,17,16,.8) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 700px;
}

.hero-eyebrow {
    font-size: .7rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 1.6rem;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -.01em;
    margin-bottom: 1.4rem;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-lt);
}

.hero-sub {
    font-size: .95rem;
    color: rgba(255,255,255,.62);
    max-width: 460px;
    margin: 0 auto 2.8rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    gap: .85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,.4);
    transition: color .2s;
    animation: bounce 2s infinite;
}

.hero-scroll svg { width: 28px; height: 28px; }
.hero-scroll:hover { color: rgba(255,255,255,.8); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ── */
.btn-gold {
    display: inline-block;
    padding: .8rem 2rem;
    background: var(--gold);
    color: var(--white);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s;
}

.btn-gold:hover { background: var(--gold-lt); }

.btn-outline {
    display: inline-block;
    padding: .8rem 2rem;
    border: 1px solid rgba(255,255,255,.35);
    color: var(--white);
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background .2s, border-color .2s;
}

.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

/* ── Sections ── */
.section { padding: 6rem 2rem; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark  { background: var(--dark); color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; }
.container-narrow { max-width: 680px; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header.light .section-label { color: var(--gold-lt); }
.section-header.light .section-title { color: var(--white); }

.section-label {
    display: block;
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .7rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -.01em;
    line-height: 1.15;
}

/* ── Sobre Nós ── */
.sobre-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-b-placeholder {
    width: 72px;
    height: 72px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--gold);
}

.section-script {
    font-family: var(--font-script);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--text);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.sobre-texto {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.sobre-texto p {
    margin-bottom: 1.2rem;
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.9;
}

.sobre-texto em {
    font-style: italic;
    color: var(--text);
    font-family: var(--font-serif);
    font-size: 1.05em;
}

.sobre-assinatura {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--gold);
    text-align: center;
    margin-top: 2rem;
}

/* ── Ementa ── */
.menu-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 2.5rem;
    -webkit-overflow-scrolling: touch;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
    padding: .8rem 1.4rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1.5px;
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 300;
    letter-spacing: .08em;
    color: var(--muted);
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
}

.menu-tab:hover { color: var(--text); }

.menu-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-secao-titulo {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 2rem;
}

.menu-lista { max-width: 720px; }

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
}

.menu-row:first-child { border-top: 1px solid var(--border); }

.menu-row-continuation .menu-row-left { padding-left: 1.2rem; }

.menu-row-left {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    flex: 1;
    min-width: 0;
}

.item-nome {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--text);
}

.item-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.5;
}

.item-preco {
    font-size: .9rem;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 400;
}

/* Bebidas sub-sections */
.bebidas-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem 3rem;
}

.bebidas-subtitulo {
    font-family: var(--font-serif);
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

.menu-legal {
    margin-top: 2.5rem;
    font-size: .72rem;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.6;
    opacity: .8;
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(255,255,255,.04);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder {
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder span {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(255,255,255,.25);
    font-size: .85rem;
    text-align: center;
    padding: 1rem;
}

.gallery-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: .72rem;
    color: rgba(255,255,255,.22);
}

.gallery-note code {
    font-family: monospace;
    background: rgba(255,255,255,.07);
    padding: .1em .35em;
    border-radius: 2px;
}

/* ── Horários & Reservas ── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 5rem;
    align-items: start;
}

.col .section-label { display: block; margin-bottom: .6rem; }
.col .section-title { margin-bottom: 1.8rem; }

.hours-list { margin-top: .5rem; }

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
    font-size: .88rem;
}

.hours-row dt { font-weight: 400; color: var(--text); }
.hours-row dd { color: var(--muted); text-align: right; font-size: .82rem; }
.hours-row.closed dt, .hours-row.closed dd { color: #bbb3aa; }

.reserve-text {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 400px;
}

.reserve-actions { display: flex; flex-direction: column; gap: .85rem; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1.5rem;
    background: #25d366;
    color: var(--white);
    border-radius: 3px;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s;
    max-width: 280px;
}

.btn-whatsapp:hover { background: #1fba59; }
.btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1.5rem;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 3px;
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: border-color .2s, background .2s, color .2s;
    max-width: 280px;
}

.btn-phone:hover { border-color: var(--dark); background: var(--dark); color: var(--white); }
.btn-phone svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Localização ── */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

.location-map iframe {
    border-radius: 3px;
    filter: grayscale(.3) contrast(1.05);
}

.location-info { display: flex; flex-direction: column; gap: 2rem; }

.location-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(255,255,255,.8);
}

.location-block svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: .1rem; color: var(--gold-lt); }

.location-block strong {
    display: block;
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: .4rem;
    font-weight: 400;
}

.location-block p { font-size: .9rem; line-height: 1.6; }

.location-block a {
    display: inline-block;
    margin-top: .4rem;
    font-size: .78rem;
    color: rgba(255,255,255,.45);
    border-bottom: 1px solid rgba(255,255,255,.15);
    transition: color .2s;
}

.location-block a:hover { color: rgba(255,255,255,.85); }

.closed-today { color: rgba(255,100,80,.8); font-size: .9rem; }

/* ── Footer ── */
footer {
    background: var(--darker);
    color: rgba(255,255,255,.4);
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    font-size: .82rem;
    line-height: 2;
}

.footer-brand {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--gold-lt);
    line-height: 1;
    margin-bottom: .2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .1rem;
}

.footer-brand span {
    font-family: var(--font-sans);
    font-size: .55rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

footer a { color: rgba(255,255,255,.5); transition: color .2s; }
footer a:hover { color: rgba(255,255,255,.85); }

.footer-social {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    color: rgba(255,255,255,.4);
    transition: color .2s, border-color .2s;
}

.footer-social a:hover { color: var(--gold-lt); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

.footer-copy {
    margin-top: 1.2rem;
    font-size: .72rem;
    color: rgba(255,255,255,.2);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 3rem; }
    .location-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-lista { max-width: 100%; }
    .bebidas-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 4rem 1.25rem; }
    .nav-inner { padding: 0 1.25rem; }
    .nav-links { display: none; flex-direction: column; align-items: stretch; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(26,25,23,.98); padding: 1.5rem; gap: 0; border-top: 1px solid rgba(255,255,255,.08); }
    .nav-links.open { display: flex; }
    .nav-links li a { display: block; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .82rem; }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-cta { border: none !important; color: var(--gold-lt) !important; }
    .nav-toggle { display: flex; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .menu-tab { padding: .7rem 1rem; font-size: .7rem; }
    .btn-whatsapp, .btn-phone { max-width: 100%; }
}
