@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-latin-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #0b2347;
  --navy-deep: #071526;
  --red: #e31c23;
  --red-press: #c4161c;
  --paper: #f4f6f9;
  --paper-2: #e8edf3;
  --surface: #ffffff;
  --ink: #0b2347;
  --muted: #516178;
  --line: rgba(11, 35, 71, 0.1);
  --shadow-soft: 0 20px 50px rgba(11, 35, 71, 0.08);
  --shadow-lift: 0 28px 70px rgba(11, 35, 71, 0.14);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --z-nav: 55;
  --z-toggle: 60;
  --z-overlay: 50;
  --z-grain: 70;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--red);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
}

.skip:focus {
  top: 1rem;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: var(--z-grain);
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 92% 8%, rgba(227, 28, 35, 0.07), transparent 55%),
    radial-gradient(ellipse 70% 50% at 8% 18%, rgba(11, 35, 71, 0.06), transparent 50%),
    var(--paper);
}

.wrap {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  padding: 1rem 0 0;
  transition: padding 0.45s var(--ease);
}

.nav-shell.is-scrolled {
  padding-top: 0.55rem;
}

.nav {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.45rem 0.4rem 1rem;
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.nav-shell.is-scrolled .nav {
  box-shadow: var(--shadow-lift);
  background: rgba(255, 255, 255, 0.94);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

@media (prefers-reduced-transparency: reduce) {
  .nav {
    background: var(--surface);
  }

  .nav::before {
    backdrop-filter: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  height: 32px;
  width: auto;
}

.brand-name {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.02rem;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
  z-index: var(--z-toggle);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 99px;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), background 0.3s var(--ease);
}

.menu-toggle span:nth-child(1) { top: 17px; }
.menu-toggle span:nth-child(2) { top: 22px; }
.menu-toggle span:nth-child(3) { top: 27px; }

body.menu-open .menu-toggle span {
  background: #f7f8fa;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.icon {
  width: 1.1em;
  height: 1.1em;
  display: block;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1;
  padding: 0.38rem 0.38rem 0.38rem 1.05rem;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-orb {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  transition: transform 0.45s var(--ease);
}

.btn:hover .btn-orb {
  transform: translate(1px, -1px) scale(1.05);
}

.btn-wa {
  background: var(--red);
  color: #fff;
}

.btn-wa:hover {
  background: var(--red-press);
}

.btn-wa .btn-orb {
  background: rgba(255, 255, 255, 0.18);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 0.74rem 1.2rem;
}

.btn-ghost:hover {
  background: var(--paper-2);
  border-color: rgba(11, 35, 71, 0.18);
}

.hero {
  min-height: min(100dvh, 920px);
  display: grid;
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5vw, 3.65rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
  font-weight: 700;
  max-width: 11ch;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
  padding-bottom: 0.15rem;
}

.hero-copy p {
  margin: 0 0 1.6rem;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 12% -6% -8% 18%;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(11, 35, 71, 0.08), rgba(227, 28, 35, 0.06));
}

.bezel {
  padding: 0.45rem;
  border-radius: var(--radius-lg);
  background: rgba(11, 35, 71, 0.04);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
}

.bezel-core {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.4rem);
  background: var(--paper-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.bezel-core img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.8s var(--ease);
}

.bezel:hover .bezel-core img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .bezel-core img,
  .bezel:hover .bezel-core img {
    transform: none;
    transition: none;
  }
}

.hero-band {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.hero-band div {
  min-width: 8rem;
}

.hero-band strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.hero-band span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 38rem;
}

.section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section .lede {
  margin: 0;
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.02rem;
}

.lahan-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}

.lahan-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 26rem;
  isolation: isolate;
}

.lahan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease);
}

.lahan-card:hover img {
  transform: scale(1.03);
}

.lahan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 38, 0.82) 0%, rgba(7, 21, 38, 0.15) 48%, transparent 72%);
}

.lahan-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.75rem 1.5rem;
  color: #f7f8fa;
}

.lahan-card h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
}

.lahan-card p {
  margin: 0;
  max-width: 34ch;
  color: rgba(247, 248, 250, 0.86);
  font-size: 0.95rem;
}

.section-band {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.why-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.why-lead h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 12ch;
}

.why-lead p {
  margin: 0;
  color: var(--muted);
  max-width: 34ch;
  font-size: 1.05rem;
}

.why-list {
  display: grid;
  gap: 0;
}

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

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

.why-item h3 {
  margin: 0 0 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.why-item .why-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--red);
  flex-shrink: 0;
}

.why-item p {
  margin: 0;
  padding-left: 2rem;
  color: var(--muted);
  max-width: 38ch;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.flow-step {
  padding: 2rem 1.5rem 0 0;
  position: relative;
}

.flow-step + .flow-step {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.flow-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 22ch;
}

.bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento figure {
  margin: 0;
}

.bento figure:first-child {
  grid-row: span 2;
}

.bento figure:first-child .bezel-core img {
  aspect-ratio: 3 / 4;
  min-height: 100%;
}

.bento .bezel-core img {
  aspect-ratio: 16 / 10;
}

.bento figcaption {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.bento-accent {
  background: linear-gradient(160deg, var(--navy) 0%, #12325f 100%);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  color: #e8eef6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 11rem;
}

.bento-accent p {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 18ch;
}

.paket-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.paket-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.paket-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.paket-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.paket-card-body {
  padding: 1.5rem 1.4rem 1.6rem;
}

.paket-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.paket-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 34ch;
}

.paket-note {
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.contact {
  background: var(--navy);
  color: #e8eef6;
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 28, 35, 0.18), transparent 68%);
  pointer-events: none;
}

.contact h2 {
  color: #fff;
  max-width: 13ch;
}

.contact .lede {
  color: rgba(232, 238, 246, 0.74);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: end;
  position: relative;
}

.contact address {
  font-style: normal;
  line-height: 1.75;
  color: rgba(232, 238, 246, 0.84);
  font-size: 0.98rem;
}

.contact a.map {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  transition: opacity 0.3s var(--ease);
}

.contact a.map:hover {
  opacity: 0.85;
}

.contact .wa-number {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  text-decoration: none;
  margin: 0 0 1.15rem;
  transition: opacity 0.3s var(--ease);
}

.contact .wa-number:hover {
  opacity: 0.88;
}

.site-footer {
  padding: 1.75rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  height: 26px;
  width: auto;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lahan-card:hover img,
  .paket-card:hover,
  .btn,
  .btn-orb,
  .menu-toggle span,
  .nav,
  .nav-shell {
    transition: none;
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .lahan-grid,
  .why-layout,
  .contact-grid,
  .bento,
  .flow,
  .paket-cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 4.75rem;
  }

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

  .hero-visual::after {
    inset: 8% -4% -6% 10%;
  }

  .lahan-card {
    min-height: 20rem;
  }

  .bento figure:first-child {
    grid-row: auto;
  }

  .bento figure:first-child .bezel-core img {
    aspect-ratio: 16 / 10;
  }

  .flow-step + .flow-step {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    margin-top: 0.25rem;
  }

  .flow-step {
    padding-right: 0;
  }

  .why-item p {
    padding-left: 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    background: rgba(7, 21, 38, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6.5rem 1.75rem 2rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  body.menu-open .nav-panel {
    display: flex;
  }

  body.menu-open .nav-panel .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  body.menu-open .nav-panel .nav-links a {
    color: #f7f8fa;
    font-size: clamp(1.45rem, 6vw, 1.85rem);
    font-weight: 600;
    letter-spacing: -0.03em;
  }

  body.menu-open .nav-panel .nav-cta {
    display: block;
    margin-top: 0.25rem;
  }
}

@media (max-width: 640px) {
  .wrap,
  .nav {
    width: calc(100% - 2rem);
  }

  .brand-name {
    display: none;
  }

  .hero-band {
    gap: 1.25rem 2rem;
  }
}
