:root {
  --red: #ef3338;
  --teal: #4c9cb0;
  --cream: #fbf2e5;
  --white: #ffffff;
  --dark: #3f3f3f;
  --max: 440px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--red);
  color: var(--dark);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

.page-shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--red);
  overflow: hidden;
  position: relative;
}

.hero {
  height: 318px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.language-switch {
  position: absolute;
  top: 8px;
  right: 12px;
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  z-index: 5;
}
.lang {
  width: 47px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #2f2f2f;
  font: 600 14px/1 "Montserrat", sans-serif;
  cursor: pointer;
}
.lang.is-active { background: var(--red); color: #fff; }

.main-card {
  position: relative;
  width: calc(100% - 26px);
  margin: -57px auto 0;
  background: var(--white);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 1px 7px rgba(0,0,0,.28);
  z-index: 4;
  overflow: visible;
}
.logo-badge {
  position: absolute;
  z-index: 20;
  left: 50%;
  top: -72px;
  transform: translateX(-50%);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--cream);
  border: 7px solid #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.logo-badge img { width: 78%; height: 78%; object-fit: contain; }

.intro-section {
  padding: 62px 22px 29px;
  text-align: center;
  background: #fff;
  border-radius: 22px 22px 0 0;
}
h1 {
  margin: 0;
  color: var(--red);
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 46px;
  line-height: .98;
  letter-spacing: .3px;
  font-weight: 400;
}
.claim {
  margin: 20px 0 26px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .1px;
}
.cta-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2.4vw, 11px);
  align-items: center;
  width: 100%;
  overflow: visible;
}

/* Illustrated CTAs: the SVGs include a side tab, so the BODY of each
   button—not the complete SVG canvas—is what is optically centered. */
.illustrated-cta {
  position: relative;
  display: block;
  width: min(88%, 330px);
  aspect-ratio: 308 / 62;
  text-decoration: none;
  flex: 0 0 auto;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}
.illustrated-cta .cta-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}
.illustrated-cta .cta-content {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.5vw, 13px);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
}
.illustrated-cta .cta-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(21px, 7vw, 30px);
  line-height: .9;
  letter-spacing: .2px;
  text-transform: uppercase;
}
.illustrated-cta .cta-icon {
  width: clamp(27px, 8.5vw, 39px);
  height: clamp(27px, 8.5vw, 39px);
  object-fit: contain;
  flex: 0 0 auto;
}

/* The top SVG has its tab on the left: move the whole control slightly left
   and center content in the rectangular body (x=36…307). */
.menu-cta { transform: translateX(-6.2%); }
.menu-cta .cta-content {
  left: 55.7%;
  color: #fff;
}

/* The lower SVG has its tab on the right: mirror the optical correction. */
.reserve-cta { transform: translateX(6.2%); }
.reserve-cta .cta-content {
  left: 44.0%;
  color: var(--red);
}
.reserve-cta .cta-icon { transform: scale(.875); }

.illustrated-cta:focus-visible {
  outline: 3px solid rgba(76, 156, 176, .65);
  outline-offset: 4px;
  border-radius: 12px;
}

.location-section {
  padding: 19px 64px 31px;
  background: var(--teal);
}
.status-pill,
.address-pill {
  min-height: 34px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.status-pill { margin-bottom: 10px; font-size: 13.5px; font-weight: 500; }
.status-pill img { width: 18px; height: 18px; }
.status-pill strong { color: var(--red); font-weight: 800; }
.map-card {
  display: block;
  width: 100%;
  height: 174px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
}
.map-card img { width: 100%; height: 100%; object-fit: cover; }
.address-pill { font-size: 13px; font-weight: 800; color: var(--red); }
.address-pill img { width: 18px; height: 18px; }

.brand-section {
  background: var(--red);
  text-align: center;
  color: #fff;
  padding: 21px 25px 23px;
  border-radius: 0 0 18px 18px;
}
.brand-section h2 {
  margin: 0 0 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 19px;
  line-height: 1.08;
  letter-spacing: .35px;
  font-weight: 400;
  text-transform: uppercase;
}
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}
.socials a { width: 39px; height: 39px; display: grid; place-items: center; }
.socials img { width: 100%; height: 100%; object-fit: contain; }

.review-wrap {
  background: var(--cream);
  padding: 24px 12px 18px;
}
.review-card {
  background: var(--red);
  color: #fff;
  border-radius: 18px;
  text-align: center;
  padding: 18px 20px 21px;
}
.review-brand-switch {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
}
.review-brand-mark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}
.review-brand-google {
  animation: brandGoogle 6s ease-in-out infinite;
}
.review-brand-mastro {
  animation: brandMastro 6s ease-in-out infinite;
}
@keyframes brandGoogle {
  0%, 42% { opacity: 1; transform: scale(1); }
  48%, 94% { opacity: 0; transform: scale(.94); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes brandMastro {
  0%, 42% { opacity: 0; transform: scale(.94); }
  48%, 94% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.94); }
}

.stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 3.3vw, 16px);
  margin-bottom: 18px;
}
.star {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: clamp(31px, 9vw, 39px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2.2px #fff;
  text-stroke: 2.2px #fff;
}
.star::after {
  content: "★";
  position: absolute;
  inset: 0;
  color: #fff;
  -webkit-text-stroke: 0;
  text-stroke: 0;
  clip-path: inset(100% 0 0 0);
  animation: starFill 4.4s cubic-bezier(.22,.75,.24,1) infinite;
}
.star:nth-child(2)::after { animation-delay: .18s; }
.star:nth-child(3)::after { animation-delay: .36s; }
.star:nth-child(4)::after { animation-delay: .54s; }
.star:nth-child(5)::after { animation-delay: .72s; }
@keyframes starFill {
  0%, 8%   { clip-path: inset(100% 0 0 0); }
  24%, 67% { clip-path: inset(0 0 0 0); }
  84%,100% { clip-path: inset(100% 0 0 0); }
}
@media (prefers-reduced-motion: reduce) {
  .star::after { animation: none; clip-path: inset(0); }
  .review-brand-google { animation: none; opacity: 1; }
  .review-brand-mastro { animation: none; opacity: 0; }
}
.review-card h2 {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: .35px;
}
.review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 30px;
  padding: 0 17px;
  border-radius: 7px;
  background: #fff;
  color: var(--red);
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  letter-spacing: .3px;
}

.footer {
  min-height: 65px;
  background: #414141;
  color: #fff;
  text-align: center;
  padding: 14px 10px 10px;
  font-size: 11px;
}
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  margin-bottom: 9px;
}
.footer-links a { text-underline-offset: 2px; }
.credit { font-size: 9px; font-weight: 400; }

@media (max-width: 390px) {
  .hero { height: clamp(238px, 72vw, 282px); }
  .main-card { margin-top: -51px; width: calc(100% - 20px); }
  .logo-badge { width: 102px; height: 102px; top: -64px; }
  .intro-section { padding-top: 57px; }
  .intro-section { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(36px, 11.5vw, 42px); }
  .claim { font-size: clamp(14px, 4.3vw, 16px); }
  .illustrated-cta { width: min(90%, 310px); }
  .location-section { padding-left: clamp(24px, 12vw, 49px); padding-right: clamp(24px, 12vw, 49px); }
  .status-pill, .address-pill { white-space: normal; padding: 6px 9px; }
  .socials { gap: clamp(32px, 12vw, 48px); }
}

@media (max-width: 320px) {
  .illustrated-cta { width: 92%; }
  .illustrated-cta .cta-label { font-size: 20px; }
  .illustrated-cta .cta-icon { width: 25px; height: 25px; }
  .menu-cta { transform: translateX(-5.3%); }
  .reserve-cta { transform: translateX(5.3%); }
}

@media (min-width: 441px) {
  body { background: var(--red); }
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
