:root {
  --red: #df1719;
  --yellow: #ffd323;
  --green: #187a00;
  --dark: #071a25;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--white);
  background: var(--red);
  font-family: "Fraunces", Georgia, serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--red);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.16);
}

.contact-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
  padding: 0 max(40px, 11vw);
  background: var(--red);
  color: var(--white);
}

.contact-link,
.brand-word {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Lobster", cursive;
  font-size: clamp(19px, 1.55vw, 28px);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.contact-link.address {
  justify-self: end;
}

.address-short {
  display: none;
}

.brand-word {
  font-size: clamp(24px, 2.05vw, 36px);
  transform: rotate(-5deg);
}

.icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.flag-section {
  position: relative;
  min-height: 1220px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0 2px, rgba(255, 255, 255, 0.14) 2px 4px),
    rgba(255, 255, 255, 0.07);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(920px, 90vw);
  margin-top: -24px;
  text-align: center;
}

.hero-logo {
  width: min(860px, 88vw);
  margin-bottom: 55px;
}

.hero-hours {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  color: var(--white);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.18;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.btn {
  display: inline-grid;
  place-items: center;
  min-width: 222px;
  min-height: 80px;
  padding: 16px 44px;
  border-radius: 999px;
  border: 3px solid var(--green);
  color: var(--yellow);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.btn-red {
  background: var(--red);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
}

.ticker {
  position: relative;
  z-index: 5;
  height: 66px;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow-x: clip;
  background: var(--white);
  color: var(--green);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(25px, 2.25vw, 39px);
  line-height: 1;
  white-space: nowrap;
}

.ticker-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 42px;
  min-width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker b {
  color: var(--yellow);
  font-family: Arial, sans-serif;
}

@keyframes ticker {
  from { transform: translate3d(0, -50%, 0); }
  to { transform: translate3d(-38%, -50%, 0); }
}

.red-block {
  background: var(--red);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 730px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 730px;
}

.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(100%);
  pointer-events: none;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.copy-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 70px clamp(42px, 7vw, 145px);
  text-align: center;
}

.copy-panel h1,
.copy-panel h2,
.social-block h2,
.truck-story h2,
.news-section h2,
.site-footer h2 {
  margin: 0;
  color: var(--yellow);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 8vw, 160px);
  line-height: 0.88;
  letter-spacing: 0;
}

.copy-panel p {
  max-width: 660px;
  margin: 52px auto 42px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.menu-section .photo-panel img {
  object-position: center 41%;
}

.social-block {
  min-height: 980px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 54px;
  background: var(--white);
  color: var(--yellow);
  text-align: center;
  padding: 90px clamp(36px, 5vw, 90px);
}

.social-block h2 {
  font-size: clamp(76px, 8.5vw, 165px);
}

.social-btn {
  min-width: 430px;
  min-height: 84px;
  border-color: var(--green);
  font-size: 32px;
}

.facebook-feed {
  width: min(600px, 100%);
}

.latest-facebook-post {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  overflow: hidden;
  border: 3px solid var(--green);
  border-radius: 8px;
  background: var(--red);
  color: var(--white);
  text-align: left;
  text-decoration: none;
}

.latest-post-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 10px;
}

.latest-post-head img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
}

.latest-post-head strong,
.latest-post-head span {
  display: block;
}

.latest-post-head strong {
  color: var(--yellow);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.05;
}

.latest-post-head span {
  margin-top: 3px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
}

.latest-facebook-post p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.35;
}

.latest-post-media {
  width: 100%;
  height: 238px;
  object-fit: cover;
  display: block;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.latest-post-more {
  margin-top: auto;
  padding: 15px 20px 18px;
  color: var(--yellow);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.1;
}

.truck-story {
  position: relative;
  min-height: 1120px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.truck-story img,
.green-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.truck-story img {
  object-fit: cover;
}

.green-wash {
  background: rgba(71, 132, 41, 0.68);
}

.truck-story h2 {
  position: relative;
  width: min(1080px, 93vw);
  text-align: center;
  font-size: clamp(72px, 7.7vw, 148px);
}

.news-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  min-height: 920px;
  padding: 90px clamp(40px, 4vw, 95px);
  background: var(--white);
  color: var(--red);
  gap: clamp(40px, 7vw, 130px);
}

.news-section h2 {
  color: var(--red);
  font-size: clamp(66px, 6vw, 104px);
  line-height: 0.94;
}

.news-card {
  position: relative;
  min-height: 365px;
  padding: 58px 62px 48px;
  border-radius: 19px;
  background: var(--red);
  color: var(--white);
  overflow: hidden;
}

.news-slide {
  transition: transform 360ms ease, opacity 360ms ease;
}

.news-slide.is-exiting {
  opacity: 0;
  transform: translateX(-42px);
}

.news-slide.is-entering {
  opacity: 0;
  transform: translateX(42px);
}

.news-card #news-title {
  display: block;
  max-width: 860px;
  color: var(--white);
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(31px, 3.15vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.chain {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-top: 38px;
  color: var(--yellow);
  border-radius: 50%;
  text-decoration: none;
}

.external-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.4;
}

.news-card p {
  margin: 18px 0 0;
  font-size: 25px;
}

.news-controls {
  position: absolute;
  right: 47px;
  bottom: 42px;
  display: flex;
  gap: 16px;
}

.news-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--yellow);
  cursor: pointer;
}

.arrow-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.1;
}

.star-line {
  position: relative;
  height: 88px;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow-x: clip;
  background: var(--white);
  color: var(--yellow);
}

.star-track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 220%;
  overflow-x: hidden;
  font-size: 38px;
  line-height: 1;
  white-space: nowrap;
  animation: starTicker 24s linear infinite;
}

.star-track span {
  display: inline-grid;
  place-items: center;
  min-width: 90px;
}

@keyframes starTicker {
  from { transform: translate3d(0, -50%, 0); }
  to { transform: translate3d(-50%, -50%, 0); }
}

.reveal {
  opacity: 0;
}

.reveal {
  transform: translateY(36px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-photo::after {
  transform: translateX(0);
  transition: transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-photo.is-visible::after {
  transform: translateX(100%);
}

.menu-section .animate-photo::after {
  transform: translateX(0);
}

.menu-section .animate-photo.is-visible::after {
  transform: translateX(-100%);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .animate-photo {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .photo-panel::after {
    display: none;
  }
}

.site-footer {
  min-height: 810px;
  padding: 86px clamp(38px, 4.1vw, 92px) 34px;
  background: var(--red);
}

.site-footer h2 {
  color: var(--yellow);
  font-size: clamp(95px, 8vw, 176px);
  line-height: 0.86;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  gap: clamp(70px, 12vw, 190px);
  width: min(1240px, 100%);
  margin-top: 86px;
}

.footer-grid h3 {
  margin: 0 0 30px;
  font-size: 22px;
}

.footer-grid p,
.footer-grid a,
.copyright {
  color: var(--white);
  font-size: 20px;
  line-height: 1.22;
  font-weight: 700;
  text-decoration-thickness: 2px;
  white-space: nowrap;
}

.copyright {
  white-space: normal;
}

.copyright {
  margin: 108px 0 0;
}

@media (max-width: 820px) {
  .contact-bar {
    grid-template-columns: 1fr auto 1fr;
    justify-items: center;
    gap: 6px;
    height: 48px;
    padding: 0 9px;
  }

  .brand-word {
    display: inline-flex;
    font-size: 17px;
  }

  .contact-link {
    gap: 5px;
    font-size: 10.5px;
  }

  .contact-link.address {
    justify-self: center;
  }

  .address-full {
    display: none;
  }

  .address-short {
    display: inline;
  }

  .icon {
    width: 17px;
    height: 17px;
    stroke-width: 2.8;
  }

  .flag-section {
    min-height: calc(100svh - 48px);
    place-items: center;
  }

  .hero-content {
    margin-top: 26px;
  }

  .hero-logo {
    width: 330px;
    margin-bottom: 34px;
  }

  .hero-hours {
    max-width: 260px;
    font-size: 18px;
  }

  .btn {
    min-width: 180px;
    min-height: 57px;
    font-size: 18px;
    padding: 14px 28px;
  }

  .ticker {
    height: 44px;
    font-size: 14px;
  }

  .ticker-track {
    gap: 22px;
  }

  .split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .intro .photo-panel {
    order: 2;
  }

  .photo-panel {
    min-height: 475px;
  }

  .copy-panel {
    min-height: 520px;
    padding: 60px 28px;
  }

  .copy-panel h1,
  .copy-panel h2,
  .social-block h2,
  .truck-story h2,
  .news-section h2,
  .site-footer h2 {
    font-size: clamp(62px, 17vw, 86px);
  }

  .copy-panel p {
    margin: 35px auto 33px;
    font-size: 18px;
  }

  .social-block {
    min-height: 0;
    gap: 38px;
    padding: 70px 22px;
  }

  .facebook-feed {
    width: 100%;
  }

  .latest-facebook-post {
    min-height: 0;
  }

  .latest-facebook-post p {
    font-size: 17px;
  }

  .latest-post-media {
    height: 210px;
  }

  .social-btn {
    min-width: 235px;
    font-size: 17px;
  }

  .truck-story {
    min-height: 560px;
  }

  .truck-story h2 {
    font-size: clamp(52px, 14vw, 78px);
  }

  .news-section {
    grid-template-columns: 1fr;
    min-height: 740px;
    padding: 80px 22px;
  }

  .news-card {
    min-height: 330px;
    padding: 30px 26px 105px;
    border-radius: 5px;
  }

  .news-card #news-title {
    font-size: 28px;
  }

  .chain {
    margin-top: 30px;
  }

  .external-icon {
    width: 34px;
    height: 34px;
  }

  .news-card p {
    margin-top: 20px;
    padding-right: 0;
    font-size: 25px;
  }

  .news-controls {
    right: 25px;
    bottom: 24px;
  }

  .star-line {
    height: 60px;
  }

  .star-track {
    min-width: 320%;
    font-size: 22px;
  }

  .star-track span {
    min-width: 56px;
  }

  .site-footer {
    min-height: 740px;
    padding: 70px 22px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 65px;
  }

  .footer-grid h3 {
    margin-bottom: 14px;
  }

  .footer-grid p,
  .footer-grid a,
  .copyright {
    font-size: 16px;
    white-space: normal;
  }

  .copyright {
    margin-top: 60px;
  }
}
