.special-page {
  background: #fffaf2;
  color: #201711;
}

.special-hero {
  position: relative;
  min-height: min(72vh, 680px);
  overflow: hidden;
  background: #15100b;
}

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

.special-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 54%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 45%);
}

.special-hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(42px, 9vw, 92px) clamp(20px, 6vw, 78px);
  color: white;
}

.special-hero-copy p,
.kicker,
.section-heading p {
  color: #f4c36b;
  font-weight: 900;
}

.special-hero-copy h1 {
  color: white;
  font-size: clamp(46px, 11vw, 84px);
}

.special-hero-copy h2 {
  margin-bottom: 14px;
  color: #ffe3a3;
  font-size: clamp(23px, 4vw, 38px);
}

.special-hero-copy span {
  display: block;
  max-width: 660px;
  font-size: clamp(17px, 2.6vw, 22px);
  font-weight: 800;
}

.special-wrap {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 30px 0;
}

.intro-panel,
.cta-panel,
.split-panel,
.menu-direction {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: white;
  border: 1px solid rgba(31, 26, 18, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 26, 18, 0.08);
}

.intro-panel {
  margin-top: 26px;
}

.intro-panel h2,
.cta-panel h2,
.split-panel h2,
.menu-direction h2,
.section-heading h2 {
  color: #321b10;
  font-size: clamp(25px, 4vw, 38px);
}

.intro-panel p,
.cta-panel p,
.split-panel li,
.menu-direction p,
.feature-grid p,
.info-card p {
  color: #514237;
  font-weight: 750;
}

.section-heading {
  margin-bottom: 18px;
  text-align: center;
}

.product-grid,
.feature-grid,
.gallery-grid,
.mini-grid {
  display: grid;
  gap: 16px;
}

.info-card,
.feature-grid article {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(31, 26, 18, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 26, 18, 0.08);
}

.info-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fffdf8;
}

.info-card div,
.feature-grid article {
  padding: 16px;
}

.info-card h3,
.feature-grid h3 {
  color: #163d27;
  font-size: 22px;
}

.split-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.split-panel ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.mini-grid span {
  padding: 12px;
  color: #163d27;
  text-align: center;
  background: #edf3ea;
  border-radius: 999px;
  font-weight: 900;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 26, 18, 0.08);
}

.cta-panel {
  align-items: center;
  margin-bottom: 28px;
  background: linear-gradient(100deg, #e7efe6, #fff6e8);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 720px) {
  .intro-panel,
  .cta-panel {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
  }

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

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

  .feature-grid.six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-panel {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }

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

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

@media (max-width: 540px) {
  .special-hero {
    min-height: 620px;
  }

  .special-hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.82));
  }

  .special-hero-copy {
    display: flex;
    min-height: 620px;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 34px;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .cta-panel > .btn {
    flex: 1 1 100%;
    width: 100%;
  }

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