* {
  box-sizing: border-box;
}

:root {
  --red: #a41414;
  --dark-red: #671111;
  --cream: #fff8ea;
  --ink: #241310;
  --muted: #725f58;
  --yellow: #ffc83d;
  --orange: #f36b1c;
  --green: #4d8b43;
  --whatsapp: #25d366;
  --tiktok: #111;
  --shadow: 0 20px 60px rgba(36, 19, 16, 0.16);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 200, 61, .26), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(244, 87, 34, .16), transparent 28%),
    linear-gradient(180deg, #fff9ed, #fff2dc 42%, #fff8ea);
}

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

img {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 248, 234, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(103, 17, 17, .14);
}

.faculty-top {
  text-align: center;
  padding: 8px 12px 7px;
  color: white;
  background: linear-gradient(135deg, var(--dark-red), var(--red));
}

.faculty-top p {
  margin: 0 0 3px;
  font-weight: 800;
  font-size: clamp(11px, 1.3vw, 14px);
  opacity: .96;
}

.faculty-top h1 {
  margin: 0;
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.preorder-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  flex-wrap: wrap;
  padding: 9px 16px;
  background: var(--yellow);
  color: var(--dark-red);
  text-align: center;
  font-weight: 800;
  font-size: 15px;
}

.preorder-top strong {
  font-weight: 1000;
}

.nav {
  max-width: 1220px;
  margin: auto;
  padding: 13px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.logo {
  color: var(--red);
  font-weight: 1000;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--red);
}

.order-btn {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--red);
  color: white !important;
}

.menu-btn {
  display: none;
  border: 0;
  border-radius: 12px;
  background: var(--red);
  color: white;
  padding: 8px 12px;
  font-size: 20px;
}

.hero,
.poster-section,
.group-section,
.order-section {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 54px 22px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 200, 61, .36);
  color: var(--dark-red);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: .5px;
}

.hero h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .95;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--red);
}

.hero-desc {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.count-card {
  display: flex;
  gap: 14px;
  align-items: center;
  max-width: 530px;
  margin: 24px 0;
  padding: 16px 18px;
  border-radius: 22px;
  background: white;
  border: 2px solid rgba(164, 20, 20, .1);
  box-shadow: 0 12px 26px rgba(36, 19, 16, .08);
}

.count-card > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--yellow);
  font-size: 26px;
}

.count-card b {
  display: block;
  color: var(--red);
  font-size: 18px;
}

.count-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 1000;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn.secondary {
  background: white;
  color: var(--red);
  border: 2px solid rgba(164, 20, 20, .12);
}

.hero-showcase {
  position: relative;
  min-height: 530px;
}

.hero-img {
  overflow: hidden;
  border: 8px solid white;
  border-radius: 32px;
  box-shadow: var(--shadow);
  background: white;
}

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

.hero-img.big {
  position: absolute;
  inset: 0 0 82px 84px;
}

.hero-img.small {
  position: absolute;
  width: 220px;
  height: 220px;
}

.hero-img.one {
  left: 0;
  bottom: 30px;
  transform: rotate(-6deg);
}

.hero-img.two {
  right: 20px;
  bottom: 0;
  transform: rotate(5deg);
}

.poster-section {
  padding: 12px 22px 24px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.poster-copy p,
.intro p,
.section-head p,
.order-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.poster-copy h2,
.intro h2,
.section-head h2,
.order-section h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -1.2px;
}

.poster-card,
.template-box,
.promo-card {
  background: white;
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(36, 19, 16, .08);
}

.poster-card img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.intro {
  max-width: 850px;
  margin: auto;
  padding: 40px 22px 14px;
  text-align: center;
}

.group-section {
  margin: 34px auto;
  padding: 32px 22px;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 24px;
}

.group-pill {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 1000;
  font-size: 13px;
}

.group-pill.orange {
  background: var(--orange);
}

.group-pill.red {
  background: var(--red);
}

.group-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  max-width: 670px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 15px;
  border-radius: 999px;
  color: white;
  font-weight: 1000;
  box-shadow: 0 10px 20px rgba(36, 19, 16, .12);
  transition: transform .18s ease, filter .18s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.social-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.whatsapp {
  background: var(--whatsapp);
}

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

.tiktok {
  background: var(--tiktok);
}

.promo-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.promo-card h3 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 22px;
}

.promo-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.promo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promo-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(36, 19, 16, .12);
}

.promo-card li:last-child {
  border-bottom: 0;
}

.info-list li {
  display: block;
  border-bottom: 1px dashed rgba(36, 19, 16, .12);
  padding: 10px 0;
  color: var(--muted);
}

.highlight {
  background: linear-gradient(180deg, #fffdf8, #fff6e5);
}

.deal {
  background: linear-gradient(180deg, #fff7f7, #fff1ec);
}

.info {
  background: linear-gradient(180deg, #f7fff8, #ecfff0);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.food-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 46px rgba(36, 19, 16, .12);
  border: 1px solid rgba(36, 19, 16, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.food-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(36, 19, 16, .18);
}

.food-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #fff2df;
}

.food-grid.three .food-img-wrap {
  height: 340px;
}

.food-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.food-card:hover img {
  transform: scale(1.045);
}

.food-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--dark-red);
  font-weight: 1000;
  font-size: 12px;
}

.food-info {
  padding: 18px;
}

.food-info h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.05;
}

.food-info p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.food-info strong {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--red);
  color: white;
  font-size: 15px;
}

.order-section {
  margin: 55px auto 74px;
  padding: 34px 22px;
  display: grid;
  grid-template-columns: 1fr .88fr;
  gap: 32px;
  align-items: start;
}

.order-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-link {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(36, 19, 16, .08);
  box-shadow: 0 8px 18px rgba(36, 19, 16, .08);
  font-weight: 700;
}

.template-box h3 {
  margin: 0 0 14px;
  color: var(--red);
}

textarea {
  width: 100%;
  min-height: 174px;
  margin-bottom: 14px;
  padding: 16px;
  resize: vertical;
  border-radius: 18px;
  border: 2px solid rgba(164, 20, 20, .12);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
}

#copyStatus {
  min-height: 24px;
  color: var(--green);
  font-weight: 900;
}

footer {
  padding: 32px 22px;
  background: var(--dark-red);
  color: white;
  text-align: center;
  font-weight: 800;
}

footer p {
  margin: 6px 0;
}

.credit {
  margin-top: 14px;
  font-size: 14px;
  opacity: .95;
}

.credit a {
  color: var(--yellow);
  font-weight: 1000;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 520px;
  }

  .poster-section,
  .section-head,
  .order-section,
  .promo-panel {
    grid-template-columns: 1fr;
  }

  .group-cta {
    justify-content: flex-start;
  }

  .food-grid,
  .food-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .faculty-top {
    padding: 7px 10px 7px;
  }

  .faculty-top h1 {
    font-size: clamp(16px, 5.7vw, 22px);
  }

  .faculty-top p {
    font-size: 11px;
  }

  .preorder-top {
    font-size: 13px;
    padding: 8px 12px;
  }

  .nav {
    padding: 12px 16px;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .hero {
    padding: 38px 16px 32px;
    gap: 28px;
  }

  .hero h2 {
    letter-spacing: -1px;
    font-size: clamp(30px, 10vw, 44px);
  }

  .hero-desc,
  .poster-copy p,
  .intro p,
  .section-head p,
  .order-section p {
    font-size: 16px;
  }

  .hero-showcase {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-img.big,
  .hero-img.small {
    position: relative;
    inset: auto;
    width: 100%;
    height: 280px;
    transform: none;
  }

  .hero-img.small {
    height: 200px;
  }

  .poster-section,
  .group-section,
  .order-section,
  .intro {
    padding-left: 16px;
    padding-right: 16px;
  }

  .poster-copy h2,
  .intro h2,
  .section-head h2,
  .order-section h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .food-grid,
  .food-grid.three,
  .kunafa-grid {
    grid-template-columns: 1fr;
  }

  .food-img-wrap,
  .food-grid.three .food-img-wrap {
    height: 300px;
  }

  .social-btn,
  .mini-link {
    width: 100%;
    justify-content: center;
  }

  .group-cta,
  .order-links {
    width: 100%;
  }

  .food-info h3 {
    font-size: 21px;
  }

  .promo-card li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
