/* Taberna da Poupa — concept site by Northpin Studio (fictional business) */

@font-face { font-family: "DM Serif Display"; src: url("../fonts/dm-serif-display.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Serif Display"; src: url("../fonts/dm-serif-display-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dm-sans-var.woff2") format("woff2"); font-weight: 100 1000; font-style: normal; font-display: swap; }

:root {
  --glaze: #F4F5F1;      /* cal: limewash + tile glaze */
  --glaze-2: #E7EBF2;    /* cooled wall */
  --paper: #FCFCFA;
  --cobalt: #1D3A8A;     /* azulejo blue */
  --cobalt-deep: #142B66;
  --cobalt-soft: #5470BC;
  --ink: #141A2B;
  --ink-soft: #464E63;
  --yellow: #F3B31B;     /* eléctrico 28 */
  --wine: #4A1421;       /* vinho, fado nights */
  --line: #CDD3E0;
  --field: #7A849B;      /* 3.7:1 on white: form borders stay visible */
  --ok: #1F8A55;
  --err: #B3261E;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --wrap: 1200px;
  --gut: 16px;
  /* gutters that also clear a landscape notch */
  --gl: max(var(--gut), env(safe-area-inset-left, 0px));
  --gr: max(var(--gut), env(safe-area-inset-right, 0px));
  --r: 6px;
  --focus: var(--cobalt);
  --tile: url("../img/azulejo.svg");
}
@media (min-width: 600px) { :root { --gut: 28px; } }
@media (min-width: 1100px) { :root { --gut: 40px; } }

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 12px; }
body { margin: 0; background: var(--glaze); color: var(--ink); font-family: var(--sans); font-size: 1.0625rem; line-height: 1.6; font-weight: 400; -webkit-font-smoothing: antialiased; overflow-wrap: break-word; }
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.04; margin: 0; letter-spacing: -0.005em; text-wrap: balance; }
p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
abbr[title] { text-decoration: none; }
a { color: var(--cobalt); text-decoration-thickness: 1px; text-underline-offset: 3px; }
@media (hover: hover) { a:hover { text-decoration-thickness: 2px; } }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
[hidden] { display: none !important; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.muted { color: var(--ink-soft); font-weight: 400; }
.nw { white-space: nowrap; }
.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gut)); margin-inline: auto; padding-left: var(--gl); padding-right: var(--gr); }
.ico { width: 22px; height: 22px; flex: none; }

.skip { position: absolute; left: 8px; top: -120px; z-index: 100; background: var(--ink); color: #fff; padding: 12px 16px; border-radius: var(--r); }
.skip:focus { top: 8px; }

/* ---------- honesty ribbon ---------- */
.ribbon { background: var(--ink); color: #D9DEEA; font-size: 0.8125rem; line-height: 1.35; letter-spacing: 0.01em; }
.ribbon__in { max-width: calc(var(--wrap) + 2 * var(--gut)); margin-inline: auto; padding: 6px var(--gr) 7px var(--gl); display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 3px 20px; text-align: center; }
.ribbon__in p { text-wrap: balance; }
.ribbon__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 14px; }
/* 44px tap target without making the strip taller */
.ribbon a { color: #fff; font-weight: 650; display: inline-block; padding: 13px 4px; margin: -13px 0; white-space: nowrap; text-underline-offset: 3px; }
.is-clean .ribbon { display: none; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 12px 22px; border-radius: 8px; border: 2px solid transparent; font-family: var(--sans); font-weight: 650; font-size: 1rem; line-height: 1.2; letter-spacing: 0.01em; text-decoration: none; text-align: center; transition: background-color .2s, color .2s, border-color .2s, transform .2s; }
.btn .ico { width: 20px; height: 20px; }
.btn--primary { background: var(--yellow); color: var(--ink); box-shadow: inset 0 -3px 0 rgba(20, 26, 43, .16); }
.btn--primary:active, .btn--light:active { transform: translateY(1px); }
.btn--ghost { color: var(--cobalt); border-color: currentColor; background: transparent; }
.btn--ghost:active { background: rgba(29, 58, 138, .1); }
.btn--light { background: var(--paper); color: var(--cobalt); box-shadow: inset 0 -3px 0 rgba(20, 26, 43, .12); }
@media (hover: hover) {
  .btn--primary:hover { background: #F7C44A; }
  .btn--ghost:hover { background: rgba(29, 58, 138, .07); }
  .btn--light:hover { background: #fff; }
}
.btn, .day, .tab, .chip, .slot, .fado-date, .stepper__btn, .actionbar__btn { -webkit-tap-highlight-color: transparent; }
.btn--block { width: 100%; }
.linkish { background: none; border: 0; padding: 10px 4px; margin: -10px 0; min-height: 44px; color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* ---------- eyebrow / heads ---------- */
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--cobalt); font-size: 0.8125rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.3; }
.eyebrow::before { content: ""; width: 7px; height: 7px; flex: none; background: currentColor; transform: rotate(45deg); }
.section { padding-block: 72px; }
.section-head { max-width: 46rem; margin-bottom: 32px; }
.section-head h2 { margin-top: 14px; color: var(--cobalt); font-size: clamp(2.25rem, 1.45rem + 3.3vw, 3.75rem); }
.section-head .lede { margin-top: 16px; color: var(--ink-soft); max-width: 38rem; }
.section-head--on-dark h2 { color: #fff; }
.section-head--on-dark .eyebrow { color: var(--yellow); }
.section-head--on-dark .lede { color: #D3DAEC; }
.label { font-size: 0.8125rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; }
.pill { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 99px; background: var(--glaze-2); color: var(--cobalt); font-family: var(--sans); font-size: 0.75rem; font-weight: 650; letter-spacing: 0.04em; text-transform: none; vertical-align: 0.15em; white-space: nowrap; }
.pill .ico { width: 13px; height: 13px; }
.pill--fado { background: #F5E4E7; color: var(--wine); }
@media (min-width: 960px) { .section { padding-block: 112px; } .section-head { margin-bottom: 48px; } }

/* ---------- header ---------- */
.top { position: relative; z-index: 30; background: var(--glaze); border-bottom: 1px solid var(--line); }
.top__in { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 68px; }
.brand { display: inline-flex; flex: none; color: var(--cobalt); text-decoration: none; padding: 6px 0; }
.brand .logo { height: 44px; width: auto; }
.top__actions { display: flex; align-items: center; gap: 8px; }
.lang { display: flex; border: 1.5px solid var(--line); border-radius: 8px; overflow: hidden; }
.lang a { display: grid; place-items: center; min-width: 44px; min-height: 44px; font-size: 0.875rem; font-weight: 650; letter-spacing: 0.08em; text-decoration: none; color: var(--ink-soft); }
.lang a[aria-current="page"] { background: var(--cobalt); color: #fff; }
@media (hover: hover) { .lang a:not([aria-current]):hover { background: var(--glaze-2); color: var(--cobalt); } }
.top__cta { display: none; min-height: 46px; padding-block: 10px; }
.nav-toggle { display: grid; place-items: center; width: 46px; height: 46px; border: 1.5px solid var(--line); border-radius: 8px; background: transparent; color: var(--ink); }
.nav-toggle .ico--close { display: none; }
.nav-toggle[aria-expanded="true"] .ico:not(.ico--close) { display: none; }
.nav-toggle[aria-expanded="true"] .ico--close { display: block; }
.nav { display: none; }
.nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 100%; background: var(--glaze); border-bottom: 3px solid var(--cobalt); box-shadow: 0 24px 40px -24px rgba(20, 26, 43, .4); }
.nav.is-open .nav__list { padding: 8px var(--gr) 16px var(--gl); }
.nav.is-open a { display: flex; align-items: center; min-height: 56px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.5rem; color: var(--cobalt); text-decoration: none; }
html:not(.js) .nav { display: block; }
html:not(.js) .nav-toggle { display: none; }
@media (min-width: 960px) {
  .top { position: sticky; top: 0; background: rgba(244, 245, 241, .95); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
  html { scroll-padding-top: 84px; }
  .top__cta { display: inline-flex; }
}
@media (min-width: 1100px) {
  .nav, .nav.is-open { display: block; position: static; background: none; border: 0; box-shadow: none; }
  .nav__list, .nav.is-open .nav__list { display: flex; gap: 4px; padding: 0; }
  .nav a, .nav.is-open a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px; border: 0; font-family: var(--sans); font-size: 0.875rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); text-decoration: none; border-radius: 6px; }
  @media (hover: hover) { .nav a:hover { color: var(--cobalt); background: var(--glaze-2); } }
  .nav-toggle { display: none; }
}

/* ---------- hero: the tiled wall and its plaque ---------- */
.hero { display: grid; background: var(--glaze); border-bottom: 4px solid var(--cobalt); }
.hero__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #C9B79A; }
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: 50% 55%; }
.hero__wall { position: relative; padding: 0 var(--gut) 28px; background: var(--tile) 50% 0 / 96px 96px repeat var(--glaze); }
.plaque {
  position: relative; background:
    radial-gradient(circle at 0 0, var(--cobalt) 0 10px, transparent 10.5px) 0 0 / 30px 30px no-repeat,
    radial-gradient(circle at 100% 0, var(--cobalt) 0 10px, transparent 10.5px) 100% 0 / 30px 30px no-repeat,
    radial-gradient(circle at 0 100%, var(--cobalt) 0 10px, transparent 10.5px) 0 100% / 30px 30px no-repeat,
    radial-gradient(circle at 100% 100%, var(--cobalt) 0 10px, transparent 10.5px) 100% 100% / 30px 30px no-repeat,
    var(--paper);
  border: 2px solid var(--cobalt);
  box-shadow: 0 0 0 5px var(--paper), 0 0 0 7px var(--cobalt), 0 34px 60px -30px rgba(20, 26, 43, .6);
}
.plaque::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(29, 58, 138, .3); pointer-events: none; }
.hero__plaque { margin-top: -56px; padding: 30px 22px 26px; }
.hero h1 { margin-top: 14px; color: var(--cobalt); font-size: clamp(2.5rem, 1.55rem + 4.3vw, 4.6rem); line-height: 1.0; letter-spacing: -0.012em; }
.hero__lede { margin-top: 16px; color: var(--ink-soft); font-size: 1.0625rem; max-width: 34rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero__ctas .btn { flex: 1 1 180px; }
.status { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-weight: 600; font-size: 0.9375rem; line-height: 1.35; }
.status--dish { align-items: flex-start; }
.status--dish .status__dot { margin-top: 5px; }
.status__sub { display: block; font-weight: 500; color: var(--ink-soft); }
.status__dot { width: 10px; height: 10px; flex: none; border-radius: 50%; background: #8E98AF; box-shadow: 0 0 0 4px rgba(142, 152, 175, .2); }
.status.is-open .status__dot { background: var(--ok); box-shadow: 0 0 0 4px rgba(31, 138, 85, .2); animation: breathe 2.4s ease-in-out infinite; }
.status.is-closed .status__dot { background: #C2412D; box-shadow: 0 0 0 4px rgba(194, 65, 45, .16); }
@keyframes breathe { 50% { box-shadow: 0 0 0 7px rgba(31, 138, 85, .06); } }
.trust { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--line); display: grid; gap: 6px; }
.trust li { display: flex; align-items: baseline; gap: 10px; font-size: 1rem; font-weight: 500; }
.trust li::before { content: ""; width: 6px; height: 6px; flex: none; background: var(--cobalt); transform: translateY(-2px) rotate(45deg); }

@media (prefers-reduced-motion: no-preference) {
  .hero__plaque { animation: set-in .75s cubic-bezier(.2, .7, .2, 1) both .05s; }
  @keyframes set-in { from { opacity: 0; transform: translateY(22px); } }
}
/* Phones: the plaque sits on a border of whole azulejos (tiles scale so none is ever cut),
   and the live "open now" line moves above the headline so it is seen on the first screen. */
@media (max-width: 599px) {
  .hero__wall { --t: 24px; padding: 0 calc(var(--t) + 7px) calc(var(--t) + 7px); background: var(--tile) 0 0 / var(--t) var(--t) round var(--glaze); }
  .hero__plaque { display: flex; flex-direction: column; padding: 26px 20px 24px; }
  .hero__plaque .eyebrow { order: -2; letter-spacing: 0.11em; }
  .hero__plaque .status { order: -1; margin-top: 12px; }
  .hero h1 { font-size: clamp(2.375rem, 1.5rem + 4.3vw, 3rem); }
}
@media (min-width: 600px) {
  .hero__media { aspect-ratio: 16 / 10; }
  .hero__plaque { max-width: 620px; margin-inline: auto; margin-top: -96px; padding: 40px 40px 34px; }
  .hero__wall { padding-bottom: 44px; }
}
/* Tablets and short windows: never let the photo push the headline off the first screen. */
@media (min-width: 600px) and (max-width: 959px) {
  .hero__media { aspect-ratio: auto; height: min(62.5vw, 46vh); height: min(62.5vw, 46svh); }
}
/* Landscape phones: photo and plaque side by side, like the desktop wall. */
@media (min-width: 640px) and (max-width: 959px) and (max-height: 520px) {
  .hero { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
  .hero__media { order: 2; height: auto; }
  .hero__media picture { position: absolute; inset: 0; }
  .hero__wall { display: flex; align-items: flex-start; padding: 22px 26px 30px max(26px, env(safe-area-inset-left, 0px)); background-size: 72px 72px; border-right: 4px solid var(--cobalt); }
  .hero__plaque { width: 100%; max-width: none; margin: 0; padding: 26px 26px 24px; }
  .hero h1 { margin-top: 12px; font-size: 2.5rem; }
  .hero__lede { margin-top: 12px; }
}
@media (min-width: 960px) {
  .hero { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); min-height: min(820px, calc(100svh - 110px)); }
  .hero__media { order: 2; aspect-ratio: auto; }
  .hero__wall { display: flex; align-items: center; justify-content: center; padding: 64px 56px; background-size: 120px 120px; border-right: 4px solid var(--cobalt); }
  .hero__plaque { margin: 0; max-width: 600px; padding: 44px 44px 36px; }
  .hero h1 { font-size: clamp(2.75rem, .9rem + 3.5vw, 4.25rem); }
  .trust { grid-template-columns: 1fr; }
}
@media (min-width: 1280px) { .hero { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); } .hero__wall { padding: 80px 72px; } .hero__plaque { padding: 56px 56px 44px; } }

/* ---------- prato do dia: a row of tiles ---------- */
.week { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 2px; background: var(--cobalt); border: 2px solid var(--cobalt); }
.day { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; min-height: 68px; padding: 8px 2px; border: 0; margin: 0; --corner: rgba(29, 58, 138, .2); --cr: 5px; background-color: var(--paper); background-image: radial-gradient(circle at 0 0, var(--corner) 0 var(--cr), transparent calc(var(--cr) + .5px)), radial-gradient(circle at 100% 0, var(--corner) 0 var(--cr), transparent calc(var(--cr) + .5px)), radial-gradient(circle at 0 100%, var(--corner) 0 var(--cr), transparent calc(var(--cr) + .5px)), radial-gradient(circle at 100% 100%, var(--corner) 0 var(--cr), transparent calc(var(--cr) + .5px)); background-position: 0 0, 100% 0, 0 100%, 100% 100%; background-size: 24px 24px; background-repeat: no-repeat; color: var(--cobalt); font-family: var(--serif); font-size: 1.1875rem; line-height: 1; transition: background-color .25s, color .25s; }
.day__dish { display: none; }
.day__today { display: none; font-family: var(--sans); font-size: 0.75rem; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); background: var(--yellow); padding: 2px 5px; border-radius: 3px; line-height: 1.2; }
.day.is-today .day__today { display: block; }
.day--closed .day__abbr { color: var(--ink-soft); text-decoration: line-through; text-decoration-thickness: 1px; }
@media (hover: hover) { .day:not([aria-selected="true"]):hover { background-color: var(--glaze-2); } }
.day[aria-selected="true"] { background-color: var(--cobalt); color: #fff; --corner: rgba(255, 255, 255, .3); }
.day[aria-selected="true"] .day__abbr { color: #fff; }
.day:focus-visible { outline-offset: -5px; outline-color: var(--yellow); z-index: 1; }
/* choosing a day turns its tile over, like lifting an azulejo off the wall */
@media (prefers-reduced-motion: no-preference) {
  .day[aria-selected="true"] { animation: tile-flip .5s cubic-bezier(.25, .7, .25, 1) both; }
  @keyframes tile-flip { from { transform: perspective(360px) rotateY(-90deg); } }
}
.daily__body { display: grid; gap: 16px; margin-top: 18px; }
.dishes { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--cobalt); padding: 24px 20px 22px; }
.dishes__cta { margin-top: 20px; }
.dishes__cta .btn { width: 100%; }
html:not(.js) .dish + .dish { margin-top: 24px; padding-top: 24px; border-top: 2px solid var(--cobalt); }
.js .dish { display: none; }
.js .dish.is-active { display: block; }
@media (prefers-reduced-motion: no-preference) { .js .dish.is-active { animation: dish-in .35s ease both; } @keyframes dish-in { from { opacity: 0; transform: translateY(6px); } } }
.dish__day { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--cobalt); font-size: 0.8125rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; }
.dish__day .pill { letter-spacing: 0.04em; }
.dish__name { margin-top: 10px; font-size: clamp(2rem, 1.5rem + 2.2vw, 3rem); color: var(--ink); }
.dish__desc { margin-top: 12px; color: var(--ink-soft); max-width: 36rem; }
.dish__price { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 20px; padding-top: 14px; border-top: 1px dashed var(--line); font-family: var(--serif); font-size: 1.875rem; color: var(--cobalt); }
.dish__price span { font-family: var(--sans); font-size: 0.9375rem; color: var(--ink-soft); }
.dish--closed .dish__name { color: var(--ink-soft); }
.deal { display: flex; flex-direction: column; gap: 8px; padding: 24px 20px; background: var(--cobalt); color: #fff; --focus: var(--yellow); }
.deal__title { font-size: 0.8125rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); }
.deal__price { font-family: var(--serif); font-size: 3rem; line-height: 1; }
.deal__text { color: #E4E9F6; }
.deal__when { font-size: 0.9375rem; color: #C9D2EA; margin-bottom: 8px; }
@media (min-width: 600px) {
  .day { min-height: 118px; gap: 8px; padding: 12px 6px; font-size: 1.5rem; }
  .day__dish { display: block; font-family: var(--sans); font-size: 0.8125rem; line-height: 1.25; text-align: center; color: var(--ink-soft); max-width: 12ch; }
  .day[aria-selected="true"] .day__dish { color: #DCE3F4; }
  .day { --cr: 9px; }
}
@media (min-width: 900px) {
  .daily__body { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 20px; }
  .dishes { padding: 36px 40px; }
  .dishes__cta { margin-top: auto; padding-top: 24px; }
  .dishes__cta .btn { width: auto; min-width: 260px; }
  .deal { padding: 32px; justify-content: center; }
  .day { min-height: 136px; }
}

/* ---------- carta ---------- */
.menu { background: var(--cobalt-deep); color: #fff; --focus: var(--yellow); position: relative; }
.sheet { position: relative; background: var(--paper); color: var(--ink); --focus: var(--cobalt); box-shadow: 0 0 0 6px var(--cobalt-deep), 0 0 0 8px rgba(255, 255, 255, .28), 0 40px 70px -40px rgba(0, 0, 0, .6); }
.tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; background: var(--cobalt); border-bottom: 2px solid var(--cobalt); }
.tab { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2px; min-height: 64px; padding: 10px 16px; border: 0; background: var(--paper); color: var(--cobalt); text-align: left; transition: background-color .2s, color .2s; }
.tab__name { font-family: var(--serif); font-size: 1.3125rem; line-height: 1.1; }
.tab__sub { font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft); }
@media (hover: hover) { .tab:not([aria-selected="true"]):hover { background: var(--glaze-2); } }
.tab[aria-selected="true"] { background: var(--cobalt); color: #fff; }
.tab[aria-selected="true"] .tab__sub { color: #D3DAEC; }
.tab:focus-visible { outline-color: var(--yellow); outline-offset: -5px; }
.sheet__body { padding: 8px 18px 8px; }
.js .menu-panel { display: none; }
.js .menu-panel.is-active { display: block; }
.menu-panel:focus-visible { outline-offset: -3px; }
html:not(.js) .menu-panel + .menu-panel { border-top: 2px solid var(--cobalt); }
.item { padding: 16px 0 15px; border-bottom: 1px solid var(--line); }
.item:last-child { border-bottom: 0; }
.item__row { display: flex; align-items: baseline; gap: 10px; }
.item__name { font-weight: 650; font-size: 1.0625rem; line-height: 1.3; }
.item__dots { flex: 1 1 12px; min-width: 12px; border-bottom: 2px dotted #AEB7CB; transform: translateY(-5px); }
.item__price { flex: none; font-weight: 650; font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--cobalt); text-align: right; }
.item__price small { display: block; font-size: 0.75rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.02em; line-height: 1.1; }
.item__desc { margin-top: 4px; color: var(--ink-soft); font-size: 1rem; line-height: 1.5; max-width: 34rem; }
.tag { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 5px; margin-left: 2px; border: 1.5px solid #2F7A4F; border-radius: 4px; color: #226540; font-size: 0.75rem; line-height: 1; font-weight: 750; vertical-align: 0.15em; letter-spacing: 0.02em; }
.tag--season { border-color: var(--cobalt); color: var(--cobalt); text-transform: uppercase; letter-spacing: 0.08em; }
.sheet__foot { display: flex; flex-direction: column; gap: 16px; padding: 18px 18px 22px; border-top: 2px solid var(--cobalt); background: var(--glaze); color: var(--ink-soft); font-size: 1rem; }
.legend { white-space: nowrap; margin-left: 4px; }
@media (min-width: 600px) {
  .tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tab { align-items: center; text-align: center; min-height: 76px; }
  .tab__name { font-size: 1.5rem; }
  .sheet__body { padding: 12px 32px; }
  .sheet__foot { flex-direction: row; align-items: center; justify-content: space-between; padding: 20px 32px; }
  .sheet__foot p { max-width: 36rem; }
  .sheet__foot .btn { flex: none; }
}
@media (min-width: 960px) {
  .menu-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; }
  .item:nth-last-child(2):nth-child(odd) { border-bottom: 0; }
  .sheet__body { padding: 20px 48px; }
  .sheet__foot { padding: 22px 48px; }
}

/* ---------- gallery ---------- */
.mosaic { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.mosaic__item { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.mosaic__item picture { flex: 1; overflow: hidden; background: var(--glaze-2); }
.mosaic__item img { width: 100%; height: 100%; object-fit: cover; }
.mosaic__item figcaption { font-size: 0.9375rem; line-height: 1.45; color: var(--ink-soft); }
.mosaic__item--sardinhas, .mosaic__item--petiscos { grid-column: 1 / -1; }
.mosaic__item--sardinhas picture, .mosaic__item--petiscos picture { aspect-ratio: 3 / 2; }
.mosaic__item--brasa picture, .mosaic__item--doces picture { aspect-ratio: 4 / 5; }
.mosaic__item--brasa { order: 2; } .mosaic__item--doces { order: 3; } .mosaic__item--petiscos { order: 4; }
@media (max-width: 599px) { .mosaic__item--brasa figcaption, .mosaic__item--doces figcaption { font-size: 0.875rem; } }
@media (min-width: 960px) {
  .mosaic { grid-template-columns: 1fr 1.3fr 1fr; grid-template-rows: auto auto; gap: 20px; }
  .mosaic__item { order: 0 !important; }
  .mosaic__item--brasa { grid-column: 1; grid-row: 1 / span 2; }
  .mosaic__item--sardinhas { grid-column: 2; grid-row: 1; }
  .mosaic__item--petiscos { grid-column: 2; grid-row: 2; }
  .mosaic__item--doces { grid-column: 3; grid-row: 1 / span 2; }
  .mosaic__item--brasa picture, .mosaic__item--doces picture { aspect-ratio: auto; }
}

/* ---------- fado ---------- */
.fado { display: grid; background: var(--wine); color: #F6ECEE; --focus: var(--yellow); }
.fado__media { overflow: hidden; }
.fado__media picture, .fado__media img { width: 100%; height: 100%; }
.fado__media img { object-fit: cover; aspect-ratio: 3 / 2; }
.fado__body { padding: 44px var(--gr) 60px var(--gl); }
.fado .eyebrow { color: var(--yellow); }
.fado h2 { margin-top: 14px; color: #fff; font-size: clamp(2.25rem, 1.45rem + 3.3vw, 3.75rem); }
.fado__text { margin-top: 16px; color: #EBDADD; max-width: 34rem; }
.fado__rule { margin-top: 22px; padding-left: 16px; border-left: 3px solid var(--yellow); font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.25; color: #fff; max-width: 26rem; }
.fado__next { margin-top: 28px; }
.fado__next .label { color: #E3C9CE; margin-bottom: 10px; }
.fado-dates { display: flex; flex-wrap: wrap; gap: 8px; }
.fado-dates__fallback { color: #EBDADD; }
.fado-date { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-height: 56px; min-width: 88px; padding: 8px 14px; border: 1.5px solid rgba(255, 255, 255, .45); border-radius: 8px; background: transparent; color: #fff; line-height: 1.2; text-align: left; transition: background-color .2s, border-color .2s; }
.fado-date b { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; }
.fado-date span { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #E3C9CE; }
@media (hover: hover) { .fado-date:hover { background: rgba(255, 255, 255, .08); border-color: #fff; } }
@media (max-width: 599px) {
  .fado-dates { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fado-dates__fallback { grid-column: 1 / -1; }
  .fado-date { width: 100%; min-width: 0; align-items: center; padding: 8px 4px; text-align: center; }
  .fado-date b { font-size: 1.125rem; white-space: nowrap; }
}
.fado .btn { margin-top: 28px; }
.fado__small { margin-top: 12px; font-size: 0.9375rem; color: #E3C9CE; }
@media (min-width: 960px) {
  .fado { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); min-height: 680px; }
  .fado__media img { aspect-ratio: auto; }
  .fado__body { align-self: center; padding: 96px 64px; max-width: 620px; }
}

/* ---------- booking ---------- */
.book { background: var(--glaze-2); }
.book__grid { display: grid; gap: 32px; }
.book__intro .section-head, .book__intro { max-width: 34rem; }
.book h2 { margin-top: 14px; color: var(--cobalt); font-size: clamp(2.25rem, 1.45rem + 3.3vw, 3.75rem); }
.book h2:focus { outline: none; }
.book .lede { margin-top: 16px; color: var(--ink-soft); }
.checks { display: grid; gap: 10px; margin-top: 22px; }
.checks li { display: flex; gap: 12px; align-items: baseline; font-weight: 550; }
.checks li::before { content: ""; flex: none; width: 16px; height: 9px; border-left: 2.5px solid var(--cobalt); border-bottom: 2.5px solid var(--cobalt); transform: translateY(-4px) rotate(-45deg); }
.book__phone { margin-top: 22px; color: var(--ink-soft); }
.book__phone a { font-weight: 650; white-space: nowrap; display: inline-block; padding-block: 10px; margin-block: -10px; }
.card { background: var(--paper); border: 1px solid var(--line); border-top: 4px solid var(--cobalt); box-shadow: 0 30px 60px -40px rgba(20, 26, 43, .45); }
.booking, .enquiry { padding: 22px 18px 24px; }
.progress { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.progress li { padding-top: 8px; border-top: 3px solid var(--line); color: var(--ink-soft); font-size: 0.8125rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; }
.progress li.is-on { border-color: var(--cobalt); color: var(--cobalt); }
.step { border: 0; margin: 0; padding: 0; min-width: 0; }
.step__title { padding: 0; margin-bottom: 18px; font-family: var(--serif); font-size: 1.75rem; line-height: 1.1; color: var(--ink); }
.step__title:focus { outline: none; }
.field { margin: 0 0 20px; border: 0; padding: 0; min-width: 0; }
.field__label { display: block; margin-bottom: 8px; padding: 0; font-weight: 650; font-size: 1rem; }
.input { display: block; width: 100%; min-height: 52px; padding: 12px 14px; border: 1.5px solid var(--field); border-radius: var(--r); background: #fff; color: var(--ink); font-size: 1rem; line-height: 1.4; transition: border-color .2s, box-shadow .2s; }
.input::placeholder { color: #6B7389; }
@media (hover: hover) { .input:hover { border-color: var(--ink-soft); } }
.input:focus { border-color: var(--cobalt); outline: none; box-shadow: 0 0 0 3px rgba(29, 58, 138, .28); }
.input[aria-invalid="true"] { border-color: var(--err); box-shadow: 0 0 0 1px var(--err); }
input[type="date"].input { -webkit-appearance: none; appearance: none; min-height: 52px; text-align: left; }
input[type="date"].input::-webkit-date-and-time-value { text-align: left; }
input[type="date"].input::-webkit-calendar-picker-indicator { padding: 6px; cursor: pointer; }
select.input { -webkit-appearance: none; appearance: none; padding-right: 44px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D3A8A' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 12px center / 20px no-repeat; }
textarea.input { min-height: 96px; resize: vertical; }
.field__hint { margin-top: 8px; font-size: 0.9375rem; color: var(--ink-soft); }
.field__error { margin-top: 6px; font-size: 0.9375rem; font-weight: 600; color: var(--err); }
.field__error:empty { display: none; }
.field__note { margin: -2px 0 12px; padding: 10px 12px; border-left: 3px solid var(--yellow); background: #FFF6DC; color: #4A3905; font-size: 0.9375rem; font-weight: 600; line-height: 1.4; }
.field__note:empty { display: none; }
.stepper { display: inline-grid; grid-template-columns: 52px 68px 52px; border: 1.5px solid var(--field); border-radius: var(--r); overflow: hidden; background: #fff; }
.stepper__btn { display: grid; place-items: center; min-height: 52px; border: 0; background: #fff; color: var(--cobalt); }
@media (hover: hover) { .stepper__btn:not(:disabled):hover { background: var(--glaze-2); } }
.stepper__btn:disabled { color: #B3BACB; cursor: not-allowed; background: #fff; }
.stepper__btn:focus-visible { outline-offset: -4px; }
.stepper__input { width: 100%; border: 0; border-inline: 1.5px solid var(--line); text-align: center; font-size: 1.25rem; font-weight: 650; font-variant-numeric: tabular-nums; -moz-appearance: textfield; appearance: textfield; background: #fff; }
.stepper__input::-webkit-inner-spin-button, .stepper__input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.stepper__input:focus-visible { outline-offset: -4px; }
.js [data-party-hint] { display: none; }
.js [data-party-hint].is-shown { display: block; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.chips:empty { display: none; }
.chip { min-height: 44px; padding: 8px 14px; border: 1.5px solid var(--line); border-radius: 99px; background: #fff; color: var(--ink); font-size: 0.9375rem; font-weight: 600; }
@media (hover: hover) { .chip:not([aria-pressed="true"]):hover { border-color: var(--cobalt); color: var(--cobalt); } }
.chip[aria-pressed="true"] { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.slots__group + .slots__group { margin-top: 14px; }
.slots__label { margin-bottom: 8px; font-size: 0.8125rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.slots__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; }
.slot { position: relative; display: block; }
.slot input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.slot span { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 52px; padding: 4px; border: 1.5px solid var(--field); border-radius: var(--r); background: #fff; font-weight: 650; font-variant-numeric: tabular-nums; line-height: 1.15; transition: background-color .15s, border-color .15s; }
.slot small { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wine); }
@media (hover: hover) { .slot input:not(:disabled):hover + span { border-color: var(--cobalt); } }
.slot input:checked + span { background: var(--cobalt); border-color: var(--cobalt); color: #fff; }
.slot input:checked + span small { color: var(--yellow); }
.slot input:focus-visible + span { outline: 3px solid var(--cobalt); outline-offset: 2px; }
.slot input:disabled { cursor: not-allowed; }
.slot input:disabled + span { background: repeating-linear-gradient(-45deg, #F1F2F5 0 6px, #E6E9EF 6px 12px); border-color: var(--line); color: #5F6679; }
.slot input:disabled + span b { text-decoration: line-through; font-weight: 600; }
.slot input:disabled + span small { color: #5F6679; }
.slots__empty { color: var(--ink-soft); font-size: 1rem; padding: 14px 16px; background: var(--glaze); border: 1px dashed var(--line); border-radius: var(--r); }
.summary { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 12px; margin: -4px 0 20px; padding: 12px 14px; background: var(--glaze-2); border-radius: var(--r); font-weight: 600; }
.step__actions { display: grid; grid-template-columns: auto 1fr; gap: 10px; }
.fine { margin-top: 14px; font-size: 0.875rem; color: var(--ink-soft); }
.done { text-align: center; padding: 20px 4px 8px; }
.done__seal { display: grid; place-items: center; margin: 0 auto 16px; width: 64px; }
.done__seal svg { width: 64px; height: 64px; }
.done__title { font-family: var(--serif); font-size: 2rem; color: var(--cobalt); }
.done__title:focus { outline: none; }
.done__summary { white-space: pre-line; margin-top: 12px; font-weight: 600; font-size: 1.0625rem; }
.done__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.done__actions .btn { flex: 1 1 220px; max-width: 320px; }
@media (prefers-reduced-motion: no-preference) {
  .done:not([hidden]) .done__seal svg { animation: seal-flip .8s cubic-bezier(.25, .7, .25, 1) both .1s; }
  @keyframes seal-flip { from { transform: perspective(300px) rotateY(-180deg) scale(.7); opacity: 0; } 40% { opacity: 1; } }
}
.done__demo { margin: 14px auto 22px; max-width: 26rem; padding: 12px 14px; background: #FFF6DC; border: 1px solid #EACB78; border-radius: var(--r); color: #5A4506; font-size: 0.9375rem; }
@media (min-width: 600px) { .booking, .enquiry { padding: 30px 32px 32px; } }
@media (min-width: 960px) {
  .book__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: start; }
  .book__intro { position: sticky; top: 120px; }
}

/* ---------- groups ---------- */
.groups__grid { display: grid; gap: 36px; }
.groups__media { overflow: hidden; }
.groups__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.set-menus { margin-top: 24px; border-top: 2px solid var(--cobalt); }
.set-menus li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.set-menus__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.set-menus__name { font-family: var(--serif); font-size: 1.4375rem; line-height: 1.15; color: var(--cobalt); }
.set-menus__price { flex: none; font-weight: 700; font-size: 1.125rem; font-variant-numeric: tabular-nums; text-align: right; }
.set-menus__price small { display: block; font-size: 0.8125rem; font-weight: 500; color: var(--ink-soft); }
.set-menus__desc { margin-top: 4px; color: var(--ink-soft); }
.card__title { font-family: var(--serif); font-size: 1.875rem; line-height: 1.1; color: var(--ink); }
.card__lede { margin: 8px 0 22px; color: var(--ink-soft); }
.field-row { display: grid; gap: 0 14px; }
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) {
  .groups__grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 64px; align-items: start; }
  .groups__card { position: sticky; top: 108px; }
}

/* ---------- reviews ---------- */
.reviews { background: var(--glaze-2); }
.note { margin-top: 12px; display: inline-block; padding: 2px 10px; border: 1px solid var(--line); border-radius: 99px; font-size: 0.8125rem; color: var(--ink-soft); background: var(--paper); }
.quotes { display: grid; gap: 16px; }
.quote { position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; padding: 28px 22px 22px; background: var(--paper); border: 1px solid var(--line); }
.quote::before { content: ""; position: absolute; top: -1px; left: -1px; width: 28px; height: 28px; background: radial-gradient(circle at 0 0, var(--cobalt) 0 12px, transparent 12.5px); }
.quote blockquote p { font-family: var(--serif); font-size: 1.3125rem; line-height: 1.35; color: var(--ink); }
.quote__who { font-weight: 650; font-size: 0.9375rem; color: var(--cobalt); }
.quote__who span { font-weight: 500; color: var(--ink-soft); }
@media (min-width: 900px) { .quotes { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

/* ---------- visit ---------- */
.visit__grid { display: grid; gap: 40px; }
.address { display: flex; gap: 12px; align-items: flex-start; font-style: normal; font-weight: 600; font-size: 1.125rem; line-height: 1.45; }
.address .ico { color: var(--cobalt); margin-top: 2px; }
.route__title { display: flex; align-items: center; gap: 10px; margin-top: 32px; font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; color: var(--ink); }
.route__title .ico { color: var(--cobalt); }
.route { counter-reset: step; margin-top: 18px; }
.route li { position: relative; padding: 4px 0 22px 50px; min-height: 36px; }
.route li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-weight: 750; font-size: 0.9375rem; }
.route li::after { content: ""; position: absolute; left: 16px; top: 38px; bottom: 4px; width: 2px; background: repeating-linear-gradient(var(--cobalt) 0 5px, transparent 5px 10px); }
.route li:last-child { padding-bottom: 6px; }
.route li:last-child::after { display: none; }
.route li:last-child::before { background: var(--cobalt); color: #fff; }
.route__time { margin: 8px 0 0 50px; font-size: 0.875rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cobalt); }
.ways { display: grid; gap: 12px; margin: 28px 0; padding: 18px 0; border-block: 1px solid var(--line); }
.ways li { display: flex; gap: 12px; align-items: flex-start; }
.ways .ico { color: var(--cobalt); margin-top: 1px; }
.visit__side { display: grid; gap: 20px; align-content: start; }
.visit__media { overflow: hidden; }
.visit__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 60%; }
.hours { padding: 24px 20px; }
.hours .status { margin-top: 10px; }
.hours__table { width: 100%; margin-top: 14px; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours__table th, .hours__table td { padding: 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.hours__table th { text-align: left; font-weight: 500; padding-right: 10px; }
.hours__table td { text-align: right; }
.hours__table td span { display: block; white-space: nowrap; }
.hours__table .pill { margin-left: 4px; }
.hours__table tr.is-today th, .hours__table tr.is-today td { color: var(--cobalt); font-weight: 700; }
.hours__note { margin-top: 12px; font-size: 0.9375rem; color: var(--ink-soft); }
.hours__phone { display: flex; gap: 10px; align-items: center; margin-top: 16px; font-weight: 600; }
.hours__phone .ico { color: var(--cobalt); }
.hours__phone a { display: inline-block; padding-block: 11px; margin-block: -11px; }
@media (min-width: 700px) and (max-width: 959px) { .visit__side { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); } .visit__media img { height: 100%; aspect-ratio: auto; } }
@media (min-width: 960px) {
  .visit__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; }
  .visit__media img { aspect-ratio: 16 / 10; }
  .hours { padding: 28px 32px; }
}

/* ---------- faq ---------- */
.faq__list { border-top: 2px solid var(--cobalt); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding: 14px 0; cursor: pointer; list-style: none; font-weight: 650; font-size: 1.0625rem; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--glaze-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D3A8A' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 16px no-repeat; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
@media (hover: hover) { .faq summary:hover { color: var(--cobalt); } }
.faq summary:focus-visible { outline-offset: 2px; }
.faq details p { padding: 0 0 20px; color: var(--ink-soft); max-width: 44rem; }
@media (min-width: 960px) { .faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; } }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: #C3CADB; font-size: 1rem; padding-bottom: calc(96px + env(safe-area-inset-bottom)); --focus: var(--yellow); }
.foot a { color: #fff; }
.barra { height: 56px; background: var(--tile) 0 50% / 56px 56px repeat-x var(--glaze); border-block: 4px solid var(--cobalt); }
.foot__grid { display: grid; gap: 32px; padding-top: 48px; padding-bottom: 36px; }
.brand--foot { color: #fff; margin-bottom: 12px; }
.foot__brand p { max-width: 22rem; }
.foot__h { margin-bottom: 10px; font-family: var(--sans); font-size: 0.8125rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); }
.foot p + p { margin-top: 8px; }
.foot p a { display: inline-block; padding-block: 11px; margin-block: -11px; }
.status--foot { margin-top: 0; margin-bottom: 8px; color: #fff; }
.foot__links { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.foot__links a { white-space: nowrap; }
.foot__hours { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 4px 14px; margin: 0; }
.foot__hours dt { color: #fff; font-weight: 600; }
.foot__hours dd { margin: 0; }
.foot__links a { display: flex; align-items: center; min-height: 44px; text-decoration: none; }
@media (hover: hover) { .foot__links a:hover { text-decoration: underline; } }
.foot__base { display: grid; align-items: center; gap: 8px; padding-top: 20px; padding-bottom: 8px; border-top: 1px solid rgba(255, 255, 255, .14); font-size: 0.875rem; color: #A9B1C6; }
.foot__base a { display: inline-block; padding-block: 12px; margin-block: -12px; }
@media (min-width: 700px) { .foot__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) minmax(0, .8fr); } .foot__brand { grid-column: 1 / -1; } .foot__links { grid-template-columns: 1fr; } }
@media (min-width: 1100px) { .foot__grid { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.3fr) minmax(0, .8fr); padding-top: 72px; } .foot__brand { grid-column: auto; } .foot__base { grid-template-columns: 1fr auto; } }
@media (min-width: 960px) { .foot { padding-bottom: 32px; } }

/* ---------- mobile action bar ---------- */
.actionbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.8fr); gap: 8px; padding: 8px max(var(--gr), calc(50vw - 320px)) calc(8px + env(safe-area-inset-bottom, 0px)) max(var(--gl), calc(50vw - 320px)); background: rgba(20, 26, 43, .97); box-shadow: 0 -10px 30px -12px rgba(0, 0, 0, .45); --focus: var(--yellow); transition: transform .3s ease, visibility 0s linear 0s; }
.actionbar__btn { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 52px; padding: 6px 8px; border-radius: 8px; border: 1.5px solid rgba(255, 255, 255, .28); color: #fff; font-weight: 650; font-size: 0.9375rem; text-decoration: none; white-space: nowrap; }
.actionbar__btn .ico { width: 20px; height: 20px; }
.actionbar__btn--primary { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
/* hidden while the hero buttons, the booking card or the group form are on screen; visibility keeps it out of the tab order */
.js:not(.bar-on) .actionbar { transform: translateY(115%); visibility: hidden; transition: transform .3s ease, visibility 0s linear .3s; }
@media (min-width: 960px) { .actionbar { display: none; } }

/* ---------- demo dialog ---------- */
.demo { width: min(440px, calc(100vw - 32px)); max-width: none; padding: 0; border: 0; border-top: 4px solid var(--cobalt); border-radius: 10px; background: var(--paper); color: var(--ink); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6); }
.demo::backdrop { background: rgba(20, 26, 43, .62); }
.demo__in { padding: 26px 22px 22px; }
.demo__num { font-size: 0.875rem; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.demo__title { margin: 8px 0 10px; font-size: 1.75rem; color: var(--cobalt); }
.demo__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.demo__actions .btn { flex: 1 1 auto; padding-inline: 16px; white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
