:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #6b7280;
  --line: #ece7dc;
  --yellow: #fffbeb;
  --yellow-deep: #fef3c7;
  --blue: #e0f2fe;
  --blue-deep: #bae6fd;
  --white: #ffffff;
  --whatsapp: #25d366;
  --radius: 28px;
  --pill: 999px;
  --header: 78px;
  --sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --shadow: 0 22px 50px rgba(17, 17, 17, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

p {
  margin: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.lede {
  color: var(--muted);
  max-width: 38rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--pill);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pill:hover {
  opacity: 0.9;
  transform: scale(1.03);
}

.pill-ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 0;
}

.play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: color-mix(in srgb, #fff 82%, transparent);
  backdrop-filter: blur(18px);
}

body.scrolled .site-header {
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.06);
}

.header-inner {
  position: relative;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 72px;
  background:
    radial-gradient(ellipse 58% 72% at 6% 8%, #fff7cc 0%, transparent 58%),
    radial-gradient(ellipse 52% 78% at 94% 22%, #dbeafe 0%, transparent 62%),
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  margin: 0 0 18px;
}

.hero .lede {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
  background: #fff;
}

.avatars img:first-child {
  margin-left: 0;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: end;
}

.chef-glow {
  position: absolute;
  right: 4%;
  top: 6%;
  width: 78%;
  height: 86%;
  background: radial-gradient(circle at 50% 42%, #cfe8ff 0%, rgba(207, 232, 255, 0.35) 46%, transparent 72%);
  pointer-events: none;
}

.hero-visual .chef {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: 520px;
  margin-left: auto;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 48% 48% 28px 28px;
  background: #eef6ff;
}

.float-card {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 72px;
  width: 214px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.float-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
}

.float-card strong {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.float-card a {
  display: inline-block;
  margin-top: 8px;
  background: #ef4444;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--pill);
}

.how {
  padding: 48px 0 80px;
  text-align: center;
}

.how h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}

.how > .lede {
  margin: 0 auto 48px;
}

.how-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 8px;
}

.how-grid svg.path {
  position: absolute;
  top: -6px;
  left: 8%;
  width: 84%;
  height: 90px;
  pointer-events: none;
  overflow: visible;
}

.step {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px 22px 26px;
  text-align: left;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.icon.blue {
  background: var(--blue);
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature {
  padding: 20px 0 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.feature-visual {
  position: relative;
  margin-bottom: 12px;
}

.feature-visual > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 36px;
}

.order-card {
  position: absolute;
  right: -8px;
  bottom: -28px;
  width: min(292px, 74%);
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.order-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.order-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.order-row img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.order-row span {
  font-size: 13px;
  font-weight: 700;
}

.order-card .pill {
  width: 100%;
  margin-top: 6px;
}

.kicker {
  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}

.feature h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.feature .lede {
  margin-bottom: 22px;
}

.clients {
  padding: 10px 0 72px;
}

.clients h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.clients .lede {
  margin-bottom: 28px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: center;
}

.logo-row img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 16px;
  padding: 10px 8px;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.recipes {
  padding: 0 0 72px;
}

.recipes h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.carousel-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.carousel-nav {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
}

.banner {
  padding: 0 0 80px;
}

.banner-inner {
  background: #d7eefe;
  border-radius: 44px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 6px;
}

.mail {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--pill);
  padding: 6px 6px 6px 18px;
  min-width: min(420px, 100%);
}

.mail input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  min-width: 0;
}

.page-hero {
  padding: 64px 0 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 18% 0%, var(--yellow) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 92% 8%, var(--blue) 0%, transparent 55%);
}

.page-hero h1,
.page-hero h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
}

.page-hero .lede {
  margin-inline: auto;
}

.hero-wash {
  background:
    radial-gradient(ellipse 60% 80% at 18% 0%, var(--yellow) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 92% 8%, var(--blue) 0%, transparent 55%);
}

.photo-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 0 56px;
}

.photo-trio img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px;
}

.stat-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: center;
  padding: 8px 0 72px;
}

.stat-number {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.stat-label {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.stat-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.panel,
.staffing {
  text-align: center;
  padding: 12px 0 64px;
}

.panel-inner {
  background: var(--ink);
  color: #fff;
  border-radius: 36px;
  padding: 56px 48px;
}

.panel-inner h2,
.staffing h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  max-width: 16ch;
  margin: 10px auto 16px;
}

.panel-inner .lede {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
}

.staffing .lede {
  margin: 0 auto;
}

/* ── Service Feature Cards ─────────────────────────── */
.service-feature {
  padding: 0 0 80px;
}

.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sf-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.sf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0,0,0,.11);
}

.sf-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
}

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

.sf-card:hover .sf-img-wrap img {
  transform: scale(1.04);
}

.sf-body {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--yellow-deep);
  color: #92400e;
  flex-shrink: 0;
}

.sf-icon.blue {
  background: var(--blue-deep);
  color: #1e40af;
}

.sf-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

.sf-body p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
  flex: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0 32px;
}

.split img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 32px;
}

.split .lede {
  max-width: none;
}

.caption {
  margin-top: 12px;
  font-weight: 700;
  text-align: center;
}

.section-intro {
  text-align: center;
  margin: 0 auto 40px;
}

.section-intro .lede {
  margin-inline: auto;
}

.values,
.staff-note,
.team,
.about-clients {
  padding: 24px 0 64px;
}

.staff-note {
  text-align: center;
}

.staff-note p {
  max-width: 46rem;
  margin: 0 auto;
  color: var(--muted);
}

.value-grid,
.team-grid,
.client-cards {
  display: grid;
  gap: 20px;
}

.value-grid {
  grid-template-columns: 1fr 1fr;
}

.value-card,
.team-card,
.client-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.value-card {
  display: flex;
  align-items: stretch;
}

.value-card img {
  width: 168px;
  flex: 0 0 168px;
  min-height: 0;
  height: auto;
  object-fit: cover;
}

.value-card div {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-card h3 {
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.team-card {
  text-align: center;
  padding-bottom: 22px;
}

.team-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
}

.team-card h3,
.team-card .role {
  padding: 0 16px;
}

.team-cta {
  text-align: center;
  margin: 0;
}

.client-cards {
  grid-template-columns: repeat(5, 1fr);
}

.client-card {
  text-align: center;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
}

.client-card img {
  max-height: 64px;
  max-width: 120px;
  object-fit: contain;
}

.visit {
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
}

.masonry {
  columns: 3;
  column-gap: 14px;
  padding: 8px 0 80px;
}

.masonry a {
  display: block;
  margin-bottom: 14px;
  break-inside: avoid;
}

.masonry img {
  width: 100%;
  border-radius: 22px;
  background: #f4f1ea;
}

.page-contact {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-contact #main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-contact .hero-wash {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
  padding: 36px 0;
}

.contact-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 10px;
  font-weight: 600;
}

.form-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.form-card .lede {
  margin-bottom: 18px;
}

.field {
  margin-bottom: 12px;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  outline: none;
  background: transparent;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-status {
  margin-top: 10px;
  color: #2563eb;
}

.site-footer {
  background: var(--yellow);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer-brand p {
  color: var(--muted);
  margin: 12px 0 16px;
  max-width: 22rem;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
}

.social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.site-footer h2 {
  font-size: 15px;
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #374151;
}

.site-footer li + li {
  margin-top: 8px;
}

.copyright {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
}

.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.split h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 16px;
}

.team h2,
.about-clients h2,
.section-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.role {
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  display: none;
  place-items: center;
  z-index: 70;
  padding: 24px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-cta,
  .how-grid svg.path {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 22px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: flex;
  }

  .hero-grid,
  .how-grid,
  .feature-grid,
  .stat-band,
  .split,
  .contact-grid,
  .footer-grid,
  .logo-row,
  .photo-trio,
  .team-grid,
  .client-cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .feature-grid,
  .stat-band,
  .contact-grid,
  .split,
  .value-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .page-contact .hero-wash {
    justify-content: flex-start;
    padding: 12px 0 32px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual .chef {
    margin: 0 auto;
    height: 420px;
    border-radius: 200px 200px 24px 24px;
  }

  .float-card {
    left: 8px;
    bottom: 24px;
  }

  .order-card {
    right: 12px;
    bottom: -16px;
  }

  .value-card img {
    width: 100%;
    flex: 0 0 180px;
    height: 180px;
  }

  .value-card {
    flex-direction: column;
  }

  .stat-band {
    text-align: center;
  }

  .stat-band h2 {
    margin-inline: auto;
  }

  .sf-grid {
    grid-template-columns: 1fr;
  }

  .sf-img-wrap {
    height: 240px;
  }

  .banner-inner,
  .mail {
    flex-direction: column;
    align-items: stretch;
  }

  .masonry {
    columns: 2;
  }
}

@media (max-width: 560px) {
  .logo-row,
  .photo-trio,
  .team-grid,
  .client-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .masonry {
    columns: 1;
  }
}
