:root {
  --bg: #f8f5ef;
  --bg-soft: #ece5d8;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.82);
  --line: rgba(35, 31, 28, 0.14);
  --line-strong: rgba(35, 31, 28, 0.24);
  --text: #211f1c;
  --text-soft: #544c43;
  --text-muted: #7c7165;
  --accent: #8f2430;
  --accent-soft: rgba(143, 36, 48, 0.1);
  --jade: #2f6f62;
  --brass: #b08a4a;
  --ink: #171512;
  --shadow: 0 18px 42px rgba(31, 25, 18, 0.12);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --container: 1180px;
  --container-narrow: 880px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

.container,
.narrow-container,
.list-container {
  margin: 0 auto;
}
.container {
  width: min(100% - 48px, var(--container));
}
.narrow-container {
  width: min(100% - 48px, var(--container-narrow));
}
.list-container {
  width: min(100% - 48px, var(--container));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  background: #c9282d;
  border: 1px solid rgba(201, 40, 45, 0.28);
  color: #fff;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.1);
}
.brand-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
}
.brand-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 430px;
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 14px;
  transition: 0.2s ease;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: var(--accent-soft);
}

.hero-copy,
.hero-panel,
.page-hero-inner,
.article-toc,
.content-list,
.site-footer,
.article-body,
.detail-header,
.section-card,
.intro-bridge-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-section {
  padding: 56px 0 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}
.hero-grid-single {
  grid-template-columns: minmax(0, 1fr);
}
.hero-copy {
  border-radius: var(--radius-xl);
  padding: 40px 42px;
}
.hero-copy-formal {
  position: relative;
  overflow: hidden;
}
.hero-copy-formal::after {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 40, 45, 0.1), transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(201, 40, 45, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9f1f24;
  font-size: 13px;
  margin-bottom: 22px;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 23px;
  line-height: 1.5;
  color: #303946;
  margin: 18px 0 14px;
}
.hero-desc {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.95;
  font-size: 15px;
  max-width: 94%;
}
.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-keywords span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-soft);
  font-size: 13px;
}
.hero-panel {
  border-radius: var(--radius-xl);
  padding: 28px 28px 26px;
}
.hero-panel-formal {
  background: var(--panel-soft);
}
.hero-panel-title {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-panel-list {
  margin: 0;
  padding-left: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: var(--text);
}
.hero-panel-list-formal li {
  position: relative;
  padding: 0 0 0 16px;
  line-height: 1.8;
}
.hero-panel-list-formal li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.section-block {
  padding: 20px 0;
}
.formal-section-block {
  padding: 18px 0 12px;
}
.section-soft-divider {
  margin-top: 4px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
}
.section-heading h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}
.section-link {
  position: relative;
  color: var(--accent);
  font-size: 14px;
  padding-right: 14px;
}
.section-link::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
}

.intro-bridge-block {
  padding-top: 12px;
  padding-bottom: 20px;
}
.intro-bridge-card {
  border-radius: 24px;
  padding: 30px 34px;
  text-align: left;
}
.intro-bridge-kicker {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 12px;
}
.intro-bridge-card h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
}
.intro-bridge-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.page-hero {
  padding: 34px 0 8px;
}
.page-hero-inner {
  border-radius: 24px;
  padding: 28px 34px;
}
.page-hero-inner h1 {
  margin: 0 0 8px;
  font-size: 34px;
}
.page-hero-inner p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.content-list {
  border-radius: 20px;
  overflow: hidden;
}
.formal-content-list { background: #fff; }
.content-list-item {
  position: relative;
}
.content-list-item + .content-list-item {
  border-top: 1px solid var(--line);
}
.content-list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 24px 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.content-list-link:hover {
  background: var(--accent-soft);
}
.content-list-main {
  min-width: 0;
  flex: 1;
}
.content-list-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: -0.01em;
}
.content-list-summary {
  margin: 8px 0 0;
  color: var(--text-soft);
  line-height: 1.82;
  font-size: 14px;
  max-width: 92%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content-list-arrow {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(201, 40, 45, 0.16);
  color: var(--accent);
  font-size: 14px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.faq-card {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-card-link {
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px 16px;
  padding: 24px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.faq-card-link:hover {
  background: var(--accent-soft);
}
.faq-card-index {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
.faq-card-main {
  min-width: 0;
}
.faq-card-main h2 {
  margin: 2px 0 10px;
  font-size: 22px;
  line-height: 1.42;
  letter-spacing: 0;
}
.faq-card-main p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}
.faq-card-action {
  grid-column: 2;
  justify-self: start;
  align-self: end;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pager-numbers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pager-link {
  min-width: 32px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 13px;
  background: #fff;
}
.pager-link.is-active {
  color: var(--text);
  background: var(--accent-soft);
  border-color: rgba(201, 40, 45, 0.3);
}
.pager-link.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}
.pager-arrow { min-width: auto; }

.detail-block {
  padding: 26px 0 38px;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 240px;
  gap: 24px;
  align-items: start;
}
.detail-main {
  min-width: 0;
}
.back-link {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 14px;
}
.detail-header {
  border-radius: 22px;
  padding: 28px 32px 18px;
  margin-bottom: 16px;
}
.detail-header h1 {
  margin: 0;
  font-size: clamp(31px, 4vw, 42px);
  line-height: 1.24;
  letter-spacing: -0.02em;
}
.detail-meta {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
}
.detail-summary {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.85;
}
.detail-header-no-back { margin-top: 8px; }
.article-body {
  border-radius: 22px;
  padding: 34px 38px;
}
.article-body-single { border-radius: 22px; }
.article-body h2,
.article-body h3 {
  scroll-margin-top: 92px;
}
.article-body h2 {
  margin: 34px 0 14px;
  font-size: 28px;
  line-height: 1.34;
}
.article-body h3 {
  margin: 24px 0 12px;
  font-size: 20px;
  line-height: 1.48;
}
.article-body p {
  margin: 0 0 16px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 2.02;
}
.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text-soft);
}
.article-body li {
  margin-bottom: 10px;
  line-height: 1.9;
}
.article-body blockquote {
  margin: 22px 0;
  padding: 6px 0 6px 18px;
  border-left: 3px solid rgba(201, 40, 45, 0.6);
  color: var(--text-soft);
}
.article-body strong { color: var(--text); }
.article-body code {
  background: var(--bg-soft);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13px;
}
.article-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(201, 40, 45, 0.24);
}
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(35, 42, 52, 0.08);
}
.markdown-image {
  margin: 24px 0;
}
.markdown-image figcaption {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}

.article-toc {
  position: sticky;
  top: 90px;
  border-radius: 18px;
  padding: 18px;
}
.article-toc-title {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.article-toc-list {
  display: grid;
  gap: 8px;
}
.toc-link {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-soft);
}
.toc-link:hover,
.toc-link.is-active {
  color: var(--text);
  background: var(--accent-soft);
}
.toc-level-3 {
  padding-left: 20px;
  color: var(--text-muted);
}

.about-contact-card {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 16px;
}
.about-contact-card > .article-toc {
  position: static;
}
.about-contact-card > .article-toc,
.about-contact-card {
  min-width: 0;
}
.about-contact-card > .about-contact-label,
.about-contact-card > h2,
.about-contact-card > dl {
  border-left: 0;
}
.about-contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 20px;
}
.about-contact-card .article-toc {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.about-contact-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.about-contact-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}
.about-contact-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.about-contact-card dt {
  color: var(--text-muted);
  font-size: 12px;
}
.about-contact-card dd {
  margin: -6px 0 4px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}
.about-contact-card a {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  padding: 30px 0 26px;
}
.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-title {
  font-size: 19px;
  font-weight: 700;
}
.footer-desc {
  margin-top: 6px;
  color: var(--text-soft);
  line-height: 1.8;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-copy,
.footer-record {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}
.footer-record {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.footer-record::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  opacity: 0.9;
}
.footer-record a {
  color: inherit;
  transition: color 0.2s ease;
}
.footer-record a:hover {
  color: var(--text);
}
.empty-state {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  color: var(--text-soft);
}

@media (max-width: 1080px) {
  .hero-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .article-toc {
    position: static;
  }
  .about-contact-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow-container,
  .list-container {
    width: min(100% - 28px, var(--container));
  }
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }
  .hero-copy,
  .hero-panel,
  .page-hero-inner,
  .detail-header,
  .article-body,
  .intro-bridge-card {
    padding-left: 20px;
    padding-right: 20px;
  }
  .content-list-link {
    padding: 16px 18px;
  }
  .content-list-title {
    font-size: 20px;
  }
  .content-list-summary {
    max-width: 100%;
  }
  .page-hero-inner h1,
  .section-heading h2,
  .intro-bridge-card h2 {
    font-size: 28px;
  }
  .article-body p,
  .intro-bridge-copy p {
    font-size: 15px;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-keywords {
    gap: 8px;
  }
  .content-list-arrow {
    display: none;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-card-link {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .faq-card-action {
    grid-column: 1;
  }
.brand-logo {
  width: 72px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 72px !important;
  overflow: hidden !important;
}

.brand-logo img {
  width: 72px !important;
  height: 20px !important;
  max-width: 72px !important;
  max-height: 20px !important;
  object-fit: contain !important;
  display: block !important;
}
}

/* 海上1912文化餐厅主题 */
.site-header {
  background: rgba(248, 245, 239, 0.9);
}

.brand-logo {
  width: 66px !important;
  height: 48px !important;
  flex: 0 0 66px !important;
  display: grid !important;
  place-items: center !important;
  overflow: visible !important;
}

.brand-logo img {
  width: 66px !important;
  height: 48px !important;
  max-width: 66px !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

.brand-title {
  font-size: 20px;
  letter-spacing: 0;
}

.nav-link {
  border-radius: 6px;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
  background: var(--accent);
}

.restaurant-hero {
  min-height: clamp(560px, 78vh, 760px);
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  background-image:
    radial-gradient(circle at 58% 26%, rgba(255, 218, 150, 0.08), rgba(0, 0, 0, 0.2) 34%, rgba(0, 0, 0, 0.32) 64%),
    linear-gradient(90deg, rgba(12, 11, 10, 0.92) 0%, rgba(12, 11, 10, 0.82) 34%, rgba(12, 11, 10, 0.44) 60%, rgba(12, 11, 10, 0.28) 100%),
    url("../assets/hero-real-room.jpg");
  background-size: cover;
  background-position: 58% center;
  color: #fff;
}

.restaurant-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--accent), var(--brass), var(--jade));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.restaurant-hero .hero-copy {
  width: min(720px, 100%);
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 86px 0 76px;
  color: #fff;
}

.hero-copy-formal::after {
  display: none;
}

.restaurant-hero .hero-badge {
  border-radius: 6px;
  color: #f6ead3;
  border-color: rgba(176, 138, 74, 0.55);
  background: rgba(176, 138, 74, 0.18);
  backdrop-filter: blur(8px);
}

.restaurant-hero .hero-copy h1 {
  color: #fff;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: 0;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.38);
}

.restaurant-hero .hero-subtitle {
  color: #f8ead4;
  font-size: clamp(22px, 3vw, 32px);
}

.restaurant-hero .hero-desc {
  color: rgba(255, 255, 255, 0.86);
  max-width: 660px;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 650;
}

.primary-action {
  color: #fff;
  background: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.restaurant-hero .hero-keywords span {
  color: #f6ead3;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.intro-band {
  padding: 42px 0 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: start;
}

.intro-grid h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.22;
}

.intro-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.section-kicker {
  display: inline-flex;
  color: var(--jade);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-heading {
  align-items: flex-end;
}

.section-heading h2 {
  margin-top: 6px;
}

.section-link {
  color: var(--accent);
}

.section-link::after {
  content: ">";
}

.content-list,
.page-hero-inner,
.article-toc,
.site-footer,
.article-body,
.detail-header,
.about-contact-card,
.faq-card {
  border-radius: 8px;
}

.content-list-title {
  letter-spacing: 0;
}

.content-list-arrow,
.faq-card-action {
  color: var(--accent);
  font-weight: 650;
}

.faq-card-index {
  color: var(--brass);
}

.about-contact-card {
  border: 1px solid rgba(176, 138, 74, 0.32);
}

.about-contact-label {
  color: var(--jade);
}

.article-body h2,
.article-body h3 {
  letter-spacing: 0;
}

.article-body h2 {
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
  border: 0;
}

.footer-title {
  color: #fff;
}

.footer-desc,
.footer-meta,
.footer-copy,
.footer-record {
  color: rgba(255, 255, 255, 0.68);
}

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

@media (max-width: 820px) {
  .restaurant-hero {
    min-height: 650px;
    background-position: 58% center;
  }

  .restaurant-hero .hero-copy {
    padding: 70px 0 84px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-topline,
  .footer-bottomline {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-record {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 54px !important;
    height: 40px !important;
    flex-basis: 54px !important;
  }

  .brand-logo img {
    width: 54px !important;
    height: 40px !important;
    max-width: 54px !important;
    max-height: 40px !important;
  }

  .restaurant-hero {
    min-height: 680px;
    background-position: 55% center;
  }

  .restaurant-hero .hero-copy h1 {
    font-size: 42px;
  }

  .hero-actions a {
    width: 100%;
  }
}
