/* ============================================================
   Di Casa — V2 (Editorial · com calor)
   ============================================================ */

/* -------- Tokens -------- */
:root {
  --bg: #faf3e6;
  --surface: #ffffff;
  --surface-warm: #f0e6d3;
  --ink: #1a1612;
  --ink-soft: #3c3530;
  --muted: #8a7d6c;
  --rule: #e2d6bc;

  --red: #d62828;
  --red-deep: #9a1c1c;

  /* Ardósia — superfícies escuras (footer, cta-band) */
  --slate: #222934;
  --slate-soft: #2c3540;
  --slate-rule: #3a4351;

  --font-display: 'Cormorant Garamond', 'Source Serif Pro', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;

  --container: 1280px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --header-h: 84px;

  --t-fast: 200ms ease;
  --t-base: 320ms ease;
  --t-slow: 800ms cubic-bezier(.25,.46,.45,.94);

  --radius-sm: 2px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; }

/* Hierarquia tipográfica clara — display gigante vs body normal */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.display--xxl { font-size: clamp(3.5rem, 11vw, 9rem); }
.display--xl  { font-size: clamp(3rem, 8vw, 6.5rem); }
.display--lg  { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
.display--md  { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
p { margin: 0 0 1rem; }
p, li { font-size: 1rem; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 0; }
em, i { font-style: italic; }

/* -------- Layout primitives -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: clamp(4rem, 9vw, 8rem) 0; }
.section--sm { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.section--bordered { border-top: 1px solid var(--rule); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.eyebrow--muted { color: var(--muted); }

.rule-red {
  width: 60px; height: 2px; background: var(--red);
  margin: 0 0 1.4rem;
}

/* -------- Links e Buttons -------- */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.link:hover { color: var(--red); }
.link--inverse { color: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.55); }
.link--inverse:hover { color: #fff; border-color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--inverse {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn--inverse:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--red {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--bg);
  z-index: 100;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
}
.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 56px; width: auto; transition: height var(--t-base); }
.site-header.is-scrolled .brand img { height: 46px; }

.nav { display: flex; align-items: center; gap: 2.4rem; }
.nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--t-fast);
  padding: 0.5rem 0;
}
.nav a:hover, .nav a.is-active { color: var(--red); }
.nav a.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  position: relative; z-index: 101;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  .brand img { height: 44px; }
  .site-header.is-scrolled .brand img { height: 40px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0;
    flex-direction: column; gap: 0;
    padding: 6rem 0 2rem;
    background: var(--bg);
    transform: translateY(-110%);
    transition: transform var(--t-base);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: none;
    letter-spacing: -0.01em;
    font-weight: 400;
    padding: 1rem var(--gutter);
    width: 100%;
    color: var(--ink) !important;
    text-shadow: none !important;
    border-bottom: 1px solid var(--rule);
  }
  .nav a.is-active { color: var(--red) !important; }
  .nav a.is-active::after { display: none; }
}

/* -------- HERO SLIDER -------- */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 780px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 0 clamp(3rem, 8vw, 6rem);
}
.slides {
  position: absolute; inset: 0;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1200ms cubic-bezier(.4,0,.2,1);
  transform: scale(1.05);
}
.slide.is-active { opacity: 1; transform: scale(1); transition: opacity 1200ms cubic-bezier(.4,0,.2,1), transform 8s cubic-bezier(.4,0,.2,1); }
.slides::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.10) 40%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__eyebrow {
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.6rem;
  display: block;
  font-size: 0.75rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0 0 1.6rem;
  max-width: 14ch;
  color: #fff;
}
.hero__title em { color: inherit; font-style: italic; }
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 520px;
  color: rgba(255,255,255,0.86);
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero__ctas { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.hero__nav {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  right: clamp(1.5rem, 4vw, 3rem);
  display: flex; gap: 0.6rem;
  z-index: 3;
}
.hero__dot {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--t-fast);
}
.hero__dot.is-active { background: #fff; }
.hero__counter {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 3rem);
  z-index: 3;
  display: flex; gap: 0.6rem; align-items: center;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
}
.hero__counter strong { color: #fff; font-weight: 600; }

/* -------- Intro -------- */
.intro { text-align: center; }
.intro .display { color: var(--ink); margin-bottom: 1.6rem; }
.intro p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* -------- Carta — apresentação editorial das categorias -------- */
.carta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.6rem);
}
@media (min-width: 720px) {
  .carta-grid { grid-template-columns: repeat(3, 1fr); }
}
.carta-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--surface-warm);
  aspect-ratio: 3 / 4;
}
.carta-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.25,.46,.45,.94);
}
.carta-card:hover img { transform: scale(1.06); }
.carta-card__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  color: #fff;
  z-index: 2;
}
.carta-card__inner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.carta-card__inner > * { position: relative; }
.carta-card__num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.4rem;
}
.carta-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.carta-card__count {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* -------- CTA banda -------- */
.cta-band {
  background: var(--slate);
  background-image:
    radial-gradient(ellipse 800px 400px at 30% 20%, rgba(255,255,255,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 600px 300px at 80% 80%, rgba(0,0,0,0.18) 0%, transparent 70%);
  color: rgba(255, 255, 255, 0.92);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 3rem; }
}
.cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.cta-band p { color: rgba(255, 255, 255, 0.65); margin: 0; max-width: 480px; }

/* -------- Restaurantes home (apenas nomes, horizontal sem cards) -------- */
.rest-names {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: clamp(0.6rem, 2vw, 1.4rem) clamp(1.2rem, 3.5vw, 2.6rem);
  text-align: center;
}
.rest-names li { display: inline-flex; }
.rest-names a {
  display: inline-block;
  padding: 0.4rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  transition: color var(--t-fast);
  border-bottom: 1px solid transparent;
}
.rest-names a:hover { color: var(--red); border-bottom-color: var(--red); }

/* -------- Restaurantes preview antigo (mantido caso seja útil) -------- */
.rest-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.rest-preview__item {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}
@media (min-width: 720px) {
  .rest-preview__item { grid-template-columns: 1.4fr 2fr 1.2fr; gap: 2.5rem; align-items: center; }
}
.rest-preview__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.rest-preview__hours { color: var(--ink-soft); font-size: 0.95rem; }
.rest-preview__hours strong { color: var(--ink); font-weight: 500; }
.rest-preview__addr { color: var(--muted); font-size: 0.88rem; line-height: 1.55; }

/* -------- Categoria — hero fullbleed -------- */
.cat-hero {
  position: relative;
  min-height: clamp(360px, 50vh, 520px);
  display: flex;
  align-items: flex-end;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.cat-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cat-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.20) 40%, rgba(0,0,0,0.65) 100%);
}
.cat-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.cat-hero__crumb {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.4rem;
}
.cat-hero__crumb a { color: rgba(255, 255, 255, 0.85); }
.cat-hero__crumb a:hover { color: #fff; }
.cat-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin-bottom: 0.8rem;
  color: #fff;
}
.cat-hero__intro {
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  font-size: 1.02rem;
}

/* -------- LISTA DE PRATOS — design refeito -------- */
.dishes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* Cabeçalho de bloco visível só quando há mistura */
.dishes-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
@media (min-width: 820px) {
  .dishes-feature { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}
.dish-feature {
  display: flex;
  flex-direction: column;
}
.dish-feature__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-warm);
  margin-bottom: 1.2rem;
}
.dish-feature__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.25,.46,.45,.94);
}
.dish-feature:hover .dish-feature__img img { transform: scale(1.05); }
.dish-feature__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 0.4rem;
}
.dish-feature__title-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin-bottom: 0.4rem;
}
.dish-feature__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--red);
  white-space: nowrap;
}
.dish-feature__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* Lista textual — pratos sem imagem (estilo menu impresso) */
.dishes-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
@media (min-width: 920px) {
  .dishes-list {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(3rem, 6vw, 5rem);
    background-image: linear-gradient(to bottom, var(--rule), var(--rule));
    background-position: center top;
    background-size: 1px calc(100% - 1px);
    background-repeat: no-repeat;
  }
}
.dish-line {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.dish-line__head {
  display: flex; align-items: baseline; gap: 0.8rem;
  margin-bottom: 0.3rem;
}
.dish-line__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.dish-line__lead {
  flex: 1;
  height: 1px;
  background-image: radial-gradient(circle, var(--muted) 1px, transparent 1.5px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: 0 100%;
  opacity: 0.7;
  align-self: end;
  margin-bottom: 0.3rem;
}
.dish-line__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.dish-line__desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  padding-right: 1rem;
}

/* -------- Outras categorias (links em baixo) -------- */
.cat-other {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
}
.cat-other a,
.cat-other .is-current {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-soft);
  padding: 0.6rem 0;
  margin-right: 2rem;
  transition: color var(--t-fast);
  border-bottom: 1px solid transparent;
}
.cat-other a:hover { color: var(--red); border-bottom-color: var(--red); }
.cat-other .is-current {
  color: var(--ink);
  border-bottom-color: var(--red);
  cursor: default;
}

/* -------- Di Casa storytelling -------- */
.story {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 800px) {
  .story { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
  .story--reverse > .story__media { order: 2; }
}
.story:last-of-type { border-bottom: 0; }
.story__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-warm);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__body h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 1.4rem;
}
.story__body p, .story__body div { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.story__media--triple {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.6rem;
  aspect-ratio: 4 / 5;
  background: transparent;
  overflow: visible;
}
.story__media--triple img { width: 100%; height: 100%; object-fit: cover; }
.story__media--triple img:nth-child(1) { grid-row: 1 / span 2; }

/* -------- Aviso da página Onde estamos (full-bleed) -------- */
.resta-notice {
  background: var(--surface-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
}
.resta-notice .container {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* -------- Restaurantes (página) -------- */
.rest {
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  scroll-margin-top: calc(var(--header-h) + 2rem);
}
@media (min-width: 820px) {
  .rest { grid-template-columns: 1fr 1.4fr 1fr; gap: 3rem; }
}
.rest:first-of-type { border-top: 1px solid var(--rule); }
.rest__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}
.rest__hours-day {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.8rem;
  font-weight: 600;
}
.rest__hours-day:first-child { margin-top: 0; }
.rest__hours-period { color: var(--ink); font-size: 0.95rem; }
.rest__addr {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.rest__actions { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.rest__actions a {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  color: var(--ink);
  transition: color var(--t-fast);
}
.rest__actions a:hover { color: var(--red); }

/* -------- Footer -------- */
.site-footer {
  background: var(--slate);
  background-image:
    radial-gradient(ellipse 1200px 600px at 20% 0%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 800px 500px at 100% 100%, rgba(0,0,0,0.2) 0%, transparent 60%);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem;
  position: relative;
}
/* Textura ardósia (logo-slate.jpg) — overlay subtil sobre o --slate base */
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../img/logo-slate.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }
.site-footer .brand img { height: 64px; }
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  text-decoration: none;
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fff;
  font-style: italic;
}
.footer-brand__sub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.footer-brand__sub::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95); font-weight: 600;
  margin-bottom: 1rem;
}
.footer-grid a:hover { color: rgba(255, 255, 255, 1); }
.footer-grid p { margin: 0 0 0.5rem; line-height: 1.6; font-size: 0.95rem; }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.socials { display: flex; gap: 0.6rem; margin-top: 1.4rem; }
.socials a {
  display: inline-flex; width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition: border-color var(--t-fast);
}
.socials a:hover { border-color: var(--red); }
.socials svg { width: 16px; height: 16px; fill: rgba(255, 255, 255, 0.85); }

/* -------- Util -------- */
.center { text-align: center; }
.muted { color: var(--muted); }
.notice {
  border-left: 2px solid var(--red);
  background: var(--surface-warm);
  padding: 1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .slide.is-active { transform: scale(1) !important; }
}

/* -------- Map modal -------- */
.map-modal {
  position: fixed; inset: 0;
  background: rgba(26, 22, 18, 0.85);
  display: none; align-items: center; justify-content: center;
  z-index: 200;
  padding: var(--gutter);
}
.map-modal.is-open { display: flex; }
.map-modal__inner {
  position: relative;
  width: 100%; max-width: 920px;
  aspect-ratio: 16 / 10;
  background: #fff;
  overflow: hidden;
}
.map-modal iframe { width: 100%; height: 100%; border: 0; }
.map-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px;
  background: rgba(0,0,0,0.6); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
