:root {
  --plantain: #F3B128;
  --plantain-deep: #D18E14;
  --leaf: #B2201F;
  --leaf-deep: #861414;
  --butter: #FCECB4;
  --butter-soft: #F6DF8C;
  --cream: #FFF7DC;
  --ink: #1F1410;
  --ink-soft: #5A463B;
  --hot: #D23028;
  --hot-deep: #A31E1B;
  --line: #EAD58C;
  --shadow-plantain: 243, 177, 40;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--butter);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(252, 236, 180, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 20, 16, 0.08);
  transition: background 0.3s ease;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.nav__logo {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav__brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.nav__brand-name em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--plantain-deep);
  margin: 0 0.08em;
  vertical-align: -0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a,
.nav__menu-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__menu-link:hover { color: var(--plantain-deep); }

.nav__cta {
  background: var(--hot) !important;
  color: var(--butter) !important;
  padding: 0.65rem 1.35rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  border: 2px solid var(--hot) !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav__cta:hover {
  background: var(--hot-deep) !important;
  color: var(--butter) !important;
  border-color: var(--hot-deep) !important;
}

@media (max-width: 640px) {
  .nav { padding: 0.75rem 1rem; }
  .nav__links { gap: 0.75rem; }
  .nav__links a, .nav__menu-link { font-size: 0.8rem; }
  .nav__cta { padding: 0.5rem 0.95rem !important; font-size: 0.7rem !important; }
  .nav__logo { height: 44px; }
  .nav__brand-name { display: none; }
  .nav__links a:not(.nav__cta),
  .nav__menu-link { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2.1rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}
.btn--primary {
  background: var(--plantain);
  color: var(--ink);
  border-color: var(--plantain);
}
.btn--primary:hover {
  background: var(--plantain-deep);
  border-color: var(--plantain-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(var(--shadow-plantain), 0.32);
}
.btn--outline {
  background: transparent;
  color: var(--butter);
  border-color: var(--butter);
}
.btn--outline:hover {
  background: var(--butter);
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--butter);
}

.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a0d08;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero__slide--1 { background-image: url('../assets/food/slide-1.jpg'); }
.hero__slide--2 { background-image: url('../assets/food/slide-2.jpg'); }
.hero__slide--3 { background-image: url('../assets/food/slide-3.jpg'); }
.hero__slide--4 { background-image: url('../assets/food/slide-4.jpg'); }
.hero__slide.is-active {
  opacity: 1;
}
@media (max-width: 640px) {
  .hero__slide--1 { background-image: url('../assets/food/slide-1-m.jpg'); }
  .hero__slide--2 { background-image: url('../assets/food/slide-2-m.jpg'); }
  .hero__slide--3 { background-image: url('../assets/food/slide-3-m.jpg'); }
  .hero__slide--4 { background-image: url('../assets/food/slide-4-m.jpg'); }
  .hero { height: auto; min-height: 640px; max-height: 88vh; }
  .hero__slide { background-size: cover; background-position: center 38%; transform: none; }
  .hero__content { padding: 0 1.25rem; }
}
@media (max-width: 400px) {
  .hero { min-height: 580px; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 8, 5, 0.35) 0%,
    rgba(15, 8, 5, 0.55) 55%,
    rgba(15, 8, 5, 0.78) 100%
  );
}

/* Retro-shack checker stripe at the top of hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    var(--hot) 0 14px,
    var(--ink) 14px 28px
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 1.5rem 1.5rem 0;
  max-width: 880px;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--plantain);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.6rem;
}
.hero__title-main {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--butter);
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  padding: 0 0.2em;
}
.hero__title-script {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  font-weight: 700;
  color: var(--plantain);
  letter-spacing: 0.01em;
  margin-top: 0.35rem;
  transform: rotate(-2deg);
}
.hero__tagline {
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 247, 220, 0.94);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 3;
}
.hero__dot {
  width: 28px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 247, 220, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.hero__dot.is-active {
  background: var(--plantain);
}

/* ---------- Sections ---------- */
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.section-eyebrow--light { color: var(--plantain); }

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.9rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Specialties ---------- */
.specialties {
  padding: 6rem 1.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.specialties__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.75rem 2.25rem;
}
@media (max-width: 900px) {
  .specialties__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .specialties__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .specialties { padding: 4rem 1.25rem; }
}

.dish {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.dish__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: var(--line);
  margin-bottom: 1.1rem;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid var(--leaf);
}
.dish.is-selected .dish__img {
  transform: scale(1.03);
  border-color: var(--plantain);
  box-shadow: 0 12px 28px rgba(var(--shadow-plantain), 0.28);
}
.dish.is-selected .dish__name {
  color: var(--plantain-deep);
}
@media (hover: hover) {
  .dish:hover .dish__img {
    transform: scale(1.03);
    border-color: var(--plantain);
    box-shadow: 0 12px 28px rgba(var(--shadow-plantain), 0.28);
  }
  .dish:hover .dish__name {
    color: var(--plantain-deep);
  }
}

.dish__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.dish__name {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  transition: color 0.25s ease;
  flex: 1;
}
.dish__price {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--plantain-deep);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.dish__desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.dish__tag {
  display: inline-block;
  background: var(--hot);
  color: var(--butter);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  margin-top: 0.75rem;
  align-self: flex-start;
  border-radius: 2px;
}

.specialties__cta {
  text-align: center;
  margin-top: 4rem;
}

/* ---------- Parallax section ---------- */
.parallax {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem;
  overflow: hidden;
  color: var(--butter);
  isolation: isolate;
}
.parallax__bg {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  bottom: -80px;
  background-image: url('../assets/food/parallax.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  will-change: transform;
}
.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(134, 20, 20, 0.72) 0%,
    rgba(31, 20, 16, 0.88) 100%
  );
  z-index: -1;
}

.parallax__content {
  max-width: 720px;
  text-align: center;
}
.parallax__eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--plantain);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.parallax__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 1.3rem;
  letter-spacing: -0.015em;
}
.parallax__text {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 247, 220, 0.92);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Menu strip ---------- */
.menu-strip {
  background: var(--leaf);
  color: var(--butter);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.menu-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(var(--shadow-plantain), 0.22), transparent 60%);
  pointer-events: none;
}
.menu-strip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--plantain) 0 12px,
    var(--ink) 12px 24px
  );
}
.menu-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
}
.menu-strip__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  font-weight: 900;
  font-style: italic;
  margin-bottom: 0.45rem;
  letter-spacing: -0.015em;
}
.menu-strip__sub {
  color: rgba(255, 247, 220, 0.86);
  font-size: 1rem;
  max-width: 520px;
}
@media (max-width: 720px) {
  .menu-strip__inner { flex-direction: column; text-align: center; align-items: center; gap: 1.75rem; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--butter);
  padding: 4rem 1.5rem 1.5rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--hot) 0 12px,
    var(--ink) 12px 24px
  );
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 247, 220, 0.12);
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__col:last-child { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer { padding: 3rem 1.25rem 1.25rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.25rem; }
  .footer__col { grid-column: 1 / -1; }
}
.footer__logo {
  display: block;
  height: auto;
  width: min(220px, 60%);
  margin-bottom: 0.9rem;
}
.footer__tagline {
  color: rgba(255, 247, 220, 0.65);
  font-size: 1.05rem;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.footer__col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plantain);
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.footer__col p {
  font-size: 0.9rem;
  color: rgba(255, 247, 220, 0.8);
  line-height: 1.7;
}
.footer__col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--plantain); }

.footer__fine {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 247, 220, 0.42);
}

/* ---------- Modal shell ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 8, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.modal.is-open .modal__content { transform: scale(1); }

.modal__content--menu {
  flex-direction: column;
  gap: 1rem;
  max-height: none;
  padding: 4rem 0;
  width: 100%;
}
#menu-modal {
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.modal__close {
  position: fixed;
  top: 1.5rem;
  right: 1.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 247, 220, 0.1);
  border: 1px solid rgba(255, 247, 220, 0.3);
  color: var(--butter);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 101;
}
.modal__close:hover {
  background: var(--plantain);
  color: var(--ink);
  transform: rotate(90deg);
}

body.no-scroll { overflow: hidden; }

/* ---------- Menu card (replacement for scan images) ---------- */
.menu-card {
  width: min(1080px, 95vw);
  margin: 0 auto;
  background: var(--butter);
  color: var(--ink);
  padding: 3.5rem 3rem;
  border-top: 6px solid var(--plantain);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  position: relative;
}
.menu-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--hot) 0 12px,
    var(--ink) 12px 24px
  );
}

.menu-card__head {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}
.menu-card__logo {
  display: block;
  height: auto;
  width: min(260px, 70%);
  margin: 0 auto 1rem;
}
.menu-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hot);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.menu-card__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.menu-card__sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.menu-card__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 900px) {
  .menu-card__grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card { padding: 3rem 2rem; }
}
@media (max-width: 600px) {
  .menu-card__grid { grid-template-columns: 1fr; gap: 2rem; }
  .menu-card { padding: 2.5rem 1.5rem; }
}

.menu-pages {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.menu-page {
  width: 100%;
  height: auto;
  display: block;
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.menu-col h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 800;
  font-style: italic;
  color: var(--leaf);
  margin-bottom: 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px dotted var(--line);
}
.menu-col h3:not(:first-child) {
  margin-top: 1.75rem;
}
.menu-col ul {
  list-style: none;
}
.menu-col li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.32rem 0;
  font-size: 0.92rem;
  color: var(--ink);
}
.menu-col li span:last-child {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--plantain-deep);
  font-weight: 700;
  white-space: nowrap;
}
.menu-col__pop {
  background: var(--butter-soft);
  padding: 0.4rem 0.55rem !important;
  margin: 0.2rem -0.55rem;
  border-radius: 2px;
  font-weight: 700;
}

.menu-card__foot {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.menu-card__link {
  color: var(--hot);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.menu-card__link:hover {
  border-bottom-color: var(--hot);
}

/* ---------- Order choice modal ---------- */
.modal--choice .order-choice {
  background: var(--butter);
  color: var(--ink);
  max-width: 580px;
  width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  transform: scale(0.96);
  transition: transform 0.3s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
  border-top: 6px solid var(--plantain);
}
.modal--choice.is-open .order-choice { transform: scale(1); }
.modal--choice .order-choice::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--plantain) 0 10px,
    var(--ink) 10px 20px
  );
}

.order-choice__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: 0.9rem;
  font-weight: 700;
}
.order-choice__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.order-choice__sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.order-choice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 480px) {
  .order-choice__grid { grid-template-columns: 1fr; }
  .modal--choice .order-choice { padding: 2.25rem 1.5rem; }
}

.order-choice__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1.9rem 1rem;
  border: 2px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.order-choice__card:hover {
  border-color: var(--plantain);
  background: var(--butter);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--shadow-plantain), 0.22);
}
.order-choice__card[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
}
.order-choice__platform {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 800;
  font-style: italic;
}
.order-choice__go {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hot);
  font-weight: 700;
}

.order-choice__phone {
  display: inline-block;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.order-choice__phone:hover {
  color: var(--plantain-deep);
  border-bottom-color: var(--plantain-deep);
}

/* ---------- Polish: focus, motion, touch targets ---------- */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--plantain);
  outline-offset: 3px;
  border-radius: 2px;
}
.nav__cta:focus-visible,
.btn:focus-visible {
  outline-color: var(--ink);
  outline-offset: 4px;
}
.hero__dot:focus-visible,
.modal__close:focus-visible {
  outline-color: var(--plantain);
  outline-offset: 4px;
}

/* Hero dot tap-target expansion without changing visual size */
.hero__dot {
  position: relative;
}
.hero__dot::before {
  content: '';
  position: absolute;
  inset: -14px -4px;
}

/* Warm yellow wash behind the specialties grid so the logo yellow reads in the page */
.specialties { position: relative; }
.specialties::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(1400px, 100%);
  height: 420px;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(243, 177, 40, 0.26) 0%,
    rgba(243, 177, 40, 0.08) 45%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 0;
}
.specialties > * { position: relative; z-index: 1; }

/* Menu-strip bottom stripe already uses plantain+ink; warm the radial to plantain tone */
.menu-strip::before {
  background: radial-gradient(ellipse at top right, rgba(243, 177, 40, 0.28), transparent 60%);
}

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

/* Modal close safe-area (notched devices) */
@supports (padding: max(0px)) {
  .modal__close {
    top: max(1.5rem, env(safe-area-inset-top));
    right: max(1.75rem, env(safe-area-inset-right));
  }
}
