/* METL — direction L "WEB 1.0"
   Deliberate early-internet vernacular, executed with love.
   Times New Roman · #c0c0c0 ground · #0000EE links · navy table headers ·
   beveled 3D buttons · inset hr · dotted focus rings · one tiled section.
   Real CSS grid underneath; every tap works on a phone. */

/* Shop page inline <style> consumes these vars — mapped into this palette. */
:root {
  --ink: #c0c0c0;
  --bone: #000000;
  --display: "Times New Roman", Times, serif;
  --gutter: 1rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #c0c0c0;
  color: #000;
  font: 16px/1.5 "Times New Roman", Times, serif;
}

/* Period-correct default link colors, always underlined. */
a:link { color: #0000EE; }
a:visited { color: #551A8B; }
a:active { color: #FF0000; }
a { text-decoration: underline; }

/* Dotted focus ring — compliant AND period-correct. */
:focus-visible {
  outline: 2px dotted #000;
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; }

/* Classic 3D inset rule. */
hr {
  border: 0;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #fff;
  margin: 1.6rem 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  z-index: 10;
  background: #fff;
  border: 2px solid #000;
  padding: .5rem .8rem;
}

/* ---------- The white "table" page on the grey ground ---------- */

.page {
  max-width: 47rem;
  margin: 14px auto;
  background: #fff;
  border: 2px ridge #9a9a9a;
  padding: 1.4rem clamp(.9rem, 4vw, 2.2rem) 1.6rem;
}

/* ---------- Masthead ---------- */

.masthead { text-align: center; }

.logo {
  width: min(230px, 62vw);
  height: auto;
}

.masthead h1 {
  margin: .7rem 0 .15rem;
  font-size: 1.9rem;
  font-weight: bold;
}

.tagline { margin: 0; font-style: italic; }

.updated {
  margin: .3rem 0 0;
  font-size: .78rem;
  color: #3d3d3d;
}

.mainnav {
  margin: 1rem 0 .2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .2rem .35rem;
}

.mainnav a {
  display: inline-block;
  padding: .7rem .4rem;
  font-weight: bold;
  font-size: 1.05rem;
}

/* ---------- Beveled 3D buttons ---------- */

.btn3d,
.lang-switch,
.hard-link {
  display: inline-block;
  background: #c0c0c0;
  border: 2px outset #f4f4f4;
  padding: .6rem 1.1rem;
  font: bold 1rem/1.2 "Times New Roman", Times, serif;
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

a.btn3d:link, a.btn3d:visited,
a.hard-link:link, a.hard-link:visited { color: #000; }

.btn3d:active,
.lang-switch:active,
.hard-link:active { border-style: inset; color: #000; }

.lang-switch { min-width: 3.2rem; }

/* ---------- Marquee (static + centered under reduced motion) ---------- */

.marquee {
  overflow: hidden;
  background: #000080;
  color: #fff;
  padding: .4rem 0;
  margin: 1.1rem 0 0;
  white-space: nowrap;
  border: 1px solid #808080;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  font-weight: bold;
  letter-spacing: .08em;
  animation: crawl 20s linear infinite;
}

@keyframes crawl {
  to { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee { white-space: normal; text-align: center; }
  .marquee span { padding-left: 0; display: inline; }
}

/* ---------- Sections ---------- */

.center { text-align: center; }

main h2 {
  text-align: center;
  font-size: 1.45rem;
  margin: 1.7rem 0 1rem;
}

/* Small centered photos, border=2 look. */
.photo {
  width: min(340px, 88%);
  border: 2px solid #000;
  background: #fff;
}

.photo--s { width: min(250px, 72%); }

.caption { margin: .5rem 0 0; font-size: .85rem; }

/* ---------- Venues: bordered-table look, real grid underneath ---------- */

.venues {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.venue {
  border: 1px solid #808080;
  background: #fff;
  text-align: center;
  padding-bottom: 1.1rem;
  margin: 0;
}

.venue .thead {
  margin: 0;
  background: #000080;
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: .05em;
  padding: .45rem;
  border-bottom: 1px solid #808080;
}

.venue .photo {
  width: min(230px, 84%);
  margin: 1rem auto .4rem;
  display: block;
}

.venue address { margin: .4rem 0; line-height: 1.55; }

.venue p { margin: .35rem 0; }

.venue a {
  display: inline-block;
  padding: .35rem .3rem;
}

@media (max-width: 620px) {
  .venues { grid-template-columns: 1fr; }
}

/* ---------- Tiled gallery section ---------- */

.gallery {
  border: 1px solid #808080;
  padding: .2rem 1rem 1.1rem;
  background: #fff repeating-linear-gradient(
    45deg,
    #ececec 0 5px,
    #f7f7f7 5px 10px
  );
  text-align: center;
}

.gallery h2 { margin-top: 1rem; }

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: center;
}

.thumbs img {
  width: 100%;
  border: 2px solid #000;
  background: #fff;
}

@media (max-width: 620px) {
  .thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Under-construction stripes ---------- */

.stripes {
  width: min(260px, 82%);
  height: 16px;
  margin: .7rem auto .4rem;
  border: 1px solid #000;
  background: repeating-linear-gradient(
    45deg,
    #111 0 12px,
    #f7d117 12px 24px
  );
}

.small { font-size: .9rem; margin: .3rem 0 .8rem; }

/* ---------- Hit counter (decorative, label-free) ---------- */

.counter {
  display: inline-flex;
  background: #000;
  border: 2px inset #fff;
  padding: 3px;
  margin: .6rem 0 .4rem;
}

.counter span {
  font: bold 1.25rem/1.5 "Courier New", Courier, monospace;
  color: #33ff33;
  background: #101010;
  padding: 0 .32rem;
  border-right: 1px solid #000;
}

.counter span:last-child { border-right: 0; }

.tiny { font-size: .78rem; margin: .3rem 0; }

.tiny a {
  display: inline-block;
  padding: .3rem .15rem;
}

/* ================================================================
   CARTA — menu/index.html (content untouched, restyled here)
   ================================================================ */

.index {
  font: bold .7rem/1.4 "Courier New", Courier, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0;
}

.menu-page { background: #c0c0c0; }

.menu-page .site-head {
  display: block;
  max-width: 47rem;
  margin: 14px auto 0;
  background: #fff;
  border: 2px ridge #9a9a9a;
  border-bottom: 0;
  padding: 1.1rem 1rem .8rem;
  text-align: center;
}

.site-head .head-mark img {
  width: min(170px, 50vw);
  height: auto;
}

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .2rem .4rem;
  margin-top: .5rem;
}

.desktop-nav a {
  display: inline-block;
  padding: .65rem .45rem;
  font-weight: bold;
}

.desktop-nav a[aria-current="page"] {
  color: #000;
  text-decoration: none;
}

.head-actions { margin-top: .35rem; }

.nav-drawer { display: none; }

.menu-page main {
  max-width: 47rem;
  margin: 0 auto 14px;
  background: #fff;
  border: 2px ridge #9a9a9a;
  border-top: 1px solid #808080;
  padding: 1.2rem clamp(.9rem, 4vw, 2rem) 1.6rem;
}

.menu-hero { text-align: center; }

.kicker { font-style: italic; font-size: .88rem; margin: 0; }

.menu-hero h1 {
  font-size: 1.85rem;
  margin: .4rem 0 .3rem;
}

.menu-hero-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .88rem;
}

.menu-hero-meta p { margin: 0; }

/* Classic pale-yellow note box. */
.menu-status {
  border: 1px solid #808080;
  background: #ffffcc;
  padding: .8rem .9rem;
  font-size: .88rem;
  margin: 1.2rem 0;
}

.menu-status strong { display: block; margin-bottom: .25rem; }
.menu-status p { margin: 0; }

.menu-sheet { display: block; }

/* Navy table-header bars. */
.menu-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .3rem .8rem;
  flex-wrap: wrap;
  background: #000080;
  color: #fff;
  padding: .45rem .65rem;
  margin: 1.5rem 0 .4rem;
}

.menu-section-head h2 {
  margin: 0;
  font-size: 1.2rem;
  text-align: left;
  letter-spacing: .04em;
}

.menu-section-head .index { color: #fff; }

.menu-price-key { margin: 0; font-size: .82rem; }

.menu-group { margin: 0 0 .6rem; }

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .9rem;
  padding: .5rem 0;
  border-bottom: 1px dotted #808080;
}

.menu-item h3 { margin: 0; font-size: 1.02rem; }

.menu-item p {
  margin: .1rem 0 0;
  font-size: .86rem;
  color: #333;
}

.menu-item b { font-size: 1rem; white-space: nowrap; }

.menu-extra {
  font-size: .86rem;
  font-style: italic;
  margin: .5rem 0 0;
}

.drink-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
  margin-top: .4rem;
}

.drink-block h3 {
  margin: 0 0 .3rem;
  font-size: 1.05rem;
  border-bottom: 2px solid #000;
  padding-bottom: .15rem;
}

.drink-block p {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  margin: .22rem 0;
  font-size: .9rem;
  border-bottom: 1px dotted #ccc;
}

.drink-block b { white-space: nowrap; }

.drink-block small {
  display: block;
  font-style: italic;
  font-size: .78rem;
  margin-top: .3rem;
}

.drink-block--note {
  border: 1px solid #808080;
  background: #ffffcc;
  padding: .6rem .7rem;
}

.drink-block--note h3 { border-bottom: 0; }

.menu-cta {
  text-align: center;
  border: 1px solid #808080;
  padding: 1rem;
  margin: 1.7rem 0 .4rem;
  background: #fff repeating-linear-gradient(
    45deg,
    #ececec 0 5px,
    #f7f7f7 5px 10px
  );
}

.menu-cta h2 {
  font-size: 1.25rem;
  margin: .3rem 0 .8rem;
  text-align: center;
}

.menu-page footer {
  max-width: 47rem;
  margin: 0 auto 14px;
  background: #fff;
  border: 2px ridge #9a9a9a;
  border-top: 1px solid #808080;
  padding: 1rem;
  text-align: center;
}

.footer-logo img { width: 130px; height: auto; }

.footer-base {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .4rem 1.2rem;
  flex-wrap: wrap;
  font-size: .8rem;
}

.footer-base a { display: inline-block; padding: .35rem .2rem; }

@media (max-width: 620px) {
  .drink-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   TIENDA — shop/index.html (inline styles consume the vars above;
   these higher-specificity rules translate it into the same look)
   ================================================================ */

main.shop-page {
  max-width: 47rem;
  margin: 14px auto;
  min-height: auto;
  background: #fff;
  border: 2px ridge #9a9a9a;
  padding: 1.4rem clamp(.9rem, 4vw, 2rem) 1.6rem;
  gap: 1.5rem;
  text-align: center;
}

main.shop-page .back {
  font: bold 1rem/1.3 "Times New Roman", Times, serif;
  text-transform: none;
  letter-spacing: 0;
  padding: .5rem .2rem;
  justify-self: center;
}

main.shop-page h1 {
  font: bold 2.1rem/1.15 "Times New Roman", Times, serif;
  letter-spacing: 0;
  text-transform: none;
  max-width: none;
  margin: .4rem auto 0;
}

/* Under-construction hazard bar under the headline. */
main.shop-page h1::after {
  content: "";
  display: block;
  width: min(260px, 82%);
  height: 16px;
  margin: .9rem auto 0;
  border: 1px solid #000;
  background: repeating-linear-gradient(
    45deg,
    #111 0 12px,
    #f7d117 12px 24px
  );
}

main.shop-page .shop-intro {
  border-top: 1px solid #808080;
  padding-top: 1.1rem;
  gap: 1rem 1.6rem;
  text-align: left;
}

main.shop-page .shop-intro p {
  font: 1rem/1.55 "Times New Roman", Times, serif;
  font-weight: normal;
  max-width: none;
  margin: 0;
}

main.shop-page .future-stock {
  border: 1px solid #808080;
}

main.shop-page .future-stock article {
  min-height: 9rem;
  padding: .9rem;
  border-right: 1px solid #808080;
  align-items: center;
  text-align: center;
}

main.shop-page .future-stock h2 {
  font: bold 1.4rem/1.2 "Times New Roman", Times, serif;
  text-transform: none;
  letter-spacing: 0;
  margin: .4rem 0;
}

main.shop-page .future-stock span {
  font: bold .68rem/1.4 "Courier New", Courier, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

main.shop-page .shop-foot {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .6rem 1.4rem;
  flex-wrap: wrap;
}

main.shop-page .shop-foot p { margin: 0; font-size: .9rem; }

@media (max-width: 700px) {
  main.shop-page h1 { font-size: 1.9rem; }
  main.shop-page .future-stock article {
    border-right: 0;
    border-bottom: 1px solid #808080;
  }
  main.shop-page .future-stock article:last-child { border-bottom: 0; }
}
