:root {
  --ink: #20262b;
  --muted: #5d6872;
  --paper: #ffffff;
  --surface: #f5f7f4;
  --line: #d9e0dc;
  --green: #163f35;
  --green-2: #2f6b56;
  --burgundy: #7b2f39;
  --navy: #1a3854;
  --gold: #a17632;
  --shadow: 0 18px 45px rgba(23, 37, 42, 0.13);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font: 16px/1.6 Arial, Helvetica, sans-serif;
}

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

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.45rem;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

[data-lang="id"] {
  display: none !important;
}

html.lang-id [data-lang="en"] {
  display: none !important;
}

html.lang-id [data-lang="id"] {
  display: revert !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 224, 220, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 220px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--burgundy));
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.brand-text {
  display: block;
  max-width: 245px;
  line-height: 1.15;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a,
.language-switch a {
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.2;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--ink);
  background: var(--surface);
  outline: none;
}

.site-nav a[aria-current="page"] {
  color: var(--green);
  font-weight: 700;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding-left: 0.7rem;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.language-switch a.is-active {
  color: #fff;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #14241f;
}

.page-hero {
  position: relative;
  min-height: 410px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #14241f;
}

.hero-bg,
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after,
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 32, 29, 0.88), rgba(15, 32, 29, 0.62) 48%, rgba(15, 32, 29, 0.2)),
    linear-gradient(0deg, rgba(15, 32, 29, 0.46), rgba(15, 32, 29, 0.1));
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.page-hero-content {
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.eyebrow {
  margin-bottom: 1rem;
  color: #d9e9df;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.35rem, 6vw, 5rem);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.1rem, 4.7vw, 4.4rem);
}

.lead {
  max-width: 760px;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0.72rem 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: var(--burgundy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #682632;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.button-outline {
  color: var(--green);
  border-color: var(--green);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: #edf5ef;
}

.section {
  padding: clamp(3.2rem, 7vw, 6rem) 1.25rem;
}

.section-muted {
  background: var(--surface);
}

.section-dark {
  color: #fff;
  background: var(--green);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: start;
  margin-bottom: 2.1rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-heading p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.78);
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 6px 20px rgba(23, 37, 42, 0.05);
  overflow: hidden;
}

.card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfe5e1;
}

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

.card-body {
  padding: 1.35rem;
}

.card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 0.4rem;
  color: var(--green);
  font-weight: 700;
}

.link-arrow::after {
  content: ">";
  margin-left: 0.35rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  margin: 0;
  padding: 0.8rem 0 0.8rem 1rem;
  border-left: 3px solid var(--green-2);
  color: var(--ink);
  background: rgba(47, 107, 86, 0.06);
}

.section-dark .feature-list li {
  border-left-color: #d6b06c;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.legal-table {
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-label {
  color: var(--muted);
  font-weight: 700;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-left: 4px solid var(--burgundy);
  background: #fff;
}

.product-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.product-strip .card {
  min-height: 100%;
}

.compact-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
}

.compact-list li {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: start;
}

.contact-detail {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.2rem;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--ink);
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cdd7d2;
  border-radius: 6px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  background: #fff;
}

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

.field input:focus,
.field textarea:focus {
  border-color: var(--green-2);
  outline: 3px solid rgba(47, 107, 86, 0.16);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
}

.legal-title {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.legal-meta {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.site-footer {
  padding: 2.4rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  background: #18231f;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 0.9fr);
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  color: #fff;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-note {
  margin-top: 1rem;
  color: #e8efe8;
  font-weight: 700;
}

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

@media (max-width: 920px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .nav-wrap {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section-heading,
  .split,
  .product-strip,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body,
  button,
  input,
  textarea {
    font-size: 15px;
  }

  .hero {
    min-height: 560px;
  }

  .page-hero {
    min-height: 380px;
  }

  .hero-bg::after,
  .page-hero-bg::after {
    background:
      linear-gradient(90deg, rgba(15, 32, 29, 0.9), rgba(15, 32, 29, 0.72)),
      linear-gradient(0deg, rgba(15, 32, 29, 0.45), rgba(15, 32, 29, 0.1));
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    max-width: 220px;
  }

  .nav-wrap {
    flex-direction: column;
  }

  .language-switch {
    padding-left: 0;
    border-left: 0;
  }

  .site-nav a,
  .language-switch a {
    padding: 0.5rem 0.55rem;
  }

  .grid-2,
  .grid-3,
  .form-row {
    grid-template-columns: 1fr;
  }

  .legal-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
