/* Neon Cattle Coffee Co rebuild v8 */

:root {
  --cream: #FAF5EA;
  --sand: #F6E6CB;
  --brown: #392316;
  --brown-card: #422D21;
  --pink: #F5009E;
  --orange: #FE8C2C;
  --coral: #FE7A45;
  --text: #7A5C48;
  --line: #E8D8C6;
  --on-dark: #D5CDC1;
  --on-dark-muted: #A99B91;

  --font-display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: "Grand Hotel", "Brush Script MT", cursive;

  --header-h: 68px;
  --section-pad: 4rem;
}

@media (min-width: 768px) {
  :root { --section-pad: 5rem; }
}

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

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
figure { margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.wrap {
  width: calc(100% - 2rem);
  max-width: 1120px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .wrap { width: calc(100% - 3rem); }
}

section[id] { scroll-margin-top: var(--header-h); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 1rem 1.625rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-pink {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(245, 0, 158, 0.55);
}
.btn-outline {
  padding-inline: 1.75rem;
  background: transparent;
  border-color: var(--brown);
  color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--cream); }

.btn-sm {
  padding: 0.6875rem 1.25rem;
  font-size: 1.125rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 244, 234, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { width: 58px; height: auto; }
.header-nav { display: none; }

@media (min-width: 768px) {
  .header-logo img { width: 56px; }
  .header-nav {
    display: flex;
    gap: 2rem;
  }
  .header-nav a {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .header-nav a:hover { color: var(--pink); }
  .btn-sm { font-size: 1.125rem; padding: 0.6875rem 1.25rem; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 1.25rem 0 3.5rem;
}
.hero-inner {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.framed.hero-photo {
  order: -1;
  aspect-ratio: 5 / 4;
}
.hero-photo img { object-position: center 75%; }
.hero-title {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 2.2rem + 3.2vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-wrap: balance;
  color: var(--brown);
}
.neon {
  white-space: nowrap;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  max-width: 32rem;
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.hero-today {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--brown);
}
.hero-today::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: 1px;
}
.hero-today a {
  color: var(--brown);
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-underline-offset: 3px;
}
.hero-today a:hover { color: var(--pink); }

@media (max-width: 767px) {
  .hero-sub { font-size: 1.0625rem; line-height: 1.55; }
}
@media (min-width: 600px) and (max-width: 899px) {
  .framed.hero-photo { aspect-ratio: 3 / 2; }
  .hero-photo img { object-position: center 70%; }
}
@media (min-width: 900px) {
  .hero { padding: 4rem 0 4.5rem; }
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
  .framed.hero-photo {
    order: 0;
    aspect-ratio: 4 / 5;
  }
  .hero-photo img { object-position: center 60%; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--brown);
  overflow: hidden;
  height: 60px;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0;
  padding: 0 1.25rem 0 1.25rem;
  list-style: none;
}
.marquee-group li {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.marquee-group .spark {
  width: 22px;
  height: 22px;
  flex: none;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L21 12l-5.813-1.912a2 2 0 0 1-1.275-1.275L12 3Z'/%3E%3Cpath d='M5 3v4'/%3E%3Cpath d='M19 17v4'/%3E%3Cpath d='M3 5h4'/%3E%3Cpath d='M17 19h4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 3-1.912 5.813a2 2 0 0 1-1.275 1.275L3 12l5.813 1.912a2 2 0 0 1 1.275 1.275L12 21l1.912-5.813a2 2 0 0 1 1.275-1.275L21 12l-5.813-1.912a2 2 0 0 1-1.275-1.275L12 3Z'/%3E%3Cpath d='M5 3v4'/%3E%3Cpath d='M19 17v4'/%3E%3Cpath d='M3 5h4'/%3E%3Cpath d='M17 19h4'/%3E%3C/svg%3E") center / contain no-repeat;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Shared section parts ---------- */
.section { padding: var(--section-pad) 0; }

.script {
  font-family: var(--font-script);
  font-size: 2.25rem;
  line-height: 1.1;
}
.script-pink { color: var(--pink); }
.script-orange { color: var(--orange); }
.script-brown { color: var(--brown); }

.title-left,
.title-center {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brown);
}
.title-left {
  margin-top: 0.5rem;
  font-size: clamp(2.25rem, 1.75rem + 1.5vw, 3rem);
}
.title-center {
  margin-top: 0.25rem;
  font-size: clamp(3rem, 2.4rem + 1.8vw, 3.75rem);
}
.section-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

/* Two-column text + photo */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.split-text p:not(.script) { margin-top: 1rem; }
.split-text .title-left + p { margin-top: 0.875rem; }

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 899px) {
  .split .framed { max-width: 36rem; }
}

/* Photo with offset color shadow */
.framed {
  border: 2px solid var(--brown);
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.framed-pink { box-shadow: 8px 8px 0 var(--pink); }
.framed-orange { box-shadow: 8px 8px 0 var(--orange); }

/* ---------- About ---------- */
.about .split-text { max-width: 36rem; }
.about-logo {
  display: flex;
  justify-content: center;
}
.about-logo img { width: min(420px, 80%); }

/* ---------- Menu ---------- */
.menu {
  background: var(--brown);
}
.menu .title-center { color: var(--cream); }
.title-glow {
  text-shadow: 0 0 18px rgba(245, 0, 158, 0.6), 0 0 4px rgba(245, 0, 158, 0.35);
}
.menu .section-head { margin-bottom: 1.75rem; }
.menu [id^="menu-"] { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Category jump links: swipe row on phones, wrapped row on desktop */
.menu-jump {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin: 0 -1rem 2rem;
  padding: 0 1rem 0.25rem;
  scrollbar-width: none;
}
.menu-jump::-webkit-scrollbar { display: none; }
.menu-jump a {
  flex: none;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(250, 245, 234, 0.25);
  border-radius: 999px;
  font-size: 0.9375rem;
  color: var(--on-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.menu-jump a:hover { border-color: var(--orange); color: var(--cream); }
@media (min-width: 900px) {
  .menu-jump {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    margin: 0 0 2.5rem;
    padding: 0;
  }
}

/* Herd Favorites: the signature drinks */
.herd {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--brown-card);
  border: 2px solid var(--pink);
  border-radius: 1rem;
  box-shadow: 0 0 28px -8px rgba(245, 0, 158, 0.55);
}
.herd-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
}
.herd-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 1.6rem + 1.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.size-prices {
  display: flex;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--on-dark-muted);
}
.size-prices b {
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--orange);
}
.herd-grid {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.herd-grid li {
  padding-top: 0.75rem;
  border-top: 2px solid var(--orange);
}
.herd-grid h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.herd-grid p {
  margin-top: 0.4rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--on-dark);
}
@media (min-width: 480px) {
  .herd-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .herd { padding: 2rem; }
  .herd-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* Category cards flow in two columns on desktop */
.menu-columns { column-gap: 1.5rem; }
@media (min-width: 900px) {
  .menu-columns { column-count: 2; }
}
.menu-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--brown-card);
  border: 1px solid rgba(250, 245, 234, 0.2);
  border-radius: 1rem;
}
.card-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--pink);
}
.card-title,
.card-title h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.card-meta {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--on-dark-muted);
}
.card-meta b {
  margin-left: 0.35rem;
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--orange);
}

/* Size price tables */
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table thead th {
  padding-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--on-dark-muted);
  text-align: right;
}
.price-table tbody th {
  padding: 0.45rem 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3125rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: left;
  color: var(--cream);
}
.price-table td {
  width: 4.5rem;
  padding: 0.45rem 0;
  text-align: right;
  font-weight: 500;
  color: var(--orange);
}
.price-table tbody tr + tr > * { border-top: 1px solid rgba(250, 245, 234, 0.1); }

/* Named items with a price */
.item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.item-list-tight { gap: 0.55rem; }
.item-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.item-row h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3125rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
}
.item-row h4 span {
  margin-left: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--on-dark-muted);
}
.item-row b {
  flex: none;
  font-weight: 500;
  color: var(--orange);
}
.item-list p {
  margin-top: 0.2rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--on-dark);
}

/* Neon Energy build steps */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.6rem;
}
.steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}
.steps li::before {
  content: counter(step);
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: #fff;
}

.menu-flavors {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--on-dark);
}
.menu-flavors strong { font-weight: 500; color: var(--cream); }
.menu-add {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(250, 245, 234, 0.2);
  font-size: 0.9375rem;
  color: var(--on-dark);
}
.menu-add b {
  flex: none;
  font-weight: 500;
  color: var(--orange);
}

.menu-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--on-dark-muted);
}

/* ---------- Corral Club ---------- */
.corral { background: var(--pink); }
.corral-card {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 4px solid var(--orange);
  text-align: center;
}
.corral-title img {
  width: min(420px, 100%);
  margin: 0 auto;
}
.corral-lead {
  text-wrap: balance;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--orange);
}
.corral-body > p:not(.corral-lead) {
  margin-top: 0.5rem;
  text-wrap: balance;
  font-size: 1.125rem;
  color: var(--brown);
}
.corral-body strong { color: var(--pink); }
.punch {
  list-style: none;
  margin: 1.5rem auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.375rem;
}
.punch li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px dashed var(--orange);
  position: relative;
}
.punch li::before {
  content: "";
  position: absolute;
  inset: 9px;
  background: var(--orange);
  opacity: 0.55;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v2'/%3E%3Cpath d='M14 2v2'/%3E%3Cpath d='M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1'/%3E%3Cpath d='M6 2v2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 2v2'/%3E%3Cpath d='M14 2v2'/%3E%3Cpath d='M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1'/%3E%3Cpath d='M6 2v2'/%3E%3C/svg%3E") center / contain no-repeat;
}
.punch .punch-free {
  width: 40px;
  display: grid;
  place-items: center;
  border: 2px solid var(--pink);
  background: var(--pink);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.punch .punch-free::before { content: none; }

@media (min-width: 900px) {
  .corral-card {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
  }
}
@media (min-width: 1100px) {
  .punch { flex-wrap: nowrap; }
  .punch li { width: 38px; height: 38px; }
  .punch li::before { inset: 8px; }
  .punch .punch-free { width: 38px; font-size: 0.875rem; }
}

/* ---------- Gallery ---------- */
.gallery { border-bottom: 2px solid var(--brown); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-grid figure {
  border: 2px solid var(--brown);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid img.pos-top { object-position: center 25%; }
.gallery-grid img.pos-low { object-position: center 75%; }
@media (prefers-reduced-motion: reduce) {
  .gallery-grid img { transition: none; }
  .gallery-grid figure:hover img { transform: none; }
}

/* ---------- Find the stand ---------- */
.find { background: var(--sand); }
.find-head { margin-bottom: 1.75rem; }
.framed.find-photo { aspect-ratio: 4 / 3; }
.find-photo img { object-position: 72% 50%; }
.find-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}
.find-details .find-list { margin-top: 0; }
.find-hours .hours { margin-top: 0; max-width: none; }
@media (min-width: 900px) {
  .framed.find-photo { aspect-ratio: 21 / 9; }
  .find-photo img { object-position: center 45%; }
  .find-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
  }
}
.find-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.find-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.find-list svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 0.15rem;
  fill: none;
  stroke: var(--pink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.find-list strong { color: var(--brown); font-weight: 500; }
.find-list a {
  color: var(--brown);
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-underline-offset: 3px;
}
.find-list a:hover { color: var(--pink); }

.hours {
  width: 100%;
  max-width: 26rem;
  margin-top: 1.75rem;
  border-collapse: collapse;
  font-size: 1rem;
}
.hours caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown);
  padding-bottom: 0.25rem;
}
.hours th,
.hours td {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(57, 35, 22, 0.15);
  text-align: left;
  font-weight: 400;
}
.hours td { text-align: right; }
.hours tr.is-today th,
.hours tr.is-today td {
  color: var(--brown);
  font-weight: 700;
}
.hours tr.is-today th::after {
  content: "Today";
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  vertical-align: 2px;
}

.find-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.find-actions .btn { padding-inline: 1.25rem; }

.find .script-brown {
  margin-top: 2rem;
  font-size: 2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown);
  padding: 2.5rem 1rem;
  text-align: center;
}
.site-footer img {
  width: 82px;
  margin: 0 auto;
}
.footer-tag {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C0B5AB;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 1.25rem 0 1rem;
  padding: 0;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(250, 245, 234, 0.35);
  color: #C0B5AB;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.footer-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-copy {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  color: #998B80;
}
