:root {
  --green: #053d1d;
  --green-dark: #031f10;
  --green-soft: #0f5a2c;
  --cream: #fff9ef;
  --paper: #f5f0e8;
  --ink: #111111;
  --muted: #d7cec1;
  --red: #a40021;
  --line: rgba(255, 249, 239, .24);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--green-dark);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .08), transparent 28rem),
    linear-gradient(135deg, var(--green), var(--green-dark));
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 80%);
}

.page {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  align-content: center;
  gap: 18px;
  overflow-y: hidden;
}

.checker {
  height: 16px;
  border: 2px solid var(--cream);
  background:
    linear-gradient(45deg, var(--cream) 25%, transparent 25%) 0 0 / 16px 16px,
    linear-gradient(45deg, transparent 75%, var(--cream) 75%) 0 0 / 16px 16px,
    linear-gradient(45deg, transparent 75%, var(--cream) 75%) 8px -8px / 16px 16px,
    linear-gradient(45deg, var(--cream) 25%, transparent 25%) -8px 8px / 16px 16px,
    var(--ink);
  box-shadow: 0 10px 0 rgba(0, 0, 0, .16);
}

.card {
  overflow: hidden;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 120px;
  padding: 8px 14px;
}

.brand-mark img {
  display: block;
  width: 260px;
  height: auto;
}

.content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(34px, 8vw, 88px) clamp(22px, 5vw, 64px);
}

.copy,
.kitchen {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 7px 10px 5px;
  color: var(--cream);
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(58px, 11vw, 132px);
  font-weight: 900;
  line-height: .83;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, .34);
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.35;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes loader {
  0% {
    width: 10%;
    transform: rotate(0deg);
  }
  10% {
    left: 0%;
    transform: rotate(0deg);
  }
  20% {
    width: 0%;
    left: 20%;
  }
  30% {
    width: 25%;
  }
  50% {
    left: 15%;
    width: 35%;
  }
  70% {
    width: 30%;
    left: 18%;
    transform: rotate(240deg);
  }
  90% {
    width: 30%;
    left: 10%;
  }
  100% {
    width: 2%;
    left: 25%;
    transform: rotate(360deg);
  }
}
@keyframes pan {
  0% {
    transform: rotate(0deg);
    transform-origin: top right;
  }
  10% {
    transform: rotate(-2deg);
    transform-origin: top right;
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shadow {
  0% {
    width: 30%;
    opacity: .25;
  }
  50% {
    width: 40%;
    left: 20px;
    opacity: 1;
  }
  100% {
    width: 30%;
    opacity: .25;
  }
}
.pan-loader {
  width: 320px;
  height: 320px;
}
.loader {
  position: relative;
  top: 8%; left: 3%;
  z-index: 0;
  width: 60%; height: 45%;
  border: 10px solid transparent;
  border-bottom: 10px solid #a40021;
  border-radius: 50%;
  animation: loader 2s infinite;
  animation-timing-function: linear;
}
.pan-container {
  display: flex; width: 100%;
  animation: pan 2s infinite;
}
.pan {
  width: 60%;
  height: 40px;
  background: linear-gradient(#000, #333);
  border-bottom-right-radius: 38px;
  border-bottom-left-radius: 38px;
}
.handle {
  position: relative;
  top: 2px;
  left: -4px;
  width: 40%;
  height: 16px;
  background: linear-gradient(#000, #333);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.shadow {
  position: relative;
  top: 9%; left: 15%;
  width: 30%; height: 8px;
  /*
  background: rgba(0, 0, 0, .2);
   */
  background: gradient(45deg, transparent, rgba(0,0,0,.75), transparent);
  border-radius: 20px;
  animation: shadow 2s infinite;
}