:root {
  color-scheme: light;
  --ink: #12211f;
  --muted: #5d6b68;
  --line: #dfe8e4;
  --paper: #fbfdfb;
  --soft: #eef7f3;
  --deep: #143d36;
  --leaf: #2d6b58;
  --sky: #e6f6fb;
  --accent: #165a9f;
  --shadow: 0 20px 45px rgba(18, 33, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

button {
  font: inherit;
}

.lang-id,
body[data-lang="id"] .lang-en {
  display: none;
}

body[data-lang="id"] .lang-id {
  display: inline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(251, 253, 251, 0.92);
  border-bottom: 1px solid rgba(223, 232, 228, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--deep);
}

.language-toggle,
.nav-toggle,
.filter-button,
.currency-switcher select {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--deep);
  border-radius: 999px;
}

.language-toggle,
.nav-toggle,
.filter-button,
.currency-switcher select {
  cursor: pointer;
}

.language-toggle {
  min-width: 46px;
  padding: 8px 12px;
  font-weight: 700;
}

.currency-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.currency-switcher select {
  min-height: 38px;
  padding: 7px 30px 7px 12px;
  font-weight: 800;
  outline: none;
}

.currency-switcher select:focus {
  border-color: var(--deep);
  box-shadow: 0 0 0 3px rgba(45, 107, 88, 0.15);
}

.nav-toggle {
  display: none;
  padding: 8px 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 31, 28, 0.88), rgba(12, 31, 28, 0.58) 42%, rgba(12, 31, 28, 0.08)),
    linear-gradient(0deg, rgba(12, 31, 28, 0.78), rgba(12, 31, 28, 0) 52%);
}

.hero-content {
  position: relative;
  width: min(1120px, 100%);
  padding: 86px clamp(18px, 5vw, 72px) 46px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #aee8dc;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 6vw, 5.9rem);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions,
.section-heading,
.contact-copy {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 19px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button.primary {
  background: #ffffff;
  color: var(--deep);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.feature-split .button.primary {
  background: var(--deep);
  color: #ffffff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 12px;
  max-width: 520px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.feature-split p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.story-grid figure {
  min-width: 0;
  margin: 0;
}

.story-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.story-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.value-band div {
  padding: clamp(28px, 5vw, 54px);
  background: var(--soft);
}

.value-band strong {
  display: block;
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.08rem;
}

.value-band p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.products {
  background: #ffffff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-top: 0;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p {
  grid-column: 2;
  margin-bottom: 22px;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 32px 0 22px;
}

.filter-button {
  padding: 10px 16px;
  color: var(--muted);
}

.filter-button.active {
  background: var(--deep);
  color: #ffffff;
  border-color: var(--deep);
}

.currency-note {
  flex: 1 1 340px;
  margin: 0 0 0 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

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

.product-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(18, 33, 31, 0.05);
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--sky);
}

.product-info {
  padding: 18px;
}

.product-code {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info p:not(.product-code) {
  margin-bottom: 14px;
  color: var(--muted);
}

.product-info strong {
  display: block;
  color: var(--deep);
  font-size: 1rem;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #eef7f3 0%, #ffffff 58%, #e6f6fb 100%);
}

.feature-split > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--deep);
  color: #ffffff;
}

.contact .eyebrow {
  color: #aee8dc;
}

.contact-copy {
  margin-top: 0;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel a,
.contact-panel div {
  display: grid;
  gap: 5px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-panel a:last-child,
.contact-panel div:last-child {
  border-bottom: 0;
}

.contact-panel a:hover,
.contact-panel a:focus {
  background: rgba(255, 255, 255, 0.1);
}

.contact-panel span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.contact-panel strong {
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #0f2d29;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .section-heading,
  .intro,
  .feature-split,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p {
    grid-column: auto;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: rgba(251, 253, 251, 0.98);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a,
  .site-nav button,
  .currency-switcher {
    width: 100%;
    text-align: left;
  }

  .currency-switcher {
    display: grid;
    gap: 7px;
    padding: 8px 0;
  }

  .currency-switcher select {
    width: 100%;
  }

  .language-toggle {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image,
  .hero-overlay {
    position: absolute;
  }

  .hero-content {
    padding-top: 150px;
    padding-bottom: 34px;
  }

  .button {
    width: 100%;
  }

  .button.secondary {
    margin: 10px 0 0;
  }

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

  .story-grid,
  .value-band,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

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