:root {
  --ink: #101510;
  --forest: #17261d;
  --leaf: #32533a;
  --gold: #d6a63a;
  --gold-light: #f0ce75;
  --cream: #f4f0e7;
  --paper: #fbfaf6;
  --red: #e50918;
  --muted: #6c726d;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(10, 18, 12, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-bottom: 118px;
  overflow-x: hidden;
}

body.viewer-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  overflow: hidden;
  color: #fff;
  background: var(--forest);
  isolation: isolate;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: 52% center;
  animation: heroZoom 18s ease-out both;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 12, 8, .88) 0%, rgba(10, 16, 11, .63) 42%, rgba(8, 15, 10, .18) 75%),
    linear-gradient(0deg, rgba(4, 8, 5, .65) 0%, transparent 50%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -26vw;
  z-index: -1;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 206, 117, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(240, 206, 117, .035), 0 0 0 12vw rgba(240, 206, 117, .025);
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { border-radius: 50%; border: 1px solid rgba(226, 180, 72, .65); }
.brand span { display: grid; gap: 2px; }
.brand strong { font: 600 20px/1 Georgia, serif; letter-spacing: .06em; text-transform: uppercase; }
.brand small { color: var(--gold-light); font-size: 10px; letter-spacing: .32em; text-transform: uppercase; }

.topbar__menu-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar__menu-link span { color: var(--gold-light); font-size: 20px; }

.hero__content {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(80px, 13vh, 150px) 0 140px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow--dark { color: #85651d; }

.hero h1,
.section-heading h2,
.welcome h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 7.6vw, 104px);
  line-height: .93;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero h1 em { color: var(--gold-light); font-weight: 400; }

.hero__intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button--gold { color: #151810; background: var(--gold-light); }
.button--glass { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button--glass:hover { background: #fff; color: var(--ink); }

.hero__social {
  position: absolute;
  right: max(32px, calc((100% - 1240px) / 2));
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__social > span { margin-right: 8px; color: rgba(255,255,255,.65); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.social { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; transition: .2s ease; }
.social:hover { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.social b { font-size: 18px; font-style: normal; }
.social--facebook b { font: 700 21px/1 Arial, sans-serif; }
.social--whatsapp b { font-size: 16px; transform: rotate(-18deg); }

.social--instagram i {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 5px;
}

.social--instagram i::before { content: ""; position: absolute; inset: 3px; border: 1.5px solid currentColor; border-radius: 50%; }
.social--instagram i::after { content: ""; position: absolute; right: 2px; top: 2px; width: 2px; height: 2px; border-radius: 50%; background: currentColor; }

.hero__scroll {
  position: absolute;
  left: max(32px, calc((100% - 1240px) / 2));
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__scroll span { position: relative; width: 42px; height: 1px; overflow: hidden; background: rgba(255,255,255,.25); }
.hero__scroll span::after { content: ""; position: absolute; inset: 0; background: var(--gold-light); animation: scrollLine 2.4s infinite; }

.menu-section { width: min(1240px, calc(100% - 64px)); margin: 0 auto; padding: 110px 0 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.section-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 70px); line-height: 1; letter-spacing: -.04em; }
.section-heading > p { max-width: 410px; margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.7; }

.menu-grid { display: grid; grid-template-columns: 1.1fr 1fr; grid-template-rows: repeat(2, minmax(300px, 390px)); gap: 18px; }

.menu-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #111;
  box-shadow: 0 10px 30px rgba(11,18,12,.08);
  isolation: isolate;
}

.menu-card--tall { grid-row: 1 / 3; }
.menu-card > img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: top center; filter: saturate(.75); transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .45s ease; }
.menu-card__shade { position: absolute; inset: 0; z-index: -2; background: linear-gradient(20deg, rgba(4,8,5,.94) 0%, rgba(6,10,7,.52) 48%, rgba(3,5,4,.04) 82%); }
.menu-card::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.18); border-radius: calc(var(--radius) - 10px); pointer-events: none; transition: border-color .3s ease; }
.menu-card:hover > img { transform: scale(1.055); filter: saturate(1); }
.menu-card:hover::after { border-color: rgba(240,206,117,.55); }
.menu-card__number { position: absolute; top: 32px; right: 34px; color: rgba(255,255,255,.6); font: italic 20px/1 Georgia, serif; }
.menu-card__content { position: absolute; left: 34px; right: 34px; bottom: 34px; display: flex; flex-direction: column; align-items: flex-start; }
.menu-card__content small { margin-bottom: 8px; color: var(--gold-light); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.menu-card__content > strong { font: 400 clamp(38px, 4.8vw, 64px)/.96 Georgia, serif; letter-spacing: -.035em; }
.menu-card:not(.menu-card--tall) .menu-card__content > strong { font-size: clamp(34px, 3.4vw, 51px); }
.menu-card__link { display: flex; align-items: center; gap: 18px; margin-top: 22px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-card__link i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-style: normal; transition: .2s ease; }
.menu-card:hover .menu-card__link i { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); transform: rotate(45deg); }

.welcome { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); min-height: 680px; margin: 0 18px 18px; overflow: hidden; border-radius: 34px; background: var(--cream); }
.welcome__photo { position: relative; min-height: 540px; overflow: hidden; }
.welcome__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(20deg, rgba(5,10,7,.45), transparent 55%); }
.welcome__photo img { width: 100%; height: 100%; object-fit: cover; }
.welcome__photo span { position: absolute; left: 46px; bottom: 38px; z-index: 1; color: #fff; font: italic 56px/.84 Georgia, serif; }
.welcome__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 110px); }
.welcome h2 { margin: 0 0 30px; font-size: clamp(44px, 5vw, 72px); line-height: .98; letter-spacing: -.045em; }
.welcome__content > p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.8; }
.welcome__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 42px; }
.welcome__facts a { padding: 19px 0; border-top: 1px solid #cfc8b8; }
.welcome__facts small, .welcome__facts strong { display: block; }
.welcome__facts small { margin-bottom: 6px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.welcome__facts strong { font-family: Georgia, serif; font-size: 18px; }

.footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 60px max(32px, calc((100% - 1240px) / 2)) 70px; color: #fff; background: var(--ink); }
.footer img { border-radius: 50%; border: 1px solid rgba(214,166,58,.5); }
.footer strong { font: 400 28px/1.2 Georgia, serif; }
.footer p { margin: 8px 0 0; color: rgba(255,255,255,.55); }
.footer__links { display: flex; gap: 24px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.menu-viewer {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  background: #090c09;
}

.menu-viewer::backdrop { background: rgba(0,0,0,.88); }
.menu-viewer[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; animation: viewerIn .25s ease both; }
.viewer__bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px max(18px, calc((100% - 1100px) / 2)); border-bottom: 1px solid rgba(255,255,255,.1); }
.viewer__heading { display: grid; gap: 2px; }
.viewer__bar small { color: var(--gold-light); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.viewer__bar strong { font: 400 22px/1.2 Georgia, serif; }
.viewer__close { width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; background: transparent; font-size: 29px; line-height: 1; cursor: pointer; }
.viewer__stage { position: relative; display: flex; min-height: 0; align-items: flex-start; justify-content: center; padding: 22px 80px; overflow: auto; overscroll-behavior: contain; touch-action: pan-y pinch-zoom; -webkit-overflow-scrolling: touch; }
.viewer__pages { display: grid; width: min(100%, 680px); gap: 18px; }
.viewer__pages img { width: 100%; height: auto; border-radius: 7px; box-shadow: 0 18px 50px rgba(0,0,0,.45); user-select: none; -webkit-user-drag: none; }
.viewer__stage.is-swipe-next .viewer__pages { animation: swipeFromRight .28s ease both; }
.viewer__stage.is-swipe-prev .viewer__pages { animation: swipeFromLeft .28s ease both; }
.viewer__nav { position: fixed; top: 50%; z-index: 3; display: grid; width: 52px; height: 52px; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; background: rgba(10,14,10,.72); backdrop-filter: blur(10px); font: 300 40px/1 Arial, sans-serif; cursor: pointer; }
.viewer__nav--prev { left: 18px; }
.viewer__nav--next { right: 18px; }
.viewer__footer { display: flex; justify-content: space-between; gap: 16px; padding: 12px max(18px, calc((100% - 1100px) / 2)); color: rgba(255,255,255,.55); border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.viewer__footer span:first-child { color: var(--gold-light); font-weight: 800; }

.review-bar {
  position: fixed;
  left: 50%;
  bottom: max(8px, env(safe-area-inset-bottom));
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(1120px, calc(100% - 24px));
  min-height: 92px;
  align-items: center;
  gap: 18px;
  padding: 12px 26px 12px 18px;
  border: 1px solid rgba(20,20,20,.07);
  border-radius: 26px;
  background: rgba(252,250,247,.96);
  box-shadow: 0 10px 45px rgba(20,24,20,.23);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: opacity .25s ease, transform .25s ease;
}

.review-bar.is-hidden { opacity: 0; pointer-events: none; transform: translate(-50%, 130%); }
.review-bar__badge { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 17px; color: #fff; background: var(--red); font-size: 24px; }
.review-bar__copy { display: flex; min-width: 0; align-items: center; gap: 18px; }
.review-bar__stars { flex: 0 0 auto; color: var(--red); font-size: 17px; letter-spacing: 2px; }
.review-bar__copy > div:last-child { display: grid; gap: 4px; min-width: 0; }
.review-bar__copy strong { color: #2d2f2e; font-size: 18px; }
.review-bar__copy span { color: #747b87; font-size: 13px; }
.review-bar__button { display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 18px; padding: 0 24px; border-radius: 18px; color: #fff; background: var(--red); font-size: 15px; font-weight: 800; white-space: nowrap; transition: transform .2s ease, background .2s ease; }
.review-bar__button:hover { background: #c9000e; transform: translateY(-2px); }
.review-bar__button b { font-size: 25px; font-weight: 400; }
.review-bar__button-short { display: none; }
.review-bar__close { position: absolute; top: -11px; right: -9px; display: grid; width: 32px; height: 32px; place-items: center; padding: 0; border: 1px solid #e5e5e5; border-radius: 50%; color: #8b8b8b; background: #fff; box-shadow: 0 4px 10px rgba(0,0,0,.12); font-size: 22px; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }
@keyframes viewerIn { from { opacity: 0; transform: scale(.985); } to { opacity: 1; transform: none; } }
@keyframes swipeFromRight { from { opacity: .35; transform: translateX(28px); } to { opacity: 1; transform: none; } }
@keyframes swipeFromLeft { from { opacity: .35; transform: translateX(-28px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  body { padding-bottom: 106px; }
  .hero { min-height: 820px; }
  .hero__veil { background: linear-gradient(90deg, rgba(7,12,8,.82), rgba(7,12,8,.3)), linear-gradient(0deg, rgba(4,8,5,.72), transparent 60%); }
  .hero__content { padding-top: 120px; }
  .menu-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .menu-card, .menu-card--tall { grid-row: auto; min-height: 430px; }
  .menu-card > img { object-position: 50% 18%; }
  .welcome { grid-template-columns: 1fr; }
  .welcome__photo { max-height: 600px; }
  .footer { grid-template-columns: auto 1fr; }
  .footer__links { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
  .review-bar { gap: 12px; padding-right: 16px; }
  .review-bar__copy { gap: 10px; }
  .review-bar__stars { font-size: 13px; }
  .review-bar__copy strong { font-size: 15px; }
  .review-bar__copy span { font-size: 11px; }
  .review-bar__button { min-height: 50px; padding: 0 17px; font-size: 13px; }
}

@media (max-width: 640px) {
  :root { --radius: 23px; }
  body { padding-bottom: 102px; }
  .hero { min-height: max(720px, 100svh); }
  .hero__image { object-position: 55% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(5,10,6,.88), rgba(5,10,6,.32)), linear-gradient(0deg, rgba(4,8,5,.8), transparent 65%); }
  .topbar, .hero__content, .menu-section { width: calc(100% - 36px); }
  .topbar { padding: 18px 0; }
  .brand img { width: 54px; height: 54px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 8px; }
  .topbar__menu-link { padding: 10px 0 10px 10px; font-size: 10px; }
  .hero__content { padding: clamp(90px, 18vh, 150px) 0 155px; }
  .hero h1 { font-size: clamp(48px, 15.6vw, 68px); line-height: .94; }
  .hero__intro { margin-top: 23px; font-size: 15px; line-height: 1.6; }
  .hero__actions { margin-top: 28px; }
  .button { min-height: 52px; padding: 0 20px; font-size: 11px; }
  .hero__social { right: 18px; bottom: 25px; }
  .hero__social > span { display: none; }
  .social { width: 38px; height: 38px; }
  .hero__scroll { left: 18px; bottom: 32px; }
  .menu-section { padding: 78px 0 84px; }
  .section-heading { display: block; margin-bottom: 28px; }
  .section-heading h2 { font-size: 45px; }
  .section-heading > p { margin-top: 18px; font-size: 14px; }
  .menu-grid { gap: 13px; }
  .menu-card, .menu-card--tall { min-height: 390px; }
  .menu-card__content { left: 26px; right: 26px; bottom: 27px; }
  .menu-card__number { top: 27px; right: 27px; }
  .menu-card__content > strong,
  .menu-card:not(.menu-card--tall) .menu-card__content > strong { font-size: 41px; }
  .welcome { margin: 0 9px 9px; border-radius: 26px; }
  .welcome__photo { min-height: 420px; }
  .welcome__photo img { object-position: center; }
  .welcome__photo span { left: 28px; bottom: 25px; font-size: 46px; }
  .welcome__content { padding: 54px 26px 60px; }
  .welcome h2 { font-size: 47px; }
  .welcome__facts { grid-template-columns: 1fr; margin-top: 28px; }
  .footer { grid-template-columns: 74px 1fr; gap: 16px; padding: 45px 20px 54px; }
  .footer img { width: 74px; height: 74px; }
  .footer strong { font-size: 21px; }
  .footer p { font-size: 12px; line-height: 1.5; }
  .footer__links { gap: 16px; flex-wrap: wrap; font-size: 10px; }
  .viewer__stage { padding: 14px 8px 82px; }
  .viewer__pages { width: 100%; gap: 10px; }
  .viewer__pages img { border-radius: 4px; }
  .viewer__nav { position: fixed; top: auto; bottom: 48px; width: 46px; height: 46px; }
  .viewer__nav--prev { left: 16px; }
  .viewer__nav--next { right: 16px; }
  .viewer__footer { justify-content: center; }
  .viewer__footer span:last-child { display: none; }
  .review-bar { grid-template-columns: auto 1fr auto; width: calc(100% - 14px); min-height: 82px; gap: 10px; padding: 10px 11px; border-radius: 21px; }
  .review-bar__badge { width: 47px; height: 47px; border-radius: 14px; font-size: 20px; }
  .review-bar__copy { display: grid; gap: 3px; }
  .review-bar__stars { order: 2; font-size: 10px; line-height: 1; letter-spacing: 1px; }
  .review-bar__copy strong { font-size: 12px; line-height: 1.25; white-space: normal; }
  .review-bar__copy span { display: none; }
  .review-bar__button { min-height: 46px; gap: 8px; padding: 0 13px; border-radius: 14px; font-size: 12px; }
  .review-bar__button-full { display: none; }
  .review-bar__button-short { display: inline; }
  .review-bar__close { top: -8px; right: -4px; width: 27px; height: 27px; font-size: 18px; }
}

@media (max-width: 370px) {
  .review-bar__button { padding: 0 9px; }
  .review-bar__button b { display: none; }
}

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