:root {
  --red: #f12f2f;
  --red-dark: #c71919;
  --ink: #151515;
  --muted: #626772;
  --line: #ececec;
  --soft-red: #fff1f1;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 23, 23, 0.11);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 156px;
}

.brand img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.nav-links,
.header-actions,
.header-cta,
.header-call {
  display: none;
}

.nav-links {
  align-items: center;
  gap: 22px;
  color: #303030;
  font-size: 14px;
  font-weight: 800;
}

.header-actions {
  align-items: center;
  gap: 8px;
}

.header-cta,
.header-call {
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 24px rgba(241, 47, 47, 0.18);
}

.header-call {
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(241, 47, 47, 0.28);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
}

.compact-section {
  padding-top: 24px;
}

.hero {
  display: grid;
  gap: 24px;
  max-width: 980px;
  padding-top: 28px;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111111;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-food-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.16;
}

.hero-lead,
.section-heading p,
.cta-card p {
  color: var(--muted);
  font-size: 18px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-badges span,
.menu-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  width: fit-content;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--red-dark);
  background: var(--soft-red);
  font-size: 12px;
  font-weight: 900;
}

.minimum-box {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--soft-red);
  border: 1px solid rgba(241, 47, 47, 0.18);
  border-radius: 8px;
}

.minimum-box strong {
  color: var(--red-dark);
  font-size: 18px;
}

.minimum-box span {
  color: #563434;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(241, 47, 47, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary,
.btn-call {
  color: var(--red);
  background: var(--white);
  border-color: rgba(241, 47, 47, 0.28);
}

.btn-call {
  color: var(--red-dark);
  background: #fffafa;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.menu-grid {
  display: grid;
  gap: 14px;
}

.menu-card,
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-card {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.menu-card.is-featured {
  border-color: rgba(241, 47, 47, 0.35);
  box-shadow: 0 18px 34px rgba(241, 47, 47, 0.12);
}

.menu-primary {
  background: linear-gradient(180deg, #fff9f9 0%, #ffffff 100%);
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.menu-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  gap: 3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.menu-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-list strong {
  font-size: 15px;
}

.menu-list span,
details p {
  color: var(--muted);
}

.cta-section {
  max-width: 860px;
}

.cta-card {
  padding: clamp(24px, 5vw, 44px);
  background: var(--soft-red);
  border: 1px solid rgba(241, 47, 47, 0.18);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.cta-main {
  width: 100%;
  max-width: 420px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.site-footer {
  display: grid;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 40px auto 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  width: 220px;
  margin-bottom: 12px;
  border-radius: 6px;
}

.site-footer p,
.site-footer span,
.site-footer strong {
  display: block;
  margin: 0 0 5px;
}

.mobile-sticky-bar {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  gap: 8px;
  padding: 0;
}

.mobile-sticky-btn {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.18);
  text-align: center;
}

.mobile-call-btn {
  color: var(--red-dark);
  background: var(--white);
  border: 1px solid rgba(241, 47, 47, 0.28);
}

.mobile-sticky-btn span {
  font-size: 12px;
  font-weight: 700;
}

.mobile-sticky-btn strong {
  font-size: 16px;
}


.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.quote-modal.is-open {
  display: flex;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.quote-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(22px, 5vw, 34px);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.quote-modal-card h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 5vw, 36px);
}

.modal-note {
  margin-bottom: 18px;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #f3f3f3;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.quote-form {
  display: grid;
  gap: 10px;
}

.quote-form label {
  margin-top: 6px;
  font-weight: 900;
}

.quote-form label span {
  color: var(--muted);
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font: inherit;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(241, 47, 47, 0.10);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 820px) {
  .site-header {
    padding: 12px 28px;
  }

  .brand {
    width: 214px;
  }

  .nav-links,
  .header-actions,
  .header-cta,
  .header-call {
    display: flex;
  }

  .modal-actions {
    grid-template-columns: 1fr 0.46fr;
  }

  .hero {
    padding-top: 38px;
  }

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

  .mobile-sticky-bar {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 48px;
  }
}

@media (max-width: 819px) {
  h1 {
    font-size: 42px;
  }

  .hero {
    gap: 18px;
    padding-top: 22px;
  }

  .hero-video-wrapper,
  .hero-food-video {
    border-radius: 12px;
  }

  .section {
    padding: 42px 0;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    max-width: none;
  }

  .quote-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .quote-modal-card {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 16px;
  }
}


/* Kerabu Sani Catering update: 20260708-v6-mobile-cache-popup */
.site-header {
  min-height: 70px;
}

.hero-actions,
.header-actions {
  display: none !important;
}

.quote-modal {
  overscroll-behavior: contain;
}

.quote-modal-card {
  -webkit-overflow-scrolling: touch;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  font-size: 16px;
}

.quote-form select {
  appearance: auto;
}

@media (max-width: 819px) {
  body.modal-open {
    position: fixed;
    width: 100%;
  }

  .site-header {
    min-height: 64px;
  }

  .brand {
    width: 152px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-lead,
  .section-heading p,
  .cta-card p {
    font-size: 16px;
  }

  .quote-modal {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
  }

  .quote-modal-backdrop {
    background: rgba(0, 0, 0, 0.56);
  }

  .quote-modal-card {
    width: 100%;
    max-height: 92vh;
    padding: 22px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
  }

  .quote-modal-card h2 {
    padding-right: 42px;
    font-size: 28px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }

  .quote-form {
    gap: 9px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    min-height: 52px;
    border-radius: 10px;
  }

  .quote-form textarea {
    min-height: 92px;
  }

  .modal-actions {
    position: sticky;
    bottom: 0;
    margin: 14px -16px calc(-18px - env(safe-area-inset-bottom));
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }

  .modal-actions .btn {
    width: 100%;
    min-height: 52px;
  }
}


/* Kerabu Sani Catering update: 20260708-v6-mobile-cache-popup */
.hero-actions,
.header-actions,
.header-cta,
.header-call {
  display: none !important;
}

.mobile-sticky-bar {
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 819px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .mobile-sticky-bar {
    right: 12px;
    bottom: 10px;
    left: 12px;
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .mobile-sticky-btn {
    min-height: 58px;
    border-radius: 14px;
    text-decoration: none;
  }

  .quote-modal-card {
    max-height: 94dvh;
  }

  .modal-actions {
    grid-template-columns: 1fr 112px;
  }
}

@media (max-width: 380px) {
  .mobile-sticky-bar,
  .modal-actions {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-btn,
  .modal-actions .btn {
    min-height: 50px;
  }
}
