/* ═══════════════════════════════════════════════════
   MEIA VOLTA DO ÚRANO — Casa das Artes
   Design System v2 · Inspired by entropia.pt
   ═══════════════════════════════════════════════════ */

/* ── Variables ────────────────────────────────────── */
:root {
  --cream:        #f4ede0;
  --cream-alt:    #faf7f1;
  --black:        #0d0d0d;
  --dark:         #181818;
  --mid:          #7a7a72;
  --dim:          #b2ada4;
  --white:        #ffffff;

  --ff-display:   'Bebas Neue', sans-serif;
  --ff-serif:     'Cormorant Garamond', serif;
  --ff-body:      'Inter', sans-serif;

  --nav-h:        68px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }
ul { list-style: none; }

/* ── Utility: section label ──────────────────────── */
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.section-label--light { color: rgba(244, 237, 224, 0.45); }

/* ── Utility: display heading ────────────────────── */
.display-heading {
  font-family: var(--ff-display);
  font-size: clamp(44px, 5.8vw, 88px);
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.display-heading em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  font-size: 0.9em;
  letter-spacing: 0.02em;
}
.display-heading--light { color: var(--cream); }

/* ── Utility: arrow link ─────────────────────────── */
.link-arrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: opacity 0.3s;
}
.link-arrow:hover { opacity: 0.5; }
.link-arrow--light { color: rgba(244, 237, 224, 0.55); }
.link-arrow--light:hover { opacity: 1; color: var(--cream); }

/* ── Scroll reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ══════════════════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════════════════ */
.cta-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 12px;
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(13, 13, 13, 0.22);
  transition: transform 0.35s var(--ease), background 0.3s;
}
.cta-float:hover {
  transform: translateY(-3px);
  background: #2c2c2c;
}
.cta-float__mark {
  width: 26px;
  height: 26px;
  border: 1.5px solid rgba(244, 237, 224, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-float__mark svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background 0.55s var(--ease), backdrop-filter 0.55s;
}
.site-header.scrolled {
  background: rgba(244, 237, 224, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  height: var(--nav-h);
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav__left,
.nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__right { justify-content: flex-end; }

.nav__left a,
.nav__right a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  transition: opacity 0.3s;
  white-space: nowrap;
}
.nav__left a:hover,
.nav__right a:hover { opacity: 0.4; }

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: opacity 0.3s;
}
.nav__logo:hover { opacity: 0.65; }
.nav__logo svg { width: 38px; height: 38px; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  grid-column: 3;
  justify-self: end;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.site-header.open .nav__toggle span:first-child {
  transform: translateY(7.5px) rotate(45deg);
}
.site-header.open .nav__toggle span:last-child {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile panel */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 8px 40px 28px;
  border-top: 1px solid rgba(13, 13, 13, 0.08);
}
.site-header.open .nav__mobile { display: flex; }
.nav__mobile a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 13, 13, 0.07);
  transition: opacity 0.2s;
}
.nav__mobile a:hover { opacity: 0.5; }
.nav__mobile-cta {
  border-bottom: none !important;
  color: var(--mid) !important;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--cream);
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Two-column split */
.hero__layout {
  flex: 1;
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: calc(100svh - var(--nav-h) - 112px);
}

/* Left: sketch illustration */
.hero__art {
  padding: 28px 0 24px 40px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.sketch {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
}

/* Right: photos + statement */
.hero__photos {
  position: relative;
  padding: 44px 40px 28px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px;
  align-content: start;
}

.hero__statement {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 6px;
}

.hero__photo { overflow: hidden; }
.hero__photo img { transition: transform 1s var(--ease); }
.hero__photo:hover img { transform: scale(1.04); }
.hero__photo--a { aspect-ratio: 3/4; }
.hero__photo--b { aspect-ratio: 3/4; margin-top: 60px; }

/* Bottom bar with big title */
.hero__foot {
  padding: 22px 40px 30px;
  border-top: 1px solid rgba(13, 13, 13, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__city {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}
.hero__name {
  font-family: var(--ff-display);
  font-size: clamp(64px, 10.5vw, 164px);
  line-height: 0.88;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--black);
}

/* ══════════════════════════════════════════════════
   STATEMENT (dark full-bleed)
══════════════════════════════════════════════════ */
.statement {
  background: var(--black);
  padding: 128px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement__text {
  font-family: var(--ff-display);
  font-size: clamp(40px, 7.5vw, 114px);
  line-height: 1.06;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.statement__pour {
  position: absolute;
  right: clamp(32px, 7vw, 110px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(140px, 16vw, 230px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.statement__pour.visible { opacity: 1; }
#bottle-group {
  transform-origin: 195px 212px;
  transform: rotate(0deg);
  transition: transform 0.05s linear;
}
@media (max-width: 820px) {
  .statement__pour {
    width: clamp(80px, 20vw, 110px);
    right: 14px;
  }
}

/* ══════════════════════════════════════════════════
   CONCEITO
══════════════════════════════════════════════════ */
.conceito {
  background: var(--cream-alt);
  padding: 72px 40px;
}
.conceito__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.conceito__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.conceito__text .display-heading {
  font-size: clamp(30px, 3.8vw, 58px);
}
.conceito__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.conceito__body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  max-width: 560px;
  text-align: center;
}
.conceito__body em {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--black);
}

/* ══════════════════════════════════════════════════
   ESPAÇOS
══════════════════════════════════════════════════ */
.espacos {
  background: var(--cream);
  padding: 120px 40px;
}
.espacos__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.espacos__header {
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
}
.espacos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(13, 13, 13, 0.1);
}
.espaco {
  padding: 40px 26px;
  border-right: 1px solid rgba(13, 13, 13, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.45s var(--ease), color 0.45s;
  cursor: default;
}
.espaco:last-child { border-right: none; }
.espaco:hover { background: var(--black); color: var(--cream); }

.espaco__num {
  font-family: var(--ff-display);
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dim);
  transition: color 0.45s;
}
.espaco:hover .espaco__num { color: rgba(244, 237, 224, 0.18); }

.espaco__content h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.espaco__content p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  transition: color 0.45s;
}
.espaco:hover .espaco__content p { color: rgba(244, 237, 224, 0.5); }

/* ══════════════════════════════════════════════════
   MENU — Image card(s)
══════════════════════════════════════════════════ */
.menu-section {
  background: var(--black);
  color: var(--cream);
  padding: 120px 40px;
}
.menu-section__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
.menu-section__inner > .section-label { align-self: flex-start; }

/* ── Menu card wrapper ─────────────────────────── */
.menu-card-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.menu-cards {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.menu-card {
  margin: 0;
  flex: 0 0 auto;
  width: min(440px, calc(50% - 16px));
  position: relative;
  z-index: 1;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.25),
    0 28px 72px rgba(0,0,0,0.6),
    0 10px 28px rgba(0,0,0,0.35);
  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s var(--ease-out),
    z-index 0s;
}
.menu-card--left  { transform: rotate(-1.4deg); transform-origin: 80% center; }
.menu-card--right { transform: rotate( 1.2deg); transform-origin: 20% center; }
.menu-card:hover {
  transform: scale(1.4) !important;
  z-index: 10;
  box-shadow: none;
}
.menu-card img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-card__caption {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,237,224,0.22);
  text-align: center;
}


/* ══════════════════════════════════════════════════
   EVENTOS
══════════════════════════════════════════════════ */
.eventos {
  background: var(--cream-alt);
  padding: 120px 40px;
}
.eventos__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.eventos__header { margin-bottom: 44px; }
.eventos__list { display: flex; flex-direction: column; }

.evento {
  display: grid;
  grid-template-columns: 100px 1fr 380px;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(13, 13, 13, 0.1);
  align-items: center;
}
.evento:last-child { border-bottom: 1px solid rgba(13, 13, 13, 0.1); }

.evento__date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.evento__day {
  font-family: var(--ff-display);
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.evento__month {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 2px;
}
.evento__body h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 8px;
}
.evento__body p {
  font-size: 13px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 10px;
}
.evento__meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--dim);
}
.evento__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.evento__img img { transition: transform 0.85s var(--ease); }
.evento:hover .evento__img img { transform: scale(1.06); }

/* ══════════════════════════════════════════════════
   RESERVAR BUTTON (sketch style)
══════════════════════════════════════════════════ */
/* ── reservar inline with "volta" line ── */
.contacto__reservar {
  display: inline-block;
  vertical-align: middle;
  margin-left: 28px;
}

.reservar-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: var(--cream);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.reservar-btn:hover { opacity: 0.72; }
.reservar-btn__frame {
  display: block;
  width: 190px;
  height: 105px;
}
.reservar-btn__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  padding-bottom: 0;
}
/* Border draws itself when scrolled into view */
.reservar-btn__border {
  stroke-dasharray: 1260;
  stroke-dashoffset: 1260;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.reveal.in .reservar-btn__border {
  stroke-dashoffset: 0;
}
/* Ring default tilt */
.reservar-btn__ring {
  transform: rotate(0deg);
  transform-box: fill-box;
  transform-origin: center;
}
/* Ring spins on hover */
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.reservar-btn:hover .reservar-btn__ring {
  animation: ring-spin 2.5s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* ══════════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════════ */
.contacto {
  background: var(--black);
  color: var(--cream);
  padding: 120px 40px;
}
.contacto__inner {
  max-width: 1240px;
  margin: 0 auto;
}
.contacto__big {
  font-family: var(--ff-display);
  font-size: clamp(68px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 80px;
}
.contacto__outline {
  -webkit-text-stroke: 1.5px var(--cream);
  color: transparent;
}
.contacto__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 52px;
  border-top: 1px solid rgba(244, 237, 224, 0.1);
}
.contacto__col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.32);
  margin-bottom: 16px;
}
.contacto__col p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(244, 237, 224, 0.62);
}
.contacto__col a {
  display: block;
  color: rgba(244, 237, 224, 0.62);
  transition: color 0.3s;
}
.contacto__col a:hover { color: var(--cream); }
.contacto__cta {
  display: inline-block !important;
  margin-top: 20px;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--cream) !important;
  border-bottom: 1px solid rgba(244, 237, 224, 0.3);
  padding-bottom: 3px;
  transition: border-color 0.3s !important;
}
.contacto__cta:hover { border-color: var(--cream) !important; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: var(--cream);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(244, 237, 224, 0.07);
}
.footer__copy {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(244, 237, 224, 0.22);
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.32);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--cream); }

/* ══════════════════════════════════════════════════
   RESPONSIVE — 1100px
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero__layout { grid-template-columns: 1fr 1fr; }
  .espacos__grid { grid-template-columns: repeat(3, 1fr); }
  .espaco:nth-child(3) { border-right: none; }
  .espaco:nth-child(4) { border-top: 1px solid rgba(13, 13, 13, 0.1); }
  .evento {
    grid-template-columns: 88px 1fr;
    grid-template-areas:
      "img  img"
      "date body";
    gap: 22px 32px;
  }
  .evento__date { grid-area: date; }
  .evento__body { grid-area: body; }
  .evento__img {
    grid-area: img;
    aspect-ratio: 21/9;
    max-height: 260px;
  }
  .contacto__grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card { width: min(380px, calc(50% - 12px)); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — 820px
══════════════════════════════════════════════════ */
@media (max-width: 820px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 24px; }
  .nav__left, .nav__right { display: none; }
  .nav__toggle { display: flex; }

  .hero__layout { grid-template-columns: 1fr; }
  .hero__art {
    display: flex;
    padding: 12px 20px 0;
    height: 240px;
    overflow: hidden;
    align-items: flex-start;
    justify-content: center;
  }
  .sketch {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
  .hero__photos { padding: 24px 24px 20px; grid-template-columns: 1fr 1fr; }
  .hero__photo--b { margin-top: 44px; }
  .hero__foot { padding: 20px 24px 28px; }
  .hero__name { font-size: clamp(52px, 16vw, 100px); }

  .statement { padding: 88px 24px; }
  .conceito { padding: 88px 24px; }
  .espacos { padding: 88px 24px; }
  .espacos__grid { grid-template-columns: 1fr 1fr; }
  .espaco:nth-child(3) { border-right: 1px solid rgba(13, 13, 13, 0.1); }
  .espaco:nth-child(4) { border-right: none; }
  .menu-section { padding: 88px 24px; }
  .menu-cards { gap: 20px; }
  .menu-card { width: min(340px, 100%); }
  .menu-card:hover { transform: none !important; }
  .menu-card--left { transform: rotate(-0.8deg); }
  .menu-card--right { transform: rotate(0.8deg); }
  .eventos { padding: 88px 24px; }
  .evento { grid-template-columns: 72px 1fr; gap: 18px 24px; }
  .evento__img { aspect-ratio: 16/9; max-height: 220px; }
  .contacto { padding: 88px 24px; }
  .contacto__big { font-size: clamp(52px, 16vw, 100px); margin-bottom: 52px; }
  .contacto__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }

  /* Shrink floating CTA so it doesn't crowd narrow screens */
  .cta-float {
    bottom: 18px;
    right: 18px;
    padding: 10px 16px 10px 10px;
    font-size: 9px;
    gap: 8px;
  }
  .cta-float__mark { width: 22px; height: 22px; }
  .cta-float__mark svg { width: 12px; height: 12px; }

  /* Avoid CTA covering hero name on narrow screens */
  .hero { padding-bottom: 64px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — 600px
══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .contacto__reservar {
    display: block;
    margin-left: 0;
    margin: 12px 0;
  }
  .reservar-btn__frame { width: 160px; height: 90px; }
  .reservar-btn__label { font-size: 17px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__photos { grid-template-columns: 1fr; gap: 16px; }
  .hero__photo--b { margin-top: 10px; }
  .hero__photo--a,
  .hero__photo--b { aspect-ratio: 4/3; }
  .espacos__grid { grid-template-columns: 1fr; }
  .espaco {
    border-right: none !important;
    padding: 32px 22px;
  }
  .espaco:not(:first-child) { border-top: 1px solid rgba(13, 13, 13, 0.1); }
  .evento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "img"
      "date"
      "body";
    gap: 12px;
    padding: 28px 0;
  }
  .evento__date { flex-direction: row; align-items: baseline; gap: 10px; }
  .evento__day { font-size: 40px; }
  .evento__img { aspect-ratio: 16/9; max-height: none; }
  .contacto__grid { grid-template-columns: 1fr; gap: 28px; }
  .conceito { padding: 72px 22px; }
  .statement { padding: 72px 22px; }
  .statement__text { font-size: clamp(34px, 9vw, 64px); }
  .menu-section { padding: 72px 22px; }
  .eventos { padding: 72px 22px; }
  .espacos { padding: 72px 22px; }
  .contacto { padding: 72px 22px; }
  .contacto__big { font-size: clamp(44px, 14vw, 72px); margin-bottom: 44px; }
  .reservar-btn__frame { width: 150px; height: 84px; }
  .reservar-btn__label { font-size: 16px; }

  /* Make floating CTA an icon-only pill on very small screens */
  .cta-float {
    padding: 10px;
    gap: 0;
    font-size: 0;
    letter-spacing: 0;
  }
  .cta-float__mark { width: 24px; height: 24px; }
}

/* ══════════════════════════════════════════════════
   TOUCH — disable hover-only transforms
══════════════════════════════════════════════════ */
@media (hover: none) {
  .menu-card:hover { transform: none !important; box-shadow: none; }
  .menu-card--left:hover  { transform: rotate(-1.4deg) !important; }
  .menu-card--right:hover { transform: rotate( 1.2deg) !important; }
}
