* {
  box-sizing: border-box;
}

:root {
  --black: #070707;
  --white: #ffffff;
  --red: #b51414;
  --red-dark: #8e0f0f;
  --gray: #eeeeee;
  --line: rgba(0, 0, 0, 0.22);
  --muted: #555;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  zoom: 0.9;
}

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

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

.top-alert {
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 7px 26px;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.top-alert strong {
  color: var(--red);
}

.top-alert span {
  margin: 0 8px;
}

.top-links {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.site-header {
  display: grid;
  grid-template-columns: 120px 1fr 250px 105px;
  gap: 22px;
  align-items: center;
  padding: 18px 30px;
  border-bottom: 1px solid var(--line);
  max-width: 1700px;
  margin: 0 auto;
}

.logo-wrap img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.brand-block h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.9;
  letter-spacing: 0.13em;
  font-weight: 950;
}

.brand-block p {
  margin: 12px 0 0;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.05;
  font-weight: 900;
  max-width: 760px;
}

.status-box {
  border-left: 1px solid var(--line);
  padding-left: 22px;
  font-weight: 900;
}

.status-box span {
  display: block;
  font-size: 17px;
}

.status-box strong {
  display: block;
  margin-top: 8px;
  font-size: 26px;
  line-height: 1;
  color: var(--red);
}

.review-stamp {
  border: 3px solid #666;
  color: #666;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-13deg);
  font-weight: 900;
  padding: 10px;
}

.review-stamp span {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.review-stamp b {
  font-size: 28px;
  line-height: 0.8;
}

.main-nav {
  background: var(--black);
  color: var(--white);
  border-bottom: 4px solid var(--red);
}

.mobile-nav-button {
  display: none;
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: 0;
  padding: 13px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  font-family: inherit;
}

.nav-items {
  display: flex;
  overflow-x: auto;
  padding: 0 30px;
  max-width: 1700px;
  margin: 0 auto;
}

.nav-items a {
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(255,255,255,0.12);
  white-space: nowrap;
}

.nav-items a.active,
.nav-items a:hover {
  background: var(--white);
  color: var(--black);
}

main {
  padding: 14px 18px 20px;
  max-width: 1700px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.9fr);
  gap: 16px;
}

.hero-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}

.hero-card > img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.45), rgba(0,0,0,.08));
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 54px 42px;
  max-width: 520px;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 68px);
  letter-spacing: 0.14em;
  font-weight: 950;
}

.hero-copy h3 {
  margin: 10px 0;
  color: #ff2020;
  font-size: 26px;
  font-weight: 950;
}

.hero-copy p {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 26px;
}

.hero-copy blockquote {
  margin: 0 0 26px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
}

.red-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 950;
  letter-spacing: .04em;
  transition: transform .15s ease, background .15s ease;
}

.red-button {
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  font-size: 16px;
}

.red-button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.red-button.full,
.outline-button {
  width: 100%;
}

.outline-button {
  border: 2px solid var(--red);
  color: var(--red);
  padding: 11px 14px;
  font-size: 14px;
}

.outline-button:hover {
  background: var(--red);
  color: var(--white);
}

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots i {
  width: 13px;
  height: 13px;
  background: var(--white);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.slider-dots i.selected {
  background: var(--red);
  border-color: var(--red);
}

.today-card,
.side-card,
.merch-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.today-card {
  padding: 20px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 11px;
}

.section-title-row h2,
.section-heading,
.side-card h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.section-title-row h2 {
  font-size: 32px;
}

.section-title-row a {
  color: var(--red);
  font-weight: 950;
  font-size: 13px;
  white-space: nowrap;
}

.report-item {
  display: grid;
  grid-template-columns: 46px 1fr 74px;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,.14);
  padding: 13px 0;
  align-items: center;
}

.report-item:last-child {
  border-bottom: 0;
}

.report-icon {
  font-size: 27px;
  text-align: center;
}

.report-item h3 {
  margin: 0 0 3px;
  font-size: 17px;
  letter-spacing: .03em;
  font-weight: 950;
}

.report-item p {
  margin: 0;
  font-weight: 900;
  line-height: 1.22;
  font-size: 14px;
}

.report-time {
  color: var(--red);
  font-size: 17px;
  font-weight: 950;
  text-align: right;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
  margin-top: 14px;
}

.section-heading {
  font-size: 29px;
  margin: 10px 0 8px;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  gap: 11px;
}

.dept-card {
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--white);
  min-height: 230px;
}

.dept-card img {
  height: 105px;
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.12);
}

.dept-card h3 {
  color: var(--red);
  text-align: center;
  font-size: 16px;
  line-height: 1.05;
  margin: 11px 0 7px;
  font-weight: 950;
  white-space: pre-line;
}

.dept-card p {
  text-align: center;
  margin: 0;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
  white-space: pre-line;
}

.dept-card a {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 950;
}

.staff-section {
  margin-top: 10px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.staff-card {
  border: 1px solid var(--line);
  padding: 14px;
  background: #fff;
}

.staff-thumb {
  width: 100%;
  height: 145px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.15);
  margin-bottom: 12px;
  background: #000;
}

.staff-card h3 {
  margin: 0;
  color: var(--red);
  font-size: 21px;
  font-weight: 950;
}

.staff-card h4 {
  margin: 5px 0 10px;
  font-size: 14px;
  font-weight: 950;
}

.staff-card p {
  margin: 0;
  font-weight: 800;
  line-height: 1.32;
  font-size: 14px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 11px;
}

.video-tile {
  height: 105px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}

.video-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-tile span {
  position: absolute;
  right: 9px;
  bottom: 7px;
  color: var(--white);
  text-shadow: 0 2px 4px #000;
  font-size: 30px;
}

.merch-section {
  margin: 14px 0 8px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.merch-card {
  padding: 16px;
}

.merch-card h3 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 19px;
}

.merch-card p {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
}

.side-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-card {
  padding: 18px;
  border-bottom: 0;
}

.side-card:last-child {
  border-bottom: 1px solid var(--line);
}

.side-card h2 {
  font-size: 24px;
}

.side-card p {
  font-weight: 850;
  line-height: 1.28;
  font-size: 14px;
}

.bee-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
}

.bee-row span {
  font-size: 30px;
}

.status-line strong {
  color: var(--red);
}

.hay-fund {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
}

.hay-fund a {
  color: var(--red);
  font-weight: 950;
}

.hay-bale {
  width: 86px;
  height: 65px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #555;
  color: var(--white);
  border: 2px solid var(--black);
  font-weight: 950;
  box-shadow: -8px -8px 0 #777;
}

.social-button-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.social-button {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  border-radius: 9px;
  color: #fff;
  font-weight: 900;
  transition: transform 0.15s ease, opacity 0.15s ease;
  border: 1px solid rgba(0,0,0,.15);
}

.social-button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.social-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  background: rgba(255,255,255,.15);
}

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

.social-text strong {
  font-size: 16px;
}

.social-text small {
  margin-top: 3px;
  font-size: 11px;
  opacity: .92;
}

.social-button.tiktok {
  background: linear-gradient(135deg,#000,#111);
}

.social-button.instagram {
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.social-button.youtube {
  background: linear-gradient(135deg,#ff0000,#b30000);
}

.social-button.facebook {
  background: linear-gradient(135deg,#1877f2,#0e5bc7);
}

footer {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 30px;
  border-top: 1px solid var(--line);
  max-width: 1700px;
  margin: 0 auto;
}

footer img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

footer strong {
  font-size: 20px;
}

footer p {
  margin: 5px 0;
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 1250px) {
  .site-header {
    grid-template-columns: 110px 1fr;
  }

  .logo-wrap img {
    width: 110px;
    height: 110px;
  }

  .status-box,
  .review-stamp {
    display: none;
  }

  .hero-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .department-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .side-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .side-card {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 780px) {
  body {
    zoom: 1;
  }

  .top-alert {
    padding: 8px 14px;
    font-size: 12px;
  }

  .top-links {
    display: none;
  }

  .site-header {
    padding: 18px 14px;
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }

  .logo-wrap img {
    width: 80px;
    height: 80px;
  }

  .brand-block h1 {
    font-size: 31px;
    letter-spacing: .08em;
  }

  .brand-block p {
    font-size: 17px;
  }

  .mobile-nav-button {
    display: block;
  }

  .nav-items {
    display: none;
    flex-direction: column;
    padding: 0;
  }

  .nav-items.show {
    display: flex;
  }

  .nav-items a {
    border-top: 1px solid rgba(255,255,255,.12);
    border-right: 0;
  }

  main {
    padding: 12px;
  }

  .hero-grid,
  .department-grid,
  .staff-grid,
  .video-grid,
  .merch-grid,
  .content-layout,
  .side-column {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 460px;
  }

  .hero-copy {
    padding: 42px 24px;
  }

  .hero-copy h2 {
    font-size: 44px;
  }

  .hero-copy h3 {
    font-size: 24px;
  }

  .hero-copy p,
  .hero-copy blockquote {
    font-size: 21px;
  }

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

  .section-title-row h2 {
    font-size: 29px;
  }

  .report-item {
    grid-template-columns: 40px 1fr;
  }

  .report-time {
    grid-column: 2;
    text-align: left;
    font-size: 14px;
  }

  .dept-card img,
  .video-tile {
    height: 170px;
  }

  .staff-thumb {
    height: 210px;
  }

  footer {
    padding: 22px 14px;
    align-items: flex-start;
  }
}