:root {
  --paper: #fff9f0;
  --paper-strong: #fff2df;
  --ink: #161616;
  --muted: #645f58;
  --red: #de1f2b;
  --red-dark: #9f121f;
  --green: #1f8f69;
  --mint: #cce9d8;
  --yellow: #f6c847;
  --line: rgba(22, 22, 22, 0.14);
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(81, 25, 17, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.no-scroll {
  overflow: hidden;
}

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

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

[data-lucide] {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 249, 240, 0.82);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 32px;
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 240, 0.96);
  box-shadow: 0 12px 32px rgba(50, 31, 20, 0.12);
  height: 68px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  position: relative;
  z-index: 23;
}

.brand img {
  background: var(--white);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius);
  height: 42px;
  object-fit: contain;
  padding: 3px;
  width: 64px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.main-nav a {
  border-radius: 999px;
  color: #292522;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 13px;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--ink);
  color: var(--white);
}

.nav-toggle {
  align-items: center;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
  z-index: 24;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 24px;
  width: 100%;
}

.hero {
  background: var(--red-dark);
  color: var(--white);
  min-height: 92svh;
  overflow: hidden;
  padding: 154px 24px 104px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(110deg, rgba(22, 22, 22, 0.82) 0%, rgba(22, 22, 22, 0.58) 44%, rgba(159, 18, 31, 0.28) 100%),
    url("assets/suki-cover.png");
  background-position: center top, center 54%;
  background-repeat: no-repeat;
  background-size: cover, min(1128px, 120vw) auto;
  content: "";
  inset: 0;
  position: absolute;
  transform: scale(1.04);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 90px 90px;
  content: "";
  inset: 0;
  opacity: 0.26;
  position: absolute;
}

.hero-bg {
  background:
    radial-gradient(circle at center, rgba(246, 200, 71, 0.9) 0 4px, transparent 5px),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.78) 0 5px, transparent 6px);
  background-position: 0 0, 40px 40px;
  background-size: 80px 80px;
  bottom: -40px;
  height: 260px;
  opacity: 0.34;
  position: absolute;
  right: -30px;
  transform: rotate(-8deg);
  width: 46%;
  z-index: 1;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--green);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: 5.2rem;
  margin-bottom: 24px;
  max-width: 760px;
}

h2 {
  font-size: 3rem;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.24rem;
  max-width: 660px;
}

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

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.nav-toggle svg {
  height: 19px;
  width: 19px;
}

.button.primary {
  background: var(--yellow);
  color: #16110c;
  box-shadow: 0 16px 34px rgba(246, 200, 71, 0.26);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button.outline {
  background: transparent;
  border: 1px solid rgba(22, 22, 22, 0.2);
  color: var(--ink);
}

.button:hover {
  box-shadow: 0 18px 38px rgba(58, 30, 22, 0.16);
  transform: translateY(-2px);
}

.hero-strip {
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  bottom: 0;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  left: 0;
  position: absolute;
  right: 0;
  z-index: 2;
}

.hero-strip div {
  background: rgba(255, 249, 240, 0.11);
  min-height: 94px;
  padding: 22px 32px;
}

.hero-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-strip strong,
.hero-strip span {
  display: block;
}

.hero-strip strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  margin-top: 7px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.intro-section {
  background: var(--paper);
  padding-top: 86px;
}

.two-column {
  align-items: start;
  display: grid;
  gap: 56px;
  grid-template-columns: 0.9fr 1.1fr;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading p:not(.eyebrow),
.intro-copy p,
.visual-copy p,
.reach-panel p,
.cta-layout p {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-copy {
  border-left: 4px solid var(--red);
  padding-left: 28px;
}

.facts-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-strong) 100%);
  padding-top: 0;
}

.facts-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fact-card {
  background: var(--white);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(47, 28, 15, 0.08);
  min-height: 196px;
  padding: 24px;
}

.fact-card svg {
  background: var(--mint);
  border-radius: var(--radius);
  color: var(--green);
  height: 42px;
  margin-bottom: 24px;
  padding: 10px;
  width: 42px;
}

.fact-card span,
.ops-card span,
.timeline-item span {
  color: var(--red);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.fact-card strong {
  display: block;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.12rem;
  line-height: 1.24;
}

.dark-section {
  background: #161616;
  color: var(--white);
}

.dark-section .section-heading p:not(.eyebrow),
.dark-section .ops-card p {
  color: rgba(255, 255, 255, 0.68);
}

.ops-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.ops-card {
  background: #202020;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  min-height: 270px;
  padding: 24px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease;
}

.ops-card:hover {
  border-color: rgba(246, 200, 71, 0.6);
  transform: translateY(-4px);
}

.ops-card svg {
  color: var(--yellow);
  height: 38px;
  margin: 16px 0 28px;
  width: 38px;
}

.ops-card span {
  color: rgba(246, 200, 71, 0.86);
}

.visual-section {
  background: var(--white);
}

.visual-grid {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: 0.95fr 1.05fr;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

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

.mini-list svg {
  background: var(--mint);
  border-radius: 999px;
  color: var(--green);
  height: 24px;
  padding: 5px;
  width: 24px;
}

.brand-figure {
  background: var(--paper);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.brand-figure img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.brand-figure figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 14px 18px 18px;
}

.reach-section {
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.94), rgba(255, 242, 223, 0.96)),
    repeating-linear-gradient(45deg, rgba(31, 143, 105, 0.16) 0 1px, transparent 1px 26px);
}

.compact {
  max-width: 760px;
}

.reach-layout {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 34px;
}

.map-board {
  background:
    linear-gradient(135deg, rgba(222, 31, 43, 0.12), rgba(31, 143, 105, 0.14)),
    var(--white);
  border: 1px solid rgba(22, 22, 22, 0.09);
  border-radius: var(--radius);
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.map-board::before {
  background:
    linear-gradient(90deg, rgba(22, 22, 22, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(22, 22, 22, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  inset: 0;
  position: absolute;
}

.map-board::after {
  background: var(--red);
  content: "";
  height: 3px;
  left: 16%;
  position: absolute;
  top: 54%;
  transform: rotate(-6deg);
  transform-origin: left center;
  width: 72%;
}

.pin {
  background: var(--ink);
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(22, 22, 22, 0.22);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 8px 12px;
  position: absolute;
  z-index: 2;
}

.pin::before {
  background: var(--yellow);
  border-radius: 999px;
  content: "";
  height: 10px;
  left: -4px;
  position: absolute;
  top: -5px;
  width: 10px;
}

.jogja { left: 43%; top: 47%; }
.semarang { left: 42%; top: 32%; }
.malang { left: 62%; top: 58%; }
.surabaya { left: 74%; top: 52%; }
.bandung { left: 26%; top: 50%; }
.jakarta { left: 12%; top: 39%; }
.bali { left: 83%; top: 69%; }

.reach-panel {
  background: var(--white);
  border: 1px solid rgba(22, 22, 22, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(47, 28, 15, 0.08);
  padding: 30px;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.region-tags span {
  background: var(--paper-strong);
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 999px;
  font-weight: 800;
  padding: 9px 12px;
}

.portfolio-section {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(47, 28, 15, 0.08);
  overflow: hidden;
}

.card-media {
  align-items: center;
  display: flex;
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.product-media {
  background:
    linear-gradient(135deg, rgba(222, 31, 43, 0.98), rgba(159, 18, 31, 0.96));
  color: var(--white);
  gap: 8px;
  justify-content: center;
}

.onigiri-shape {
  background: var(--white);
  clip-path: polygon(50% 0%, 95% 82%, 5% 82%);
  height: 130px;
  position: absolute;
  top: 38px;
  width: 150px;
}

.onigiri-shape::after {
  background: var(--red);
  border-radius: 3px 3px 0 0;
  bottom: 22px;
  content: "";
  height: 42px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 48px;
}

.product-media span {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 8px 10px;
  position: relative;
}

.system-media {
  background: var(--ink);
  color: var(--white);
  flex-wrap: wrap;
  gap: 10px;
}

.system-media span {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 800;
  padding: 16px;
  text-align: center;
  width: calc(50% - 5px);
}

.system-media span:nth-child(5) {
  background: var(--yellow);
  color: var(--ink);
  width: 100%;
}

.people-media {
  background:
    repeating-linear-gradient(45deg, rgba(222, 31, 43, 0.14) 0 2px, transparent 2px 18px),
    var(--paper-strong);
  justify-content: center;
}

.people-media img {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(22, 22, 22, 0.12);
  padding: 18px;
  width: 190px;
}

.card-body {
  padding: 24px;
}

.card-body svg {
  color: var(--green);
  height: 32px;
  margin-bottom: 20px;
  width: 32px;
}

.card-body p {
  color: var(--muted);
  margin-bottom: 0;
}

.timeline-section {
  background: #fff;
}

.timeline-wrap {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.8fr 1.2fr;
}

.timeline {
  border-left: 3px solid var(--red);
  display: grid;
  gap: 18px;
  padding-left: 28px;
}

.timeline-item {
  background: var(--paper);
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}

.timeline-item::before {
  background: var(--yellow);
  border: 4px solid var(--white);
  border-radius: 999px;
  content: "";
  height: 16px;
  left: -40px;
  position: absolute;
  top: 24px;
  width: 16px;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.cta-section {
  background: var(--red);
  color: var(--white);
}

.cta-layout {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr 0.8fr;
}

.cta-layout .eyebrow,
.cta-layout p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-layout h2 {
  max-width: 760px;
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.cta-section .button.outline {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
}

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

.site-footer img {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 18px;
  padding: 8px;
  width: 150px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .two-column,
  .visual-grid,
  .reach-layout,
  .timeline-wrap,
  .cta-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    position: relative;
    margin: 60px -24px -104px;
  }

  .hero-strip div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero {
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
  }

  .brand span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    background: var(--paper);
    border-left: 1px solid rgba(22, 22, 22, 0.1);
    bottom: 0;
    box-shadow: -20px 0 48px rgba(28, 19, 14, 0.14);
    display: grid;
    gap: 4px;
    padding: 92px 20px 20px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 220ms ease;
    width: min(320px, 88vw);
    z-index: 22;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    border-radius: var(--radius);
    padding: 14px;
  }

  .container {
    padding: 0 18px;
  }

  .hero {
    min-height: 88svh;
    padding: 124px 18px 0;
  }

  .hero::before {
    background-position: center top, center 18%;
    background-size: cover, 960px auto;
  }

  .hero-bg {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .section {
    padding: 70px 0;
  }

  .intro-copy {
    border-left-width: 3px;
    padding-left: 18px;
  }

  .facts-grid,
  .ops-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .map-board {
    min-height: 360px;
  }

  .pin {
    font-size: 0.68rem;
    padding: 6px 8px;
  }

  .jogja { left: 35%; top: 47%; }
  .semarang { left: 32%; top: 30%; }
  .malang { left: 58%; top: 60%; }
  .surabaya { left: 63%; top: 49%; }
  .bandung { left: 17%; top: 52%; }
  .jakarta { left: 8%; top: 39%; }
  .bali { left: 71%; top: 72%; }

  .cta-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-strip strong {
    font-size: 1.45rem;
  }
}
