@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Dancing+Script:wght@700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ══════════════════════════════
   RESET & BASE
══════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red:    #c0392b;
  --red2:   #d94030;
  --gold:   #d4a762;
  --dark:   #0b0b0b;
  --dark2:  #121212;
  --dark3:  #1a1a1a;
  --text:   #e4ddd4;
  --muted:  #7a6f62;
  --border: rgba(255,255,255,0.07);
  --serif:  'Playfair Display', Georgia, serif;
  --script: 'Dancing Script', cursive;
  --sans:   'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ══════════════════════════════
   SHARED UTILITIES
══════════════════════════════ */
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  display: block;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.btn-red:hover {
  background: var(--red2);
  box-shadow: 0 6px 24px rgba(192,57,43,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
  gap: 32px;
  transition: background 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.stuck {
  background: rgba(10,10,10,0.95);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-mascot {
  height: 82px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.nav-words { line-height: 1; }

/* nav-title: replaces h1 in nav for correct SEO heading hierarchy */
.nav-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.5px;
  line-height: 1;
  display: block;
}
.nav-title b { color: var(--red); }

/* keep h1 style as fallback if still using h1 in nav */
.nav-words h1 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.5px;
  line-height: 1;
}
.nav-words h1 b { color: var(--red); }

.nav-words p {
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.28s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-ham span {
  display: block;
  width: 23px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.28s;
}
.nav-ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 90px; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-drawer.open { max-height: 460px; }
.nav-drawer ul { list-style: none; padding: 10px 28px; }
.nav-drawer ul li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-drawer ul li a:hover { color: var(--gold); }
.nav-drawer-cta { padding: 18px 28px 28px; }
.nav-drawer-cta .btn-red { width: 100%; justify-content: center; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080707;
}

.h-chef {
  position: absolute;
  top: 90px;
  left: 0;
  bottom: 0;
  width: 62%;
  height: calc(100% - 90px);
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  z-index: 0;
}
.h-bbq {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%; height: 100%;
  object-fit: cover;
  object-position: left top;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
}
.h-gl {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(8,7,7,0.78) 0%,
    rgba(8,7,7,0.30) 38%,
    rgba(8,7,7,0.05) 60%,
    transparent 75%
  );
}
.h-gb {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  z-index: 2;
  background: linear-gradient(to top, #080707, transparent);
}
.h-body {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 56px;
}
.h-inner { max-width: 560px; }

.h-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.h-tagline::after {
  content: '';
  flex-shrink: 0;
  width: 52px; height: 1px;
  background: rgba(212,167,98,0.44);
}

/* h1 used for main hero heading — correct SEO structure */
.h-h1 {
  font-family: var(--serif);
  font-weight: 700;
  color: #fff;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.97;
  margin-bottom: 2px;
}
.h-script {
  display: block;
  font-family: var(--script);
  font-weight: 700;
  font-size: clamp(46px, 6.2vw, 80px);
  color: var(--red);
  line-height: 1.12;
  margin-bottom: 20px;
}
.h-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 340px;
}
.h-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}
.h-badges { display: flex; flex-wrap: wrap; gap: 26px; }
.h-badge  { display: flex; align-items: center; gap: 11px; }
.h-ring {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.h-badge-txt {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.55;
}

/* ══════════════════════════════
   MENU
══════════════════════════════ */
#menu { background: var(--dark2); padding: 88px 52px 96px; }

.menu-hdr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-bottom: 68px;
  flex-wrap: wrap;
  text-align: center;
}
.menu-hdr .eyebrow { margin-bottom: 6px; }
.menu-hdr h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 58px);
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.menu-hdiv {
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.menu-hsub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 190px;
  text-align: left;
}

.menu-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 56px;
}
.mc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
}
.mc + .mc { border-left: 1px solid var(--border); }

.mc-img-wrap {
  position: relative;
  width: 100%;
  max-width: 310px;
  margin: 0 auto 26px;
}
.mc-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  width: 58%; height: 24px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  filter: blur(16px);
  z-index: 0;
}
.mc-img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 50% 50% 50% 50% / 42% 42% 58% 58%;
  filter: brightness(0.85) contrast(1.05) saturate(1.08);
  transition: transform 0.44s ease, filter 0.44s ease;
  box-shadow: 0 12px 44px rgba(0,0,0,0.65);
}
.mc:hover .mc-img-wrap img {
  transform: scale(1.05) translateY(-6px);
  filter: brightness(0.96) contrast(1.05) saturate(1.08);
}
.mc-name {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
}
.mc-items {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 2;
  max-width: 240px;
}

/* ══════════════════════════════
   STORY
══════════════════════════════ */
#story { display: flex; min-height: 560px; background: var(--dark); }

.st-l {
  width: 44%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
}
.st-l img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(0.72);
  min-height: 480px;
  display: block;
}
.st-l-fade {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 110px;
  background: linear-gradient(to right, transparent, var(--dark));
}
.st-sig { position: absolute; bottom: 28px; left: 28px; }
.st-sig .sname {
  font-family: var(--script);
  font-size: 34px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}
.st-sig .srole {
  font-size: 8.5px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

.st-r {
  flex: 1;
  padding: 80px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.st-r .eyebrow { margin-bottom: 16px; }
.st-r h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  color: #fff;
  line-height: 1.14;
  margin-bottom: 22px;
}
.st-r h2 .sc {
  display: block;
  font-family: var(--script);
  font-style: italic;
  color: var(--red);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
}
.st-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
  max-width: 420px;
  margin-bottom: 20px;
}
.st-fsig .fname {
  font-family: var(--script);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.st-fsig .frole {
  font-size: 8.5px;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
#gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 228px;
  gap: 2px;
}
.gal { position: relative; overflow: hidden; }
.gal img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
  transition: filter 0.3s, transform 0.5s;
  display: block;
}
.gal:hover img { filter: brightness(0.82); transform: scale(1.06); }

.gal-bdg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gal-circle {
  width: 124px; height: 124px;
  border-radius: 50%;
  background: rgba(10,9,9,0.9);
  border: 1.5px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
}
.gal-circle .gm { font-size: 9px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.gal-circle .gf { font-family: var(--serif); font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.gal-circle .ge { font-size: 9px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.gal-circle .gh { color: var(--red); font-size: 13px; margin-top: 2px; }

/* ══════════════════════════════
   VISIT / CONTACT
══════════════════════════════ */
#visit { background: var(--dark2); padding: 88px 52px; }

.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}
.v-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 42px);
  color: #fff;
  line-height: 1.12;
  margin: 12px 0;
}
.v-h2 .vs {
  display: block;
  font-family: var(--script);
  font-size: clamp(34px, 4.2vw, 50px);
  color: var(--red);
  line-height: 1;
}
.v-sub { font-size: 12.5px; color: var(--muted); line-height: 1.75; }

.v-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.v-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(192,57,43,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.v-text { font-size: 13px; color: var(--text); line-height: 1.55; }
.v-text a { color: var(--text); transition: color 0.2s; }
.v-text a:hover { color: var(--gold); }

.v-map {
  display: block;
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.v-map:hover { border-color: rgba(192,57,43,0.35); }
.v-map-inner { position: relative; height: 148px; overflow: hidden; }
.v-map-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5) grayscale(0.4);
  transition: filter 0.3s;
  display: block;
}
.v-map:hover .v-map-inner img { filter: brightness(0.7) grayscale(0.2); }
.v-map-pin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v-map-pin span {
  background: rgba(8,7,7,0.85);
  color: rgba(255,255,255,0.82);
  font-size: 11px;
  padding: 7px 15px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.v-hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.v-day  { font-size: 12.5px; color: var(--muted); }
.v-time { font-size: 12.5px; color: var(--text); }
.v-note { font-size: 11px; color: var(--muted); line-height: 1.65; margin-top: 14px; }
.v-note a { color: var(--gold); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 58px 52px 26px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto 42px;
}
.foot-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.foot-mascot {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.6));
}
.foot-brand-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.foot-brand-name b { color: var(--red); }
.foot-brand-sub {
  font-size: 8px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 3px;
}
.foot-tags p { font-size: 11.5px; color: var(--muted); line-height: 2.1; }
.foot-ch {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 10px; }
.foot-links a { font-size: 12.5px; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.foot-links a:hover { color: var(--gold); }
.foot-ig {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.foot-ig:hover { color: var(--gold); }
.foot-ig span { color: var(--gold); }
.foot-ig-note { font-size: 11px; color: var(--muted); line-height: 1.7; margin-top: 10px; }
.foot-cta { background: var(--red); border-radius: 5px; padding: 22px; }
.foot-cta p { font-size: 11.5px; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 14px; }
.foot-cta-btn {
  display: block;
  background: #fff;
  color: var(--red);
  text-align: center;
  font-weight: 700;
  font-size: 11.5px;
  padding: 10px;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.foot-cta-btn:hover { opacity: 0.88; }
.foot-bar {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11.5px;
  color: var(--muted);
  max-width: 1160px;
  margin: 0 auto;
}

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sr.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ══════════════════════════════
   TABLET — max 1100px
══════════════════════════════ */
@media (max-width: 1100px) {
  #nav { padding: 0 32px; }
  .nav-links { gap: 26px; }
  .h-body, #menu, #visit, footer { padding-left: 32px; padding-right: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .v-col3 { grid-column: span 2; }
  .st-r { padding: 56px 44px; }
}

/* ══════════════════════════════
   MOBILE — max 780px
══════════════════════════════ */
@media (max-width: 780px) {
  #nav { height: 70px; padding: 0 20px; }
  .nav-links { display: none; }
  #nav > .btn-red { display: none; }
  .nav-ham { display: flex; }
  .nav-drawer { display: block; top: 70px; }
  .nav-mascot { height: 60px; }
  /* works for both h1 and span.nav-title */
  .nav-words h1,
  .nav-title { font-size: 19px; }

  #hero { padding-top: 70px; }
  .h-chef {
    top: 70px;
    height: calc(100% - 70px);
    width: 100%;
    opacity: 0.45;
  }
  .h-bbq { width: 50%; opacity: 0.6; }
  .h-gl {
    background: linear-gradient(
      to right,
      rgba(8,7,7,0.82) 0%,
      rgba(8,7,7,0.45) 50%,
      rgba(8,7,7,0.1) 80%,
      transparent 100%
    );
  }
  .h-body { padding: 52px 20px 60px; }
  .h-h1 { font-size: clamp(46px, 12vw, 68px); }
  .h-script { font-size: clamp(40px, 11vw, 60px); }

  #menu { padding: 60px 20px 70px; }
  .menu-hdiv, .menu-hsub { display: none; }
  .menu-cats { grid-template-columns: 1fr; padding-top: 40px; }
  .mc { padding: 40px 16px; }
  .mc + .mc { border-left: none; border-top: 1px solid var(--border); }
  .mc-img-wrap { max-width: 240px; }

  #story { flex-direction: column; }
  .st-l { width: 100%; min-height: 300px; }
  .st-l img { min-height: 300px; }
  .st-l-fade { display: none; }
  .st-r { padding: 44px 20px; }
  .st-body { max-width: 100%; }

  #gallery { grid-template-columns: repeat(3, 1fr); height: 175px; }
  #gallery .gal:nth-child(4),
  #gallery .gal:nth-child(5) { display: none; }
  .gal-circle { width: 94px; height: 94px; }
  .gal-circle .gf { font-size: 17px; }

  #visit { padding: 60px 20px; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .v-col3 { grid-column: auto !important; }

  footer { padding: 44px 20px 22px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 440px) {
  .h-btns { flex-direction: column; }
  .h-btns a { width: 100%; justify-content: center; }
}
