@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Permanent Marker";
  src: url("../fonts/PermanentMarker-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Yellowtail";
  src: url("../fonts/Yellowtail-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --carbon: #0b0b09;
  --ink: #171612;
  --cream: #f5ead2;
  --paper: #fff8e8;
  --red: #c9271f;
  --yellow: #f4ae19;
  --green: #245b35;
  --guac: #7d9b28;
  --muted: #b8ad96;
  --line: rgba(245, 234, 210, 0.2);
  --shell: min(1180px, calc(100% - 40px));
  --display: "Bebas Neue", Impact, sans-serif;
  --marker: "Permanent Marker", cursive;
  --script: "Yellowtail", cursive;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--cream);
  background: var(--carbon);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
figure, h1, h2, h3, h4, p { margin-top: 0; }

.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: clamp(90px, 10vw, 150px) 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--carbon);
  background: var(--yellow);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.5vw, 30px);
  padding: 5px 20px;
  color: var(--carbon);
  background: var(--yellow);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.announcement span[aria-hidden] { color: var(--red); }

.site-header {
  position: absolute;
  z-index: 100;
  top: 34px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(245, 234, 210, 0.14);
  transition: background 0.25s ease, transform 0.25s ease;
}

.site-header.is-fixed {
  position: fixed;
  top: 0;
  background: rgba(11, 11, 9, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
}

.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 30px; }

.wordmark {
  flex: 0 0 auto;
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.035em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark span { color: var(--yellow); }

.site-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }

.site-nav a {
  position: relative;
  color: #eee1c8;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-order)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); }

.site-nav .nav-order {
  padding: 11px 18px 9px;
  color: var(--cream);
  background: var(--red);
  border: 1px solid var(--red);
}

.site-nav .nav-order:hover { color: var(--carbon); background: var(--yellow); border-color: var(--yellow); }

.menu-toggle { display: none; }

.hero {
  min-height: 920px;
  height: min(1000px, calc(100svh - 34px));
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--carbon);
}

.hero-photo, .hero-shade, .hero-grain { position: absolute; inset: 0; }

.hero-photo {
  z-index: -4;
  background: url("../img/photos/hero-mesa.webp") center 57% / cover no-repeat;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.015);
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(11,11,9,.97) 0%, rgba(11,11,9,.88) 37%, rgba(11,11,9,.25) 72%, rgba(11,11,9,.5) 100%),
    linear-gradient(0deg, rgba(11,11,9,.9) 0%, transparent 32%, rgba(11,11,9,.5) 100%);
}

.hero-grain, .menu-texture {
  z-index: -2;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-layout {
  padding-top: 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.75fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
}

.eyebrow, .section-kicker {
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: 13px;
  font-family: var(--script);
  font-size: clamp(1.45rem, 2.25vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }
.hero .eyebrow { font-family: var(--script); font-size: clamp(1.55rem, 2.5vw, 2rem); font-weight: 400; letter-spacing: 0; text-transform: none; }
.eyebrow span { width: 33px; height: 3px; background: var(--red); }

.hero h1, .story h2, .section-heading h2, .gallery-heading h2, .reviews-heading h2, .visit-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.84;
  text-transform: uppercase;
}

.hero h1 { font-size: clamp(5.8rem, 10vw, 9.8rem); }
.hero h1 em { color: var(--red); font-style: normal; text-shadow: 4px 4px 0 var(--yellow); }

.hero-marker {
  width: max-content;
  max-width: 100%;
  margin: 20px 0 17px;
  color: var(--yellow);
  font-family: var(--marker);
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.1;
  transform: rotate(-1deg);
}

.hero-lead { max-width: 560px; margin-bottom: 30px; color: #e7d9c0; font-size: clamp(1rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.button {
  min-height: 52px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px 11px;
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover { transform: translateY(-3px); }
.button > i { font-size: 1.25rem; }
.button-primary { color: white; background: var(--red); border-color: var(--red); box-shadow: 5px 5px 0 var(--yellow); }
.button-primary:hover { color: var(--carbon); background: var(--yellow); border-color: var(--yellow); box-shadow: 5px 5px 0 var(--red); }
.button-ghost { color: var(--cream); border-color: rgba(245,234,210,.48); background: rgba(11,11,9,.24); }
.button-ghost:hover { color: var(--carbon); background: var(--cream); }
.button-dark { color: var(--cream); background: var(--carbon); border-color: var(--carbon); }
.button-dark:hover { color: var(--carbon); background: var(--yellow); border-color: var(--yellow); }
.button-cream { color: var(--carbon); background: var(--cream); border-color: var(--cream); }
.button-cream:hover { background: var(--yellow); border-color: var(--yellow); }

.hero-logo-wrap { position: relative; display: grid; place-items: center; }

.hero-logo { position: relative; z-index: 1; width: min(100%, 540px); height: auto; filter: drop-shadow(0 25px 35px rgba(0,0,0,.5)); }

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  width: max-content;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,234,210,.7);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i { color: var(--yellow); font-size: 1rem; }

.ticker { overflow: hidden; color: var(--carbon); background: var(--yellow); border-block: 5px solid var(--red); }
.ticker-track { width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 28px; padding: 13px 20px 10px; }
.ticker span { font-family: var(--display); font-size: 1.7rem; letter-spacing: .04em; text-transform: uppercase; }
.ticker b { color: var(--red); }

.story { overflow: hidden; background: var(--cream); color: var(--ink); }
.story::before { content: "ROGE"; position: absolute; right: -1vw; bottom: -10vw; color: transparent; -webkit-text-stroke: 1px rgba(23,22,18,.12); font-family: var(--display); font-size: clamp(10rem, 30vw, 31rem); line-height: .7; transform: rotate(-5deg); }
.story-grid { position: relative; display: grid; grid-template-columns: .88fr 1fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.story-collage { min-height: 660px; position: relative; }
.story-photo { position: absolute; margin: 0; overflow: hidden; border: 8px solid var(--paper); box-shadow: 18px 20px 0 var(--red); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story-photo-main { top: 0; left: 0; width: 72%; height: 570px; transform: rotate(-3deg); }
.story-photo-small { right: 0; bottom: 0; width: 48%; height: 330px; transform: rotate(4deg); box-shadow: 12px 14px 0 var(--yellow); }
.scribble { position: absolute; z-index: 2; right: 2%; top: 5%; color: var(--red); font-family: var(--marker); font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.05; text-align: center; transform: rotate(8deg); }
.scribble::after { content: ""; display: block; width: 70px; height: 22px; margin: 5px auto 0; border-top: 4px solid var(--red); border-radius: 50%; transform: rotate(-8deg); }
.story-copy { position: relative; z-index: 1; }
.story .section-kicker, .menu-section .section-kicker { color: var(--red); }
.story h2 { font-size: clamp(4rem, 7.5vw, 7rem); }
.story h2 span { color: var(--red); }
.section-intro { max-width: 660px; margin: 30px 0 38px; color: #4d493f; font-size: clamp(1.05rem, 1.5vw, 1.2rem); }
.story-points { border-top: 1px solid rgba(23,22,18,.2); }
.story-points > div { display: grid; grid-template-columns: 62px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid rgba(23,22,18,.2); }
.story-points strong { font-family: var(--display); font-size: 2.1rem; font-weight: 400; color: var(--red); line-height: 1.15; }
.story-points p { margin: 0; color: #5c574c; }
.story-points b { color: var(--ink); }

.menu-section { isolation: isolate; overflow: hidden; color: var(--ink); background: var(--paper); }
.menu-section::before, .menu-section::after { content: ""; position: absolute; z-index: -1; width: 320px; height: 320px; border: 2px solid var(--green); transform: rotate(45deg); opacity: .13; }
.menu-section::before { top: -210px; left: -90px; }.menu-section::after { right: -100px; bottom: -220px; }
.menu-texture { position: absolute; inset: 0; opacity: .13; mix-blend-mode: multiply; }
.section-heading.centered { text-align: center; }
.section-heading h2 { font-size: clamp(5rem, 10vw, 9rem); }
.marker-note { width: fit-content; margin: 9px auto 46px; color: var(--green); font-family: var(--marker); font-size: clamp(1rem, 2vw, 1.45rem); transform: rotate(-1deg); }
.menu-grid { max-width: 860px; margin-inline: auto; display: grid; grid-template-columns: 1fr; gap: 22px; }
.menu-card { padding: clamp(24px, 3vw, 38px); border: 2px solid var(--ink); background: rgba(255,255,255,.38); box-shadow: 8px 8px 0 var(--green); }
.menu-card-featured { box-shadow: 8px 8px 0 var(--red); }
.menu-card-head { min-height: 66px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; padding-bottom: 18px; border-bottom: 4px double var(--ink); }
.menu-card-head > span { color: var(--red); font-family: var(--display); font-size: 1.4rem; }
.menu-card-head h3 { margin: 0; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 400; letter-spacing: .02em; line-height: .8; text-transform: uppercase; }
.menu-card-head > i { color: var(--green); font-size: 2rem; }
.menu-item { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 0 16px; border-bottom: 1px dashed rgba(23,22,18,.35); }
.menu-item:last-child { border-bottom: 0; }
.menu-item h4 { margin: 0; font-size: 1rem; text-transform: uppercase; }
.menu-item p { margin: 2px 0 0; color: #6d6659; font-size: .82rem; line-height: 1.35; }
.menu-item > strong { flex: 0 0 auto; color: var(--red); font-family: var(--display); font-size: 2.45rem; font-weight: 400; line-height: 1; }
.menu-footer { margin-top: 45px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.menu-footer p { margin: 0; font-family: var(--marker); font-size: clamp(1.8rem, 4vw, 2.5rem); text-align: center; }

.gallery-section { padding: clamp(85px, 9vw, 130px) 0 0; background: var(--carbon); }
.gallery-heading { margin-bottom: 45px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.gallery-heading h2 { font-size: clamp(4.5rem, 8vw, 7.2rem); }
.gallery-heading a { margin-bottom: 8px; color: var(--yellow); font-size: .76rem; font-weight: 900; letter-spacing: .09em; text-decoration-thickness: 1px; text-underline-offset: 7px; text-transform: uppercase; }.gallery-heading a i { margin-left: 5px; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1.3fr .85fr; grid-template-rows: 380px 400px; gap: 8px; }
.gallery-grid figure { margin: 0; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); filter: saturate(1.1); }
.gallery-a { grid-row: 1 / 3; }.gallery-b { grid-column: 2 / 4; }.gallery-c { grid-column: 2; }.gallery-d { grid-column: 3; }

.reviews-section { overflow: hidden; background: var(--red); }
.reviews-section::before { content: "“"; position: absolute; top: -160px; right: 3vw; color: rgba(11,11,9,.14); font-family: Georgia,serif; font-size: 34rem; line-height: 1; }
.reviews-heading { position: relative; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 52px; }
.reviews-section .section-kicker { color: var(--yellow); }
.reviews-heading h2 { font-size: clamp(4.5rem, 8vw, 7.4rem); }
.reviews-heading h2 span { color: var(--yellow); }
.rating-summary { flex: 0 0 auto; align-items: center; gap: 18px; padding: 19px 23px; border: 1px solid rgba(245,234,210,.4); background: rgba(11,11,9,.2); }
.rating-summary:not([hidden]) { display: flex; }
.rating-summary > strong { font-family: var(--display); font-size: 4.8rem; font-weight: 400; line-height: .8; }
.stars { color: var(--yellow); letter-spacing: .12em; }
.rating-summary p { margin: 4px 0 0; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.reviews-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { min-height: 300px; padding: 28px; display: flex; flex-direction: column; color: var(--ink); background: var(--cream); box-shadow: 8px 8px 0 rgba(11,11,9,.7); }
.review-stars { margin-bottom: 18px; color: var(--red); letter-spacing: .1em; }
.review-card blockquote { margin: 0 0 26px; font-size: 1rem; line-height: 1.65; }
.review-author { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.review-author img, .review-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; object-fit: cover; color: var(--cream); background: var(--green); font-weight: 900; }
.review-author p { margin: 0; line-height: 1.3; }.review-author b { display: block; }.review-author span { color: #6b6458; font-size: .75rem; }
.review-card > a { color: var(--red); font-size: .69rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.reviews-fallback { grid-column: 1 / -1; min-height: 170px; padding: clamp(26px,5vw,48px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; border: 1px solid rgba(245,234,210,.5); background: rgba(11,11,9,.22); }
.google-g { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 50%; color: #4285f4; background: white; font-size: 2.5rem; font-weight: 900; }
.reviews-fallback h3 { margin-bottom: 4px; font-family: var(--display); font-size: 2.2rem; font-weight: 400; letter-spacing: .03em; text-transform: uppercase; }
.reviews-fallback p { margin: 0; color: #f3d8cb; }
.reviews-action { margin-top: 38px; text-align: center; }.reviews-action .button { margin-inline: auto; }

.visit-section { color: var(--ink); background: var(--yellow); }
.visit-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(var(--red) 1px,transparent 1px),linear-gradient(90deg,var(--red) 1px,transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(90deg,black,transparent 70%); }
.visit-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px,9vw,120px); }
.visit-section .section-kicker { color: var(--red); }
.visit-copy h2 { font-size: clamp(5rem, 9vw, 8rem); }
.visit-address { max-width: 540px; margin: 28px 0 31px; font-size: clamp(1.05rem,1.5vw,1.22rem); font-weight: 700; }
.visit-card { position: relative; padding: clamp(30px,5vw,56px); color: var(--cream); background: var(--carbon); box-shadow: 14px 14px 0 var(--red); transform: rotate(1deg); }
.visit-card-row { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.visit-card-row:last-of-type { border-bottom: 0; }
.visit-card-row > span { color: var(--yellow); font-size: .69rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.visit-card-row strong { font-size: 1.06rem; }.visit-card-row a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.social-links { display: flex; flex-wrap: wrap; gap: 10px 20px; }.social-links a { color: var(--cream); font-size: .85rem; font-weight: 800; }.social-links a i { margin-left: 3px; color: var(--yellow); font-size: .7rem; }
.visit-marker { position: absolute; right: -25px; bottom: -48px; width: 135px; aspect-ratio: 1; display: grid; place-items: center; border: 3px solid var(--cream); border-radius: 50%; color: var(--cream); background: var(--red); font-family: var(--marker); font-size: 1rem; line-height: 1.15; text-align: center; transform: rotate(-9deg); }

.site-footer { padding: 70px 0 25px; background: var(--carbon); }
.footer-grid { display: grid; grid-template-columns: 1.8fr .6fr .8fr; gap: 60px; padding-bottom: 58px; }
.footer-brand { display: flex; align-items: center; gap: 22px; }.footer-brand img { width: 120px; height: auto; }.footer-brand p { margin: 0; }
.footer-name { font-family: var(--display); font-size: clamp(2.7rem,5vw,4.7rem); line-height: .9; text-transform: uppercase; }
.footer-slogan { margin-top: 8px !important; color: var(--yellow); font-family: var(--script); font-size: clamp(1.3rem,2.5vw,2.1rem); line-height: 1; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-links p { margin-bottom: 8px; color: var(--yellow); font-size: .67rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: #cfc3ad; font-size: .87rem; text-decoration: none; }.footer-links a:hover { color: var(--yellow); }.footer-links a i { margin-left: 4px; font-size: .7rem; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #8f8778; font-size: .72rem; }
.footer-bottom p { margin: 0; }

.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; min-width: 58px; height: 58px; padding: 0 18px; display: flex; align-items: center; justify-content: center; gap: 9px; border: 2px solid var(--cream); border-radius: 999px; color: white; background: #25d366; box-shadow: 0 12px 35px rgba(0,0,0,.35); font-size: .72rem; font-weight: 900; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); }.whatsapp-float i { font-size: 1.55rem; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .site-nav { gap: 14px; }.site-nav a { font-size: .67rem; }
  .hero { min-height: 820px; }.hero-layout { grid-template-columns: 1fr .72fr; }
  .story-grid { grid-template-columns: .86fr 1fr; gap: 55px; }.story-collage { min-height: 580px; }.story-photo-main { height: 500px; }
  .menu-grid { grid-template-columns: 1fr; }.menu-card-featured { grid-row: auto; }
  .gallery-grid { grid-template-rows: 320px 340px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .announcement { gap: 8px; font-size: .6rem; }.announcement span:nth-last-child(-n+2) { display: none; }
  .site-header { top: 31px; }.site-header.is-fixed { top: 0; }
  .nav-wrap { min-height: 70px; }
  .menu-toggle { position: relative; z-index: 2; width: 46px; height: 42px; margin-left: auto; display: grid; place-content: center; gap: 5px; border: 0; color: var(--cream); background: transparent; cursor: pointer; }
  .menu-toggle span { width: 25px; height: 2px; display: block; background: currentColor; transition: transform .25s, opacity .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 1; inset: 0; padding: 110px 30px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; overflow-y: auto; color: var(--cream); background-color: var(--carbon); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: opacity .25s, visibility .25s, transform .25s; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }.site-nav a { font-family: var(--display); font-size: 2.4rem; font-weight: 400; letter-spacing: .02em; }.site-nav .nav-order { margin-top: 10px; font-family: Arial,sans-serif; font-size: .8rem; }
  .hero { min-height: 930px; height: auto; padding: 135px 0 100px; }.hero-photo { background-position: 64% center; }.hero-shade { background: linear-gradient(0deg,rgba(11,11,9,.98) 0%,rgba(11,11,9,.74) 75%,rgba(11,11,9,.5) 100%); }
  .hero-layout { padding-top: 30px; grid-template-columns: 1fr; }.hero-copy { position: relative; z-index: 2; order: 2; }.hero-logo-wrap { width: min(77vw,390px); margin: 0 auto -70px; opacity: .8; }.hero h1 { font-size: clamp(5.4rem,22vw,8.2rem); }.scroll-cue { display: none; }
  .story-grid, .visit-grid { grid-template-columns: 1fr; }.story-collage { min-height: 630px; max-width: 580px; }.story-copy { padding-top: 25px; }
  .menu-grid { grid-template-columns: 1fr; }.menu-card-featured { grid-row: auto; }.menu-footer { flex-direction: column; gap: 15px; }
  .gallery-heading { align-items: flex-start; flex-direction: column; }.gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 300px 420px; }.gallery-a { grid-row: 1; }.gallery-b { grid-column: 2; }.gallery-c { grid-column: 1 / 3; }.gallery-d { grid-column: 1 / 3; }
  .reviews-heading { align-items: flex-start; flex-direction: column; }.reviews-grid { grid-template-columns: 1fr; }.reviews-fallback { grid-template-columns: auto 1fr; }.reviews-fallback .button { grid-column: 1 / -1; }
  .visit-copy { padding-right: 30px; }.visit-card { transform: none; }.visit-marker { right: 15px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  :root { --shell: calc(100% - 28px); }
  .announcement { min-height: 31px; }.site-header { top: 31px; }
  .wordmark { font-size: 1.55rem; }
  .hero { min-height: 850px; padding-top: 118px; }.hero-logo-wrap { margin-bottom: -45px; }.hero h1 { font-size: clamp(4.8rem,24vw,7rem); }.hero-marker { font-size: 1.2rem; }.hero-actions { flex-direction: column; align-items: stretch; }.hero-actions .button { width: 100%; }
  .ticker-track { gap: 19px; }.ticker span { font-size: 1.4rem; }
  .story-collage { min-height: 495px; }.story-photo { border-width: 5px; }.story-photo-main { height: 420px; width: 76%; }.story-photo-small { height: 240px; width: 50%; }.scribble { top: 0; }
  .story h2, .reviews-heading h2 { font-size: clamp(3.8rem,18vw,5.8rem); }.story-points > div { grid-template-columns: 48px 1fr; }
  .menu-card { padding: 24px 20px; box-shadow: 5px 5px 0 var(--green); }.menu-card-featured { box-shadow: 5px 5px 0 var(--red); }.menu-card-head > i { font-size: 1.65rem; }.menu-item > strong { font-size: 2rem; }
  .gallery-section { padding-top: 80px; }.gallery-heading h2 { font-size: 4rem; }.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 330px 230px 330px; }.gallery-b { grid-column: 2; }.gallery-c { grid-column: 1 / 3; }.gallery-d { grid-column: 1 / 3; }
  .rating-summary { width: 100%; }.reviews-fallback { grid-template-columns: 1fr; text-align: center; }.google-g, .reviews-fallback .button { margin-inline: auto; }
  .visit-copy h2 { font-size: 5rem; }.visit-card { padding: 28px 22px; box-shadow: 8px 8px 0 var(--red); }.visit-card-row { grid-template-columns: 1fr; gap: 5px; }.visit-marker { width: 110px; bottom: -55px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }.footer-brand { grid-column: auto; align-items: flex-start; }.footer-brand img { width: 90px; }.footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 56px; min-width: 56px; height: 56px; padding: 0; }.whatsapp-float span { 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; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .announcement, .site-header, .whatsapp-float, .scroll-cue, .ticker { display: none; }
  .hero { min-height: 700px; }.section { break-inside: avoid; }
}
