/* ===== ayana.izz — design tokens ===== */
:root {
  --gold: #d9a441;
  --gold-deep: #b5791f;
  --cream: #fdf6ea;
  --cream-deep: #f7ecd7;
  --cream-2: #f4e9d3;
  --ink: #2b2115;
  --ink-soft: #6b5d4c;
  --white: #ffffff;
  --line: #ecdfc7;
  --lav: #cdbdf0;
  --lav-deep: #6b4fb0;
  --shadow: 0 12px 32px rgba(60, 40, 10, 0.08);
  --shadow-lg: 0 20px 48px rgba(60, 40, 10, 0.14);
  --radius: 20px;
  --green: #2f9e5c;
  --red: #c0392b;
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; color: var(--ink); }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.6; cursor: progress; transform: none; }

.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { box-shadow: var(--shadow-lg); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--cream-deep); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #423523; }

/* ===== Header ===== */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; }
.brand-mark { font-size: 1.3rem; }
.brand .dot { color: var(--gold-deep); }
.nav { display: flex; align-items: center; gap: 1.6rem; font-weight: 500; font-size: 0.95rem; }
.nav a:not(.nav-cta):hover { color: var(--gold-deep); }
.nav-cta { background: var(--ink); color: #fff; padding: 0.55rem 1.2rem; border-radius: 999px; }
.nav-cta:hover { background: var(--gold-deep); }

/* ===== Hero ===== */
.hero { padding: 4rem 0 3rem; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 600; color: var(--gold-deep); margin-bottom: 0.6rem; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.hero .hl { color: var(--gold-deep); }
.lede { color: var(--ink-soft); font-size: 1.05rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin: 1.6rem 0; }
.hero-badges { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: 0.9rem; color: var(--ink-soft); }
.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-price-chip {
  position: absolute; bottom: -1rem; left: -1rem;
  background: var(--white); border-radius: 999px; padding: 0.7rem 1.2rem;
  box-shadow: var(--shadow); font-size: 0.9rem; border: 1px solid var(--line);
}
.hero-price-chip strong { color: var(--gold-deep); font-family: var(--font-display); font-size: 1.1rem; }

/* ===== Trust strip ===== */
.strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 0; text-align: center; }
.strip-inner strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.strip-inner span { display: block; color: var(--ink-soft); font-size: 0.85rem; }

/* ===== Booking / date selection ===== */
.booking { padding: 4rem 0; }
.date-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 260px)); gap: 1.2rem; justify-content: center; }
.date-card {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  background: var(--white); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.2rem; cursor: pointer; font: inherit; color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.date-card:hover:not(:disabled) { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.date-card.selected { border-color: var(--gold-deep); background: var(--cream-deep); box-shadow: var(--shadow); }
.date-card:disabled, .date-card-full { cursor: not-allowed; opacity: 0.55; }
.date-card-day { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.date-card-date { color: var(--ink-soft); font-size: 0.9rem; }
.date-card-capacity { margin-top: 0.5rem; font-size: 0.82rem; font-weight: 600; padding: 0.2rem 0.7rem; border-radius: 999px; }
.date-card-capacity.available { background: rgba(47, 158, 92, 0.12); color: var(--green); }
.date-card-capacity.full { background: rgba(192, 57, 43, 0.12); color: var(--red); }
.booking-hint { text-align: center; color: var(--ink-soft); margin-top: 1.4rem; font-size: 0.92rem; }
.booking-hint-error { color: var(--red); font-weight: 600; }
.booking-closed {
  max-width: 560px; margin: 0 auto; text-align: center; background: var(--cream-2);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; color: var(--ink-soft);
}
.selected-date-note { color: var(--gold-deep); font-weight: 600; font-size: 0.92rem; margin: 0.6rem 0 0; }

/* ===== About ===== */
.about { padding: 5rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about-badge {
  position: absolute; bottom: -1rem; right: -1rem; background: var(--gold); color: #fff;
  border-radius: 999px; padding: 0.6rem 1.1rem; font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow);
}
.about-copy p { color: var(--ink-soft); }
.about-points { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1.2rem; font-weight: 500; }

/* ===== Section heads ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.6rem; }
.section-sub { color: var(--ink-soft); }

/* ===== Menu / gallery ===== */
.menu { padding: 5rem 0; background: var(--cream-deep); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 1rem; }
.gal-item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.gal-lg { grid-row: span 2; grid-column: span 1; }
.gal-lg img { aspect-ratio: 1/2.05; }
.gal-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.8rem 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent); color: #fff; font-size: 0.85rem; font-weight: 500;
}

/* ===== Pricing cards ===== */
.pricing { padding: 5rem 0; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; position: relative; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card-featured { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.ribbon {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: var(--gold-deep); color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 0.3rem 0.9rem; border-radius: 999px; letter-spacing: 0.03em;
}
.card-head h3 { font-size: 1.3rem; margin-bottom: 0.1rem; }
.card-tag { color: var(--ink-soft); font-size: 0.85rem; }
.price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; margin: 0.6rem 0 0.1rem; }
.price .rm { font-size: 1.1rem; vertical-align: super; color: var(--gold-deep); }
.price.sm { font-size: 1.8rem; }
.per-pc { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 1.2rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.6rem; flex: 1; font-size: 0.92rem; }
.feature-list li::before { content: "✓ "; color: var(--gold-deep); font-weight: 700; }
.card .buy, .bulk-card .buy { width: 100%; }

/* ===== Catering ===== */
.catering { padding: 5rem 0; background: var(--ink); color: #fff; }
.catering-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.catering-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.catering .eyebrow { color: var(--gold); }
.catering .section-sub, .catering-copy p { color: rgba(255,255,255,0.75); }
.bulk-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 1.6rem 0; }
.bulk-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 1.4rem; }
.bulk-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.bulk-top h3 { font-size: 1.1rem; }
.bulk-card .per-pc { color: rgba(255,255,255,0.6); }
.fine { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.fine a { color: var(--gold); text-decoration: underline; }

/* ===== Gift hint ===== */
.gift-hint {
  display: inline-block;
  margin: 0.9rem auto 0;
  background: var(--white);
  border: 1px dashed var(--lav);
  color: var(--lav-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

/* ===== Delivery band ===== */
.delivery-band { padding: 2.6rem 0; background: var(--cream-2); }
.delivery-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: 0 10px 30px -22px rgba(74, 54, 30, 0.5);
}
.delivery-icon {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.delivery-text h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.delivery-text p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.delivery-areas { margin-top: 0.6rem !important; display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; }
.area-chip {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}

/* ===== Steps ===== */
.steps { padding: 5rem 0; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.step-grid-4 { grid-template-columns: repeat(4, 1fr); }
.step { text-align: center; padding: 1.6rem; }
.step-no {
  display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem;
  border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #fff;
  font-family: var(--font-display); font-weight: 600; margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Reviews ===== */
.reviews { padding: 5rem 0; background: var(--cream-deep); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review { background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); margin: 0; }
.stars { color: var(--gold-deep); letter-spacing: 0.15em; margin-bottom: 0.6rem; }
.review blockquote { margin: 0 0 1rem; font-style: italic; color: var(--ink); }
.review figcaption { color: var(--ink-soft); font-size: 0.85rem; font-weight: 600; }

/* ===== FAQ ===== */
.faq { padding: 5rem 0; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-list details {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.4rem;
}
.faq-list summary { font-weight: 600; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; color: var(--gold-deep); font-weight: 700; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin-top: 0.8rem; color: var(--ink-soft); }

/* ===== CTA ===== */
.cta { padding: 5rem 0; text-align: center; }
.cta h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.cta p { color: var(--ink-soft); max-width: 46ch; margin-inline: auto; }
.cta-actions { display: flex; justify-content: center; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 2.6rem 0; }
.footer-inner { text-align: center; }
.site-footer .brand { justify-content: center; color: #fff; }
.footer-tag { margin-top: 0.4rem; }
.footer-allergen { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin: 0.6rem auto 0.8rem; max-width: 44rem; line-height: 1.5; }
.footer-fine { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* ===== Modal ===== */
.modal {
  position: fixed; inset: 0; background: rgba(30, 22, 10, 0.55);
  display: flex; align-items: center; justify-content: center; z-index: 50; padding: 1.5rem;
}
.modal[hidden] { display: none; }
.modal-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem; max-width: 420px; width: 100%;
  position: relative; box-shadow: var(--shadow-lg); text-align: center;
}
.modal-close {
  position: absolute; top: 0.8rem; right: 0.8rem; width: 2rem; height: 2rem; border-radius: 50%;
  border: none; background: var(--cream-deep); font-size: 1.1rem; cursor: pointer; line-height: 1;
}
.modal-desc { color: var(--ink-soft); margin-bottom: 1.4rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .catering-inner { grid-template-columns: 1fr; }
  .about-inner { direction: rtl; } /* keep image above copy on stack */
  .about-inner > * { direction: ltr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .cards, .step-grid, .step-grid-4, .review-grid { grid-template-columns: 1fr; }
  .card-featured { transform: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gal-lg { grid-column: span 2; grid-row: span 1; }
  .gal-lg img { aspect-ratio: 16/9; }
  .bulk-cards { grid-template-columns: 1fr; }
  .delivery-inner { flex-direction: column; text-align: center; }
  .delivery-areas { justify-content: center; }
  .nav { display: none; }
}

@media (max-width: 560px) {
  .hero-price-chip { left: 0.6rem; bottom: -0.8rem; }
  .about-badge { right: 0.6rem; bottom: -0.8rem; }
  .date-cards { grid-template-columns: 1fr; }
}
