@font-face {
  font-family: "Zona Pro";
  src: url("fonts/ZonaPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zona Pro";
  src: url("fonts/ZonaPro-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zona Pro";
  src: url("fonts/ZonaPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #17231e;
  --muted: #65746d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #e3ded3;
  --green: #184936;
  --green-soft: #dceadd;
  --red: #922116;
  --red-soft: #f7ded8;
  --gold: #cf9b2c;
  --gold-soft: #fbefd0;
  --blue: #315f82;
  --shadow: 0 20px 60px rgba(31, 45, 38, 0.12);
  font-family: "Zona Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(24, 73, 54, 0.08), transparent 310px),
    var(--paper);
}

button,
input {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: clamp(430px, 68vh, 660px);
  overflow: hidden;
  display: flex;
  align-items: end;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.9) 0%, rgba(255, 253, 247, 0.68) 43%, rgba(255, 253, 247, 0.08) 100%),
    linear-gradient(0deg, rgba(251, 250, 246, 0.96), rgba(251, 250, 246, 0) 34%);
}

.contact-bar {
  position: absolute;
  top: 22px;
  right: max(16px, calc((100vw - 1120px) / 2));
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 14px;
  color: #173527;
  background: rgba(255, 253, 247, 0.94);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.contact-button--whatsapp {
  color: #0f3c2a;
  background: #dff3df;
}

.contact-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 118px;
  color: #000;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow {
  color: var(--red);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.hero__logo-link {
  display: block;
  width: clamp(108px, 14vw, 168px);
  aspect-ratio: 1;
  margin-bottom: 34px;
  border-radius: 50%;
  text-decoration: none;
}

.hero__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #ffd90a;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(3rem, 7.4vw, 6.6rem);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: 0;
  color: #000;
}

.hero__copy {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 400;
  color: #000;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.week-context {
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 18px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(227, 222, 211, 0.92);
  border-radius: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.week-context__copy p {
  margin: 5px 0 0;
  color: #000;
  font-size: 1.35rem;
  line-height: 1.18;
  font-weight: 600;
}

.week-context__actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
}

.week-chip,
.next-week-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
}

.week-chip {
  color: #173527;
  background: #fffdf7;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.18);
}

.next-week-link {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 28px rgba(146, 33, 22, 0.24);
}

.next-week-link[hidden] {
  display: none;
}

.dashboard {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1.16fr);
  gap: 18px;
  position: relative;
  z-index: 2;
}

.today-panel,
.toolbar {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(227, 222, 211, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.today-panel {
  min-height: 188px;
  border-radius: 8px;
  padding: 22px;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
}

.today-panel h2,
.section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.today-panel__meal {
  margin: 22px 0 8px;
  font-size: 1.25rem;
  line-height: 1.32;
  font-weight: 850;
}

.today-panel__meta {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.toolbar {
  min-height: 188px;
  border-radius: 8px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.search {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
}

.search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
}

.search input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  width: fit-content;
  border-radius: 999px;
  padding: 10px 15px;
  color: #fff;
  background: var(--red);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(183, 65, 47, 0.18);
}

.pdf-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.filter-button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 750;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--green);
  color: #fff;
  background: var(--green);
}

.content-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 42px;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 46px;
  text-align: center;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__links a {
  color: var(--muted);
  font-weight: 750;
  text-decoration: none;
}

.site-footer__links a:hover {
  color: var(--green);
  text-decoration: underline;
}

.app-save-note {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.visit-counter {
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-heading {
  margin-bottom: 18px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.offer-card,
.lunch-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(31, 45, 38, 0.06);
}

.offer-card {
  min-height: 260px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.offer-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 28px;
  margin-bottom: 20px;
}

.offer-card__category,
.offer-card__badge,
.tag {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
}

.offer-card__category {
  color: var(--green);
  background: var(--green-soft);
}

.offer-card__badge {
  color: var(--red);
  background: var(--red-soft);
}

.offer-card h3 {
  position: relative;
  z-index: 1;
  max-width: 68%;
  min-height: 58px;
  margin-bottom: 8px;
  color: #000;
  font-size: 1.583rem;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}

.offer-card__description {
  position: relative;
  z-index: 1;
  max-width: 66%;
  min-height: 48px;
  margin-bottom: 20px;
  color: #000;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 400;
}

.offer-card__image {
  position: absolute;
  right: 14px;
  top: 76px;
  width: min(35%, 148px);
  height: 116px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.offer-card__pictogram {
  position: absolute;
  top: 48px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  object-fit: contain;
  pointer-events: none;
}

.offer-card__pictogram[hidden] {
  display: none;
}

.price-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.price {
  color: var(--red);
  font-size: 1.833rem;
  line-height: 1;
  font-weight: 700;
}

.price__currency,
.unit {
  color: var(--red);
  font-size: 1rem;
  font-weight: 400;
}

.offer-card__tags,
.lunch-item__tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag {
  color: #3e3321;
  background: var(--gold-soft);
}

.offer-card__tags,
.lunch-item__tags {
  display: none;
}

.lunch-list {
  display: grid;
  gap: 10px;
}

.hours-card,
.address-card {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(31, 45, 38, 0.06);
}

.hours-card h2,
.address-card h2 {
  margin: 4px 0 14px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.address-card p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.address-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #fff;
  background: var(--green);
  font-weight: 850;
  text-decoration: none;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.hours-table th,
.hours-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.25;
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

.hours-table thead th {
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 900;
}

.hours-table tbody th {
  width: 52px;
  color: var(--ink);
  font-weight: 900;
}

.hours-table td {
  color: var(--muted);
  font-weight: 700;
}

.lunch-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  overflow: hidden;
}

.lunch-item.has-image {
  grid-template-rows: auto 1fr;
}

.lunch-item.is-today {
  border-color: rgba(183, 65, 47, 0.55);
  box-shadow: 0 18px 46px rgba(183, 65, 47, 0.12);
}

.lunch-item__date {
  min-height: 132px;
  padding: 16px 10px;
  color: #fff;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.lunch-item.has-image .lunch-item__date {
  grid-row: 1 / 3;
}

.lunch-item__image {
  grid-column: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.lunch-item.is-today .lunch-item__date {
  background: var(--red);
}

.lunch-item__day {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.lunch-item__short {
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.lunch-item__body {
  grid-column: 2;
  min-width: 0;
  padding: 16px;
}

.lunch-item__title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.lunch-item h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.lunch-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.42;
}

.lunch-item__price {
  white-space: nowrap;
  color: var(--red);
  font-weight: 900;
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 22px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .dashboard,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .week-context {
    align-items: stretch;
    flex-direction: column;
  }

  .week-context__actions {
    justify-content: start;
  }

  .content-grid {
    gap: 36px;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 500px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.78) 0%, rgba(255, 253, 247, 0.88) 48%, rgba(251, 250, 246, 0.96) 100%);
  }

  .hero__content {
    width: min(100% - 24px, 1120px);
    padding-top: 96px;
    padding-bottom: 72px;
  }

  .contact-bar {
    top: 14px;
    left: 12px;
    right: 12px;
  }

  .contact-button {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.9rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.1rem, 9.3vw, 3rem);
    line-height: 0.96;
  }

  .dashboard,
  .week-context,
  .content-grid {
    width: min(100% - 24px, 1120px);
  }

  .week-context {
    margin-top: 16px;
    margin-bottom: 18px;
    padding: 18px;
    background: #fff;
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(31, 45, 38, 0.08);
  }

  .week-context__copy p {
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .week-context__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .week-chip,
  .next-week-link {
    width: 100%;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card h3,
  .offer-card__description {
    max-width: 64%;
  }

  .offer-card__image {
    top: 82px;
    width: min(34%, 132px);
  }

  .toolbar,
  .today-panel {
    padding: 18px;
  }
}

@media (max-width: 430px) {
  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdf-button {
    width: 100%;
  }

  .filter-button {
    width: 100%;
    padding-inline: 8px;
  }

  .lunch-item {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .lunch-item__body {
    padding: 14px;
  }
}
