/* Shared layout + page-specific sections (HTML rebuild, placeholders for imagery) */

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow-x: clip;
}

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

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

  .site-nav a,
  .page-babes .btn-outline,
  .page-babes .site-footer-bar a,
  .page-babes .babes-social-link,
  .page-menus .menus-footer-bar a,
  .page-lucky .lucky-footer-top a,
  .page-menus .menus-stack .menus-frame {
    transition: none !important;
  }

  .page-babes .babes-menus-frame {
    transition: none !important;
  }

  .page-lucky .lucky-menus-frame {
    transition: none !important;
  }
}

.site-nav a:focus-visible,
.page-babes .btn-outline:focus-visible,
.page-babes .site-footer-bar a:focus-visible,
.page-babes .babes-social-link:focus-visible,
.page-menus .menus-footer-bar a:focus-visible,
.page-lucky .lucky-footer-top a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.site-nav a:focus:not(:focus-visible),
.page-babes .btn-outline:focus:not(:focus-visible),
.page-babes .site-footer-bar a:focus:not(:focus-visible),
.page-babes .babes-social-link:focus:not(:focus-visible),
.page-menus .menus-footer-bar a:focus:not(:focus-visible),
.page-lucky .lucky-footer-top a:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Nav ─────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  min-height: 72px;
  height: auto;
  padding: 18px clamp(16px, 4vw, 56px) 16px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-nav a {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 12px;
  margin: -4px 0;
  border-radius: 6px;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.site-nav a:hover {
  background-color: rgba(0, 0, 0, 0.055);
  color: #111;
}

.site-nav a.active {
  font-weight: 700;
}

.page-body {
  padding-top: 72px;
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

/* ─── Placeholders (swap for real <img> later) ─────── */

.placeholder {
  background: #e8e8e8;
  border: 1px solid #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #777;
  font-size: 13px;
  line-height: 1.4;
}

.placeholder-label {
  padding: 12px;
}

.icon-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ddd;
  border: 1px solid #bbb;
  flex-shrink: 0;
}

/* ─── Page: Babe's Lifestyle ──────────────────────── */

.page-babes {
  background: #fff;
}

.page-babes .babes-hero {
  padding: clamp(48px, 11vw, 100px) 24px;
  margin: 0;
  line-height: 0;
  background-color: #fdf6d0;
  /* Layers tuned to echo the logo gold circle and cream “wall” */
  background-image:
    radial-gradient(ellipse 58% 54% at 50% 50%, rgba(245, 210, 95, 0.45) 0%, rgba(253, 246, 208, 0) 65%),
    radial-gradient(ellipse 92% 78% at 50% 48%, rgba(255, 232, 150, 0.32) 0%, transparent 58%),
    radial-gradient(ellipse 130% 95% at 18% 8%, rgba(255, 255, 255, 0.55) 0%, transparent 52%),
    radial-gradient(ellipse 75% 55% at 92% 88%, rgba(232, 210, 175, 0.4) 0%, transparent 50%),
    linear-gradient(168deg, #fff9ea 0%, #fdf6d0 38%, #f7ecd2 68%, #f2e3c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-babes .babes-hero-logo {
  width: 100%;
  max-width: min(780px, 96vw);
  margin: 0 auto;
  text-align: center;
}

.page-babes .babes-hero-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 680px);
  max-height: min(72vh, 640px);
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
  object-position: center center;
  filter:
    drop-shadow(0 14px 42px rgba(200, 145, 35, 0.18))
    drop-shadow(0 6px 16px rgba(0, 0, 0, 0.06));
}

.page-babes .babes-about {
  padding: 72px 0 80px;
}

.page-babes .babes-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-babes .babes-about-media {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.page-babes .babes-about-photo {
  width: 100%;
  display: block;
}

.page-babes .babes-about-photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.page-babes .babes-about-media .babes-about-heading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 16px 18px 18px;
  text-align: center;
  z-index: 2;
  font-family: "Montserrat", "Century Gothic", Futura, "Trebuchet MS", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: #d4af37;
  text-transform: none;
  background: linear-gradient(
    to bottom,
    rgba(12, 10, 8, 0.82) 0%,
    rgba(12, 10, 8, 0.5) 70%,
    transparent 100%
  );
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 0 18px rgba(0, 0, 0, 0.35);
}

.page-babes .babes-about-heading-sep {
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin: 0 0.12em;
  background: currentColor;
  vertical-align: -0.12em;
  opacity: 0.95;
}

.page-babes .babes-about-copy p {
  margin: 0 0 28px;
  color: #444;
  font-size: 17px;
  line-height: 1.65;
}

.page-babes .btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.page-babes .btn-outline:hover {
  background: #111;
  color: #fff;
}

.page-babes .btn-outline:active {
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.12);
}

.page-babes .babes-menus {
  padding: 0 0 80px;
}

.page-babes .babes-menus-frame {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-babes .babes-menus-frame:hover {
    border-color: #b8b8b8;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
  }
}

.page-babes .babes-menus-frame:last-child {
  margin-bottom: 0;
}

.page-babes .babes-menus-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.page-babes .babes-cards {
  padding: 0 0 80px;
}

.page-babes .babes-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.page-babes .babes-card {
  border: 1px solid #111;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
  .page-babes .babes-card {
    transition: box-shadow 0.28s ease, transform 0.28s ease;
  }

  .page-babes .babes-card:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }

  .page-babes .babes-card-ph img {
    transition: transform 0.38s ease;
  }

  .page-babes .babes-card:hover .babes-card-ph img {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-babes .babes-card,
  .page-babes .babes-card-ph img {
    transition: none !important;
  }

  .page-babes .babes-card:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .page-babes .babes-card:hover .babes-card-ph img {
    transform: none !important;
  }
}

.page-babes .babes-card.babes-no-caption {
  padding-bottom: 46px;
}

.page-babes .babes-card-ph {
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
}

.page-babes .babes-card-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.page-babes .babes-card-caption {
  padding: 14px 12px 18px;
  font-weight: 700;
  text-decoration: underline;
  text-align: center;
}

.page-babes .babes-visit {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-babes .babes-visit-bg {
  position: absolute;
  inset: 0;
}

.page-babes .babes-visit-bg .babes-visit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.page-babes .babes-visit h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  text-shadow:
    0 0 28px rgba(255, 255, 255, 0.95),
    0 2px 12px rgba(255, 255, 255, 0.8),
    0 2px 8px rgba(0, 0, 0, 0.12);
}

.page-babes .babes-footer-main {
  background: #e8dfd0;
  padding: 56px 0 48px;
}

.page-babes .babes-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.page-babes .babes-footer-main h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
}

.page-babes .babes-footer-main p {
  margin: 0 0 8px;
  font-size: 15px;
  color: #333;
}

.page-babes .babes-footer-main .address {
  text-decoration: underline;
}

.page-babes .babes-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.page-babes .babes-social-row span {
  font-size: 15px;
}

.page-babes .babes-social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.page-babes .babes-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #faf8f4;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.page-babes .babes-social-link:hover {
  background: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.page-babes .babes-social-link:active {
  transform: translateY(0);
}

.page-babes .babes-social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.page-babes .site-footer-bar {
  background: #111;
  color: #fff;
  padding: 14px 24px;
  font-size: 12px;
}

.page-babes .site-footer-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  max-width: 1180px;
}

.page-babes .site-footer-bar a {
  color: #fff;
  text-decoration: none;
  margin-right: 16px;
  padding: 4px 2px;
  border-radius: 4px;
  transition: opacity 0.18s ease, text-decoration-color 0.18s ease;
}

.page-babes .site-footer-bar a:hover {
  text-decoration: underline;
  opacity: 0.88;
}

@media (max-width: 900px) {
  .page-babes .babes-about-grid,
  .page-babes .babes-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-babes .babes-about-copy {
    text-align: center;
  }

  .page-babes .babes-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-lucky .lucky-about-grid,
  .page-lucky .lucky-features-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .page-lucky .lucky-about-copy {
    text-align: center;
  }

  .page-lucky .lucky-feature-box {
    text-align: center;
  }
}

/* ─── Page: Lucky Chow ────────────────────────────── */

.page-lucky {
  background: #fff;
  /* Reds sampled from lucky-about-kota sauce / highlights */
  --lucky-red: #b03919;
  --lucky-red-light: #cc4f33;
  --lucky-red-dark: #8c2e18;
  --lucky-red-deeper: #50140f;
}

.page-lucky .lucky-hero {
  margin: 0;
  padding: 0;
  line-height: 0;
  background: var(--lucky-red-dark);
}

.page-lucky .lucky-hero-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.page-lucky .lucky-about {
  background: var(--lucky-red-deeper);
  color: #fff;
  padding: 64px 0;
}

.page-lucky .lucky-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-lucky .lucky-about-photo {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.page-lucky .lucky-about-photo img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.page-lucky .lucky-about h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  margin: 0 0 10px;
}

.page-lucky .lucky-about .sub {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 22px;
}

.page-lucky .lucky-about p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.95;
}

.page-lucky .lucky-features {
  padding: 48px 0;
  background: linear-gradient(
    180deg,
    var(--lucky-red-light) 0%,
    var(--lucky-red) 52%,
    var(--lucky-red-dark) 100%
  );
}

.page-lucky .lucky-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page-lucky .lucky-feature-box {
  background: #f8c8c8;
  padding: 28px 22px;
  min-height: 120px;
  font-weight: 700;
  font-size: 15px;
  color: #4a2c2c;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .page-lucky .lucky-feature-box {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .page-lucky .lucky-feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-lucky .lucky-feature-box {
    transition: none !important;
  }

  .page-lucky .lucky-feature-box:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

.page-lucky .lucky-menus {
  padding: 48px 0 64px;
}

.page-lucky .lucky-menus-frame {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-lucky .lucky-menus-frame:hover {
    border-color: #b8b8b8;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
  }
}

.page-lucky .lucky-menus-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.page-lucky .lucky-showcase-block {
  padding: 48px 24px;
  background: var(--lucky-red);
}

.page-lucky .lucky-showcase-block .lucky-showcase-frame {
  max-width: 900px;
  margin: 0 auto;
  background: var(--lucky-red);
}

.page-lucky .lucky-showcase-block .lucky-showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.page-lucky .lucky-award {
  margin: 0;
  padding: 0;
  line-height: 0;
  background: var(--lucky-red);
}

.page-lucky .lucky-award-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.page-lucky .lucky-footer-top {
  background: #fff;
  padding: 20px 24px;
  border-top: 1px solid #eee;
}

.page-lucky .lucky-footer-top .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.page-lucky .lucky-footer-top a {
  color: #1565c0;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 4px 6px;
  margin: -4px -6px;
  border-radius: 4px;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.page-lucky .lucky-footer-top a:hover {
  color: #0d47a1;
  background-color: rgba(21, 101, 192, 0.06);
}

.page-lucky .lucky-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-lucky .lucky-social-icons {
  display: flex;
  gap: 8px;
}

/* ─── Responsive (tablet & mobile) ────────────────── */

@media (max-width: 768px) {
  .page-babes .babes-about {
    padding: 48px 0 56px;
  }

  .page-babes .babes-about-media .babes-about-heading {
    white-space: nowrap;
    letter-spacing: 0.03em;
  }

  .page-babes .babes-about-heading-sep {
    display: none;
  }

  .page-babes .babes-menus {
    padding: 0 0 56px;
  }

  .page-babes .babes-menus-frame,
  .page-menus .menus-stack .menus-frame,
  .page-lucky .lucky-menus-frame {
    margin-bottom: 32px;
  }

  .page-babes .babes-visit {
    min-height: 240px;
  }

  .page-babes .babes-footer-main {
    padding: 40px 0 36px;
  }

  .page-babes .babes-footer-grid {
    text-align: center;
  }

  .page-babes .babes-social-row {
    justify-content: center;
  }

  .page-lucky .lucky-about {
    padding: 48px 0;
  }

  .page-lucky .lucky-features {
    padding: 36px 0;
  }

  .page-lucky .lucky-menus {
    padding: 36px 0 48px;
  }

  .page-lucky .lucky-showcase-block {
    padding: 32px clamp(16px, 4vw, 24px);
  }

  .page-lucky .lucky-footer-top .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-lucky .lucky-social-row {
    justify-content: center;
  }

  .page-menus .menus-stack {
    padding: 32px 0 48px;
  }
}

/* ─── Page: Menus ─────────────────────────────────── */

.page-menus {
  background: #fff;
}

.page-menus .menus-stack {
  padding: 48px 0 64px;
}

.page-menus .menus-stack .menus-frame {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-menus .menus-stack .menus-frame:hover {
    border-color: #b8b8b8;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.07);
  }
}

.page-menus .menus-stack .menus-frame:last-child {
  margin-bottom: 0;
}

.page-menus .menus-stack .menus-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.page-menus .menus-footer-bar {
  background: #111;
  color: #fff;
  padding: 14px 24px;
  font-size: 12px;
}

.page-menus .menus-footer-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  max-width: 1180px;
}

.page-menus .menus-footer-bar a {
  color: #fff;
  text-decoration: none;
  margin-right: 14px;
  padding: 4px 2px;
  border-radius: 4px;
  transition: opacity 0.18s ease;
}

.page-menus .menus-footer-bar a:hover {
  text-decoration: underline;
  opacity: 0.88;
}

/* ─── Page: Liability ─────────────────────────────── */

.page-liability {
  background: #fff;
}

.page-liability .liability-main {
  padding: 56px 24px 80px;
}

.page-liability .liability-prose {
  max-width: 720px;
  margin: 0 auto;
}

.page-liability .liability-prose h1 {
  font-size: 1.75rem;
  margin: 0 0 24px;
  font-weight: 700;
}

.page-liability .liability-prose > p {
  margin: 0 0 20px;
  color: #333;
  line-height: 1.68;
}

.page-liability .liability-prose ul {
  margin: 0 0 24px;
  padding-left: 22px;
}

.page-liability .liability-prose li {
  margin-bottom: 14px;
  line-height: 1.68;
}

.page-liability .liability-prose strong {
  font-weight: 700;
}

/* ─── Responsive nav ─────────────────────────────── */

@media (max-width: 640px) {
  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    align-items: center;
    gap: 6px;
    padding: 10px clamp(10px, 3vw, 16px);
    min-height: 64px;
  }

  .page-body {
    padding-top: 72px;
  }

  .site-nav a {
    font-size: 12px;
    padding: 8px 4px;
    text-align: center;
    line-height: 1.25;
    white-space: normal;
  }

  .page-babes .site-footer-bar {
    padding: 14px clamp(12px, 3vw, 16px);
  }

  .page-babes .site-footer-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .page-babes .site-footer-bar a {
    margin-right: 10px;
    margin-left: 10px;
  }

  .page-babes .babes-hero {
    padding: 20px 16px 28px;
  }

  .page-babes .babes-hero-logo {
    width: min(280px, 88vw);
    aspect-ratio: 5 / 4;
    overflow: hidden;
    line-height: 0;
  }

  .page-babes .babes-hero-logo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center 82%;
    filter: none;
    margin: 0;
  }

  .page-babes .babes-about-media .babes-about-heading {
    font-size: clamp(0.95rem, 4vw, 1.25rem);
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 10px 8px 12px;
  }

  .page-babes .babes-about-heading-sep {
    display: none;
  }

  .page-babes .babes-about-copy p {
    font-size: 16px;
  }

  .page-liability .liability-main {
    padding: 40px clamp(16px, 4vw, 24px) 56px;
  }
}

@media (max-width: 480px) {
  .site-nav {
    gap: 4px;
    padding: 8px 10px;
  }

  .page-body {
    padding-top: 68px;
  }

  .site-nav a {
    font-size: 11px;
    padding: 6px 2px;
  }

  .page-babes .babes-hero-logo {
    width: min(260px, 90vw);
    aspect-ratio: 4 / 3;
  }

  .page-babes .babes-hero-logo img {
    object-position: center 85%;
  }

  .page-babes .babes-about-media .babes-about-heading {
    font-size: clamp(0.875rem, 3.8vw, 1.05rem);
    letter-spacing: 0.01em;
  }

  .page-babes .babes-menus-frame,
  .page-menus .menus-stack .menus-frame,
  .page-lucky .lucky-menus-frame {
    margin-bottom: 24px;
    border-radius: 2px;
  }

  .page-lucky .lucky-showcase-block {
    padding: 24px clamp(12px, 3vw, 16px);
  }

  .page-lucky .lucky-feature-box {
    min-height: auto;
    padding: 22px 18px;
  }
}
