:root {
  --paper: #f6efe4;
  --paper-strong: #fffaf2;
  --ink: #1f2428;
  --muted: #6d6962;
  --line: #ddd1c1;
  --white: #ffffff;
  --restaurant: #b45f3d;
  --bar: #2d7b65;
  --guide: #486f91;
  --dark: #172028;
  --whatsapp: #188d62;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% -12%, rgba(72, 111, 145, 0.34), transparent 50%),
    radial-gradient(circle at 2% 34%, rgba(180, 95, 61, 0.25), transparent 48%),
    radial-gradient(circle at 66% 118%, rgba(45, 123, 101, 0.25), transparent 54%),
    linear-gradient(180deg, #fffaf2, #eee1c9);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

button {
  font: inherit;
}

.site-header,
.hero,
.offers-section,
.contact-section,
.footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  padding: 24px 0 12px;
}

.nav {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-word {
  color: var(--ink);
  font-family: "Aptos Display", "Segoe UI Variable Display", "Trebuchet MS", "Avenir Next", sans-serif;
  font-size: 1.62rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.nav-links a:hover,
.nav-cta:hover {
  border-color: var(--line);
  background: var(--paper-strong);
  color: var(--ink);
}

.nav-cta {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper-strong);
}

.nav-cta svg,
.offer-action svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero {
  min-height: 300px;
  padding: 56px 0 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  max-width: 860px;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 860px;
  color: var(--ink);
  font-size: 4.2rem;
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.lead {
  margin: 0;
  max-width: 610px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.62;
}

.hero-choices {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.64);
}

.hero-choices p {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-choices a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.18;
  text-align: center;
  box-shadow: 0 10px 22px rgba(31, 36, 40, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.hero-choices a::after {
  content: none;
}

.hero-choices a:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-choices a.is-active {
  transform: translateY(-2px);
  border-color: rgba(36, 24, 17, 0.58);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(31, 36, 40, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.72) inset;
}

.offers-section {
  padding: 18px 0 64px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--restaurant);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 900;
}

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

.offer-card {
  min-height: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 16px 40px rgba(31, 36, 40, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.offer-card::before {
  content: "";
  height: 5px;
  width: 100%;
  flex: 0 0 auto;
  background: var(--accent);
}

.offer-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
  box-shadow: 0 24px 54px rgba(31, 36, 40, 0.12);
}

.offer-card.is-selected {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent) 72%, var(--line));
  box-shadow:
    0 30px 68px rgba(31, 36, 40, 0.18),
    0 0 0 1px color-mix(in srgb, var(--accent) 34%, transparent),
    0 0 34px color-mix(in srgb, var(--accent) 28%, transparent);
}

.offer-card.is-selected::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.offer-card:focus-visible,
.whatsapp-button:focus-visible,
.offer-picker button:focus-visible,
.nav a:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.offer-card.restaurant {
  --accent: var(--restaurant);
}

.offer-card.bar {
  --accent: var(--bar);
}

.offer-card.guide {
  --accent: var(--guide);
}

.visual-guide {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 30px 28px;
  background:
    radial-gradient(circle at 88% 16%, rgba(72, 111, 145, 0.18), transparent 32%),
    linear-gradient(135deg, #eef2f1, #fffaf2);
}

.plaque-card,
.phone-card,
.menu-card,
.table-qr,
.price-board,
.control-chip,
.lang-pills {
  position: relative;
  z-index: 1;
}

.plaque-card {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border-radius: 10px;
  background: #16212b;
  color: var(--white);
  box-shadow: 0 24px 44px rgba(22, 33, 43, 0.18);
}

.plaque-title {
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.qr-mark {
  width: 68px;
  height: 68px;
  justify-self: center;
  background:
    linear-gradient(90deg, #fff 9px, transparent 9px) 0 0 / 17px 17px,
    linear-gradient(#fff 9px, transparent 9px) 0 0 / 17px 17px,
    #16212b;
  border: 8px solid #fff;
  border-radius: 6px;
}

.scan-line {
  width: 56px;
  height: 3px;
  justify-self: center;
  border-radius: 999px;
  background: var(--guide);
}

.phone-card {
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(72, 111, 145, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(72, 111, 145, 0.12);
  backdrop-filter: blur(12px);
}

.phone-label {
  color: var(--guide);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-card strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.12;
}

.phone-card i {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(72, 111, 145, 0.14);
}

.phone-card i:nth-of-type(2) {
  width: 82%;
}

.phone-card i:nth-of-type(3) {
  width: 64%;
}

.visual-restaurant {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: center;
  padding: 30px 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(180, 95, 61, 0.16), transparent 34%),
    linear-gradient(135deg, #fff8ed, #f4ebe0);
}

.menu-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 12px;
  background: #fffdf8;
  border: 1px solid rgba(180, 95, 61, 0.18);
  box-shadow: 0 20px 40px rgba(180, 95, 61, 0.12);
}

.lang-row {
  color: var(--restaurant);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card div {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid rgba(31, 36, 40, 0.08);
}

.menu-card strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.menu-card small {
  color: var(--muted);
  font-weight: 700;
}

.table-qr {
  min-height: 138px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border-radius: 14px;
  background: #241811;
  color: #fff;
  box-shadow: 0 22px 44px rgba(36, 24, 17, 0.2);
}

.table-qr span {
  width: 68px;
  height: 68px;
  background:
    linear-gradient(90deg, #fff 9px, transparent 9px) 0 0 / 17px 17px,
    linear-gradient(#fff 9px, transparent 9px) 0 0 / 17px 17px,
    #241811;
  border: 8px solid #fff;
  border-radius: 6px;
}

.table-qr small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.visual-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 30px 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(45, 123, 101, 0.16), transparent 34%),
    linear-gradient(135deg, #edf3ed, #fffaf2);
}

.price-board {
  grid-row: span 2;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 14px;
  background: #11241d;
  color: #fff;
  box-shadow: 0 22px 46px rgba(17, 36, 29, 0.2);
}

.price-board div {
  min-width: 178px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 800;
}

.price-board strong {
  color: #c8eadf;
}

.price-board .disabled {
  opacity: 0.48;
}

.price-board em {
  color: #f4c1ad;
  font-size: 0.76rem;
  font-style: normal;
  text-transform: uppercase;
}

.control-chip {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(45, 123, 101, 0.18);
  color: var(--bar);
  font-size: 0.82rem;
  box-shadow: 0 14px 28px rgba(45, 123, 101, 0.1);
}

.control-chip span {
  width: 28px;
  height: 16px;
  border-radius: 999px;
  background: var(--bar);
  box-shadow: inset 12px 0 0 rgba(255, 255, 255, 0.82);
}

.lang-pills {
  display: flex;
  gap: 5px;
}

.lang-pills span {
  min-width: 28px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--bar);
  font-size: 0.7rem;
  font-weight: 900;
}

.offer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.offer-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.offer-body h3 {
  margin-bottom: 12px;
  min-height: 58px;
  color: var(--ink);
  font-size: 1.62rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.offer-body p:not(.offer-kicker) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.52;
}

.offer-action {
  margin-top: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 0 1px;
  border-bottom: 2px solid var(--accent);
  color: var(--ink);
  font-weight: 850;
}

.contact-section {
  padding: 56px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact-copy h2 {
  margin-bottom: 0;
  font-size: 2.45rem;
  line-height: 1.08;
  font-weight: 900;
}

.contact-copy p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.contact-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 18px 44px rgba(31, 36, 40, 0.08);
}

.contact-note {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.offer-picker {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.offer-picker button {
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 820;
  cursor: pointer;
}

.offer-picker button:hover,
.offer-picker button.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.selected-label {
  margin: 16px 0 18px;
  color: var(--muted);
}

.selected-label strong {
  color: var(--ink);
}

.whatsapp-button {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--whatsapp);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(24, 141, 98, 0.22);
}

.whatsapp-button:hover {
  background: #127852;
}

.whatsapp-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-button span {
  display: grid;
  line-height: 1.1;
}

.whatsapp-button small {
  margin-top: 3px;
  opacity: 0.9;
  font-size: 0.78rem;
}

.footer {
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 980px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-body h3 {
    min-height: auto;
  }
}

@media (max-width: 780px) {
  .site-header,
  .hero,
  .offers-section,
  .contact-section,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .brand-word {
    font-size: 1.42rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 34px;
    gap: 24px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero-choices {
    justify-self: stretch;
    min-height: 0;
    gap: 7px;
    padding: 10px;
  }

  .hero-choices a {
    min-height: 58px;
    padding: 8px 8px;
    font-size: 0.84rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .visual-guide,
  .visual-restaurant {
    grid-template-columns: 1fr 1fr;
  }

  .price-board div {
    min-width: 150px;
  }

  .contact-section {
    gap: 20px;
  }

  .contact-copy h2 {
    font-size: 2rem;
  }

  .footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-top: 18px;
  }

  .nav-cta {
    min-width: 46px;
    padding-inline: 12px;
  }

  .nav-cta span {
    display: none;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero {
    padding-bottom: 18px;
  }

  .offers-section {
    padding-bottom: 42px;
  }

  .visual-guide,
  .visual-restaurant {
    gap: 10px;
  }

  .plaque-card,
  .phone-card,
  .table-qr {
    min-height: 120px;
  }

  .qr-mark,
  .table-qr span {
    width: 54px;
    height: 54px;
    border-width: 6px;
    background-size: 14px 14px;
  }

  .phone-card,
  .menu-card,
  .price-board {
    padding: 14px;
  }

  .phone-card strong,
  .menu-card strong {
    font-size: 0.86rem;
  }

  .price-board div {
    min-width: 134px;
    font-size: 0.78rem;
  }

  .control-chip {
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .offer-body {
    padding: 18px;
  }

  .offer-body h3 {
    font-size: 1.34rem;
  }

  .contact-panel {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .hero-choices {
    grid-template-columns: 1fr;
  }
}
