:root {
  --bg: #fff7ed;
  --paper: #ffffff;
  --paper-soft: #fffbeb;
  --text: #3b2208;
  --muted: #8a5a1f;
  --muted-2: #b7791f;
  --line: rgba(146, 64, 14, 0.18);
  --brand: #d97706;
  --brand-dark: #92400e;
  --brand-deep: #451a03;
  --brand-soft: #fef3c7;
  --shadow: 0 22px 55px rgba(69, 26, 3, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select {
  font: inherit;
}

main {
  min-height: 60vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #78350f 0%, #92400e 48%, #78350f 100%);
  color: #fffbeb;
  border-bottom: 2px solid rgba(251, 191, 36, 0.55);
  box-shadow: 0 12px 30px rgba(69, 26, 3, 0.25);
}

.nav-wrap {
  max-width: 1240px;
  height: 76px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: radial-gradient(circle at 35% 30%, #fde68a, #d97706 68%, #92400e);
  color: #451a03;
  font-size: 18px;
  box-shadow: 0 12px 24px rgba(251, 191, 36, 0.22);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong,
.footer-brand strong {
  font-size: 30px;
  letter-spacing: 0.06em;
  font-weight: 900;
  font-family: "Ma Shan Zheng", "Noto Serif SC", "Microsoft YaHei", serif;
}

.brand-text em {
  margin-top: 5px;
  color: #fde68a;
  font-style: normal;
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 12px;
  color: #fffbeb;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(120, 53, 15, 0.62);
  color: #fde68a;
  transform: translateY(-1px);
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-search input {
  width: min(24vw, 260px);
  border: 1px solid rgba(251, 191, 36, 0.42);
  background: rgba(69, 26, 3, 0.32);
  color: #fffbeb;
  border-radius: 13px;
  padding: 10px 14px;
  outline: none;
}

.site-search input::placeholder {
  color: #fcd34d;
}

.site-search input:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.site-search button,
.primary-btn,
.ghost-btn,
.filter-panel button {
  border: 0;
  border-radius: 13px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-search button,
.primary-btn,
.filter-panel button {
  background: #d97706;
  color: #fff7ed;
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.26);
}

.site-search button:hover,
.primary-btn:hover,
.filter-panel button:hover {
  background: #b45309;
  transform: translateY(-1px);
}

.ghost-btn {
  color: #fff7ed;
  border: 1px solid rgba(253, 230, 138, 0.55);
  background: rgba(69, 26, 3, 0.32);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(253, 230, 138, 0.35);
  border-radius: 13px;
  background: rgba(69, 26, 3, 0.3);
  color: #fffbeb;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.quick-cats {
  border-top: 1px solid rgba(251, 191, 36, 0.16);
  background: rgba(69, 26, 3, 0.16);
}

.quick-cats-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 22px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.quick-cats a {
  white-space: nowrap;
  color: #fde68a;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(120, 53, 15, 0.36);
}

.spotlight {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #451a03;
  color: #fff7ed;
}

.spotlight-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease;
}

.spotlight-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.spotlight-bg {
  position: absolute;
  inset: 0;
}

.spotlight-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(1.08);
  transform: scale(1.04);
}

.spotlight-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(251, 191, 36, 0.22), transparent 35%),
    linear-gradient(90deg, rgba(69, 26, 3, 0.92), rgba(69, 26, 3, 0.55) 48%, rgba(69, 26, 3, 0.2)),
    linear-gradient(0deg, #451a03 0%, transparent 42%);
}

.spotlight-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 86px 22px 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.6fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 9px 15px;
  background: rgba(217, 119, 6, 0.88);
  color: #fff7ed;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(120, 53, 15, 0.28);
  backdrop-filter: blur(12px);
}

.spotlight h1,
.spotlight h2 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
}

.spotlight p {
  max-width: 760px;
  margin: 0 0 26px;
  color: #fde68a;
  font-size: clamp(17px, 2vw, 22px);
}

.spotlight-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.spotlight-card {
  position: relative;
  border-radius: 30px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 251, 235, 0.16), rgba(251, 191, 36, 0.08));
  border: 1px solid rgba(253, 230, 138, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.spotlight-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
}

.spotlight-card-title {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border-radius: 18px;
  padding: 14px;
  background: rgba(69, 26, 3, 0.74);
  backdrop-filter: blur(14px);
}

.spotlight-card-title strong {
  display: block;
  font-size: 20px;
}

.spotlight-card-title span {
  color: #fde68a;
  font-size: 13px;
}

.spotlight-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
}

.spotlight-controls button,
.spotlight-dots button {
  border: 1px solid rgba(253, 230, 138, 0.38);
  background: rgba(69, 26, 3, 0.62);
  color: #fff7ed;
  cursor: pointer;
}

.spotlight-controls button {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.spotlight-dots {
  display: flex;
  gap: 8px;
}

.spotlight-dots button {
  width: 34px;
  height: 10px;
  border-radius: 999px;
  padding: 0;
  opacity: 0.55;
}

.spotlight-dots button.active {
  background: #fbbf24;
  opacity: 1;
}

.section {
  padding: 74px 22px;
}

.section.alt {
  background: linear-gradient(135deg, #fef3c7 0%, #fff7ed 46%, #ffffff 100%);
}

.section.dark {
  background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
  color: #fff7ed;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  color: #78350f;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
}

.dark .section-head h2 {
  color: #fffbeb;
}

.section-head p,
.page-title p {
  margin: 9px 0 0;
  color: #9a631c;
}

.dark .section-head p {
  color: #fde68a;
}

.section-link {
  flex: 0 0 auto;
  color: #92400e;
  font-weight: 900;
}

.dark .section-link {
  color: #fde68a;
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.movie-grid.large {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.catalog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: rgba(217, 119, 6, 0.42);
}

.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #78350f, #f59e0b);
}

.card-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.55s ease, opacity 0.25s ease;
}

.catalog-card:hover .card-media img {
  transform: scale(1.08);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.58), transparent 58%);
  opacity: 0.45;
  transition: opacity 0.25s ease;
}

.catalog-card:hover .card-media::after {
  opacity: 0.85;
}

.year-badge,
.rank-badge,
.play-chip {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.year-badge {
  top: 12px;
  right: 12px;
  background: rgba(217, 119, 6, 0.92);
  color: #fff7ed;
}

.rank-badge {
  top: 12px;
  left: 12px;
  background: rgba(69, 26, 3, 0.82);
  color: #fde68a;
}

.play-chip {
  left: 50%;
  bottom: 16px;
  transform: translate(-50%, 18px);
  opacity: 0;
  color: #451a03;
  background: #fde68a;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.catalog-card:hover .play-chip {
  opacity: 1;
  transform: translate(-50%, 0);
}

.card-body {
  padding: 18px;
}

.card-body h2,
.card-body h3 {
  margin: 0 0 8px;
  color: #78350f;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover,
.card-body h3 a:hover {
  color: #d97706;
}

.meta {
  margin: 0 0 9px;
  color: #b7791f;
  font-size: 13px;
}

.card-desc {
  margin: 0 0 13px;
  color: #65420f;
  font-size: 14px;
}

.tag-row {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 9px;
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 800;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 28px;
  padding: 24px;
  color: #fff7ed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #78350f;
  box-shadow: var(--shadow);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-tile:hover img {
  transform: scale(1.12);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(69, 26, 3, 0.92), rgba(69, 26, 3, 0.18));
}

.category-tile h2,
.category-tile p,
.category-tile span {
  position: relative;
  z-index: 2;
  margin: 0;
}

.category-tile h2 {
  font-size: 26px;
}

.category-tile p {
  margin-top: 8px;
  color: #fde68a;
}

.category-tile span {
  width: fit-content;
  margin-top: 14px;
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(253, 230, 138, 0.18);
  color: #fffbeb;
  font-weight: 800;
}

.page-title {
  padding: 58px 22px 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.35), transparent 28%),
    linear-gradient(135deg, #fff7ed, #fef3c7);
  border-bottom: 1px solid var(--line);
}

.page-title-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.breadcrumb {
  margin-bottom: 15px;
  color: #92400e;
  font-weight: 800;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #d97706;
}

.filter-panel {
  max-width: 1240px;
  margin: 0 auto 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px 130px;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(120, 53, 15, 0.08);
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.13);
}

.result-count {
  max-width: 1240px;
  margin: 0 auto 16px;
  color: #92400e;
  font-weight: 800;
}

.rank-list {
  display: grid;
  gap: 16px;
}

.rank-item {
  display: grid;
  grid-template-columns: 82px 126px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.08);
}

.rank-num {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  color: #fff7ed;
  background: linear-gradient(145deg, #d97706, #92400e);
  font-size: 22px;
  font-weight: 900;
}

.rank-thumb img {
  width: 126px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
  background: #78350f;
}

.rank-info h2 {
  margin: 0 0 7px;
  color: #78350f;
  font-size: 22px;
}

.rank-info p {
  margin: 0;
  color: #8a5a1f;
}

.rank-link {
  padding: 10px 15px;
  border-radius: 13px;
  background: #fef3c7;
  color: #92400e;
  font-weight: 900;
}

.detail-top {
  background: #451a03;
  color: #fff7ed;
  position: relative;
  overflow: hidden;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(0.28);
  transform: scale(1.06);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #451a03 0%, rgba(69, 26, 3, 0.68) 60%, rgba(69, 26, 3, 0.45));
}

.detail-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 22px 66px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: end;
}

.detail-poster {
  border-radius: 30px;
  padding: 13px;
  background: rgba(255, 251, 235, 0.14);
  border: 1px solid rgba(253, 230, 138, 0.26);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 21px;
}

.detail-info h1 {
  margin: 14px 0 18px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
}

.detail-info .meta {
  color: #fde68a;
  font-size: 16px;
}

.detail-info p {
  max-width: 800px;
  color: #ffedd5;
  font-size: 18px;
}

.player-section {
  padding: 48px 22px 18px;
  background: #1c0d02;
}

.player-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.35);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(0deg, rgba(0,0,0,0.64), rgba(0,0,0,0.22));
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-shell.playing .player-cover {
  opacity: 0;
  visibility: hidden;
}

.play-button {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #fef3c7, #d97706);
  color: #451a03;
  font-size: 34px;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(217, 119, 6, 0.45);
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.06);
}

.player-title {
  max-width: 1100px;
  margin: 18px auto 0;
  color: #fde68a;
  font-weight: 800;
}

.content-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 22px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
}

.article-panel,
.side-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(120, 53, 15, 0.08);
}

.article-panel h2,
.side-panel h2 {
  margin: 0 0 16px;
  color: #78350f;
  font-size: 26px;
}

.article-panel p {
  margin: 0 0 22px;
  color: #4b2f0c;
  font-size: 17px;
}

.side-list {
  display: grid;
  gap: 14px;
}

.side-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.side-card img {
  width: 86px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 13px;
  background: #78350f;
}

.side-card strong {
  display: block;
  color: #78350f;
  line-height: 1.35;
}

.side-card span {
  color: #b7791f;
  font-size: 12px;
}

.empty-state {
  display: none;
  max-width: 1240px;
  margin: 20px auto 0;
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  color: #92400e;
  border: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}

.image-empty {
  opacity: 0;
}

@media (max-width: 1100px) {
  .movie-grid,
  .movie-grid.large,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop-nav,
  .nav-wrap > .site-search {
    display: none;
  }

  .mobile-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-nav.open {
    display: grid;
    gap: 8px;
    padding: 16px 22px 22px;
    border-top: 1px solid rgba(253, 230, 138, 0.18);
    background: rgba(69, 26, 3, 0.24);
  }

  .mobile-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-top: 8px;
  }

  .mobile-search input {
    width: 100%;
  }

  .spotlight-inner,
  .detail-inner,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    max-width: 360px;
  }

  .rank-item {
    grid-template-columns: 64px 110px minmax(0, 1fr);
  }

  .rank-link {
    grid-column: 2 / -1;
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    height: 68px;
    padding: 0 16px;
  }

  .brand-text strong {
    font-size: 24px;
  }

  .brand-text em,
  .quick-cats {
    display: none;
  }

  .spotlight {
    min-height: 720px;
  }

  .spotlight-inner {
    padding: 54px 16px 108px;
    gap: 28px;
  }

  .section,
  .page-title {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .movie-grid,
  .movie-grid.large,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .card-body {
    padding: 14px;
  }

  .card-body h2,
  .card-body h3 {
    font-size: 15px;
  }

  .card-desc {
    display: none;
  }

  .filter-panel {
    grid-template-columns: 1fr;
  }

  .detail-inner {
    padding: 36px 16px 48px;
  }

  .detail-poster {
    max-width: 260px;
  }

  .player-section,
  .content-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rank-item {
    grid-template-columns: 52px 84px minmax(0, 1fr);
    gap: 12px;
    border-radius: 18px;
  }

  .rank-num {
    width: 46px;
    height: 46px;
    font-size: 17px;
    border-radius: 15px;
  }

  .rank-thumb img {
    width: 84px;
  }

  .rank-info h2 {
    font-size: 17px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .movie-grid,
  .movie-grid.large,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-card {
    max-width: 280px;
  }

  .play-button {
    width: 76px;
    height: 76px;
  }
}

.site-footer {
  background: linear-gradient(180deg, #78350f 0%, #451a03 100%);
  color: #fffbeb;
  border-top: 2px solid rgba(251, 191, 36, 0.45);
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 22px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #fde68a;
}

.site-footer p {
  margin: 0;
  color: #fed7aa;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #fed7aa;
}

.site-footer a:hover {
  color: #fff7ed;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 22px 28px;
  color: #fcd34d;
  border-top: 1px solid rgba(253, 230, 138, 0.18);
  font-size: 13px;
}
