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

body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.6;
  color: #2c2c2c;
  background: #faf8f5;
}

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

a {
  color: #8b4513;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero img:not(.scroll-arrow),
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  width: 100%;
  background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.75) 100%);
  padding: 4rem 1.5rem 2.5rem;
  color: #fff;
}

.hero-overlay h1 {
  font-family: "Italiana", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-overlay p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 650px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
  position: absolute;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(1.5rem, 2.5vw, 2.5rem);
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  z-index: 2;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.quick-info {
  margin-top: 1.25rem;
  padding: 0;
  overflow: hidden;
}

.quick-info-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem;
  justify-content: flex-start;
}

.quick-info .info-item {
  text-align: center;
  flex-shrink: 0;
}

.quick-info .info-item span {
  display: block;
}

.quick-info .info-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

.quick-info .info-item .value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 500px) {
  .quick-info {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  align-items: start;
}

.col-right {
  position: static;
}

section {
  padding: 2.5rem 0;
}

section + section {
  border-top: 1px solid #e8e2da;
}

h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #5a3520;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 0;
}

h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #6b4226;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.45rem;
}

.equpt-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.equpt-list li {
  background: #f0ebe4;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.allergen-list li {
  background: #f0ebe4;
  color: #2c2c2c;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.allergen-list li img {
  width: 2em;
  height: 2em;
  object-fit: contain;
}

.ingredients-list {
  padding-left: 1.5rem;
}

.ingredients-list li {
  margin-bottom: 0.3rem;
}

.instructions ol {
  list-style: none;
  padding: 0;
  counter-reset: step;
}

.instructions li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 3rem 2px 1fr;
  gap: 0 1rem;
  margin-bottom: 1.5rem;
}

.instructions li::before {
  content: counter(step);
  font-size: 1.75rem;
  font-weight: 400;
  color: #5a3520;
  text-align: center;
  grid-row: 1 / -1;
}

.instructions li::after {
  content: "";
  background: #d4c5b5;
  grid-row: 1 / -1;
}

.instructions li span {
  line-height: 1.6;
}

.dropImage {
  margin-top: 0.5rem;
  grid-column: 3;
}

.dropImage summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: #8b4513;
  user-select: none;
  width: fit-content;
}

.dropImage summary:hover {
  text-decoration: underline;
}

.dropImage img {
  margin-top: 0.5rem;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

.info-box {
  background: #fff;
  border-left: 4px solid #8b4513;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-top: 0.75rem;
}

.info-box p + p {
  margin-top: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: #999;
  border-top: 1px solid #e8e2da;
}

@media (max-width: 640px) {
  .hero {
    height: auto;
    aspect-ratio: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .hero video {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-overlay {
    background: none;
    padding: 1.5rem 1.25rem;
    color: #2c2c2c;
  }

  .hero-overlay h1 {
    font-size: 1.75rem;
    color: #2c2c2c;
    text-shadow: none;
  }

  .hero-overlay p {
    font-size: 0.95rem;
    color: #2c2c2c;
    text-shadow: none;
  }

  .quick-info .info-item .label {
    color: #888;
  }

  .quick-info .info-item .value {
    font-size: 0.9rem;
    color: #3b3b3b;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .col-right {
    position: static;
  }

  .instructions li {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .instructions li::before {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .instructions li::after {
    display: none;
  }

  .instructions li span {
    width: 100%;
    text-align: left;
    border-top: 2px solid #d4c5b5;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }

  .dropImage {
    width: 100%;
  }

  h2 {
    font-size: 1.35rem;
  }
}

@media (max-width: 400px) {
}
