/* ==== WINGS & THINGS — appetising rebuild ==== */
:root {
  --paper:        #F4E4C1;   /* warm menu parchment */
  --paper-deep:   #E8D2A1;   /* deeper parchment */
  --cream:        #FAF0DA;   /* lightest cream */
  --paprika:      #C9302C;   /* deep paprika red */
  --paprika-deep: #9B2521;
  --sriracha:     #E63946;   /* hot bright red */
  --mustard:      #F4B41A;   /* mustard yellow */
  --mustard-deep: #D89A0A;
  --char:         #1F140C;   /* charred near-black */
  --ink:          #2A1810;   /* rich brown ink */
  --ink-soft:     #5A3F2E;
  --muted:        #8C6F58;
  --green:        #3D6B3A;
  --border:       rgba(42, 24, 16, 0.18);
  --border-soft:  rgba(42, 24, 16, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background-color: var(--paper);
  /* subtle paper grain — generated SVG noise, no external request */
  background-image:
    radial-gradient(rgba(42, 24, 16, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(42, 24, 16, 0.025) 1px, transparent 1px);
  background-size: 28px 28px, 14px 14px;
  background-position: 0 0, 14px 14px;
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, .serif {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* HEADER */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 228, 193, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}
.nav {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.4rem;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.4rem;
  font-style: italic;
}
.brand .b1 { color: var(--paprika); }
.brand .b2 { color: var(--ink); }
.brand-mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-mark.no-image { background: var(--paprika); color: var(--cream); }

.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.92rem; font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--paprika); }

/* HAMBURGER (mobile only) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-toggle:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* TICKET-STYLE BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-style: italic;
  font-size: 1rem;
  cursor: pointer;
  border: 2.5px solid var(--ink);
  background: var(--mustard);
  color: var(--ink);
  border-radius: 4px;
  position: relative;
  transition: all 0.15s ease-out;
  box-shadow: 4px 4px 0 var(--ink);
  letter-spacing: 0.01em;
  text-transform: none;
  transform: rotate(-1deg);
}
.btn:hover { transform: rotate(-1deg) translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.btn:active { transform: rotate(-1deg) translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--paprika); color: var(--cream); }
.btn-secondary { background: var(--mustard); color: var(--ink); }
.btn-dark { background: var(--char); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-large { padding: 1.05rem 2.2rem; font-size: 1.1rem; }
.btn:nth-of-type(even) { transform: rotate(1deg); }
.btn:nth-of-type(even):hover { transform: rotate(1deg) translate(-2px, -2px); }
.btn:nth-of-type(even):active { transform: rotate(1deg) translate(2px, 2px); }

/* HERO */
.hero {
  padding: 4rem 1.4rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background:
    radial-gradient(ellipse 600px 300px at 80% 20%, rgba(244, 180, 26, 0.18), transparent 70%),
    radial-gradient(ellipse 700px 400px at 10% 90%, rgba(201, 48, 44, 0.15), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative; z-index: 1;
}

/* Bunting flags (SVG-style, no image needed) */
.bunting {
  display: flex; gap: 6px; justify-content: center;
  margin-bottom: 1.8rem;
}
.bunting span {
  width: 22px; height: 28px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  animation: bSway 3s ease-in-out infinite;
}
.bunting span:nth-child(1) { background: var(--paprika); animation-delay: 0s; }
.bunting span:nth-child(2) { background: var(--mustard); animation-delay: 0.15s; }
.bunting span:nth-child(3) { background: #2D5BA8; animation-delay: 0.3s; }
.bunting span:nth-child(4) { background: var(--paprika); animation-delay: 0.45s; }
.bunting span:nth-child(5) { background: var(--mustard); animation-delay: 0.6s; }
.bunting span:nth-child(6) { background: #2D5BA8; animation-delay: 0.75s; }
.bunting span:nth-child(7) { background: var(--paprika); animation-delay: 0.9s; }
@keyframes bSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

.hero-logo-wt {
  max-width: 360px; width: 78%;
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 14px 0 rgba(42, 24, 16, 0.12));
  animation: wtFloat 6s ease-in-out infinite;
}
@keyframes wtFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* HERO SCENE — flag-only mode: full-width faded Philippines flag backdrop */
.hero-scene {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 2rem;
  perspective: 1200px;
  transform-style: preserve-3d;
  cursor: default;
  --scrollScale: 1;
}

/* Hero positions */
.hero { position: relative; overflow: hidden; }
.hero-grid { position: relative; z-index: 2; }

/* Faded Philippines flag backdrop — full-bleed behind everything */
.hero-flag-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.14;
  filter: saturate(1.2);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 30%, var(--paper) 80%);
  pointer-events: none;
}

/* Chef stage (where chef stands) */
.chef-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1.08;
  margin: 0 auto 2rem;
  z-index: 2;
}

/* HERO TEXT — clean fade-in on page load */
.hero-reveal {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) 0.1s 1 forwards;
  will-change: opacity, transform;
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}



/* Rotating flag halo behind chef */
.flag-halo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  filter: saturate(1.1) drop-shadow(0 0 30px rgba(244, 180, 26, 0.25));
}
.halo-spin {
  transform-origin: 0 0;
  animation: haloRotate 60s linear infinite;
}
@keyframes haloRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.sun-rays {
  transform-origin: 0 0;
  animation: sunPulse 3s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* CHEF SVG (bitmoji-style illustration) */
.chef-svg {
  position: relative;
  width: 100%; height: 100%;
  z-index: 2;
  filter: drop-shadow(0 20px 30px rgba(42, 24, 16, 0.18));
  display: block;
  overflow: visible;
}

/* BODY BREATHE */
.chef-body-g {
  transform-origin: 250px 580px;
  animation: chefBreathe 3.2s ease-in-out infinite;
  will-change: transform;
}
@keyframes chefBreathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.012); }
}

/* EYE BLINK */
.eyes {
  transform-origin: 250px 220px;
  animation: blink 4.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  94%, 96% { transform: scaleY(0.05); }
}

/* HAT TILT */
.hat-g {
  transform-origin: 250px 160px;
  animation: hatTilt 3.2s ease-in-out infinite;
}
@keyframes hatTilt {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}

/* PONYTAILS — sway opposite directions */
.ponytail-l { transform-origin: 178px 218px; animation: ponytailL 1.8s ease-in-out infinite; }
.ponytail-r { transform-origin: 322px 218px; animation: ponytailR 1.8s ease-in-out infinite; }
@keyframes ponytailL {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(5deg); }
}
@keyframes ponytailR {
  0%, 100% { transform: rotate(3deg); }
  50% { transform: rotate(-5deg); }
}




/* Steam puffs rising */
.steam-puff {
  fill: rgba(255, 255, 255, 0.8);
  filter: blur(4px);
  animation: steamRise 2.6s ease-out infinite;
  transform-origin: center;
  opacity: 0;
}
@keyframes steamRise {
  0% { opacity: 0; transform: translate(0, 0) scale(0.6); }
  20% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(0, -90px) scale(1.6); }
}


@media (max-width: 600px) {
  .hero-scene { max-width: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  .bunting span, .hero-reveal { animation: none; }
  .hero-reveal { opacity: 1; transform: none; }
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  margin-bottom: 1.2rem;
  max-width: 880px;
}
.hero h1 .accent { color: var(--paprika); font-style: italic; }
.hero h1 .underline {
  background: linear-gradient(180deg, transparent 65%, var(--mustard) 65%);
  padding: 0 0.15em;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 0 auto 2rem;
  max-width: 580px;
}
.hero-lead strong { color: var(--ink); }
.hero-cta { display: flex; gap: 1.1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }

.hero-meta {
  display: inline-flex; gap: 2rem; flex-wrap: wrap;
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 0.9rem 1.5rem;
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transform: rotate(-0.5deg);
}
.hero-meta strong { color: var(--paprika); }

/* SECTIONS */
section { padding: 5rem 1.4rem; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--paprika);
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 1rem;
}
.section-head h2 .accent { color: var(--paprika); font-style: italic; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* CARDS / SIGNATURE STRIP */
.signature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.sig-card {
  background: var(--cream);
  border: 2.5px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sig-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.sig-card:nth-child(odd) { transform: rotate(-0.6deg); }
.sig-card:nth-child(even) { transform: rotate(0.6deg); }
.sig-card:nth-child(odd):hover { transform: rotate(-0.6deg) translate(-3px, -3px); }
.sig-card:nth-child(even):hover { transform: rotate(0.6deg) translate(-3px, -3px); }

/* PHOTO PLACEHOLDER */
.photo-placeholder, .sig-img {
  aspect-ratio: 4/3;
  border-bottom: 2.5px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.sig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-placeholder::after, .sig-img[data-label]::after {
  content: attr(data-label);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 0.5rem 1rem;
  border: 2px dashed var(--ink-soft);
  border-radius: 4px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.photo-placeholder {
  background: repeating-linear-gradient(45deg, var(--paper-deep) 0 12px, var(--paper) 12px 24px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 1rem;
}

.sig-body { padding: 1.4rem 1.6rem 1.6rem; }
.sig-body h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.sig-body p { color: var(--ink-soft); font-size: 0.95rem; }
.sig-tag {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.7rem;
  transform: rotate(-1.5deg);
}

/* CTA STRIP */
.strip {
  background: var(--char);
  color: var(--cream);
  padding: 4.5rem 1.4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.strip::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(244, 180, 26, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 48, 44, 0.18), transparent 50%);
}
.strip > * { position: relative; z-index: 1; }
.strip h2 { color: var(--cream); margin-bottom: 1rem; font-size: clamp(1.9rem, 4vw, 3rem); }
.strip h2 .accent { color: var(--mustard); font-style: italic; }
.strip p { color: rgba(250, 240, 218, 0.75); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* CATERING CALLOUT */
.catering-callout {
  background: var(--char);
  color: var(--cream);
  padding: 3.5rem 2rem;
  border-radius: 8px;
  border: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-0.4deg);
}
.catering-callout::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(244, 180, 26, 0.18), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(201, 48, 44, 0.18), transparent 60%);
}
.catering-callout > * { position: relative; z-index: 1; }
.catering-callout .pill {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 0.35rem 0.95rem;
  border-radius: 3px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
  transform: rotate(-2deg);
}
.catering-callout h2 { color: var(--cream); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.catering-callout h2 .accent { color: var(--mustard); font-style: italic; }
.catering-callout p { color: rgba(250, 240, 218, 0.8); margin-bottom: 1.6rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: 6px;
  border: 2.5px solid var(--ink);
  background: var(--paper-deep) center/cover;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s;
}
.gallery-item:nth-child(2n) { transform: rotate(1deg); }
.gallery-item:nth-child(3n) { transform: rotate(-1.5deg); }
.gallery-item:hover { transform: scale(1.05) rotate(0deg); }

/* FOOTER */
footer {
  background: var(--char);
  color: rgba(250, 240, 218, 0.7);
  padding: 3.5rem 1.4rem 1.8rem;
  border-top: 4px solid var(--ink);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-grid h4 {
  font-family: 'Fraunces', serif;
  color: var(--mustard);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.footer-grid a { color: rgba(250, 240, 218, 0.7); transition: color 0.2s; display: block; padding: 0.25rem 0; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--mustard); }
.footer-grid p { font-size: 0.94rem; }
.footer-grid .brand { color: var(--cream); font-size: 1.5rem; margin-bottom: 0.8rem; }
.footer-grid .brand .b1 { color: var(--mustard); }
.footer-grid .brand .b2 { color: var(--cream); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(250, 240, 218, 0.1);
  padding-top: 1.4rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250, 240, 218, 0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  /* Show hamburger, convert nav-links into a slide-down mobile panel */
  .nav-toggle { display: flex; }
  .nav { position: relative; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-shadow: 0 8px 20px rgba(42, 24, 16, 0.12);
  }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) {
    display: block;
    padding: 1rem 1.4rem;
    border-top: 1px solid var(--border-soft);
    text-align: left;
    font-size: 1rem;
  }
  .nav-links a.btn {
    display: flex;
    margin: 0.8rem 1.4rem;
    justify-content: center;
  }
  body.nav-open .nav-links {
    max-height: 480px;
    padding: 0.4rem 0 1rem;
  }
  body.nav-open { overflow: hidden; }

  .signature { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  section, .hero { padding: 4rem 1.2rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 0.6rem; padding: 0.8rem 1.2rem; }
  .hero-logo-wt { max-width: 260px; }
}
