/* ==========================================================================
   Cozinha Nossa — "Feito Fresco"
   Concept: a small home kitchen with a big pot on the stove. The one bold move
   is a dark, seasoned cast-iron hero with self-drawing RISING STEAM — heat and
   freshness, "cooked fresh every day." Everything else stays warm and calm.
   Palette: black-bean iron + appetite tangerine + passionfruit gold + palm green,
   on a toasted-farofa cream (deliberately NOT a boho terracotta-on-linen look).
   Type: Fraunces (soft old-country display) + Hanken Grotesk (warm body).
   ========================================================================== */

:root {
  /* palette — pulled from a Brazilian kitchen, not generic cream */
  --iron-900: #17100a;   /* seasoned cast iron / black beans — hero & reviews */
  --iron-800: #221812;   /* raised dark surface */
  --ink:      #2a1d12;   /* warm espresso text */
  --ink-soft: #7a6553;   /* muted clay-brown body text */

  --farofa:   #FBF1E2;   /* toasted manioc-cream paper (warmer & brighter than linen) */
  --farofa-2: #F5E7D2;   /* deeper toasted band */
  --shell:    #FEF9F1;   /* card surface */

  --tangerine: #E4571B;  /* hot appetite orange — primary CTA/accent (4.9:1 on white) */
  --tangerine-deep: #C0430F; /* pressed/hover */
  --gold:     #F2B02E;   /* passionfruit / abacaxi gold — steam + highlights */
  --palm:     #1F6B44;   /* palm / collard green — secondary accent */
  --palm-deep:#144E31;

  /* type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);

  --shadow-sm: 0 1px 2px rgba(23,16,10,.06), 0 4px 14px rgba(23,16,10,.07);
  --shadow-md: 0 12px 30px rgba(23,16,10,.14), 0 30px 64px rgba(23,16,10,.12);
  --shadow-glow: 0 26px 72px rgba(23,16,10,.5);
  --radius: 16px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--farofa);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 500; line-height: 1.03; letter-spacing: -.012em; font-optical-sizing: auto; }
p { margin: 0; }
button { font-family: inherit; }

/* ---------- shared bits ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--tangerine);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; border-radius: 2px;
  background: var(--gold);
  display: inline-block;
}
.serif-i { font-style: italic; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-primary { background: var(--tangerine); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--tangerine-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(42,29,18,.24); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--ink); }
.btn-gilt { background: var(--palm); color: var(--farofa); }
.btn-gilt:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--palm-deep); }

/* section rhythm */
.section { padding-block: clamp(3.8rem, 8.5vw, 7rem); }
.section-head { max-width: 680px; margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.section-head h2 { font-size: clamp(2.3rem, 6vw, 4rem); margin-top: .9rem; }
.section-head p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.08rem; }

/* woven thread / stitch divider — a hand-stitched rule (not a numbered device) */
.thread-rule {
  height: 3px; width: 100%;
  background: repeating-linear-gradient(90deg, var(--gold) 0 16px, transparent 16px 30px);
  opacity: .8;
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* brand wordmark (replaces the old clip-art logo) */
.brand { display: inline-flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand-mark {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  background: var(--iron-900); color: var(--gold);
  display: grid; place-items: center;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-word {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--display); font-weight: 600; font-size: 1.32rem; color: var(--ink);
  letter-spacing: -.01em;
}
.brand-word em {
  font-family: var(--body); font-style: normal; font-weight: 600;
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--tangerine); margin-top: .28rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,241,226,.86);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid rgba(226,180,120,.4);
}
.nav { display: flex; align-items: center; gap: 1.5rem; height: 76px; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--ink); position: relative; padding: .2rem 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--tangerine); border-radius: 2px; transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-phone { font-weight: 600; font-size: .95rem; display: inline-flex; align-items: center; gap: .4rem; color: var(--ink); }
.nav-cta { padding: .62rem 1.2rem; font-size: .92rem; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .3rem; color: var(--ink); }

@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu.open { display: flex; }
}
.mobile-menu {
  display: none; flex-direction: column; gap: .2rem;
  padding: .5rem var(--gutter) 1.25rem;
  background: var(--farofa);
  border-bottom: 1px solid rgba(226,180,120,.4);
}
.mobile-menu a { padding: .78rem 0; border-bottom: 1px solid rgba(42,29,18,.08); font-weight: 500; }
.mobile-menu .btn { margin-top: .8rem; justify-content: center; }

/* ==========================================================================
   Hero — the bold move: cast-iron ground + self-drawing steam
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 6%, rgba(228,87,27,.34), transparent 58%),
    radial-gradient(90% 80% at 10% 100%, rgba(31,107,68,.28), transparent 55%),
    radial-gradient(70% 60% at 55% 40%, rgba(242,176,46,.10), transparent 60%),
    var(--iron-900);
  color: var(--farofa);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 9vw, 7rem);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; position: relative; z-index: 2;
}
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }
.hero-copy h1 {
  font-size: clamp(2.8rem, 7.6vw, 5.4rem);
  margin: 1.1rem 0 0; letter-spacing: -.02em; line-height: 1;
  color: var(--farofa);
}
.hero-copy h1 .line { display: block; }
.hero-copy h1 .l3 { color: var(--gold); font-style: italic; }
.hero-copy .sub { margin-top: 1.5rem; font-size: 1.16rem; color: rgba(251,241,226,.84); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.hero .btn-ghost { color: var(--farofa); border-color: rgba(251,241,226,.4); }
.hero .btn-ghost:hover { border-color: var(--farofa); background: rgba(251,241,226,.07); }
.hero-trust { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; font-size: .9rem; color: rgba(251,241,226,.72); }
.hero-trust b { color: var(--farofa); font-weight: 600; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tangerine); display: inline-block; margin-right: .55rem; vertical-align: middle; }

/* hero visual */
.hero-visual { position: relative; }
.hero-frame {
  position: relative; border-radius: 220px 220px 22px 22px;
  overflow: hidden; box-shadow: var(--shadow-glow);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(242,176,46,.4);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -18px; bottom: 34px;
  background: var(--shell);
  border: 1px solid rgba(226,180,120,.55);
  border-radius: 14px; padding: .8rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .7rem;
  max-width: 232px; color: var(--ink);
}
.hero-badge .num { font-size: 1.9rem; line-height: 1; }
.hero-badge .lbl { font-size: .78rem; color: var(--ink-soft); line-height: 1.3; }

/* the steam signature — rising ribbons that draw themselves */
.steam {
  position: absolute; top: -4%; right: clamp(-30px, 6vw, 90px);
  height: 108%; width: min(300px, 42vw); z-index: 1;
  color: var(--gold); pointer-events: none;
}
.steam .ribbon {
  stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round;
  stroke-dasharray: 1500; stroke-dashoffset: 1500;
  opacity: .5;
}
.steam .r2 { opacity: .34; }
.steam .r3 { opacity: .28; }
.hero-loaded .steam .ribbon { animation: steam-draw 2.8s cubic-bezier(.22,.61,.36,1) forwards, steam-drift 7s ease-in-out 2.8s infinite; }
.hero-loaded .steam .r2 { animation-delay: .25s, 2.8s; }
.hero-loaded .steam .r3 { animation-delay: .5s, 2.8s; }
@keyframes steam-draw { to { stroke-dashoffset: 0; } }
@keyframes steam-drift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(7px); } }
@media (prefers-reduced-motion: reduce) {
  .steam .ribbon { stroke-dashoffset: 0; }
  .hero-loaded .steam .ribbon { animation: none; }
}

/* orchestrated headline rise (load) */
.hero-copy h1 .line { opacity: 0; transform: translateY(18px); }
.hero-loaded .hero-copy h1 .line { animation: rise .8s cubic-bezier(.22,.61,.36,1) forwards; }
.hero-loaded .hero-copy h1 .l1 { animation-delay: .05s; }
.hero-loaded .hero-copy h1 .l2 { animation-delay: .16s; }
.hero-loaded .hero-copy h1 .l3 { animation-delay: .27s; }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-copy h1 .line { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 420px; margin-inline: auto; width: 100%; }
  .hero-copy .sub { max-width: none; }
  .steam { opacity: .5; right: -20px; height: 100%; }
}

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.strip {
  background: var(--iron-800); color: var(--farofa);
  overflow: hidden; white-space: nowrap;
  padding-block: .9rem;
  border-block: 1px solid rgba(242,176,46,.4);
}
.strip-track { display: inline-flex; gap: 3rem; animation: marquee 36s linear infinite; }
.strip-track span { font-family: var(--display); font-style: italic; font-size: 1.4rem; opacity: .95; }
.strip-track span::before { content: "✶"; color: var(--gold); margin-right: 3rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ==========================================================================
   Signature dishes / feature
   ========================================================================== */
#dishes { background: var(--farofa); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 1.8rem); }
.feature-card {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--shell); border: 1px solid rgba(226,180,120,.45);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-lg { grid-row: span 2; display: flex; flex-direction: column; }
.fc-img { overflow: hidden; }
.feature-lg .fc-img { flex: 1; min-height: 320px; }
.feature-card:not(.feature-lg) .fc-img { aspect-ratio: 16/9; }
.fc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-card:hover .fc-img img { transform: scale(1.04); }
.feature-card figcaption { padding: 1.15rem 1.3rem 1.4rem; }
.feature-card .pt {
  font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--ink);
  display: block;
}
.feature-lg .pt { font-size: 2rem; }
.feature-card figcaption p { color: var(--ink-soft); margin-top: .4rem; font-size: .96rem; }
@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-lg { grid-row: auto; }
  .feature-lg .fc-img { aspect-ratio: 16/10; }
}

/* ==========================================================================
   Menu / cardápio
   ========================================================================== */
#menu { background: var(--farofa-2); }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); }
.menu-col h3 {
  font-size: 1.7rem; display: flex; align-items: center; gap: .7rem;
  padding-bottom: .85rem; margin-bottom: 1rem;
  border-bottom: 2px solid rgba(228,87,27,.35);
}
.menu-col h3.mt { margin-top: 2.4rem; }
/* dot-mark: a spoonful/dot marker for a category, not a sequence number */
.menu-col h3 .dot-mark {
  width: 12px; height: 12px; flex: none; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(242,176,46,.22);
}
.menu-item { display: flex; padding: .62rem 0; border-bottom: 1px dotted rgba(122,101,83,.35); }
.menu-item:last-child { border-bottom: 0; }
.menu-item .name { font-weight: 600; display: block; color: var(--ink); }
.menu-item .desc { display: block; font-size: .9rem; color: var(--ink-soft); margin-top: .1rem; }
.menu-foot {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem;
  justify-content: space-between;
  padding: 1.4rem 1.6rem; border-radius: var(--radius);
  background: var(--shell); border: 1px dashed rgba(228,87,27,.4);
}
.menu-foot p { color: var(--ink-soft); font-size: 1rem; max-width: 46ch; }
@media (max-width: 720px) { .menu-grid { grid-template-columns: 1fr; } .menu-col h3.mt { margin-top: 2rem; } }

/* ==========================================================================
   Our Story
   ========================================================================== */
#story { background: var(--farofa); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-photo { position: relative; }
.about-photo img { border-radius: 18px; box-shadow: var(--shadow-md); border: 1px solid rgba(226,180,120,.5); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about-photo .tag {
  position: absolute; bottom: -16px; right: -12px;
  background: var(--palm); color: var(--farofa);
  font-family: var(--display); font-style: italic; font-size: 1.2rem;
  padding: .55rem 1.1rem; border-radius: 10px; box-shadow: var(--shadow-md);
}
.about-copy h2 { font-size: clamp(2.1rem, 5.2vw, 3.3rem); }
.about-copy p { color: var(--ink-soft); margin-top: 1.2rem; font-size: 1.08rem; }
.about-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .7rem; }
.about-list li { display: flex; gap: .7rem; align-items: flex-start; }
.about-list li::before { content: "✶"; color: var(--tangerine); flex: none; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-photo { max-width: 480px; } }

/* ==========================================================================
   Reviews
   ========================================================================== */
#reviews { background: var(--iron-900); color: var(--farofa); }
#reviews .eyebrow { color: var(--gold); }
#reviews .eyebrow::before { background: var(--gold); }
#reviews .section-head h2 { color: var(--farofa); }
#reviews .section-head p { color: rgba(251,241,226,.76); }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 3rem; }
.stat { text-align: center; padding: 1.5rem 1rem; border: 1px solid rgba(242,176,46,.3); border-radius: 14px; background: rgba(255,255,255,.03); }
.stat .n { font-family: var(--display); font-size: clamp(1.8rem, 4.6vw, 2.9rem); color: var(--gold); line-height: 1; font-style: italic; }
.stat .l { font-size: .82rem; letter-spacing: .03em; color: rgba(251,241,226,.74); margin-top: .5rem; }
.praise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.praise blockquote { margin: 0; padding: 1.6rem; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(242,176,46,.24); }
.praise blockquote p { font-family: var(--display); font-style: italic; font-size: 1.28rem; line-height: 1.36; color: var(--farofa); }
.praise .stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .7rem; }
.praise cite { display: block; margin-top: 1rem; font-style: normal; font-size: .82rem; color: rgba(251,241,226,.62); }
.reviews-src { margin-top: 2rem; font-size: .82rem; color: rgba(251,241,226,.5); }
.reviews-src a { color: var(--gold); text-decoration: underline; }
@media (max-width: 820px) { .stat-band { grid-template-columns: 1fr 1fr; } .praise { grid-template-columns: 1fr; } }

/* ==========================================================================
   Reserve
   ========================================================================== */
#reserve { background: var(--farofa); position: relative; }
.book-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.book-pitch h2 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
.book-pitch p { color: var(--ink-soft); margin-top: 1.2rem; font-size: 1.08rem; }
.quick-row { margin-top: 1.6rem; display: grid; gap: .7rem; }
.quick {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem 1rem; border-radius: 12px; font-weight: 600; font-size: .95rem;
  background: var(--shell); border: 1px solid rgba(226,180,120,.5); color: var(--ink);
  transition: border-color .2s ease, transform .2s ease;
}
.quick:hover { transform: translateY(-2px); border-color: var(--tangerine); }
.quick svg { color: var(--tangerine); flex: none; }
.ai-chip {
  margin-top: 1.4rem; display: flex; gap: .9rem; align-items: center;
  padding: 1rem 1.2rem; border-radius: 14px;
  background: linear-gradient(120deg, rgba(242,176,46,.16), rgba(31,107,68,.12));
  border: 1px solid rgba(226,180,120,.5);
}
.ai-chip .ico { width: 42px; height: 42px; border-radius: 50%; background: var(--iron-900); color: var(--gold); display: grid; place-items: center; flex: none; }
.ai-chip b { display: block; font-size: .98rem; }
.ai-chip > div span { font-size: .84rem; color: var(--ink-soft); }
.ai-chip .soon { margin-left: auto; font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; background: var(--tangerine); color: #fff; padding: .28rem .6rem; border-radius: 999px; font-weight: 700; align-self: flex-start; white-space: nowrap; }

.book-card {
  background: var(--shell); border: 1px solid rgba(226,180,120,.5);
  border-radius: 20px; padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-md);
}
.book-card h3 { font-size: 1.7rem; margin-bottom: 1.3rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .02em; margin-bottom: .4rem; color: var(--ink); }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid rgba(122,101,83,.3); border-radius: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--tangerine); box-shadow: 0 0 0 3px rgba(228,87,27,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.book-card .btn-primary { width: 100%; justify-content: center; margin-top: .4rem; }
.book-success { display: none; text-align: center; padding: 2rem 1rem; }
.book-success.show { display: block; }
.book-success .check { width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--palm); color: #fff; display: grid; place-items: center; }
.book-success h3 { color: var(--ink); font-size: 1.7rem; }
.book-success p { color: var(--ink-soft); margin-top: .7rem; }
.book-success .ln { color: var(--tangerine); font-weight: 600; }
.form-hint { font-size: .78rem; color: var(--ink-soft); text-align: center; margin-top: 1rem; }
@media (max-width: 820px) { .book-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Visit
   ========================================================================== */
#visit { background: var(--farofa-2); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.hours-table td { padding: .72rem 0; border-bottom: 1px solid rgba(226,180,120,.4); font-size: 1rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.closed td { color: var(--ink-soft); }
.hours-table tr.today td { color: var(--tangerine); }
.hours-table tr.today td:first-child::after { content: " · Today"; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--palm); }
.visit-contact { margin-top: 2rem; display: grid; gap: 1rem; }
.visit-contact a, .visit-contact div { display: flex; gap: .8rem; align-items: flex-start; font-size: 1rem; }
.visit-contact .ico { color: var(--tangerine); flex: none; margin-top: 2px; }
.map-frame { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(226,180,120,.5); min-height: 360px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: saturate(.95) contrast(1.02); }
@media (max-width: 820px) { .visit-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--iron-900); color: rgba(251,241,226,.82); padding-block: 3.5rem 2rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer-word { color: var(--farofa); }
.footer-word em { color: var(--gold); }
.footer-brand p { max-width: 32ch; margin-top: 1rem; font-size: .9rem; color: rgba(251,241,226,.62); }
.footer-col h4 { font-family: var(--body); font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); margin: 0 0 .9rem; }
.footer-col a, .footer-col p { display: block; font-size: .92rem; color: rgba(251,241,226,.82); padding: .22rem 0; }
.footer-col a:hover { color: var(--farofa); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(242,176,46,.2); font-size: .8rem; color: rgba(251,241,226,.52); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; }
