/* =========================================================
   BONJOUR PADARIA ARTESANAL — design tokens
   Verde floresta + creme + dourado envelhecido + tijolo
   Serif editorial (Cormorant Garamond) + sans limpa (Manrope)
   ========================================================= */

:root{
  --forest:      #1E2A1F;   /* verde muito escuro / principal */
  --forest-soft: #2B3B2C;
  --cream:       #F6F0E4;   /* fundo principal */
  --cream-2:     #EFE6D3;   /* bege quente / destaque */
  --gold:        #B4915A;   /* dourado envelhecido */
  --gold-soft:   #D8C39C;
  --brick:       #8A4432;   /* marrom tijolo */
  --ink:         #241F19;   /* preto suave, levemente mais quente */
  --ink-soft:    #5C5245;   /* texto secundário, mesma temperatura do ink */
  --paper:       #FBF8F1;
  --line:        rgba(36,31,25,0.10);   /* bordas sutis unificadas */
  --line-dark:   rgba(246,240,228,0.14);

  --serif: 'Cormorant Garamond', 'Playfair Display', serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1080px;
  --radius: 6px;
  --radius-lg: 14px;

  --shadow-sm: 0 2px 10px rgba(30,42,31,0.05);
  --shadow-md: 0 18px 40px rgba(30,42,31,0.08);
  --shadow-lg: 0 30px 70px rgba(20,20,15,0.16);
  --ease: cubic-bezier(.4,0,.2,1);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth; font-size: clamp(11.5px, 0.6vw + 9px, 13px);}
body{
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1,h2,h3,h4{
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--forest);
  text-wrap: balance;
}

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* ---------- eyebrow / kicker ---------- */
.kicker{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brick);
  font-weight: 700;
  margin-bottom: 18px;
}
.kicker::before{
  content:"";
  width: 30px;
  height: 1px;
  background: var(--brick);
  display:inline-block;
  opacity: 0.7;
}

/* ---------- wheat divider (signature element) ---------- */
.wheat-divider{
  width: 46px;
  height: 30px;
  margin: 28px auto;
  opacity: 0.85;
}
.wheat-divider.left{margin:20px 0;}
.wheat-divider path{
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
}
.wheat-divider.on-dark path{ stroke: var(--gold-soft); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 1px 2px rgba(30,42,31,0.08);
}
.btn-primary:hover{
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline{
  border: 1px solid rgba(246,240,228,0.55);
  color: var(--cream);
}
.btn-outline:hover{
  background: rgba(246,240,228,0.08);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline.dark{ color: var(--forest); border-color: rgba(30,42,31,0.3); }
.btn-outline.dark:hover{ background: rgba(30,42,31,0.05); border-color: var(--forest); }
.btn-whatsapp{
  background: var(--forest);
  color: var(--cream);
}
.btn-whatsapp:hover{
  background: var(--forest-soft);
  transform: translateY(-2px);
}

/* ---------- header ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  padding: 24px 0;
  background: linear-gradient(180deg, rgba(20,28,20,0.55) 0%, rgba(20,28,20,0) 100%);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header .wrap{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap: 24px;
}
.site-header.scrolled{
  background: var(--forest);
  padding: 14px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.logo img{
  height: 58px;
  width: auto;
  display: block;
  border-radius: 50%;
}
.logo{
  display: flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.logo span{ color: var(--gold-soft); font-style: italic; }

.main-nav{
  display:flex;
  justify-content:center;
  gap: 30px;
}
.main-nav a{
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  position: relative;
  padding-bottom: 5px;
  transition: opacity .3s var(--ease);
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background: var(--gold-soft);
  transition: width .35s var(--ease);
}
.main-nav a:hover, .main-nav a[aria-current="page"]{ opacity:1; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.header-actions .btn{ font-size: 0.84rem; padding: 16px 32px; }

.nav-toggle{
  display:none;
  color: var(--cream);
  width: 26px; height: 20px;
  position: relative;
}
.nav-toggle span{
  position:absolute; left:0; right:0; height:2px;
  background: var(--cream);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.nav-toggle span:nth-child(1){top:0;}
.nav-toggle span:nth-child(2){top:9px;}
.nav-toggle span:nth-child(3){top:18px;}
.nav-toggle.active span:nth-child(1){ top:9px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ top:9px; transform: rotate(-45deg); }

.mobile-nav{
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 99;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 26px;
  transform: translateY(-100%);
  transition: transform .45s ease;
}
.mobile-nav.open{ transform: translateY(0); }
.mobile-nav a{
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--cream);
}
.mobile-nav .btn{ margin-top:10px; }

/* ---------- hero ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex;
  align-items:center;
  color: var(--cream);
  overflow:hidden;
}
.hero-media{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(20,28,20,0.35) 0%, rgba(20,24,18,0.55) 55%, rgba(15,20,15,0.88) 100%),
    radial-gradient(120% 90% at 15% 10%, #3a4a35 0%, #24301f 45%, #1a2417 100%);
}
.hero-media::after{
  /* subtle grain / warmth texture placeholder */
  content:"";
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
}
.hero-photo-note{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,240,228,0.28);
  margin: 18px;
}
.hero-content{
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content-split{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 40px;
  margin-top: -30px;
}
.hero-collage{
  position: relative;
  flex:none;
  width: clamp(300px, 34vw, 420px);
  height: clamp(320px, 36vw, 450px);
}
.hc-item{
  position:absolute;
  border-radius: 12px;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  transition: transform .35s ease, z-index 0s;
}
.hc-item img, .hc-item video{ width:100%; height:100%; object-fit:cover; display:block; }
.hc-item:hover{ z-index:9; transform: scale(1.04); }
.hc-photo1{ width:37%; height:25.9%; top:0; right:0; z-index:1; }
.hc-photo2{ width:31.5%; height:29.3%; top:25.9%; right:0; z-index:2; }
.hc-photo3{ width:27.8%; height:32.8%; bottom:0; left:0; z-index:1; }
.hc-photo4{ width:29.6%; height:19%; top:52.6%; left:35.2%; z-index:2; }
.hc-photo5{ width:29.6%; height:36.2%; bottom:0; right:0; z-index:3; }
.hc-video{
  width: 53.7%; height:63.8%;
  top:3.4%; left:24%;
  z-index:4;
}
@media (max-width: 860px){
  .hero-collage{ width: min(78vw, 340px); height: min(84vw, 360px); }
}
.hero-video{
  flex:none;
  width: 340px;
  aspect-ratio: 9/16;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(216,195,156,0.25);
}
.hero-video video{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width: 860px){
  .hero-content-split{ flex-direction:column; align-items:flex-start; gap:32px; margin-top:0; }
  .hero-video{ width: 200px; }
}
.hero-place{
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
  display:flex; align-items:center; gap:10px;
}
.hero-place::before{ content:"—"; color: var(--gold-soft); }
.hero h1{
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  color: var(--cream);
  line-height: 1.05;
  font-weight: 600;
  max-width: 820px;
}
.hero h1.hero-brand{
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  line-height: 1;
  margin-top: -18px;
}
.hero h1 em{
  font-style: italic;
  color: var(--gold-soft);
}
.hero-brand{
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
  color: var(--cream);
  line-height: 1;
  display:flex;
  flex-direction: column;
  gap: 12px;
  margin-top: -18px;
}
.hero-brand-sub{
  font-family: var(--sans);
  font-size: clamp(0.8rem, 1.1vw, 0.98rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.hero-tagline{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: rgba(246,240,228,0.85);
  margin-top: 18px;
  line-height: 1.4;
}
.hero p{
  margin-top: 22px;
  max-width: 480px;
  font-size: 1.06rem;
  color: rgba(246,240,228,0.86);
}
.hero-actions{
  margin-top: 30px;
  display:flex; gap:16px; flex-wrap:wrap;
  margin-top: 38px;
}

/* ---------- section basics ---------- */
section{ padding: clamp(64px, 8vw, 100px) 0; }
.section-cream{ background: var(--cream-2); }
.section-paper{ background: var(--cream-2); }
.section-forest{ background: var(--forest); color: var(--cream); }
.section-forest h2, .section-forest h3{ color: var(--cream); }
.section-beige{ background: var(--cream-2); }

.section-head{
  max-width: 620px;
  margin-bottom: 64px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 600;
}
.section-head p{
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}
.section-forest .section-head p{ color: rgba(246,240,228,0.75); }

/* ---------- about highlights ---------- */
.highlights{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.highlight-card{
  padding: 40px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.highlight-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180,145,90,0.35);
}
.highlight-icon{
  width: 38px; height:38px;
  color: var(--brick);
  margin-bottom: 22px;
  stroke-width: 1.2;
}
.highlight-card h3{ font-size:1.3rem; margin-bottom:12px; letter-spacing:-0.005em; }
.highlight-card p{ color: var(--ink-soft); font-size:0.94rem; line-height:1.65; }

/* ---------- product cards / favorites ---------- */
.product-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card{
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.product-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(180,145,90,0.3); }
.product-photo{
  aspect-ratio: 4/3.1;
  background: linear-gradient(135deg, var(--cream-2), #e2d3ae 60%, var(--gold-soft));
  position:relative;
  overflow:hidden;
}
.product-photo img{ width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.product-photo.fit-contain{ aspect-ratio: 4/5; }
.product-photo.fit-contain img{ object-fit:contain; }
.product-photo.crop-top img{ object-position: center bottom; }
.product-card:hover .product-photo img{ transform: scale(1.05); }
.photo-placeholder{
  position:absolute; inset:10px;
  border:1px dashed rgba(30,42,31,0.25);
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  font-size: 0.66rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: rgba(30,42,31,0.45);
  padding: 10px;
}
.product-body{ padding: 30px 28px 32px; }
.product-body h3{ font-size:1.4rem; margin-bottom:10px; letter-spacing:-0.005em; }
.product-body p{ color: var(--ink-soft); font-size:0.92rem; line-height:1.6; margin-bottom:20px; }
.product-link{
  font-size: 0.7rem;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color: var(--brick);
  border-bottom: 1px solid currentColor;
  padding-bottom:3px;
  transition: opacity .3s var(--ease);
}
.product-link:hover{ opacity: 0.7; }

/* ---------- daily highlight (saindo do forno) ---------- */
.daily{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items:center;
}
.daily-photo{
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #33452f, #1a2417);
  position:relative;
  overflow:hidden;
}
.daily-eyebrow{ color: var(--gold-soft); }
.daily h2{ font-size: clamp(2rem,3.6vw,2.8rem); margin-bottom:18px; }
.daily-tag{
  display:inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.daily p.desc{ color: rgba(246,240,228,0.82); margin-bottom: 30px; max-width:420px; }

/* ---------- story ---------- */
.story{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items:center;
}
.story-photo{
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--cream-2), #d8c39c 55%, var(--brick));
  position:relative;
  overflow:hidden;
}
.story h2{ font-size: clamp(2rem,3.4vw,3.4rem); margin-bottom:28px; white-space:nowrap; }
.story p{ color: var(--ink-soft); margin-bottom:18px; font-size: 1.06rem; line-height:1.75; }
.story .kicker{ font-size: 0.8rem; }
.story .btn{ font-size: 0.72rem; padding: 17px 34px; }
.story blockquote{
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--brick);
  margin-top: 30px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

/* ---------- instagram ---------- */
.insta-grid{
  display:grid;
  grid-template-columns: repeat(6,1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.insta-item{
  aspect-ratio: 1/1;
  border-radius: 3px;
  overflow:hidden;
  position:relative;
  background: linear-gradient(150deg, #2b3b2c, #1a2417);
}
.insta-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease, opacity .4s ease; }
.insta-item:hover img{ transform: scale(1.08); }

.video-carousel{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  margin-bottom: 40px;
}
.vc-viewport{
  width: min(100%, 760px);
  height: 440px;
  overflow:hidden;
  position:relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.vc-track{
  display:flex;
  align-items:center;
  gap: 18px;
  height:100%;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.vc-slide{
  position:relative;
  flex: 0 0 220px;
  height: 340px;
  display:block;
  border-radius: 18px;
  overflow:hidden;
  background: linear-gradient(150deg, #2b3b2c, #1a2417);
  box-shadow: 0 20px 44px rgba(0,0,0,0.4);
  opacity: .4;
  filter: saturate(.75) brightness(.75);
  transform: scale(.82);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1), filter .5s ease;
  pointer-events:none;
}
.vc-slide.active{
  opacity:1;
  filter:none;
  transform: scale(1);
  pointer-events:auto;
  cursor:pointer;
  box-shadow: 0 28px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(216,195,156,0.3);
}
.vc-slide::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(200deg, rgba(16,22,15,0) 45%, rgba(16,22,15,0.55) 100%);
  pointer-events:none;
}
.vc-slide video{
  width:100%; height:100%; object-fit:cover; display:block;
  pointer-events:none;
}
.vc-slide video::-webkit-media-controls{ display:none !important; }
.vc-ig-icon{
  position:absolute;
  top:14px; right:14px;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius:50%;
  background: rgba(20,28,20,0.5);
  border: 1px solid rgba(216,195,156,0.5);
  color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  backdrop-filter: blur(2px);
}
.vc-ig-icon svg{ width:18px; height:18px; }
.vc-slide-cta{
  background: linear-gradient(165deg, var(--forest-soft) 0%, var(--forest) 70%, #10160f 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 24px;
}
.vc-slide-cta::after{ display:none; }
.vc-slide-cta:hover{ filter:none; }
.vc-cta-content{ display:flex; flex-direction:column; align-items:center; gap:16px; color: var(--cream); }
.vc-cta-logo{
  width: 84px; height:84px;
  border-radius:50%;
  object-fit:cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4), 0 0 0 3px rgba(216,195,156,0.5);
}
.vc-cta-handle-row{ display:flex; align-items:center; gap:8px; }
.vc-cta-handle-row svg{ width:17px; height:17px; color: var(--gold-soft); flex-shrink:0; }
.vc-cta-handle{ font-family: var(--sans); font-size:0.78rem; font-weight:600; letter-spacing:0.01em; white-space:nowrap; }
.vc-arrow{
  flex:none;
  width:44px; height:44px;
  border-radius:50%;
  background: var(--forest);
  border:1px solid rgba(216,195,156,0.3);
  color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.vc-arrow:hover{ background: var(--gold); border-color: var(--gold); color: var(--forest); }
.vc-arrow svg{ width:20px; height:20px; }
@media (max-width: 860px){
  .vc-viewport{ height: 360px; }
  .vc-slide{ flex-basis: 190px; height: 290px; }
}
@media (max-width: 640px){
  .video-carousel{ gap:10px; }
  .vc-arrow{ width:36px; height:36px; }
  .vc-viewport{ height: 300px; }
  .vc-slide{ flex-basis: 155px; height: 240px; }
}

/* ---------- order / encomendas ---------- */
.order-categories{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 46px 0 48px;
}
.order-chip{
  padding: 28px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align:center;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.order-chip:hover{ border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }

/* ---------- location ---------- */
.location{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items:stretch;
}
.location-info{ display:flex; flex-direction:column; justify-content:center; }
.location-info h2{ font-size: clamp(2rem,3.6vw,2.8rem); margin-bottom: 22px; }
.info-row{
  display:flex; gap:16px; padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: opacity .3s var(--ease);
}
a.info-row:hover{ opacity: 0.75; }
.info-row .ic{ width:19px; height:19px; color:var(--gold-soft); flex-shrink:0; margin-top:2px; stroke-width:1.4;}
.info-row strong{ display:block; font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold-soft); margin-bottom:5px; font-weight:700;}
.map-embed{
  border-radius: var(--radius-lg);
  overflow:hidden;
  min-height: 340px;
  background: #dfd6bf;
  border: 1px solid var(--line);
}
.map-embed iframe{ width:100%; height:100%; border:0; min-height:340px; filter: sepia(8%) saturate(90%); }

/* ---------- contato split (horário + contato) ---------- */
.contact-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items:stretch;
}
.contact-col{
  color: var(--cream);
  height: 100%;
  display:flex;
  flex-direction:column;
}
.contact-col .kicker{ margin-bottom:8px; color: var(--gold-soft); }
.contact-col .kicker::before{ background: var(--gold-soft); }
.contact-col .info-row{ border-bottom: 1px solid rgba(216,195,156,0.14); color: rgba(246,240,228,0.9); }
.map-buttons{ display:flex; gap:14px; flex-wrap:wrap; margin-top:auto; padding-top:30px; }
.map-btn{ display:inline-flex; align-items:center; gap:9px; }
.map-btn svg{ width:16px; height:16px; flex-shrink:0; }
@media (max-width: 860px){
  .contact-split{ grid-template-columns: 1fr; gap:22px; }
  .contact-col{ padding:34px 28px; }
}

/* ---------- hours ---------- */
.hours-block{
  max-width: 480px;
  margin: 0 auto;
  text-align:center;
}
.hours-list{ margin-top: 8px; display:grid; gap:10px; }
.hours-row{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  gap: 16px;
  padding: 15px 20px;
  background: rgba(246,240,228,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(216,195,156,0.14);
  font-size: 0.88rem;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.hours-row .days{ font-weight:700; letter-spacing:0.05em; text-transform:uppercase; font-size:0.74rem; color:var(--gold-soft); }
.hours-row span:last-child{ text-align:right; white-space:nowrap; color: rgba(246,240,228,0.82); font-variant-numeric: tabular-nums; }
.hours-row.today{ border-color: var(--gold); background: rgba(180,145,90,0.14); }
.hours-row.today span:last-child{ color: var(--cream); font-weight:600; }
.open-status{ color: rgba(246,240,228,0.85); }
.open-status.is-open{ color:#7dc98a; }
.open-status.is-closed{ color: var(--gold-soft); }
.hours-note{
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-style: normal;
  color: rgba(246,240,228,0.6);
  letter-spacing: 0.01em;
}
.open-status{
  display:inline-flex; align-items:center; gap:9px;
  margin: 0 0 26px;
  font-size: 0.82rem;
  font-weight:700;
  letter-spacing:0.03em;
}
.open-status::before{
  content:"";
  width:9px; height:9px;
  border-radius:50%;
  background: currentColor;
}
.open-status.is-open{ color:#3f7d4a; }
.open-status.is-closed{ color: var(--brick); }

/* ---------- final CTA ---------- */
.final-cta{ text-align:center; position:relative; overflow:hidden;}
.final-cta h2{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 720px;
  margin: 0 auto 22px;
}
.final-cta p{ color: rgba(246,240,228,0.75); max-width:520px; margin:0 auto 40px; line-height:1.7; }
.final-cta .actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ---------- footer ---------- */
footer{
  background: var(--forest);
  color: var(--cream);
  padding: 84px 0 34px;
}
.footer-top{
  display:flex;
  align-items:stretch;
  gap: 90px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-top > div{ display:flex; flex-direction:column; }
.footer-top > div:last-of-type{ margin-top: 48px; }
.footer-brand .logo{ margin-bottom:16px; }
.footer-brand p{ color: rgba(246,240,228,0.6); font-size:0.9rem; max-width:280px; line-height:1.6; }
footer h4{
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
footer ul li{ margin-bottom: 13px; }
footer ul a{ color: rgba(246,240,228,0.75); font-size:0.9rem; transition: color .3s var(--ease); }
footer ul a:hover{ color: var(--gold-soft); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px;
  padding-top: 30px;
  font-size: 0.78rem;
  color: rgba(246,240,228,0.45);
}
.footer-logo img{
  width: 40px; height:40px;
  border-radius:50%;
  display:block;
}

/* ---------- whatsapp float ---------- */
.wa-float{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height:58px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
  transition: transform .3s ease;
}
.wa-float:hover{ transform: scale(1.08); }
.wa-float svg{ width:26px; height:26px; }

/* ---------- popup de confirmação do WhatsApp ---------- */
.wa-modal{
  position: fixed;
  inset: 0;
  z-index: 200;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
  background: rgba(15,20,15,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.wa-modal.open{ opacity:1; visibility:visible; }
.wa-modal-card{
  position: relative;
  width: 100%;
  max-width: 380px;
  background: var(--forest);
  color: var(--cream);
  border: 1px solid rgba(216,195,156,0.3);
  border-radius: var(--radius-lg);
  padding: 44px 32px 34px;
  text-align:center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
  transform: scale(.92) translateY(10px);
  transition: transform .35s ease;
}
.wa-modal.open .wa-modal-card{ transform: scale(1) translateY(0); }
.wa-modal-close{
  position:absolute;
  top:12px; right:14px;
  font-size: 1.6rem;
  line-height:1;
  color: rgba(246,240,228,0.6);
  transition: color .2s ease;
}
.wa-modal-close:hover{ color: var(--cream); }
.wa-modal-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 62px; height:62px;
  border-radius:50%;
  background: #25D366;
  color:#fff;
  margin-bottom:18px;
}
.wa-modal-icon svg{ width:32px; height:32px; }
.wa-modal-card h3{
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.wa-modal-card p{
  font-size: 0.92rem;
  color: rgba(246,240,228,0.78);
  margin-bottom: 26px;
  line-height:1.5;
}
.wa-modal-confirm{ width:100%; }

/* ---------- reveal animation ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

/* ---------- breadcrumb / page header (inner pages) ---------- */
.page-header{
  padding: 200px 0 90px;
  background: var(--forest);
  color: var(--cream);
  text-align:center;
}
.page-header .kicker{ justify-content:center; color: var(--gold-soft); }
.page-header .kicker::before{ background: var(--gold-soft); }
.page-header h1{ color: var(--cream); font-size: clamp(2.4rem,5vw,3.6rem); }
.page-header p{ color: rgba(246,240,228,0.72); max-width:560px; margin:16px auto 0; line-height:1.6; }

/* ---------- menu (cardapio page) ---------- */
.menu-layout{
  display:flex;
  flex-direction: column;
  gap: 48px;
}
.menu-sidebar-wrap{
  position: sticky;
  top: 90px;
  z-index: 20;
  display:flex;
  align-items:center;
  gap: 8px;
}
.menu-sidebar{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  gap: 8px;
  padding: 14px;
  background: rgba(20,28,20,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(216,195,156,0.14);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.menu-sidebar::-webkit-scrollbar{ display:none; }
.menu-sb-item{
  display:flex; align-items:center; gap:9px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  flex: none;
  color: rgba(246,240,228,0.7);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.menu-sb-item svg{ width:17px; height:17px; flex-shrink:0; stroke-width:1.6; }
.menu-sb-item:hover{ background: rgba(246,240,228,0.06); color: var(--cream); }
.menu-sb-item.active{ background: var(--cream); color: var(--forest); }
.menu-sb-arrow{
  flex:none;
  width:38px; height:38px;
  border-radius:50%;
  background: var(--forest);
  border:1px solid rgba(216,195,156,0.3);
  color: var(--cream);
  display:flex; align-items:center; justify-content:center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.menu-sb-arrow:hover{ background: var(--gold); border-color: var(--gold); color: var(--forest); }
.menu-sb-arrow svg{ width:16px; height:16px; }
@media (max-width: 640px){
  .menu-sb-arrow{ display:none; }
}
.menu-content{ flex:1; min-width:0; }
@media (max-width: 980px){
  .menu-sidebar{ overflow-x:auto; flex-wrap:nowrap; top: 72px; }
}
.menu-nav{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center;
  margin-bottom: 68px;
}
.menu-nav a{
  padding: 11px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: border-color .3s var(--ease), color .3s var(--ease), background-color .3s var(--ease);
}
.menu-nav a:hover{ border-color: var(--gold); color: var(--brick); background: rgba(180,145,90,0.06); }
.menu-category{ margin-bottom: 80px; scroll-margin-top: 120px; }
.menu-category h2{ font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 10px; }
.menu-category .note{ color: var(--ink-soft); font-size:0.88rem; margin-bottom:34px; line-height:1.6; }
.menu-items{ display:grid; grid-template-columns: repeat(2,1fr); gap: 6px 44px; }
.menu-item{
  display:flex; justify-content:space-between; gap:20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item .name{ font-weight:700; letter-spacing:-0.005em; }
.menu-item .tag{
  display:inline-block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold-soft);
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}
.menu-item .desc{ color: var(--ink-soft); font-size:0.85rem; margin-top:3px; line-height:1.5; }
.menu-item .price{ color: var(--brick); font-weight:600; white-space:nowrap; font-family: var(--serif); font-size:1.1rem; }
.section-forest .menu-nav a{ border-color: rgba(216,195,156,0.3); color: var(--cream); }
.section-forest .menu-nav a:hover{ border-color: var(--gold-soft); color: var(--gold-soft); background: rgba(216,195,156,0.08); }
.section-forest .menu-category .note{ color: rgba(246,240,228,0.65); }
.section-forest .menu-item{ border-bottom-color: rgba(216,195,156,0.16); }
.section-forest .menu-item .name{ color: var(--cream); }
.section-forest .menu-item .desc{ color: rgba(246,240,228,0.6); }
.section-forest .menu-item .price{ color: var(--gold-soft); }
.section-forest .menu-avail-note{ color: rgba(246,240,228,0.55); }
.menu-avail-note{
  text-align:center;
  margin-top: 20px;
  font-size: 0.86rem;
  color:#6b6558;
  font-style: italic;
}

/* ---------- gallery page ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.gallery-grid .g-item{
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow:hidden;
  background: linear-gradient(150deg, var(--cream-2), var(--gold-soft));
  position:relative;
}
.gallery-grid .g-item:nth-child(3n+2){ aspect-ratio: 1/1.3; grid-row: span 2; }

/* ---------- contact form ---------- */
.contact-form{
  display:grid; gap:18px;
  background: var(--paper);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30,42,31,0.08);
}
.form-row{ display:grid; gap:8px; }
.form-row label{ font-size:0.76rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--brick); font-weight:700; }
.form-row input, .form-row textarea{
  padding: 14px 16px;
  border: 1px solid rgba(30,42,31,0.18);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--cream);
}
.form-row input:focus, .form-row textarea:focus{ border-color: var(--gold); }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .main-nav, .header-actions .btn{ display:none; }
  .nav-toggle{ display:block; }
  .highlights, .product-grid{ grid-template-columns: 1fr 1fr; }
  .daily, .story, .location{ grid-template-columns: 1fr; }
  .story-photo{ order:-1; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .menu-items{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .insta-grid{ grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 640px){
  section{ padding: 76px 0; }
  .wrap{ padding: 0 20px; }
  .hero{ align-items:center; }
  .hero-content{ padding-bottom: 0; }
  .hero-actions{ flex-direction:column; align-items:stretch; }
  .hero-actions .btn{ width:100%; }
  .highlights, .product-grid, .footer-top, .order-categories{ grid-template-columns: 1fr; }
  .insta-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
  .two-col{ grid-template-columns:1fr; }
  .page-header{ padding: 150px 0 60px; }
  .wa-float{ right:16px; bottom:16px; width:52px; height:52px; }
}
