@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --ink: #0a0a0a;
  --paper: #fafafa;
  --muted: #6b6b6b;
  --line: #e5e5e5;
  --copper: #b87333;
  --copper-soft: #c9894b;
  --copper-deep: #8f5520;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

::selection {
  background: color-mix(in srgb, var(--copper) 35%, white);
  color: var(--ink);
}

.font-display {
  font-family: var(--font-display);
}

.container {
  width: min(100% - 3rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 3rem, 48rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  line-height: 0;
  max-width: min(62vw, 15.5rem);
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 2.85rem;
  aspect-ratio: 327 / 100;
  object-fit: contain;
  object-position: left center;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 1rem 0;
    min-height: 4.75rem;
  }

  .brand {
    max-width: 17rem;
  }

  .brand-logo {
    max-height: 3.35rem;
  }
}

@media (min-width: 1100px) {
  .brand {
    max-width: 18.5rem;
  }

  .brand-logo {
    max-height: 3.6rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 250, 0.85);
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-copper {
  background: var(--copper);
  color: var(--ink);
}

.btn-copper:hover {
  background: var(--copper-soft);
}

.btn-outline-light {
  border-color: rgba(250, 250, 250, 0.35);
  color: var(--paper);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--copper);
  color: var(--copper-soft);
}

.btn-outline-copper {
  border-color: rgba(184, 115, 51, 0.7);
  color: var(--paper);
  background: transparent;
}

.btn-outline-copper:hover {
  background: var(--copper);
  color: var(--ink);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-ink:hover {
  background: var(--copper);
  color: var(--ink);
}

.menu-toggle {
  background: none;
  border: 0;
  color: var(--paper);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  padding: 1.5rem 0;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  color: rgba(250, 250, 250, 0.9);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* Hero home */
.hero-home {
  position: relative;
  min-height: 88vh;
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.72) 42%,
      rgba(10, 10, 10, 0.45) 100%
    ),
    radial-gradient(ellipse at 70% 20%, rgba(184, 115, 51, 0.18), transparent 45%),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=2400&q=80");
  background-size: cover;
  background-position: center;
  animation: page-hero-ken 20s ease-in-out infinite alternate;
}

.hero-home__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
}

.hero-home__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 88vh;
  padding: 7rem 0 5rem;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}

.eyebrow-light {
  color: var(--copper-soft);
}

.hero-brand {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.35em;
  color: var(--copper-soft);
  margin: 0;
}

.hero-home h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 48rem;
  margin: 1.25rem 0 0;
}

.lead {
  max-width: 36rem;
  margin: 1.5rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.75);
}

.hero-motto {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(250, 250, 250, 0.7);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.service-link--static {
  cursor: default;
}

.service-link--static:hover {
  border-color: rgba(10, 10, 10, 0.15);
}

.service-link--static:hover h3 {
  color: inherit;
}

/* Org chart — Tim */
.org-section {
  background:
    linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
}

.org-intro {
  text-align: center;
  margin-bottom: 0.5rem;
}

.org-intro h2 {
  margin-inline: auto;
}

.org-chart {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-spine {
  width: 1px;
  height: 1.75rem;
  background: color-mix(in srgb, var(--copper) 55%, var(--line));
}

.org-tier-label {
  margin: 0.25rem 0 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-deep);
  text-align: center;
}

.org-level {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-level--solo {
  max-width: 28rem;
}

.org-level--branch {
  position: relative;
  width: 100%;
  max-width: 72rem;
}

.org-branch-line {
  display: none;
}

.org-row {
  display: grid;
  gap: 1.25rem;
  width: 100%;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .org-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

  .org-branch-line {
    display: block;
    position: absolute;
    top: 0;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: color-mix(in srgb, var(--copper) 45%, var(--line));
  }

  .org-row--4 + .org-branch-line,
  .org-level--branch:has(.org-row--4) .org-branch-line {
    left: 25%;
    right: 25%;
  }

  .org-node--child {
    position: relative;
    padding-top: 1.25rem;
  }

  .org-node--child::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 1.25rem;
    background: color-mix(in srgb, var(--copper) 45%, var(--line));
    transform: translateX(-50%);
  }
}

@media (min-width: 1024px) {
  .org-row--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .org-level--branch:has(.org-row--4) .org-branch-line {
    left: 12.5%;
    right: 12.5%;
  }
}

.org-node {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-node--apex {
  border-color: color-mix(in srgb, var(--copper) 40%, var(--line));
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);
}

.org-photo {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--copper) 50%, white);
  flex-shrink: 0;
}

.org-photo--sm {
  width: 5.75rem;
  height: 5.75rem;
}

.org-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.org-body {
  margin-top: 1rem;
  max-width: 22rem;
}

.org-badge {
  margin: 0;
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-deep);
  border-bottom: 1px solid color-mix(in srgb, var(--copper) 35%, transparent);
  padding-bottom: 0.35rem;
}

.org-node h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0.75rem 0 0;
}

.org-node--apex h3 {
  font-size: 1.35rem;
}

.org-meta {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

.org-footnote {
  margin: 3rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }

  .hero-brand {
    font-size: 1rem;
  }
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  isolation: isolate;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #0a0a0a;
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.78) 48%,
      rgba(10, 10, 10, 0.55) 100%
    ),
    radial-gradient(ellipse at 78% 18%, rgba(184, 115, 51, 0.22), transparent 42%),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=2200&q=80");
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: page-hero- ken 18s ease-in-out infinite alternate;
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
}

.page-hero__glow {
  position: absolute;
  z-index: 1;
  width: min(50vw, 26rem);
  height: min(50vw, 26rem);
  border-radius: 50%;
  right: -6%;
  top: -18%;
  background: radial-gradient(
    circle,
    rgba(184, 115, 51, 0.3) 0%,
    transparent 70%
  );
  animation: hero-glow-drift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 48rem;
  margin: 1rem 0 0;
}

.page-hero .lead {
  margin-top: 1.5rem;
}

.page-hero .btn {
  margin-top: 2rem;
}

/* Page-specific hero imagery */
.page-hero--tim .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 45%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    radial-gradient(ellipse at 80% 20%, rgba(184, 115, 51, 0.2), transparent 40%),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=2200&q=80");
  background-position: center 30%;
}

.page-hero--layanan .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.78) 48%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    radial-gradient(ellipse at 75% 15%, rgba(184, 115, 51, 0.24), transparent 42%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2200&q=80");
  background-position: center 40%;
}

.page-hero--tentang .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.93) 0%,
      rgba(10, 10, 10, 0.76) 50%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    radial-gradient(ellipse at 70% 25%, rgba(184, 115, 51, 0.2), transparent 45%),
    url("https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=2200&q=80");
}

.page-hero--kontak .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.93) 0%,
      rgba(10, 10, 10, 0.78) 48%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    radial-gradient(ellipse at 82% 20%, rgba(184, 115, 51, 0.18), transparent 40%),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=80");
  background-position: center 35%;
}

.page-hero--artikel .page-hero__bg,
.page-hero--faq .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 50%,
      rgba(10, 10, 10, 0.55) 100%
    ),
    radial-gradient(ellipse at 78% 18%, rgba(184, 115, 51, 0.18), transparent 42%),
    url("https://images.unsplash.com/photo-1521587760476-6c12a4b040da?auto=format&fit=crop&w=2200&q=80");
}

.page-hero--silo .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 48%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    radial-gradient(ellipse at 80% 15%, rgba(184, 115, 51, 0.2), transparent 42%),
    url("https://images.unsplash.com/photo-1479142506502-19b3a3b7ff33?auto=format&fit=crop&w=2200&q=80");
}

/* Silo-specific hero banners */
.page-hero--pidana .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 46%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    radial-gradient(ellipse at 78% 18%, rgba(184, 115, 51, 0.22), transparent 42%),
    url("https://images.unsplash.com/photo-1589391886645-d51941baf7fb?auto=format&fit=crop&w=2200&q=80");
  background-position: center 40%;
}

.page-hero--tata-negara .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.93) 0%,
      rgba(10, 10, 10, 0.78) 48%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    radial-gradient(ellipse at 72% 20%, rgba(184, 115, 51, 0.2), transparent 42%),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=2200&q=80");
  background-position: center 35%;
}

.page-hero--administrasi .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 48%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    radial-gradient(ellipse at 80% 16%, rgba(184, 115, 51, 0.2), transparent 42%),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2200&q=80");
  background-position: center 30%;
}

.page-hero--perdata .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.78) 48%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    radial-gradient(ellipse at 76% 18%, rgba(184, 115, 51, 0.22), transparent 42%),
    url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=2200&q=80");
  background-position: center 42%;
}

.page-hero--keluarga .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.93) 0%,
      rgba(10, 10, 10, 0.78) 50%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    radial-gradient(ellipse at 70% 22%, rgba(184, 115, 51, 0.18), transparent 44%),
    url("https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=2200&q=80");
  background-position: center 35%;
}

.page-hero--korporasi .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.78) 46%,
      rgba(10, 10, 10, 0.48) 100%
    ),
    radial-gradient(ellipse at 82% 18%, rgba(184, 115, 51, 0.2), transparent 40%),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=2200&q=80");
  background-position: center 40%;
}

.page-hero--perbankan .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 48%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    radial-gradient(ellipse at 75% 16%, rgba(184, 115, 51, 0.2), transparent 42%),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2200&q=80");
  background-position: center 35%;
}

.page-hero--ketenagakerjaan .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 48%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    radial-gradient(ellipse at 78% 20%, rgba(184, 115, 51, 0.2), transparent 42%),
    url("../images/heroes/ketenagakerjaan-indonesia.jpg");
  background-position: center 40%;
}

.page-hero--lingkungan .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.9) 0%,
      rgba(10, 10, 10, 0.72) 48%,
      rgba(10, 10, 10, 0.45) 100%
    ),
    radial-gradient(ellipse at 70% 25%, rgba(184, 115, 51, 0.16), transparent 45%),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=2200&q=80");
  background-position: center 40%;
}

.page-hero--perpajakan .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 48%,
      rgba(10, 10, 10, 0.52) 100%
    ),
    radial-gradient(ellipse at 80% 16%, rgba(184, 115, 51, 0.2), transparent 42%),
    url("https://images.unsplash.com/photo-1554224154-26032ffc0d07?auto=format&fit=crop&w=2200&q=80");
  background-position: center 38%;
}

.page-hero--portofolio .page-hero__bg {
  background-image:
    linear-gradient(
      105deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.8) 48%,
      rgba(10, 10, 10, 0.5) 100%
    ),
    radial-gradient(ellipse at 75% 18%, rgba(184, 115, 51, 0.24), transparent 42%),
    url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=2200&q=80");
  background-position: center 40%;
}

/* Portofolio */
.porto-intro .porto-motto {
  margin: 1.75rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--copper-deep);
  letter-spacing: 0.01em;
}

.porto-journey h2 {
  color: var(--paper);
}

.porto-timeline {
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(184, 115, 51, 0.45);
  margin-left: 0.35rem;
}

.porto-timeline__item {
  position: relative;
  display: grid;
  gap: 0.75rem 2rem;
  padding: 0 0 2.75rem 1.75rem;
}

.porto-timeline__item:last-child {
  padding-bottom: 0;
}

.porto-timeline__item::before {
  content: "";
  position: absolute;
  left: -0.35rem;
  top: 0.35rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(10, 10, 10, 0.9);
}

.porto-timeline__year {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-soft);
}

.porto-timeline__item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0.35rem 0 0;
  color: var(--paper);
}

.porto-timeline__item p {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  color: rgba(250, 250, 250, 0.65);
  line-height: 1.75;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .porto-timeline__item {
    grid-template-columns: 9rem 1fr;
    align-items: start;
  }
}

.porto-section-head {
  margin-bottom: 0.5rem;
}

.porto-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .porto-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (min-width: 1100px) {
  .porto-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.porto-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.75rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.porto-card:hover {
  border-color: color-mix(in srgb, var(--copper) 55%, var(--line));
  transform: translateY(-3px);
}

.porto-card__meta {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.porto-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0.85rem 0 0;
}

.porto-card p {
  margin: 1rem 0 0;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

.porto-card .text-link {
  margin-top: 1.35rem;
  font-size: 0.875rem;
}

.porto-standards {
  margin-top: 3rem;
}

@media (prefers-reduced-motion: reduce) {
  .porto-card:hover {
    transform: none;
  }
}

@keyframes page-hero-ken {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.06) translate(-1.2%, 0.8%);
  }
}

@keyframes hero-glow-drift {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 0.7;
  }
  to {
    transform: translate(-12%, 18%) scale(1.15);
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .page-hero__content {
    padding: 7.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hero__bg,
  .page-hero__glow,
  .hero-home__bg {
    animation: none !important;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}

.section-muted {
  background: #f3f3f3;
  border-block: 1px solid var(--line);
}

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

.section h2,
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0.75rem 0 0;
  max-width: 36rem;
}

.section-intro {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.grid-3 {
  display: grid;
  gap: 3rem;
  margin-top: 3.5rem;
}

.grid-2 {
  display: grid;
  gap: 2.5rem 2.5rem;
  margin-top: 3.5rem;
}

.grid-4 {
  display: grid;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

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

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

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

.rule-block {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.rule-block-dark {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.rule-block h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
}

.rule-block p {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
}

.rule-block-dark p {
  color: rgba(250, 250, 250, 0.65);
}

.service-link {
  display: block;
  border-top: 1px solid rgba(10, 10, 10, 0.15);
  padding-top: 1.5rem;
  transition: border-color 0.2s ease;
}

.service-link:hover {
  border-color: var(--copper);
}

.service-link__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.service-link h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0;
  transition: color 0.2s ease;
}

.service-link:hover h3 {
  color: var(--copper-deep);
}

.service-link .arrow {
  color: var(--copper);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-link:hover .arrow {
  opacity: 1;
}

.service-link p {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.split {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
  }
}

.text-muted {
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  color: var(--copper-deep);
  text-underline-offset: 4px;
}

.text-link:hover {
  text-decoration: underline;
}

.step-num {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--copper-soft);
}

/* CTA */
.cta-band {
  background: var(--ink);
  color: var(--paper);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 0;
  }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

/* Prose */
.prose-wrap {
  padding: 4rem 0 6rem;
}

.prose-law h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}

.prose-law h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
}

.prose-law p {
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  line-height: 1.8;
  margin: 0 0 1.15rem;
}

.prose-law ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.15rem;
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  list-style: disc;
}

.prose-law li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
}

.prose-law a {
  color: var(--copper-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-law a:hover {
  color: var(--copper);
}

/* Related — elegant pills */
.related--elegant {
  background:
    linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
  border-top: 1px solid var(--line);
}

.related-head {
  max-width: 36rem;
}

.related-pills {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}

@media (min-width: 768px) {
  .related-pills {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.related-head h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.related-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6.5rem;
  padding: 1.35rem 1.35rem 1.35rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.related-pill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--copper);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.related-pill:hover {
  border-color: color-mix(in srgb, var(--copper) 50%, var(--line));
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.06);
}

.related-pill:hover::before {
  transform: scaleY(1);
}

.related-pill__text {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.related-pill__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.3s ease;
}

.related-pill:hover .related-pill__title {
  color: var(--copper-deep);
}

.related-pill__desc {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.related-pill__arrow {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--copper);
  font-size: 1rem;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.related-pill:hover .related-pill__arrow {
  transform: translateX(3px);
  background: var(--ink);
  border-color: var(--ink);
  color: var(--copper-soft);
}

.related-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

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

.btn-outline-ink:hover {
  border-color: var(--copper);
  color: var(--copper-deep);
  background: color-mix(in srgb, var(--copper) 8%, white);
}

.btn-ghost-copper {
  border: 1px solid transparent;
  color: var(--copper-deep);
  background: transparent;
  text-decoration: none;
}

.btn-ghost-copper:hover {
  border-color: color-mix(in srgb, var(--copper) 35%, transparent);
  background: color-mix(in srgb, var(--copper) 8%, white);
}

.related-pill.reveal {
  transition:
    opacity 0.7s ease calc(var(--i, 0) * 0.08s),
    transform 0.7s ease calc(var(--i, 0) * 0.08s),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.related-pill.reveal.is-visible {
  transition:
    opacity 0.7s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .related-pill:hover,
  .related-pill:hover .related-pill__arrow {
    transform: none;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3.5rem;
  padding: 4rem 0 6rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-list li span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.25rem;
}

.contact-list a:hover {
  color: var(--copper-deep);
}

.contact-form-wrap {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .contact-form-wrap {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-top: 0;
    padding-left: 3rem;
  }
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.75rem 1rem;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--copper);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--copper-deep);
}

.note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.checklist {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  list-style: disc;
}

.checklist li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .contact-quick {
    flex-direction: row;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  padding: 1.35rem 2rem 1.35rem 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.35rem;
  color: var(--copper);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.faq-item a {
  color: var(--copper-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a {
  color: rgba(250, 250, 250, 0.65);
}

.footer-bottom a:hover {
  color: var(--copper-soft);
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.14em;
  margin: 0;
}

.footer-grid p {
  margin: 1rem 0 0;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.7);
}

.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-soft);
  margin: 0;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-links li {
  font-size: 0.875rem;
  color: rgba(250, 250, 250, 0.75);
}

.footer-links a:hover {
  color: var(--copper-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(250, 250, 250, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* Layanan page motion */
.anim-fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: layanan-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.anim-delay-1 {
  animation-delay: 0.12s;
}

.anim-delay-2 {
  animation-delay: 0.24s;
}

.anim-delay-3 {
  animation-delay: 0.36s;
}

@keyframes layanan-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.layanan-card {
  position: relative;
  padding: 1.75rem 1.25rem 1.5rem 0;
  transition:
    opacity 0.7s ease calc(var(--i, 0) * 0.08s),
    transform 0.7s ease calc(var(--i, 0) * 0.08s),
    border-color 0.35s ease,
    background 0.35s ease;
}

.layanan-card.is-visible {
  transition:
    opacity 0.7s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.layanan-card__num {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.layanan-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--copper);
}

.layanan-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width 0.4s ease;
}

.layanan-card:hover::after {
  width: 3.5rem;
}

.section-praktik {
  position: relative;
  overflow: hidden;
}

.section-praktik::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  right: -8rem;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 115, 51, 0.1) 0%,
    transparent 70%
  );
  animation: hero-glow-drift 10s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

.praktik-item {
  position: relative;
  padding-bottom: 0.35rem;
  transition:
    opacity 0.7s ease calc(var(--i, 0) * 0.06s),
    transform 0.7s ease calc(var(--i, 0) * 0.06s),
    border-color 0.35s ease,
    padding-left 0.35s ease;
}

.praktik-item.is-visible {
  transition:
    opacity 0.7s ease,
    transform 0.35s ease,
    border-color 0.35s ease,
    padding-left 0.35s ease;
}

.praktik-item:hover {
  transform: translateX(6px);
  padding-left: 0.35rem;
}

.praktik-item .arrow {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.praktik-item:hover .arrow {
  transform: translateX(4px);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up,
  .section-praktik::before {
    animation: none !important;
  }

  .anim-fade-up {
    opacity: 1;
    transform: none;
  }

  .layanan-card:hover,
  .praktik-item:hover {
    transform: none;
  }
}

main {
  flex: 1;
}
