:root {
  --cream: #fff8e8;
  --warm-white: #fffdf7;
  --chile: #c92f25;
  --maize: #f3bc2e;
  --turquoise: #078b8b;
  --mexican-green: #19713f;
  --blue: #2667a8;
  --orange: #e86a25;
  --pink: #d94f7a;
  --brown: #321f19;
  --ink: #241a16;
  --muted: #6f5d54;
  --white: #fff;
  --shadow: 0 18px 50px rgba(50, 31, 25, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --header-height: 108px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; color: var(--ink); background: var(--warm-white); font-family: Arial, Helvetica, sans-serif; font-size: 1rem; line-height: 1.65; overflow-x: hidden; }
main { padding-top: var(--header-height); }
img { display: block; max-width: 100%; }
button, a { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }

.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 999; padding: .75rem 1rem; color: var(--white); background: var(--brown); border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-height); background: rgba(25, 113, 63, .98); border-bottom: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(14px); transition: height .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease, background .45s ease; }
.site-header.is-scrolled { height: 82px; background: rgba(17, 88, 47, .99); box-shadow: 0 9px 28px rgba(20,47,30,.26); }
.header-inner { width: min(1320px, calc(100% - 2rem)); height: 100%; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; }
.brand { grid-column: 1; position: relative; display: grid; place-items: center; width: 210px; height: 96px; text-decoration: none; transition: width .45s cubic-bezier(.22,1,.36,1), height .45s cubic-bezier(.22,1,.36,1); }
.brand img { width: 100%; height: 90px; object-fit: contain; transition: height .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1); }
.site-header.is-scrolled .brand { width: 166px; height: 72px; }
.site-header.is-scrolled .brand img { height: 66px; }
.brand-fallback { display: none; color: var(--chile); font-family: Georgia, 'Times New Roman', serif; font-weight: 900; font-size: 2rem; letter-spacing: .13em; }
.brand.is-missing img { display: none; }
.brand.is-missing .brand-fallback { display: block; }
.primary-nav { justify-self: end; display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); }
.primary-nav a { position: relative; color: var(--maize); text-decoration: none; font-weight: 800; letter-spacing: .035em; white-space: nowrap; }
.primary-nav a::after { content: ''; position: absolute; left: 50%; right: 50%; bottom: -.45rem; height: 3px; background: var(--maize); transition: left .4s cubic-bezier(.22,1,.36,1), right .4s cubic-bezier(.22,1,.36,1); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { left: 0; right: 0; }
.menu-toggle { display: none; justify-self: end; width: 46px; height: 46px; padding: 11px; border: 0; background: transparent; border-radius: 50%; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--maize); transition: transform .25s ease, opacity .25s ease; }

.hero { position: relative; min-height: clamp(520px, 72vh, 760px); overflow: hidden; color: var(--white); background: var(--brown); }
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transform: scale(1); background-image: linear-gradient(90deg, rgba(27, 15, 11, .36), rgba(27, 15, 11, .04)), var(--hero-image); background-size: cover; background-position: center; transition: opacity .8s cubic-bezier(.22,1,.36,1); }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26, 15, 10, .18), transparent 45%); }
.hero-slide.is-active { opacity: 1; animation: hero-zoom 7s linear forwards; }
.hero-content { position: relative; z-index: 2; width: min(1180px, calc(100% - 7rem)); margin: 0 auto; min-height: clamp(520px, 72vh, 760px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.eyebrow, .section-kicker { margin: 0 0 .75rem; color: var(--maize); font-size: .83rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 { max-width: 760px; margin: 0 0 2rem; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.25rem, 8vw, 6.8rem); line-height: .94; letter-spacing: -.045em; text-wrap: balance; }
.hero-content.is-animated h1 { animation: hero-copy-in .7s cubic-bezier(.22,1,.36,1) both; }
.hero-content.is-animated .button { animation: hero-copy-in .7s .16s cubic-bezier(.22,1,.36,1) both; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: .8rem 1.35rem; border: 2px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 900; transition: transform .35s cubic-bezier(.22,1,.36,1), color .35s ease, background .35s ease, box-shadow .35s ease; }
.button:hover { transform: translateY(-2px); }
.button:active, .round-button:active, .menu-toggle:active { transform: translateY(1px); }
.carousel-arrow:active { transform: translateY(-50%) scale(.98); }
.button-primary { color: var(--brown); background: var(--maize); box-shadow: 0 10px 28px rgba(243, 188, 46, .28); }
.button-primary:hover { background: #ffd25c; }
.hero .button-primary, .hero .button-primary:hover, .hero .button-primary:focus-visible { box-shadow: none; }
.carousel-arrow { position: absolute; z-index: 3; top: 50%; display: grid; place-items: center; width: 48px; height: 48px; color: var(--white); background: rgba(29, 17, 12, .45); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; transform: translateY(-50%); transition: background .35s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.carousel-arrow:hover { background: var(--chile); transform: translateY(-50%) scale(1.09); }
.hero-prev { left: 1.25rem; }
.hero-next { right: 1.25rem; }
.hero-dots { position: absolute; z-index: 3; left: 50%; bottom: 1.8rem; display: flex; gap: .65rem; transform: translateX(-50%); }
.dot { width: 11px; height: 11px; padding: 0; border: 2px solid var(--white); border-radius: 50%; background: transparent; }
.dot.is-active { background: var(--maize); border-color: var(--maize); }

.section-shell { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.intro-section { position: relative; isolation: isolate; background-color: var(--cream); background-image: radial-gradient(circle at 20% 20%, rgba(201,47,37,.09) 0 2px, transparent 2.5px), radial-gradient(circle at 80% 70%, rgba(25,113,63,.1) 0 2px, transparent 2.5px); background-size: 34px 34px, 42px 42px; }
.intro-section::before { content: ''; position: absolute; inset: 0; z-index: 0; background: url('assets/welcome-texture.png') center / cover no-repeat; pointer-events: none; }
.intro { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; padding-block: clamp(5rem, 9vw, 8rem); }
.intro h2 { margin: 0 0 1.5rem; color: var(--brown); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.6rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.035em; }
.intro p:not(.section-kicker):not(.signature-line) { color: var(--muted); font-size: 1.08rem; }
.intro .section-kicker { color: var(--chile); }
.signature-line { margin: 2rem 0 0; padding-left: 1.15rem; color: var(--turquoise); border-left: 5px solid var(--maize); font-family: Georgia, 'Times New Roman', serif; font-size: 1.5rem; font-weight: 700; }
.image-frame { position: relative; min-height: 520px; overflow: hidden; background: linear-gradient(135deg, var(--turquoise), var(--blue)); border-radius: var(--radius-lg) var(--radius-lg) 120px var(--radius-lg); box-shadow: var(--shadow); }
.image-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.intro-image img { transition: transform .7s cubic-bezier(.22,1,.36,1); }
.intro-image:hover img { transform: scale(1.025); }
.image-placeholder { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.88); font-family: Georgia, 'Times New Roman', serif; font-size: 1.45rem; font-weight: 700; letter-spacing: .03em; }
.image-frame.is-missing img { display: none; }

.experience { display: grid; grid-template-columns: 1fr 1fr; }
.experience-panel { min-height: 470px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(4rem, 8vw, 7rem) clamp(2rem, 7vw, 7rem); }
.cuisine-panel { background: var(--warm-white); }
.event-panel { background: #eef3f1; }
.flourish { position: relative; width: 68px; height: 64px; margin: 0 auto 1.3rem; align-self: center; }
.flourish::before, .flourish::after { content: ''; position: absolute; bottom: 4px; width: 18px; height: 44px; background: var(--chile); border-radius: 100% 0 100% 0; }
.flourish::before { left: 15px; transform: rotate(-36deg); }
.flourish::after { right: 15px; transform: scaleX(-1) rotate(-36deg); }
.experience-panel h2 { margin: 0 0 1.2rem; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem, 4vw, 3.3rem); font-style: italic; line-height: 1.1; }
.experience-panel p { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.experience-panel .button { margin-top: 1.8rem; border-radius: 0; color: var(--mexican-green); border-color: var(--mexican-green); }
.experience-panel .button:hover { color: var(--white); background: var(--mexican-green); }

.section-heading h2 { margin: 0; color: var(--brown); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.7rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.04em; }
.section-heading > div > p:last-child, .centered-heading > p:last-child { margin: .8rem 0 0; color: var(--muted); font-size: 1.08rem; }
.section-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.25rem; }

.favorites { padding-block: clamp(5rem, 8vw, 7.5rem); color: var(--cream); background: #123f2a; border-block: 1px solid rgba(255,255,255,.1); }
.favorites .section-heading h2 { color: var(--white); }
.favorites .section-heading > div > p:last-child { color: rgba(255,248,232,.75); }
.favorites .section-kicker, .locations .section-kicker { color: var(--chile); }
.carousel-controls { display: flex; gap: .65rem; padding-bottom: .35rem; }
.round-button { display: grid; place-items: center; width: 50px; height: 50px; color: var(--cream); background: transparent; border: 2px solid rgba(255,248,232,.72); border-radius: 50%; font-size: 1.2rem; transition: color .35s ease, background .35s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.round-button:hover:not(:disabled) { color: #123f2a; background: var(--maize); border-color: var(--maize); transform: translateY(-2px); }
.round-button:disabled { opacity: .32; cursor: not-allowed; }
.favorites-viewport { overflow: hidden; padding: .25rem; margin: -.25rem; touch-action: pan-y; }
.favorites-track { --visible: 5; --card-gap: 18px; display: flex; gap: var(--card-gap); transition: transform .65s cubic-bezier(.22,1,.36,1); will-change: transform; }
.dish-card { flex: 0 0 calc((100% - 72px) / 5); min-width: 0; padding: 0; overflow: hidden; color: var(--brown); text-align: left; background: var(--white); border: 0; border-radius: var(--radius-md); box-shadow: 0 10px 30px rgba(0,0,0,.2); transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease; }
.dish-card:hover, .dish-card:focus-visible { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(0,0,0,.3); }
.dish-card:active, .location-card:active { transform: translateY(-2px); }
.card-image, .location-image { position: relative; display: block; overflow: hidden; background: linear-gradient(145deg, var(--orange), var(--chile)); }
.card-image { aspect-ratio: 4 / 3; }
.media-frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22,1,.36,1), opacity .45s ease; }
.dish-card:hover .card-image img, .dish-card:focus-visible .card-image img, .location-card:hover .location-image img, .location-card:focus-visible .location-image img { transform: scale(1.03); }
.media-frame .image-placeholder { background: linear-gradient(135deg, rgba(201,47,37,.88), rgba(232,106,37,.8)); font-family: Georgia, 'Times New Roman', serif; font-size: 1rem; text-align: center; padding: 1rem; }
.media-frame.is-missing img { display: none; }
.card-copy, .location-card-copy { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.card-copy { min-height: 88px; padding: 1rem 1rem 1.15rem; }
.card-copy strong { line-height: 1.25; }
.open-indicator { display: none; }
.favorites-status { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.favorites-dots { display: flex; gap: .5rem; }
.favorites-dots button { width: 28px; height: 5px; padding: 0; background: rgba(255,248,232,.28); border: 0; border-radius: 99px; transition: width .35s cubic-bezier(.22,1,.36,1), background .35s ease; }
.favorites-dots button.is-active { width: 48px; background: var(--maize); }
.favorites-count { margin: 0; color: rgba(255,248,232,.72); font-size: .88rem; font-weight: 800; }

.drinks-banner { position: relative; min-height: 520px; display: grid; place-items: center; color: var(--white); text-align: center; background-color: var(--blue); background-image: linear-gradient(rgba(23,13,10,.56), rgba(23,13,10,.68)), url('assets/drinks-banner.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.drinks-content { position: relative; z-index: 1; padding: 4rem 1rem; }
.drinks-content h2 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 7vw, 6.3rem); line-height: .97; letter-spacing: -.045em; text-wrap: balance; }
.drinks-content p { margin: 1.5rem 0 0; color: var(--maize); font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.drinks-content p span { padding: 0 .35rem; color: var(--pink); }

.locations { padding-block: clamp(5rem, 9vw, 8rem); }
.locations .section-heading h2 { color: var(--chile); }
.centered-heading { max-width: 700px; margin: 0 auto 3rem; text-align: center; }
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.location-card { padding: 0; overflow: hidden; color: var(--brown); text-align: left; background: var(--cream); border: 0; border-radius: var(--radius-lg); box-shadow: 0 12px 34px rgba(50,31,25,.09); transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease; }
.location-card:hover, .location-card:focus-visible { transform: translateY(-7px); box-shadow: var(--shadow); }
.location-image { aspect-ratio: 5 / 4; }
.location-image .image-placeholder { font-size: 1.35rem; background: linear-gradient(135deg, var(--turquoise), var(--blue)); }
.location-card:nth-child(2) .location-image .image-placeholder { background: linear-gradient(135deg, var(--orange), var(--chile)); }
.location-card:nth-child(3) .location-image .image-placeholder { background: linear-gradient(135deg, var(--mexican-green), var(--turquoise)); }
.location-card:nth-child(4) .location-image .image-placeholder { background: linear-gradient(135deg, var(--blue), var(--turquoise)); }
.location-card-copy { padding: 1.25rem 1.25rem 1.4rem; }
.location-card-copy small { display: block; margin-bottom: .15rem; color: var(--chile); font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.location-card-copy strong { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: 1.75rem; line-height: 1.1; }

.site-footer { color: var(--cream); background: #b91c1c; }
.footer-inner { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 3.2rem); padding-block: 4.5rem; }
.footer-brand .brand { grid-column: auto; place-items: start; width: 150px; margin-bottom: 1.4rem; }
.footer-brand .brand-fallback { color: var(--maize); }
.footer-nav { display: flex; gap: 1.25rem; margin-bottom: 1.4rem; }
.footer-nav a, .footer-location a, .footer-bottom a { color: var(--maize); font-weight: 800; text-decoration: none; background-image: linear-gradient(currentColor,currentColor); background-position: 50% 100%; background-repeat: no-repeat; background-size: 0 2px; transition: color .35s ease, background-size .35s cubic-bezier(.22,1,.36,1); }
.footer-nav a:hover, .footer-location a:hover, .footer-bottom a:hover, .footer-nav a:focus-visible, .footer-location a:focus-visible, .footer-bottom a:focus-visible { color: var(--white); background-size: 100% 2px; }
.social-links { display: flex; gap: .65rem; }
.social-links a { display: grid; place-items: center; width: 42px; height: 42px; color: var(--brown); background: var(--cream); border-radius: 50%; transition: color .2s ease, background .2s ease, transform .2s ease; }
.social-links a:hover { color: var(--chile); background: var(--maize); transform: translateY(-2px) scale(1.07); }
.social-links svg { width: 21px; height: 21px; fill: currentColor; }
.footer-location h3 { margin: 0 0 .9rem; color: var(--white); font-family: Georgia, 'Times New Roman', serif; font-size: 1.35rem; }
.footer-location address { margin-bottom: .7rem; color: rgba(255,248,232,.72); font-style: normal; line-height: 1.65; }
.footer-bottom { width: 100%; max-width: none; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; padding: 1.55rem 1rem 1.8rem; color: var(--cream); background: #111; font-size: .9rem; text-align: center; }
.footer-bottom p { margin: 0; }
.footer-bottom .designer-credit { color: var(--white); font-size: .96rem; }

body.modal-open { overflow: hidden; }
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 1rem; }
.modal-backdrop { position: absolute; inset: 0; opacity: 0; background: rgba(24,14,10,.76); backdrop-filter: blur(5px); transition: opacity .32s ease; }
.modal-panel { position: relative; z-index: 1; width: min(920px, 100%); max-height: calc(100vh - 2rem); overflow: auto; display: grid; grid-template-columns: 1.05fr .95fr; opacity: 0; transform: scale(.96); background: var(--warm-white); border-radius: var(--radius-lg); box-shadow: 0 28px 90px rgba(0,0,0,.32); transition: opacity .32s ease, transform .42s cubic-bezier(.22,1,.36,1); }
.modal.is-open .modal-backdrop { opacity: 1; }
.modal.is-open .modal-panel { opacity: 1; transform: scale(1); }
.modal-close { position: absolute; z-index: 3; top: .8rem; right: .8rem; display: grid; place-items: center; width: 44px; height: 44px; color: var(--brown); background: rgba(255,253,247,.94); border: 0; border-radius: 50%; font-size: 1.7rem; line-height: 1; box-shadow: 0 6px 16px rgba(0,0,0,.16); }
.modal-image { position: relative; min-height: 500px; overflow: hidden; background: linear-gradient(135deg, var(--orange), var(--chile)); }
.modal-image .image-placeholder { font-size: 1.3rem; }
.modal-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.modal-copy .section-kicker { color: var(--chile); }
.modal-copy h2 { margin: 0 0 1rem; color: var(--brown); font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1; letter-spacing: -.04em; }
.modal-copy > p:last-child { margin: 0; color: var(--muted); }
.location-modal-panel { width: min(980px, 100%); }
.location-modal-copy { justify-content: flex-start; padding: 2.5rem clamp(1.5rem, 4vw, 3.5rem); }
.location-modal-copy address { color: var(--muted); font-style: normal; line-height: 1.45; }
.location-phone { margin: .35rem 0 1rem; color: var(--turquoise); font-size: 1.08rem; font-weight: 900; }
.location-modal-copy h3 { margin: .35rem 0 .55rem; font-size: 1rem; }
.hours-list { display: grid; grid-template-columns: auto 1fr; gap: .18rem 1rem; margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.4; }
.hours-list div { display: contents; }
.hours-list dt { font-weight: 800; }
.hours-list dd { margin: 0; text-align: right; }
.modal-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.35rem; }
.button-outline { color: var(--brown); background: transparent; border-color: var(--brown); }
.button-outline:hover { color: var(--white); background: var(--brown); }

@keyframes hero-zoom { from { transform: scale(1); } to { transform: scale(1.035); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.animations-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--reveal-delay, 0ms) cubic-bezier(.22,1,.36,1), transform .7s var(--reveal-delay, 0ms) cubic-bezier(.22,1,.36,1); }
.animations-ready .reveal.reveal-left { transform: translateX(-32px); }
.animations-ready .reveal.reveal-right { transform: translateX(32px); }
.animations-ready .reveal.is-visible { opacity: 1; transform: translate(0,0); }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

@media (max-width: 760px) {
  :root { --header-height: 88px; }
  .header-inner { grid-template-columns: auto 1fr; gap: 1rem; }
  .brand { width: 154px; height: 78px; }
  .brand img { height: 72px; }
  .site-header.is-scrolled .brand { width: 138px; height: 66px; }
  .site-header.is-scrolled .brand img { height: 60px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 100%; left: 1rem; right: 1rem; display: grid; gap: 0; padding: .6rem; background: var(--mexican-green); border: 1px solid rgba(255,255,255,.14); border-radius: 0 0 18px 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: .85rem 1rem; }
  .hero, .hero-content { min-height: 610px; }
  .hero-content { width: min(100% - 3rem, 620px); align-items: center; text-align: center; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-slide { background-image: linear-gradient(rgba(27,15,11,.28), rgba(27,15,11,.4)), var(--hero-image); }
  .carousel-arrow { top: auto; bottom: 1.15rem; width: 43px; height: 43px; transform: none; }
  .carousel-arrow:hover { transform: scale(1.05); }
  .carousel-arrow:active { transform: translateY(1px) scale(.98); }
  .hero-prev { left: 1rem; }
  .hero-next { right: 1rem; }
  .hero-dots { bottom: 2rem; }
  .intro { grid-template-columns: 1fr; padding-block: 4.5rem; }
  .intro-image { min-height: 390px; }
  .experience { grid-template-columns: 1fr; }
  .experience-panel { min-height: auto; }
  .section-heading-row { align-items: center; }
  .favorites-track { --visible: 1; --card-gap: 14px; }
  .dish-card { flex-basis: 100%; }
  .card-copy { min-height: 78px; }
  .carousel-controls { flex: 0 0 auto; }
  .round-button { width: 46px; height: 46px; }
  .favorites-dots button { width: 14px; }
  .favorites-dots button.is-active { width: 26px; }
  .drinks-banner { min-height: 440px; background-attachment: scroll; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .modal-panel { grid-template-columns: 1fr; }
  .modal-image { min-height: 245px; aspect-ratio: 16 / 9; }
  .modal-copy { padding: 2rem 1.35rem 2.2rem; }
  .modal-copy h2 { font-size: 2.45rem; }
  .location-modal-panel .modal-image { min-height: 190px; }
  .modal-actions { display: grid; grid-template-columns: 1fr; }
  .modal-actions .button { width: 100%; }
  .hours-list { font-size: .82rem; }
}

@media (min-width: 761px) and (max-width: 1020px) {
  .favorites-track { --visible: 3; }
  .dish-card { flex-basis: calc((100% - 36px) / 3); }
  .location-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 430px) {
  .section-heading-row { align-items: flex-end; }
  .section-heading h2 { font-size: 2.55rem; }
  .section-heading-row > div:first-child > p:last-child { max-width: 190px; }
  .carousel-controls { gap: .4rem; }
  .round-button { width: 42px; height: 42px; }
  .location-card-copy strong { font-size: 1.55rem; }
  .modal { padding: .5rem; }
  .modal-panel { max-height: calc(100vh - 1rem); }
  .hours-list { grid-template-columns: 1fr; gap: .05rem; }
  .hours-list div { display: grid; grid-template-columns: 1fr 1.25fr; gap: .5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .drinks-banner { background-attachment: scroll !important; }
  .hero-slide.is-active { transform: none !important; }
  .animations-ready .reveal { opacity: 1 !important; transform: none !important; }
}
