/* ---------- Design tokens ---------- */
:root{
  --sage: #9CA687;
  --sage-dark: #7C8768;
  --gold: #AE8A4E;
  --cream: #FAF7F1;
  --cream-alt: #F2EEE3;
  --ink: #2B2A24;
  --ink-soft: #5A5848;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 14px;
  --shadow: 0 12px 30px rgba(43, 42, 36, .12);
  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3{ font-family: var(--font-serif); font-weight: 600; line-height: 1.15; margin: 0 0 .5em; }
p{ margin: 0 0 1em; }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow{
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 .6em;
}
.center{ text-align:center; }
.section-lead.center{ max-width: 560px; margin-left:auto; margin-right:auto; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn{
  display:inline-block;
  padding: .85em 1.8em;
  border-radius: 999px;
  font-weight: 500;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
}
.btn-primary{
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(174,138,78,.35);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 22px rgba(174,138,78,.45); }
.btn-outline{
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,.15); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(250,247,241,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,42,36,.06);
}
.header-inner{
  display:flex; align-items:center; gap: 24px;
  padding: 12px 24px;
}
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand-logo{ width: 44px; height:44px; border-radius:50%; object-fit:cover; }
.brand-text{
  font-family: var(--font-serif);
  font-weight:700; font-size:1.15rem; letter-spacing:.03em;
  display:flex; flex-direction:column; line-height:1.1;
}
.brand-text small{
  font-family: var(--font-sans); font-weight:400; text-transform:uppercase;
  font-size:.55rem; letter-spacing:.22em; color: var(--ink-soft);
}
.nav{ display:flex; gap: 28px; }
.nav a{ font-size:.92rem; font-weight:500; color: var(--ink-soft); }
.nav a:hover{ color: var(--gold); }
.header-cta{ padding: .6em 1.4em; font-size: .85rem; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:6px;
}
.nav-toggle span{ width:24px; height:2px; background: var(--ink); border-radius:2px; transition:.25s; }

/* ---------- Hero ---------- */
.hero{
  background-size: cover;
  background-position: center;
  min-height: 78vh;
  display:flex; align-items:center;
  color: var(--white);
}
.hero-inner{ max-width: 640px; padding-top: 40px; padding-bottom: 40px; }
.hero .eyebrow{ color: #E7D9B8; }
.hero h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--white); }
.hero-sub{ font-size: 1.1rem; color: rgba(255,255,255,.88); max-width: 480px; }
.hero-actions{ display:flex; gap: 16px; flex-wrap: wrap; margin-top: 1.4em; }

/* ---------- Marquee ---------- */
.marquee{
  background: var(--sage);
  color: var(--white);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee-track{
  display:inline-flex; gap: 14px;
  animation: scroll-left 28s linear infinite;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: .03em;
}
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section{ padding: 96px 0; }
.section h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); }

/* Sobre */
.sobre-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items:center;
}
.sobre-img img{
  border-radius: var(--radius); box-shadow: var(--shadow);
  width:100%; height: 460px; object-fit: cover;
}
.sobre-badges{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 1.4em; }
.sobre-badges span{
  background: var(--cream-alt);
  border-radius: 999px;
  padding: .5em 1.1em;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* Menu */
.menu-section{ background: var(--cream-alt); }
.menu-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
}
.menu-card{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.menu-card:hover{ transform: translateY(-6px); }
.menu-card img{ width:100%; height: 220px; object-fit: cover; }
.menu-card-body{ padding: 24px; }
.menu-card-body h3{ font-size: 1.4rem; margin-bottom:.35em; }
.menu-card-body p{ color: var(--ink-soft); font-size: .93rem; margin:0; }
.menu-cta{ text-align:center; margin-top: 48px; }

/* Galeria */
.galeria-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px;
}
.galeria-grid img{
  width:100%; height: 260px; object-fit: cover;
  border-radius: var(--radius);
  transition: transform .35s ease;
}
.galeria-grid img:hover{ transform: scale(1.03); }

/* Localização */
.loc-grid{
  display:grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items:stretch;
}
.loc-list{ list-style:none; padding:0; margin: 1.6em 0; display:flex; flex-direction:column; gap: 18px; }
.loc-list li{ display:flex; flex-direction:column; gap:2px; }
.loc-list strong{ font-size:.8rem; text-transform:uppercase; letter-spacing:.08em; color: var(--gold); }
.loc-list a:hover{ color: var(--gold); }
.loc-social{ display:flex; gap: 14px; margin-top: 1.2em; }
.loc-social a{
  border: 1px solid rgba(43,42,36,.15);
  border-radius: 999px;
  padding: .55em 1.3em;
  font-size: .85rem;
  font-weight:500;
}
.loc-social a:hover{ border-color: var(--gold); color: var(--gold); }
.loc-map{
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.loc-map iframe{ width:100%; height:100%; min-height: 380px; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 40px 0;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap: 16px;
}
.footer-brand .brand-text{ color: var(--white); }
.footer-brand .brand-text small{ color: rgba(255,255,255,.55); }
.footer-inner p{ margin:0; font-size:.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .sobre-grid, .loc-grid{ grid-template-columns: 1fr; }
  .sobre-img img{ height: 320px; }
  .menu-grid{ grid-template-columns: 1fr 1fr; }
  .galeria-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px){
  .nav{
    position:absolute; top: 100%; left:0; right:0;
    background: var(--cream);
    flex-direction:column; gap:0;
    max-height:0; overflow:hidden;
    transition: max-height .3s ease;
    border-bottom: 1px solid rgba(43,42,36,.08);
  }
  .nav.open{ max-height: 320px; }
  .nav a{ padding: 16px 24px; border-top: 1px solid rgba(43,42,36,.06); }
  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }
  .menu-grid{ grid-template-columns: 1fr; }
  .galeria-grid{ grid-template-columns: 1fr 1fr; }
  .galeria-grid img{ height: 180px; }
  .section{ padding: 64px 0; }
  .hero{ min-height: 88vh; }
}
