:root {
  --nav-h: 84px;
  --section-h: calc(100vh - 84px);
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #101010;
  --muted: rgba(16, 16, 16, 0.64);
  --line: rgba(16, 16, 16, 0.1);
  --red: #d61f27;
  --red-soft: #ffeeef;
  --shadow: 0 18px 50px rgba(16, 16, 16, 0.08);
  --container: 1160px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --page-gutter: 2.8vw;
}

@media (max-width: 571.98px) {
  :root {
    --page-gutter: 16px;
  }
}

@media (min-width: 1000px) {
  :root {
    --page-gutter: 28px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  margin: 0;
}

p {
  margin: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(214, 31, 39, 0.22);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(16, 16, 16, 0.78);
  transition: 0.2s ease;
}

.nav-links a:hover {
  background: rgba(214, 31, 39, 0.08);
  color: var(--ink);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  position: relative;
  box-shadow: 0 10px 22px rgba(16, 16, 16, 0.06);
}

.menu-btn span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: 0.2s ease;
}

.menu-btn span:nth-child(1) {
  top: 14px;
}

.menu-btn span:nth-child(2) {
  top: 22px;
}

.menu-btn span:nth-child(3) {
  top: 30px;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-shell {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
  border-top: 1px solid transparent;
  background: rgba(255, 255, 255, 0.98);
}

.mobile-nav-shell.open {
  max-height: 340px;
  border-top-color: rgba(16, 16, 16, 0.08);
}

.mobile-nav {
  display: grid;
  gap: 0;
  padding: 10px 24px 14px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  color: rgba(16, 16, 16, 0.84);
  font-weight: 600;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.page {
  padding-top: var(--nav-h);
}

.screen {
  min-height: var(--section-h);
  display: flex;
  align-items: center;
  scroll-margin-top: var(--nav-h);
}

.section-light {
  background: #f7f7f5;
  color: #111111;
}

.section-dark {
  background: linear-gradient(180deg, #111111, #161616);
  color: #fff;
}

.screen-inner {
  width: 85%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding-block: 32px;
}

.hero-screen {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 247, 245, 0.85), rgba(247, 247, 245, 0.75)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 31, 39, 0.08);
  border: 1px solid rgba(214, 31, 39, 0.14);
  color: #a31319;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-tag-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy h1 {
  margin-top: 14px;
  font-size: 3rem;
  line-height: 0.92;
  max-width: 11ch;
}

@media (min-width: 800px) {
  .hero-copy h1 {
    font-size: 6vw;
  }
}

@media (min-width: 1493.34px) {
  .hero-copy h1 {
    font-size: 5.6rem;
  }
}

.lead {
  margin-top: 18px;
  max-width: 56ch;
  font-size: 1.03rem;
  line-height: 1.9;
  color: var(--muted);
}

.section-dark .lead,
.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
  border: 0;
}

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

.btn-primary {
  background: linear-gradient(180deg, #ff4d55, var(--red));
  color: #fff;
  box-shadow: 0 14px 30px rgba(214, 31, 39, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 16, 16, 0.1);
  color: var(--ink);
}

.btn-block {
  width: 100%;
}

.hero-card {
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 40px rgba(214, 31, 39, 0.25);
  padding: 24px;
}

.card-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-card h2 {
  margin-top: 14px;
  font-size: 1.8rem;
  line-height: 1.15;
  color: #fff;
}

.hero-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.85); /* bukan var(--muted), karena di bg merah */
  line-height: 1.8;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.meta-item {
  padding: 15px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
}

.meta-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  color: var(--ink);
}

.meta-item span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-head {
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 1.8rem;
}

@media (min-width: 960px) {
  .section-head h2 {
    font-size: 3vw;
  }
}

@media (min-width: 1280px) {
  .section-head h2 {
    font-size: 2.4rem;
  }
}

.section-head p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.7;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px;
}

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

.card p {
  color: var(--muted);
  line-height: 1.85;
}

.card-black {
  background: linear-gradient(180deg, #111111, #1a1a1a);
  color: #fff;
}

.card-black p,
.section-dark .card-light p {
  color: #848484;
}

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

.value-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-list strong {
  display: block;
  margin-bottom: 4px;
}

.value-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.96rem;
}

.vision-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card-light {
  background: rgba(255, 255, 255, 0.96);
  color: #111;
}

.section-dark .card-light {
  color: #111;
}

.vision-card {
  display: grid;
  gap: 18px;
}

.vision-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.vision-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 14px 30px rgba(16, 16, 16, 0.12);
}

.vision-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-brand p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 4px;
}

.vision-block {
  display: grid;
  gap: 10px;
}

.vision-block h4 {
  font-size: 1rem;
}

.vision-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.mission-stack {
  display: grid;
  gap: 12px;
}

.mini-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ff4d55, var(--red));
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.mini-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.chip-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-bar span,
.chips span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.04);
  border: 1px solid rgba(16, 16, 16, 0.08);
  color: rgba(16, 16, 16, 0.8);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

#produk {
  padding: 80px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-card.featured {
  transform: translateY(-2px);
}

.product-image {
  height: 160px;
  background: linear-gradient(180deg, #111111, #232323);
  overflow: hidden;
  position: relative;
}

.product-image::after {
  content: "Gambar Produk";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.75rem;
  backdrop-filter: blur(10px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.product-body p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.contact-section {
  padding-top: 32px;
  padding-bottom: 28px;
}

.cta-strip {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 77, 85, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-copy h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 60ch;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.contact-info-card {
  align-self: start;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.contact-info strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.92rem;
  color: var(--ink);
}

.contact-info span {
  color: var(--muted);
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #222;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(16, 16, 16, 0.12);
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 15px;
  outline: none;
  transition: 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(214, 31, 39, 0.38);
  box-shadow: 0 0 0 4px rgba(214, 31, 39, 0.08);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.map-layout {
  display: grid;
  gap: 14px;
}

.map-head h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.map-head p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 360px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--red);
  color: #fff;
}

.footer {
  background: #0f0f0f;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  flex: 0 0 auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.footer-brand p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  justify-self: end;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
}

@media (max-width: 1120px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-copy {
    justify-self: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .target-grid,
  .vision-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .section-head {
    margin-bottom: 8px;
  }

  .section-dark {
    background: #111111;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --nav-h: 78px;
    --section-h: calc(100vh - 78px);
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .screen-inner {
    min-height: calc(100vh - var(--nav-h) - 36px);
  }

  .hero-copy h1 {
    max-width: none;
  }

  .card,
  .product-card,
  .hero-card,
  .cta-strip {
    border-radius: 18px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .footer-links {
    width: 100%;
  }

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

  .footer-inner {
    padding: 18px 0 22px;
  }

  .mobile-nav a {
    padding: 13px 0;
  }
}
