/* ============================================================
   HORA MANSA — bistrô de brunch, Bonfim · Porto
   Identidade ancorada no espaço real: paredes rosa-velho,
   azulejo verde-sálvia, logo círculo oliva, mármore + latão.
   Assinatura: o ARCO suave + uma linguagem de movimento LENTA
   ("take it easy and slow").
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Cor — derivada das fotos do interior */
  --cream:      #F7F2E9;   /* chão / bases — superfície base */
  --cream-2:    #FBF8F1;   /* cartões claros */
  --rose:       #E7A597;   /* paredes — a tela */
  --rose-soft:  #F3D9D1;   /* lavagem suave */
  --rose-deep:  #CC8473;   /* hover / sublinhados */
  --sage:       #9FB389;   /* azulejo + logo — estrutural */
  --sage-deep:  #7C9069;   /* hover dos botões sálvia */
  --olive:      #3D4A35;   /* tinta dos títulos + secções escuras */
  --olive-soft: #5B6A4F;
  --brass:      #C29A5B;   /* aro das mesas — acento mínimo (o selo) */
  --ink:        #2E342A;   /* texto corrido */

  /* Tipografia */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Manjari", "Segoe UI", system-ui, sans-serif;

  /* Escala fluida */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.5vw, 1.6rem);
  --step-2:  clamp(1.6rem, 1.4rem + 1vw, 2.3rem);
  --step-3:  clamp(2.1rem, 1.7rem + 2vw, 3.4rem);
  --step-4:  clamp(2.8rem, 2rem + 4vw, 5.5rem);

  /* Ritmo */
  --pad-section: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  --measure: 62ch;
  --radius: 14px;
  --shadow: 0 18px 50px -28px rgba(61, 74, 53, 0.45);
  --shadow-soft: 0 10px 30px -22px rgba(61, 74, 53, 0.5);

  /* Movimento lento — a assinatura do tempo */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --slow: 900ms;
  --calm: 600ms;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  font-optical-sizing: auto;
  color: var(--olive);
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; max-width: var(--measure); }

a { color: var(--rose-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }

img { display: block; max-width: 100%; height: auto; }

::selection { background: var(--rose-soft); color: var(--olive); }

/* Foco de teclado visível — piso de qualidade */
:focus-visible {
  outline: 3px solid var(--olive);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--olive); color: var(--cream);
  padding: 0.7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(1180px, 100% - 2.5rem); margin-inline: auto; }
.wrap--narrow { width: min(820px, 100% - 2.5rem); margin-inline: auto; }

.section { padding-block: var(--pad-section); position: relative; }
.section--rose  { background: var(--rose); color: #4a2f28; }
.section--rose h1, .section--rose h2, .section--rose h3 { color: #45291f; }
.section--soft  { background: var(--rose-soft); }
.section--olive { background: var(--olive); color: #e9ecdf; }
.section--olive h1, .section--olive h2, .section--olive h3 { color: #f3efe2; }
.section--olive a { color: var(--rose-soft); }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--sage-deep);
  margin: 0 0 0.9rem;
  display: inline-block;
}
.section--rose .eyebrow  { color: #8a4a3a; }
.section--olive .eyebrow { color: var(--sage); }

.section-title { font-size: var(--step-3); max-width: 16ch; }
.lead { font-size: var(--step-1); line-height: 1.5; }

/* ---------- O ARCO (assinatura) ---------- */
.arch {
  border-radius: 48% 48% 12px 12px / 28% 28% 12px 12px;
  overflow: hidden;
}
.arch-soft {
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
}

/* O selo circular — eco do logo oliva */
.seal {
  display: inline-grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  border: 2px solid var(--sage);
  border-radius: 50%;
  color: var(--olive);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  flex: none;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--body); font-weight: 700;
  font-size: var(--step-0);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--calm) var(--ease), background var(--calm) var(--ease), color var(--calm) var(--ease), border-color var(--calm) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--olive); color: var(--cream); }
.btn--primary:hover { background: #2c3626; }
.btn--sage { background: var(--sage); color: var(--olive); }
.btn--sage:hover { background: var(--sage-deep); color: var(--cream-2); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--olive); }
.btn--ghost:hover { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.section--rose .btn--ghost { color: #45291f; }
.section--rose .btn--ghost:hover { background: #45291f; color: var(--rose-soft); }

/* ============================================================
   Cabeçalho / Navegação
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--sage) 35%, transparent);
}
.nav {
  display: flex; align-items: center; gap: 1.2rem;
  padding-block: 0.7rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none; margin-right: auto;
}
.brand__mark { flex: none; width: 50px; height: 50px; border-radius: 50%; object-fit: cover; display: block; }
.brand__name {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--olive);
  line-height: 1;
  letter-spacing: 0.01em;
}
.brand__name small {
  display: block;
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-top: 2px;
}
.nav__links {
  display: flex; align-items: center; gap: 1.4rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__links a {
  color: var(--olive); text-decoration: none;
  font-weight: 700; font-size: 0.98rem;
  position: relative; padding-block: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--rose-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--calm) var(--ease);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); }

.nav__tools { display: flex; align-items: center; gap: 0.7rem; }

/* Toggle de idioma */
.lang {
  display: inline-flex; border: 1.5px solid var(--sage);
  border-radius: 999px; overflow: hidden; font-weight: 700;
  font-size: 0.82rem;
}
.lang button {
  appearance: none; border: 0; background: transparent;
  padding: 0.32rem 0.7rem; cursor: pointer; color: var(--olive-soft);
  font-family: var(--body); font-weight: 700;
  transition: background var(--calm) var(--ease), color var(--calm) var(--ease);
}
.lang button.is-active { background: var(--sage); color: var(--olive); }

.nav__toggle {
  display: none;
  appearance: none; border: 0; background: transparent;
  width: 44px; height: 44px; cursor: pointer; color: var(--olive);
}
.nav__toggle svg { width: 26px; height: 26px; }

/* ============================================================
   i18n — EN é o idioma de entrada
   ============================================================ */
body.lang-en .pt { display: none; }
body.lang-pt .en { display: none; }
/* spans inline herdam o display correto */
span.en, span.pt { }

/* ============================================================
   Herói — bistrô sem pressa no coração do Porto
   Revisão v2: compacto — navegação + CTAs no primeiro ecrã.
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--rose-soft) 0%, var(--cream) 100%);
  padding-block: clamp(1.6rem, 1rem + 2vw, 3rem) clamp(2.4rem, 1.6rem + 3vw, 4.5rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 1rem + 3vw, 4rem);
  align-items: center;
}
.hero__copy { max-width: 30ch; }
.hero h1 {
  font-size: var(--step-3);
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose-deep);
}
.hero__slogan {
  font-size: var(--step-1);
  color: var(--olive-soft);
  font-style: italic;
  margin-bottom: 1.3rem;
  max-width: 26ch;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero__figure { position: relative; }
.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: min(54vh, 470px);
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ============================================================
   Quem somos
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 1rem + 4vw, 4.5rem);
}
.about__card h3 { font-size: var(--step-2); }
.about__card p { font-size: var(--step-0); }

/* ============================================================
   Fundador
   ============================================================ */
.founder__grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.founder__photo { position: relative; }
.founder__photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  box-shadow: var(--shadow);
}
.founder__sig {
  font-family: var(--display); font-style: italic;
  font-size: var(--step-2); color: var(--rose-deep);
  margin-top: 0.6rem;
}
.founder blockquote {
  margin: 0; font-size: var(--step-1); line-height: 1.55;
  color: #4a2f28;
}
.founder blockquote p { max-width: 46ch; }

/* ============================================================
   Menu — abas por segmento
   ============================================================ */
.menu__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; }
.menu__note { font-size: var(--step--1); color: var(--olive-soft); max-width: 32ch; }

.tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2.2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--sage) 45%, transparent);
  padding-bottom: 0.9rem;
}
.tab {
  appearance: none; border: 1.5px solid transparent; cursor: pointer;
  background: transparent; color: var(--olive-soft);
  font-family: var(--body); font-weight: 700; font-size: 0.98rem;
  padding: 0.55rem 1.05rem; border-radius: 999px;
  transition: background var(--calm) var(--ease), color var(--calm) var(--ease), border-color var(--calm) var(--ease);
  white-space: nowrap;
}
.tab:hover { border-color: var(--sage); }
.tab[aria-selected="true"] { background: var(--olive); color: var(--cream); }

/* Indicador "arrasta" para as abas em scroll horizontal (mobile) */
.tabs-wrap { position: relative; }
.tabs-hint { display: none; }

.tabpanel { display: none; animation: fade-up var(--slow) var(--ease) both; }
.tabpanel.is-active { display: block; }

.menu-group + .menu-group { margin-top: 2.6rem; }
.menu-group__title {
  font-size: var(--step-1); color: var(--olive);
  display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.menu-group__title .pill {
  font-family: var(--body); font-size: 0.66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  background: var(--brass); color: #3a2c10;
  padding: 0.2rem 0.6rem; border-radius: 999px;
}

.menu-list { display: grid; gap: 1.15rem; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  align-items: baseline;
}
.menu-item__name {
  font-family: var(--display); font-size: 1.18rem; color: var(--olive);
  display: flex; align-items: baseline; gap: 0.45rem; flex-wrap: wrap;
}
.menu-item__price {
  font-weight: 700; color: var(--rose-deep);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.menu-item__desc {
  grid-column: 1 / -1; font-size: var(--step--1);
  color: var(--olive-soft); max-width: 60ch; margin: 0.15rem 0 0;
}
.menu-item .heat {
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass); font-family: var(--body); font-weight: 700;
}

/* Cartões com foto para itens em destaque */
.menu-feature {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem; margin-bottom: 2.4rem;
}
.fcard {
  background: var(--cream-2); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform var(--slow) var(--ease);
}
.fcard:hover { transform: translateY(-4px); }
.fcard img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.fcard__body { padding: 0.9rem 1.1rem 1.2rem; }
.fcard__body h4 {
  font-family: var(--display); font-size: 1.1rem; color: var(--olive);
  margin: 0 0 0.2rem;
}
.fcard__body p { font-size: var(--step--1); color: var(--olive-soft); margin: 0; max-width: none; }
.fcard__price { color: var(--rose-deep); font-weight: 700; }

/* Bloco-destaque para a secção sul-africana / cocktails */
.spotlight {
  background: var(--olive); color: #e9ecdf;
  border-radius: var(--radius); padding: clamp(1.4rem, 1rem + 2vw, 2.6rem);
  margin-bottom: 2.4rem;
}
.spotlight h3 { color: var(--rose-soft); font-size: var(--step-2); }
.spotlight .menu-item__name { color: #f3efe2; }
.spotlight .menu-item__price { color: var(--sage); }
.spotlight .menu-item__desc { color: #c7cdba; }
.spotlight .eyebrow { color: var(--sage); }

/* ============================================================
   Eventos privados
   ============================================================ */
.events__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem,1rem+3vw,3.5rem); align-items: center; }
.events ul { list-style: none; padding: 0; margin: 1.2rem 0 1.8rem; display: grid; gap: 0.7rem; }
.events li { display: flex; gap: 0.7rem; align-items: flex-start; }
.events li svg { flex: none; margin-top: 3px; color: var(--sage-deep); }

/* ============================================================
   Reservas
   ============================================================ */
.reserve { text-align: center; }
.reserve .wrap--narrow { display: grid; justify-items: center; gap: 1rem; }
.reserve h2 { font-size: var(--step-3); }
.reserve .btn { font-size: var(--step-1); padding: 1rem 2.2rem; }

/* ============================================================
   Porquê
   ============================================================ */
.why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 1.2rem; margin-top: 2rem; }
.why-card {
  background: var(--cream-2); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; border: 1px solid color-mix(in srgb, var(--sage) 30%, transparent);
}
.why-card .seal { margin-bottom: 0.9rem; border-color: var(--brass); color: var(--rose-deep); }
.why-card h3 { font-size: 1.2rem; }
.why-card p { font-size: var(--step--1); color: var(--olive-soft); margin: 0; }
.reviews {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--sage); color: var(--olive);
  padding: 0.6rem 1.2rem; border-radius: 999px; font-weight: 700; margin-top: 1.8rem;
}
.reviews .stars { letter-spacing: 0.1em; color: var(--brass); }

/* ============================================================
   Rodapé / Contactos
   ============================================================ */
.site-footer { background: var(--olive); color: #d9ddcd; }
.footer__grid {
  display: grid; grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  padding-block: var(--pad-section) 2.5rem;
}
.footer__grid h3 { color: #f3efe2; font-size: 1.25rem; }
.footer a { color: var(--rose-soft); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer p, .footer li { color: #d9ddcd; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.contact-list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.contact-list svg { flex: none; margin-top: 4px; color: var(--sage); }
.hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dotted color-mix(in srgb, var(--sage) 40%, transparent); padding-bottom: 0.4rem; }
.hours .closed { color: var(--rose-soft); font-style: italic; }
.socials { display: flex; gap: 0.7rem; margin-top: 1rem; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1.5px solid var(--sage); border-radius: 50%; color: var(--sage);
  transition: background var(--calm) var(--ease), color var(--calm) var(--ease), transform var(--calm) var(--ease);
}
.socials a:hover { background: var(--sage); color: var(--olive); transform: translateY(-2px); }
.map-embed {
  margin-top: 1rem; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); line-height: 0;
}
.map-embed iframe { width: 100%; height: 240px; border: 0; }
.footer__base {
  border-top: 1px solid color-mix(in srgb, var(--sage) 30%, transparent);
  padding-block: 1.3rem; display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: space-between; font-size: var(--step--1); color: #b7bda9;
}

/* ============================================================
   Página de bolos
   ============================================================ */
.cakes-hero { background: linear-gradient(180deg, var(--rose) 0%, var(--rose-soft) 100%); padding-block: clamp(3rem,2rem+4vw,6rem); }
.cakes-hero h1 { font-size: var(--step-4); color: #45291f; max-width: 14ch; }
.cakes-hero p { color: #5a352b; font-size: var(--step-1); max-width: 40ch; }

.champions { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.4rem; }
.champion {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--cream-2);
}
.champion img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.champion__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent, rgba(46,52,42,0.82));
  color: var(--cream); padding: 1.4rem 1rem 1rem;
}
.champion__label h3 { color: var(--cream); margin: 0; font-size: 1.3rem; }
.champion__label span { font-size: var(--step--1); color: var(--rose-soft); }

.cake-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1.2rem; }
.cake {
  background: var(--cream-2); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform var(--slow) var(--ease);
}
.cake:hover { transform: translateY(-4px); }
.cake img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.cake figcaption { padding: 0.8rem 0.9rem 1rem; font-family: var(--display); color: var(--olive); font-size: 1.02rem; }
.cake.placeholder {
  display: grid; place-items: center; aspect-ratio: 1/1; text-align: center;
  background: var(--rose-soft); color: var(--rose-deep); font-style: italic; padding: 1rem;
}

/* ============================================================
   Motion — revelação lenta + page load
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 120ms; }
.reveal[data-delay="2"] { transition-delay: 240ms; }
.reveal[data-delay="3"] { transition-delay: 360ms; }

.hero__copy > * { animation: fade-up var(--slow) var(--ease) both; }
.hero__copy > *:nth-child(1) { animation-delay: 120ms; }
.hero__copy > *:nth-child(2) { animation-delay: 260ms; }
.hero__copy > *:nth-child(3) { animation-delay: 400ms; }
.hero__copy > *:nth-child(4) { animation-delay: 540ms; }
.hero__figure { animation: fade-up var(--slow) var(--ease) both; animation-delay: 200ms; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 880px) {
  .hero__grid,
  .about__grid,
  .founder__grid,
  .events__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__copy { max-width: none; }
  /* Hero compacto em mobile: foto vira faixa horizontal baixa, CTAs no 1º ecrã */
  .hero__figure { order: -1; max-width: none; }
  .hero__figure img { aspect-ratio: 16 / 9; max-height: 30vh; }
  .founder__photo { max-width: 420px; }

  .nav__toggle { display: grid; place-items: center; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream-2);
    border-bottom: 1px solid var(--sage);
    padding: 0.5rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform var(--calm) var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid color-mix(in srgb, var(--sage) 25%, transparent); }
  .nav__links a { display: block; padding: 0.9rem 0; }
  .nav__links a::after { display: none; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .menu-item__name { font-size: 1.08rem; }

  /* Hero compacto: subtítulo e CTAs mais apertados para caber no 1º ecrã */
  .hero .eyebrow { letter-spacing: 0.16em; font-size: 0.72rem; }
  .hero__slogan { font-size: var(--step-0); margin-bottom: 1rem; }
  .hero__cta .btn { padding: 0.7rem 1.15rem; font-size: 0.92rem; }
  .menu-addons__list { grid-template-columns: 1fr; }

  /* Cabeçalho mais leve no telemóvel: o logo já diz "Hora Mansa", por isso
     escondemos o wordmark de texto e apertamos os espaços. */
  .brand__name { display: none; }
  .brand__mark { width: 44px; height: 44px; }
  .nav { gap: 0.6rem; }
  .nav__tools { gap: 0.45rem; }
  .nav__tools .btn--sage { padding: 0.6rem 1rem; font-size: 0.9rem; }
  .nav__toggle { width: 40px; height: 40px; }
  .nav__toggle svg { width: 24px; height: 24px; }

  /* Abas: linha única com scroll + indicador "arrasta ›" */
  .tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-right: 3.4rem; }
  .tabs::-webkit-scrollbar { display: none; }
  .tabs-hint {
    display: flex; align-items: center; gap: 0.15rem;
    position: absolute; right: 0; top: 0; height: 2.5rem;
    padding: 0 0.3rem 0 1.8rem;
    font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--olive); pointer-events: none;
    background: linear-gradient(to right, rgba(247, 242, 233, 0), var(--cream) 42%);
    animation: nudge 1.6s var(--ease) infinite;
  }
  .tabs-hint > span { font-size: inherit; }
  .tabs-wrap.is-end .tabs-hint { opacity: 0; transition: opacity var(--calm) var(--ease); }
}

@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

/* ============================================================
   Revisão v2 — horários do menu, extras das panquecas,
   brunch de domingo, placeholder de eventos e bolos na homepage
   ============================================================ */

/* Horários de serviço junto ao título do menu */
.menu__meta { display: grid; gap: 0.35rem; justify-items: start; }
.menu-times {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.45rem 0.6rem;
}
.menu-times li {
  background: var(--cream-2);
  border: 1px solid color-mix(in srgb, var(--sage) 45%, transparent);
  border-radius: 999px; padding: 0.3rem 0.85rem;
  font-size: var(--step--1); color: var(--olive-soft);
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.menu-times strong {
  font-family: var(--display); font-weight: 500;
  color: var(--olive); margin-right: 0.3rem;
}
.menu__meta .menu__note { max-width: 46ch; }

/* Horário da refeição no topo de cada painel */
.meal-time {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--step--1); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--sage-deep);
  margin: 0 0 1.5rem;
  font-variant-numeric: tabular-nums;
}

/* Extras ligados visualmente às panquecas */
.menu-addons {
  margin-top: 1rem;
  background: var(--cream-2);
  border: 1.5px dashed color-mix(in srgb, var(--brass) 60%, transparent);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem 1.2rem;
}
.menu-addons__title {
  margin: 0 0 0.7rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--sage-deep);
}
.menu-addons__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 0.35rem 1.1rem;
  font-size: var(--step--1); color: var(--olive-soft);
}
.menu-addons__list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem;
  border-bottom: 1px dotted color-mix(in srgb, var(--sage) 35%, transparent);
  padding-bottom: 0.25rem;
}
.menu-addons__list b { color: var(--rose-deep); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* Painel Brunch de Domingo */
.sunday__time {
  font-family: var(--display);
  font-size: var(--step-2);
  color: var(--sage);
  margin: 0.1rem 0 0.8rem;
  font-variant-numeric: tabular-nums;
}
.spotlight .btn--ghost { color: #f3efe2; }
.spotlight .btn--ghost:hover { background: #f3efe2; color: var(--olive); border-color: #f3efe2; }

/* Galeria de fotos reais de eventos privados (revisão v4) */
.event-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  align-content: start;
}
.event-gallery figure { margin: 0; }
.event-gallery__main { grid-column: 1 / -1; }
.event-gallery img {
  width: 100%; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.event-gallery__main img { aspect-ratio: 16 / 10; }
.event-gallery figure:not(.event-gallery__main) img { aspect-ratio: 1 / 1; }
.event-gallery figcaption {
  margin-top: 0.5rem;
  font-size: var(--step--1);
  font-style: italic;
  color: #5a352b;
  line-height: 1.45;
}

/* Selo de avaliação no rodapé (revisão v4 — movido da secção Porquê) */
.footer-rating {
  margin: 0.9rem 0 0;
  font-size: var(--step--1);
  font-weight: 700;
  color: #d9ddcd;
  letter-spacing: 0.04em;
}
.footer-rating .stars { color: var(--brass); letter-spacing: 0.12em; margin-right: 0.25rem; }

/* Respeitar quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
