:root {
  --cream: #fff4dc;
  --cream-2: #ffe9bd;
  --plantain: #f8c94b;
  --ube: #7045a3;
  --ube-dark: #4c2b72;
  --spice: #e46d2e;
  --green: #19533b;
  --green-2: #2f7654;
  --charcoal: #26231f;
  --muted: #6f6254;
  --white: #fffdf7;
  --line: rgba(38, 35, 31, 0.14);
  --shadow: 0 24px 70px rgba(57, 37, 12, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(248, 201, 75, 0.35), transparent 28rem),
    linear-gradient(135deg, #fff8e9 0%, #fff1d2 42%, #f7dfc7 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.demo-disclaimer {
  position: relative;
  z-index: 2;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(30deg, rgba(25, 83, 59, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(25, 83, 59, 0.06) 87.5%),
    linear-gradient(150deg, rgba(112, 69, 163, 0.06) 12%, transparent 12.5%, transparent 87%, rgba(112, 69, 163, 0.06) 87.5%);
  background-size: 42px 42px;
}

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

img,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 13rem;
}

.brand-mark {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--white);
  background: conic-gradient(from 140deg, var(--green), var(--ube), var(--spice), var(--green));
  border: 3px solid var(--cream);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.nav-links a:focus-visible,
.brand:focus-visible,
.header-cta:focus-visible,
.btn:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid rgba(228, 109, 46, 0.7);
  outline-offset: 4px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.05rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(25, 83, 59, 0.22);
}

.btn-secondary {
  color: var(--charcoal);
  background: var(--plantain);
  box-shadow: 0 12px 28px rgba(228, 109, 46, 0.2);
}

.header-cta {
  min-height: 2.55rem;
  padding: 0.55rem 0.9rem;
}

.section-pad {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 5vw, 4rem);
}

.hero {
  display: grid;
  gap: 2.25rem;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.45rem 0.75rem;
  background: rgba(25, 83, 59, 0.1);
  border: 1px solid rgba(25, 83, 59, 0.14);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
}

h1 {
  max-width: 14.5ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.5rem, 7.8vw, 5.25rem);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 5vw, 3.7rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero-copy p {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-note {
  display: inline-flex;
  max-width: 36rem;
  margin: 1rem 0 0;
  padding: 0.7rem 0.85rem;
  color: var(--green);
  background: rgba(255, 253, 247, 0.68);
  border: 1px solid rgba(25, 83, 59, 0.14);
  border-radius: 0.5rem;
  font-size: 0.94rem;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-art {
  position: relative;
  min-height: 24rem;
  padding: 2rem 0;
}

.tray {
  position: relative;
  width: min(100%, 31rem);
  height: 22rem;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 45%),
    linear-gradient(145deg, #1d5e43, #113a2a);
  border: 12px solid #f6c35a;
  border-radius: 2.2rem;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.tray::before {
  content: "";
  position: absolute;
  inset: 1.35rem;
  border: 2px dashed rgba(255, 244, 220, 0.28);
  border-radius: 1.5rem;
}

.food {
  position: absolute;
  display: block;
}

.patty {
  left: 2.4rem;
  top: 2.5rem;
  width: 9.5rem;
  height: 5.7rem;
  background: linear-gradient(135deg, #f5a13c, #bf5528);
  border-radius: 65% 35% 45% 55%;
  box-shadow: inset 0 -12px 0 rgba(98, 43, 25, 0.16);
}

.patty::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border-top: 4px dashed rgba(255, 244, 220, 0.55);
  border-radius: 50%;
}

.plantain {
  width: 4.3rem;
  height: 4.3rem;
  background: radial-gradient(circle at 32% 30%, #fff0a9, var(--plantain) 50%, #d58a27);
  border-radius: 50%;
}

.plantain.one {
  right: 4rem;
  top: 2.3rem;
}

.plantain.two {
  right: 8.4rem;
  top: 5.7rem;
}

.ube {
  right: 3.4rem;
  bottom: 3.2rem;
  width: 8.1rem;
  height: 5.1rem;
  background: linear-gradient(135deg, #9166c9, var(--ube-dark));
  border-radius: 1.2rem;
  box-shadow: inset 0 10px 0 rgba(255, 255, 255, 0.14);
}

.ube::before,
.ube::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  background: rgba(255, 244, 220, 0.55);
  border-radius: 50%;
}

.ube::before {
  left: 1.2rem;
  top: 1.1rem;
}

.ube::after {
  right: 1.6rem;
  bottom: 1rem;
}

.lumpia {
  left: 5.7rem;
  bottom: 4rem;
  width: 9.8rem;
  height: 1.55rem;
  background: linear-gradient(90deg, #f7d189, #c97933);
  border-radius: 999px;
  box-shadow: 0 1.9rem 0 #d68a38;
}

.lumpia.two {
  left: 6.8rem;
  bottom: 7rem;
  transform: rotate(8deg);
}

.spice {
  left: 14rem;
  top: 8.9rem;
  width: 5.7rem;
  height: 5.7rem;
  background: radial-gradient(circle, var(--spice) 0 28%, transparent 29% 39%, var(--plantain) 40% 55%, transparent 56%);
  border-radius: 50%;
}

.mini-card {
  position: absolute;
  display: grid;
  gap: 0.35rem;
  width: 8.2rem;
  min-height: 6.5rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  box-shadow: 0 16px 42px rgba(57, 37, 12, 0.16);
}

.mini-card span {
  width: 2rem;
  height: 2rem;
  background: var(--plantain);
  border-radius: 50%;
}

.mini-card strong {
  line-height: 1.15;
}

.card-one {
  left: 0;
  bottom: 0.6rem;
}

.card-two {
  right: 0.2rem;
  top: 0.25rem;
}

.card-two span {
  background: var(--ube);
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem;
  color: var(--white);
  background: var(--charcoal);
}

.highlight-strip div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem;
  font-weight: 800;
}

.highlight-strip span {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--plantain);
  border-radius: 50%;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading p:not(.section-kicker),
.split-copy p,
.area p {
  color: var(--muted);
}

.compact {
  max-width: 650px;
}

.pricing-note {
  max-width: 42rem;
  margin: 0.8rem auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-grid,
.package-grid,
.step-grid,
.info-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.menu-card,
.package-card,
.trust-card,
.step-grid article,
.info-grid article,
.order-form,
.faq-list details {
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 16px 46px rgba(57, 37, 12, 0.08);
}

.menu-card {
  position: relative;
  min-height: 22rem;
  padding: 1rem;
  overflow: hidden;
}

.menu-card p,
.package-card p,
.trust-card p,
.package-card li {
  color: var(--muted);
}

.menu-card strong,
.package-card strong {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--green);
  font-size: 1.15rem;
}

.package-card .best-for {
  display: inline;
  margin-top: 0;
  color: var(--charcoal);
  font-size: inherit;
}

.badge,
.package-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.58rem;
  color: var(--green);
  background: rgba(25, 83, 59, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.badge.spicy,
.badge.medium {
  color: #84340d;
  background: rgba(228, 109, 46, 0.16);
}

.badge.sweet {
  color: var(--ube-dark);
  background: rgba(112, 69, 163, 0.13);
}

.badge.mild,
.badge.limited {
  color: #76551c;
  background: rgba(248, 201, 75, 0.22);
}

.card-illustration {
  position: relative;
  height: 9.2rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0.45rem;
}

.spice-card .card-illustration {
  background: #f8d2b5;
}

.green-card .card-illustration {
  background: #cfe3d2;
}

.ube-card .card-illustration {
  background: #dfd1ee;
}

.yellow-card .card-illustration {
  background: #ffe7a4;
}

.cream-card .card-illustration {
  background: #f4e1c4;
}

.card-illustration::before,
.card-illustration::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.patty-ill::before {
  left: 18%;
  top: 28%;
  width: 58%;
  height: 45%;
  background: linear-gradient(135deg, #ed9a34, #aa4824);
  border-radius: 55% 45% 48% 52%;
}

.lumpia-ill::before {
  left: 16%;
  top: 30%;
  width: 70%;
  height: 1.35rem;
  background: #d18536;
  box-shadow: 0 1.9rem 0 #e3a554, 0 3.8rem 0 #c97933;
}

.brownie-ill::before,
.cassava-ill::before {
  inset: 24% 18%;
  background: repeating-linear-gradient(90deg, #7045a3 0 30%, #5a328b 30% 34%);
  border-radius: 0.65rem;
}

.plantain-ill::before {
  left: 17%;
  top: 20%;
  width: 4.1rem;
  height: 4.1rem;
  background: var(--plantain);
  box-shadow: 4.6rem 1.5rem 0 #e8a934, 9.1rem 0.25rem 0 #ffda68;
}

.coconut-ill::before {
  left: 20%;
  top: 27%;
  width: 3.4rem;
  height: 3.4rem;
  background: #fff7e4;
  box-shadow: 4rem 1rem 0 #ead0a0, 8rem -0.15rem 0 #fff7e4;
}

.pancit-ill::before {
  inset: 30% 12%;
  background: repeating-linear-gradient(165deg, #d59d4b 0 0.45rem, #f2c66b 0.45rem 0.7rem);
  border-radius: 1.3rem;
}

.drink-ill::before {
  left: 35%;
  top: 12%;
  width: 4.4rem;
  height: 6.8rem;
  background: linear-gradient(#ffc95e 0 22%, #dd6e2d 22% 100%);
  border: 0.35rem solid rgba(255, 255, 255, 0.65);
  border-radius: 0.7rem 0.7rem 1.4rem 1.4rem;
}

.package-card {
  padding: 1.2rem;
}

.package-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #123628);
  transform: translateY(-0.15rem);
}

.package-card.featured p,
.package-card.featured li,
.package-card.featured strong {
  color: rgba(255, 253, 247, 0.86);
}

.package-card.featured .best-for {
  color: var(--white);
}

.package-card ul {
  padding-left: 1.1rem;
}

.catering,
.area {
  display: grid;
  gap: 1.5rem;
  max-width: 1160px;
  margin: 0 auto;
}

.event-panel,
.area-list {
  display: grid;
  gap: 0.75rem;
}

.event-panel span,
.area-list span {
  padding: 1rem;
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  border-left: 0.5rem solid var(--spice);
  border-radius: 0.5rem;
  font-weight: 800;
}

.area-list span:nth-child(2),
.event-panel span:nth-child(2n) {
  border-left-color: var(--ube);
}

.area-list span:nth-child(3),
.event-panel span:nth-child(3n) {
  border-left-color: var(--green);
}

.step-grid article {
  min-height: 10rem;
  padding: 1.2rem;
}

.step-grid article p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.step-grid span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--white);
  background: var(--spice);
  border-radius: 50%;
  font-weight: 900;
}

.info-grid article {
  padding: 1.2rem;
  border-top: 0.35rem solid var(--green);
}

.info-grid article:nth-child(2) {
  border-top-color: var(--spice);
}

.info-grid article:nth-child(3) {
  border-top-color: var(--ube);
}

.info-grid article:nth-child(4) {
  border-top-color: var(--plantain);
}

.info-grid article:nth-child(5) {
  border-top-color: var(--spice);
}

.info-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-card {
  padding: 1.2rem;
  border-top: 0.35rem solid var(--spice);
}

.trust-card:nth-child(2) {
  border-top-color: var(--ube);
}

.trust-card:nth-child(3) {
  border-top-color: var(--green);
}

.trust-card p {
  margin-bottom: 0;
}

.order-form {
  display: grid;
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 2rem);
}

.order-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 800;
}

.form-intro {
  margin: 0;
  padding: 0.9rem 1rem;
  color: var(--green);
  background: rgba(25, 83, 59, 0.08);
  border: 1px solid rgba(25, 83, 59, 0.14);
  border-radius: 0.5rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.78rem 0.85rem;
  color: var(--charcoal);
  background: #fffaf0;
  border: 1px solid rgba(38, 35, 31, 0.2);
  border-radius: 0.45rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(248, 201, 75, 0.45);
  outline-offset: 2px;
  border-color: var(--green);
}

.field-error {
  border-color: #c83d22;
  box-shadow: 0 0 0 3px rgba(200, 61, 34, 0.15);
}

.form-message {
  display: none;
  padding: 0.95rem;
  color: var(--green);
  background: rgba(25, 83, 59, 0.1);
  border: 1px solid rgba(25, 83, 59, 0.16);
  border-radius: 0.5rem;
  font-weight: 800;
}

.form-message.show {
  display: block;
}

.form-message.error {
  color: #8d2d17;
  background: rgba(228, 109, 46, 0.14);
  border-color: rgba(228, 109, 46, 0.25);
}

.submit-btn {
  width: 100%;
}

.form-helper {
  margin: -0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 1rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.final-cta {
  margin: 0 clamp(1rem, 5vw, 4rem) 3rem;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(112, 69, 163, 0.95), rgba(25, 83, 59, 0.96)),
    var(--green);
  border-radius: 1rem;
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta p {
  color: rgba(255, 253, 247, 0.86);
}

.site-footer {
  padding: 1.75rem clamp(1rem, 5vw, 4rem);
  color: rgba(255, 253, 247, 0.86);
  background: var(--charcoal);
  text-align: center;
}

.footer-business {
  max-width: 900px;
  margin: 0 auto 0.55rem;
  font-weight: 800;
}

.footer-disclaimer {
  display: block;
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.8rem;
  line-height: 1.55;
}

@media (min-width: 680px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid,
  .step-grid,
  .info-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-panel,
  .area-list,
  .order-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide,
  .form-message {
    grid-column: 1 / -1;
  }
}

@media (min-width: 920px) {
  .nav-links {
    display: flex;
  }

  .hero,
  .catering,
  .area {
    grid-template-columns: 1fr 0.85fr;
  }

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

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

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

  .preorder-info .info-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .highlight-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-left: clamp(2rem, 5vw, 4rem);
    padding-right: clamp(2rem, 5vw, 4rem);
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-art {
    min-height: 20rem;
  }

  .tray {
    height: 18rem;
    border-width: 8px;
  }

  .mini-card {
    width: 7.3rem;
    min-height: 5.6rem;
    padding: 0.8rem;
    font-size: 0.88rem;
  }

  .highlight-strip {
    grid-template-columns: 1fr;
  }
}
