/* Sede de Bebidas — identidad real del local: negro pizarra + rojo del cartel
   Type: Oswald / Montserrat | Ink #0D0D0F | Rojo #C8102E | Papel #F5F3EF
   Promos estilo pizarra (chalkboard) como las del frente del local.
   Avoid: emoji icons, pills, cream+serif, teal genérico */

:root {
  --red: #c8102e;
    --red-deep: #9f0c24;
    --red-soft: #fbe9ec;
    --ink: #0d0d0f;
    --ink-soft: #17171b;
    --chalk: #f5f3ef;
    --paper: #efece6;
    --bg: var(--paper);
    --bg-elevated: var(--chalk);
    --text: #1b1b1f;
    --text-muted: #52525c;
    --border: #d9d4ca;
    --border-dark: rgba(245, 243, 239, 0.14);
    --amber: #e8b23a;
  --z-nav: 40;
  --z-skip: 50;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Montserrat", "Helvetica Neue", sans-serif;
  --space: clamp(1.25rem, 4vw, 2rem);
  --max: 72rem;
    --ease: 200ms ease;
    --radius: 0.375rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
    font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
  overscroll-behavior-y: contain;
}

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

a {
  color: inherit;
}

button,
summary,
.btn,
.nav a,
.footer-links a,
.faq summary,
.map-cta {
  cursor: pointer;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: var(--z-skip);
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-decoration: none;
}

.skip:focus {
  left: var(--space);
  top: var(--space);
}

.wrap {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

/* ——— Nav: barra negra como el cartel del local ——— */
.nav {
  position: fixed;
  top: 0;
    left: 0;
    right: 0;
  z-index: var(--z-nav);
  background: rgba(13, 13, 15, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 2px solid var(--red);
    box-shadow: 0 1px 0 rgba(200, 16, 46, 0.35), 0 6px 24px rgba(13, 13, 15, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
    width: min(100% - 2 * var(--space), var(--max));
    margin-inline: auto;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--chalk);
}

.nav-logo img {
  width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .nav-wordmark {
    display: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
  }
  
  @media (min-width: 520px) {
    .nav-wordmark {
      display: block;
    }
}

.nav-links {
  display: none;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.9rem;
    border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(245, 243, 239, 0.75);
  transition: color var(--ease), background var(--ease);
}

.nav-links a:hover {
  color: #fff;
    background: rgba(200, 16, 46, 0.25);
}

.nav-links a:focus-visible,
.btn:focus-visible,
.faq summary:focus-visible,
.map-cta:focus-visible,
.footer-links a:focus-visible,
.nav-logo:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: var(--radius);
  color: rgba(245, 243, 239, 0.75);
  transition: color var(--ease), background var(--ease);
}

.nav-ig:hover {
  color: #fff;
  background: rgba(200, 16, 46, 0.25);
}

.nav-ig svg {
  width: 1.35rem;
  height: 1.35rem;
}

.nav-ig:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

@media (min-width: 900px) {
  .nav-ig {
    margin-left: 0;
  }
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 48px;
  padding: 0.75rem 1.4rem;
    border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease),
    opacity var(--ease);
}

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-cta {
  background: var(--red);
  color: #fff;
}

.btn-cta:hover {
  background: var(--red-deep);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--ink-soft);
  color: var(--amber);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-light {
  background: var(--chalk);
  color: var(--ink);
}

.btn-light:hover {
  background: #fff;
    color: var(--red);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  padding-top: 5.5rem;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: kenburns 28s ease-out both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
        rgba(13, 13, 15, 0.3) 0%,
        rgba(13, 13, 15, 0.45) 40%,
        rgba(13, 13, 15, 0.92) 100%),
      linear-gradient(105deg, rgba(159, 12, 36, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 10vh, 5rem) 0 clamp(3.25rem, 9vh, 5.5rem);
}

.brand {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.65rem, 5.5vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  max-width: 22ch;
  animation: rise 650ms ease-out both;
}

.brand span {
  display: block;
  margin-top: 0.35em;
    font-size: 0.48em;
    font-weight: 500;
  letter-spacing: 0.06em;
    color: var(--amber);
  text-transform: none;
    max-width: 36ch;
}

.lead {
  margin: 0 0 2rem;
  max-width: 48ch;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.55;
  font-weight: 400;
  color: rgba(245, 243, 239, 0.92);
    animation: rise 650ms ease-out 80ms both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
    animation: rise 650ms ease-out 140ms both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}
/* ——— Sections ——— */
section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section-head {
  max-width: 38rem;
    margin-bottom: clamp(2rem, 4.5vw, 2.85rem);
  }
  
  .section-eyebrow {
    display: block;
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--red);
}

.section-head h2 {
  margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.6vw, 3rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0.01em;
    text-transform: uppercase;
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 46ch;
    font-size: 1.02rem;
  }
  
  /* ——— Promos: pizarras como las del frente ——— */
  .promos {
    background:
      radial-gradient(ellipse 90% 60% at 85% 0%, rgba(200, 16, 46, 0.12), transparent 55%),
      var(--ink);
    color: var(--chalk);
    border-block: 3px solid var(--red);
  }
  
  .promos .section-eyebrow {
    color: var(--amber);
  }
  
  .promos .section-head h2 {
    color: #fff;
  }
  
  .promos .section-head p {
    color: rgba(245, 243, 239, 0.72);
  }
  
  .promo-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  
  @media (min-width: 700px) {
    .promo-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .promo-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .promo {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.6rem 1.5rem 1.5rem;
    background: var(--ink-soft);
    border: 1px solid var(--border-dark);
    border-top: 3px solid var(--red);
    border-radius: var(--radius);
    transition: border-color var(--ease), background var(--ease);
  }
  
  .promo:hover {
    border-color: rgba(232, 178, 58, 0.5);
    border-top-color: var(--amber);
    background: #1b1b20;
  }
  
  .promo-tag {
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
  }
  
  .promo h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #fff;
  }
  
  .promo-detail {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(245, 243, 239, 0.75);
    line-height: 1.55;
  }
  
  .promo-price {
    margin-top: auto;
    padding-top: 0.75rem;
    font-family: var(--font-display);
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1;
    color: var(--amber);
  }
  
  .promo-price small {
    display: block;
    margin-top: 0.3rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(245, 243, 239, 0.55);
  }
  
  .promo--contact .promo-price {
    font-size: 1.35rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  
  .promo .btn {
    align-self: flex-start;
    margin-top: 0.85rem;
    min-height: 44px;
    padding: 0.55rem 1.15rem;
    font-size: 0.8rem;
  }
  
  .promo-note {
    margin: 1.5rem 0 0;
    font-size: 0.82rem;
    color: rgba(245, 243, 239, 0.55);
    max-width: 62ch;
}

/* Products */
.products {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.product-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .product-list { grid-template-columns: repeat(3, 1fr); }
}

.product {
  display: grid;
  gap: 0.7rem;
    padding: 1.85rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
  .product {
    padding: 1.85rem 1.6rem;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .product:first-child {
    padding-left: 0;
  }

    .product:last-child {
      border-right: none;
      padding-right: 0;
    }
}

.product-icon {
  width: 2.35rem;
    height: 2.35rem;
    color: var(--red);
}

.product-icon svg {
  width: 100%;
  height: 100%;
}

.product h3 {
  margin: 0;
  font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  color: var(--ink);
}

.product p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
    max-width: 28ch;
}

/* Gallery — solo las mejores fotos */
.gallery {
  background: var(--ink);
  color: #fff;
}

.gallery .section-eyebrow {
  color: var(--amber);
}

.gallery .section-head h2 {
  color: #fff;
}

.gallery .section-head p {
  color: rgba(245, 243, 239, 0.68);
}

.gallery-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}

@media (min-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .gallery-item--wide {
    grid-column: span 3;
  }
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-soft);
  aspect-ratio: 3 / 4;
}

.gallery-item--wide {
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease, opacity 200ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Reviews — cards chicas, marquee R→L con fade en bordes */
.reviews {
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(200, 16, 46, 0.08), transparent 50%),
      var(--ink);
      color: var(--chalk);
      overflow: hidden;
    }
    
    .reviews .section-eyebrow {
      color: var(--amber);
    }
    
    .reviews .section-head {
      margin-bottom: 0;
    }
    
    .reviews .section-head h2 {
      color: #fff;
    }
    
    .reviews .section-head p {
      color: rgba(245, 243, 239, 0.68);
    }
    
    .reviews-head {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.5rem 2rem;
      margin-bottom: clamp(2rem, 4.5vw, 2.85rem);
    }
    
    .reviews-score {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }
    
    .reviews-score-value {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 6vw, 3.5rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.02em;
      color: #fff;
    }
    
    .reviews-score-meta {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      font-size: 0.9rem;
      color: rgba(245, 243, 239, 0.7);
    }
    
    .stars {
      color: var(--amber);
      letter-spacing: 0.08em;
      font-size: 0.95rem;
      line-height: 1;
    }
    
    .stars--sm {
      font-size: 0.8rem;
    }
    
    .reviews-marquee {
      --reviews-fade: 3.5rem;
      position: relative;
      overflow: hidden;
      margin-inline: calc(var(--space) * -0.35);
      padding-block: 0.25rem;
      -webkit-mask-image: linear-gradient(90deg,
          transparent 0,
          #000 var(--reviews-fade),
          #000 calc(100% - var(--reviews-fade)),
          transparent 100%);
      mask-image: linear-gradient(90deg,
          transparent 0,
          #000 var(--reviews-fade),
          #000 calc(100% - var(--reviews-fade)),
          transparent 100%);
    }
    
    .reviews-track {
      display: flex;
      width: max-content;
      gap: 0.85rem;
      will-change: transform;
      animation: reviews-marquee var(--reviews-duration, 55s) linear infinite;
    }
    
    .reviews-marquee:hover .reviews-track,
    .reviews-marquee:focus-within .reviews-track {
      animation-play-state: paused;
    }
    
    .review-card {
      flex: 0 0 auto;
      width: 15.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      padding: 1rem 1rem 1.05rem;
      background: var(--ink-soft);
      border: 1px solid var(--border-dark);
      border-top: 3px solid var(--red);
      border-radius: var(--radius);
    }
    
    .review-top {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      column-gap: 0.65rem;
      row-gap: 0.2rem;
      align-items: center;
    }
    
    .review-avatar {
      grid-row: 1 / span 2;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
      background: #2a2a30;
    }
    
    .review-who {
      min-width: 0;
    }
    
    .review-who a {
      display: block;
      color: #fff;
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    
    .review-who a:hover {
      color: var(--amber);
    }
    
    .review-who time {
      display: block;
      color: rgba(245, 243, 239, 0.5);
      font-size: 0.72rem;
    }
    
    .review-top .stars {
      grid-column: 2;
    }
    
    .review-card blockquote {
      margin: 0;
    }
    
    .review-card blockquote p {
      margin: 0;
      color: rgba(245, 243, 239, 0.88);
      font-size: 0.9rem;
      line-height: 1.45;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
      overflow: hidden;
    }
    
    .reviews-foot {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem 1.5rem;
      margin-top: 1.5rem;
    }
    
    .reviews-attr {
      margin: 0;
      font-size: 0.85rem;
      color: rgba(245, 243, 239, 0.55);
    }
    
    .reviews-attr a {
      color: var(--amber);
      text-decoration: none;
    }
    
    .reviews-attr a:hover {
      text-decoration: underline;
    }
    
    @keyframes reviews-marquee {
      from {
        transform: translateX(0);
      }
    
      to {
        transform: translateX(-50%);
      }
    }
    
    @media (max-width: 640px) {
      .reviews-marquee {
        --reviews-fade: 1.75rem;
        margin-inline: 0;
      }
    
      .review-card {
        width: 13.75rem;
      }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
  }

    .reviews-track {
      animation: none;
    }
}
/* Channels */
.channels {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .channels {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

.channel {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
    border-radius: var(--radius);
  color: #fff;
  min-height: 100%;
  transition: opacity var(--ease);
}

.channel:hover {
  opacity: 0.96;
}

.channel-local {
  background:
      linear-gradient(160deg, rgba(13, 13, 15, 0.88), rgba(13, 13, 15, 0.96)),
      url("/images/local-08.jpg") center / cover;
    border-top: 3px solid var(--red);
}

.channel-mayorista {
  background:
      linear-gradient(160deg, rgba(159, 12, 36, 0.85), rgba(13, 13, 15, 0.95)),
      url("/images/local-06.jpg") center / cover;
    border-top: 3px solid var(--amber);
  }
.channel-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
    text-transform: uppercase;
  color: var(--amber);
}

.channel h3 {
  margin: 0;
  font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.channel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34ch;
    line-height: 1.55;
}

.meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
    font-weight: 500;
  font-size: 0.9rem;
}

.meta li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.meta svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
    opacity: 0.9;
}

.channel .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Visit — location + hours */
.visit {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.visit-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .visit-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
  }
}
.map-block {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
    background: var(--bg);
    min-height: 100%;
}

.map-block iframe {
  width: 100%;
  height: clamp(18rem, 42vw, 24rem);
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.04);
  }
  
  @media (min-width: 860px) {
    .map-block iframe {
      height: 100%;
      min-height: 22rem;
    }
}

.map-cta {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  text-decoration: none;
}

.map-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  background: var(--chalk);
    border: 1.5px solid var(--ink);
  border-radius: var(--radius);
    font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  color: var(--ink);
  transition: background var(--ease), color var(--ease);
}

.map-cta:hover .map-label {
  background: var(--ink);
  color: #fff;
}

.visit-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hours-band {
  display: flex;
  flex-direction: column;
    gap: 0.35rem;
    padding: 1.75rem 1.85rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
    border-top: 3px solid var(--red);
    flex: 1;
    justify-content: center;
  }
  
  .hours-band .hours-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
}

.hours-band strong {
  font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 1.95rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hours-band span {
  font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.02em;
  }
  
  .visit-address {
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--chalk);
  }
  
  .visit-address p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  
  .visit-address strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
  letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink);
}

/* FAQ */
.faq details {
  border-top: 1px solid var(--border);
  padding: 0.1rem 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--border);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 56px;
    padding: 1rem 0;
    font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
    letter-spacing: 0.01em;
  color: var(--ink);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  width: 0.6rem;
    height: 0.6rem;
    border-right: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform var(--ease);
  flex-shrink: 0;
}

.faq details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.35rem;
}

.faq details p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  max-width: 52ch;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background:
      linear-gradient(145deg, rgba(159, 12, 36, 0.88) 0%, rgba(13, 13, 15, 0.97) 100%),
      url("/images/local-09.jpg") center / cover;
  color: #fff;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 28rem;
    height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 178, 58, 0.16), transparent 68%);
    top: -10rem;
    right: -6rem;
  pointer-events: none;
}

.final-cta .wrap {
  position: relative;
}

.final-cta .section-eyebrow {
  color: var(--amber);
}
.final-cta .section-head h2 {
  color: #fff;
}

.final-cta .section-head p {
  color: rgba(245, 243, 239, 0.82);
}

/* Footer */
.footer {
  padding: 2.85rem 0 3rem;
    border-top: 3px solid var(--red);
    background: var(--ink);
    color: rgba(245, 243, 239, 0.62);
    font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
  align-items: end;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.footer strong {
  display: block;
  font-family: var(--font-display);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }
  
  .footer-brand p {
    margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 500;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--amber);
  text-decoration: none;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.legal {
  margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-dark);
    font-size: 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
.gallery-item:hover img {
  transform: none;
}
}
